This is a note experimenting on the inconsistency issue of LIME and how BayLIME (with 3 options) improves on it

In [1]:
import sys
sys.path.append("..")# allow the notebook to find the parent folder
from sklearn.datasets import load_boston,load_breast_cancer
import sklearn.ensemble
import sklearn.linear_model
import sklearn.model_selection
import numpy as np
from sklearn.metrics import r2_score
np.random.seed(1)
import lime
import lime.lime_tabular
from lime import submodular_pick
from lime import calculate_posteriors
import csv
import math


#load example dataset
boston = load_boston()
#cancer= load_breast_cancer()

#print a description of the variables
print(boston.DESCR)
#print(cancer.DESCR)

#train a regressor
rf = sklearn.ensemble.RandomForestRegressor(n_estimators=1000)
train, test, labels_train, labels_test = sklearn.model_selection.train_test_split(boston.data, boston.target, train_size=0.80, test_size=0.20)
rf.fit(train, labels_train);

#train a classifier
# rf = sklearn.ensemble.RandomForestClassifier(n_estimators=1000)
# train, test, labels_train, labels_test = sklearn.model_selection.train_test_split(cancer.data, cancer.target, train_size=0.80, test_size=0.20)
# rf.fit(train, labels_train);
.. _boston_dataset:

Boston house prices dataset
---------------------------

**Data Set Characteristics:**  

    :Number of Instances: 506 

    :Number of Attributes: 13 numeric/categorical predictive. Median Value (attribute 14) is usually the target.

    :Attribute Information (in order):
        - CRIM     per capita crime rate by town
        - ZN       proportion of residential land zoned for lots over 25,000 sq.ft.
        - INDUS    proportion of non-retail business acres per town
        - CHAS     Charles River dummy variable (= 1 if tract bounds river; 0 otherwise)
        - NOX      nitric oxides concentration (parts per 10 million)
        - RM       average number of rooms per dwelling
        - AGE      proportion of owner-occupied units built prior to 1940
        - DIS      weighted distances to five Boston employment centres
        - RAD      index of accessibility to radial highways
        - TAX      full-value property-tax rate per $10,000
        - PTRATIO  pupil-teacher ratio by town
        - B        1000(Bk - 0.63)^2 where Bk is the proportion of blacks by town
        - LSTAT    % lower status of the population
        - MEDV     Median value of owner-occupied homes in $1000's

    :Missing Attribute Values: None

    :Creator: Harrison, D. and Rubinfeld, D.L.

This is a copy of UCI ML housing dataset.
https://archive.ics.uci.edu/ml/machine-learning-databases/housing/


This dataset was taken from the StatLib library which is maintained at Carnegie Mellon University.

The Boston house-price data of Harrison, D. and Rubinfeld, D.L. 'Hedonic
prices and the demand for clean air', J. Environ. Economics & Management,
vol.5, 81-102, 1978.   Used in Belsley, Kuh & Welsch, 'Regression diagnostics
...', Wiley, 1980.   N.B. Various transformations are used in the table on
pages 244-261 of the latter.

The Boston house-price data has been used in many machine learning papers that address regression
problems.   
     
.. topic:: References

   - Belsley, Kuh & Welsch, 'Regression diagnostics: Identifying Influential Data and Sources of Collinearity', Wiley, 1980. 244-261.
   - Quinlan,R. (1993). Combining Instance-Based and Model-Based Learning. In Proceedings on the Tenth International Conference of Machine Learning, 236-243, University of Massachusetts, Amherst. Morgan Kaufmann.

In [2]:
# generate an "explainer" object
categorical_features  = np.argwhere(np.array([len(set(boston.data[:,x])) for x in range(boston.data.shape[1])]) <= 10).flatten()


explainer = lime.lime_tabular.LimeTabularExplainer(train, feature_names=boston.feature_names, 
                                                   class_names=['price'], categorical_features=categorical_features, 
                                                    verbose=False, mode='regression',
                                                   discretize_continuous=False,feature_selection='none',
                                                   sample_around_instance=False)

# An example of classifier, rather than regressor...
# categorical_features = np.argwhere(np.array([len(set(cancer.data[:,x])) for x in range(cancer.data.shape[1])]) <= 10).flatten()

# explainer = lime.lime_tabular.LimeTabularExplainer(train, feature_names=cancer.feature_names, 
#                                                    categorical_features=categorical_features, 
#                                                    class_names=cancer.target_names,
#                                                    verbose=False, mode='classification',
#                                                    discretize_continuous=False,
#                                                    feature_selection='none')


#generate an explanation for testing..
instance = 3
#use rf.predict_proba for classfication 
exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                 model_regressor='Bay_non_info_prior',
                                 num_samples=100,
                                 #labels=labels_test[i],
                                 )#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior'

exp.show_in_notebook(show_table=True)
#fig = exp.as_pyplot_figure(label=1)



print(exp.as_list())
#fig = exp.as_pyplot_figure(label=2)
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2821837772437905
the lambda is 0.5487903510433139
the regulation term lambda/alpha is 1.9447976648536767
[('LSTAT', -3.7117749701142193), ('RM', 1.8850031611392262), ('DIS', -1.0574761832021675), ('INDUS', -0.7839854507722949), ('TAX', -0.7446005752975973), ('NOX', -0.5775207670268152), ('CRIM', 0.5404029713137755), ('AGE', -0.40338448542779126), ('CHAS=0', -0.3850283021298633), ('RAD=4', -0.3007915034372075), ('B', -0.2110945112354009), ('ZN', -0.12024413153519864), ('PTRATIO', -0.06444912186641441)]
In [3]:
exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                  model_regressor='BayesianRidge_inf_prior_fit_alpha',
                                  num_samples=100,
                                  #labels=labels_test[i],
                                  top_labels=1)
#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior', 'BayesianRidge_inf_prior_fit_alpha'
  

alpha_init=1
lambda_init=1
with open('.\posterior_configure.csv') as csv_file:
    csv_reader=csv.reader(csv_file)
    line_count = 0
    for row in csv_reader:
        if line_count == 1:
            alpha_init=float(row[0])
            lambda_init=float(row[1])
        line_count=line_count+1

exp.show_in_notebook(show_table=True)

exp=calculate_posteriors.get_posterior(exp,'.\data\prior_knowledge_tabular.csv',hyper_para_alpha=alpha_init, hyper_para_lambda=lambda_init,
                                        label=1)

exp.show_in_notebook(show_table=True)
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.113474180561117
the lambda is 20.0
the regulation term lambda/alpha is 176.25154815925757
In [4]:
exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                  model_regressor='Bay_info_prior',
                                  num_samples=100,
                                  #labels=labels_test[i],
                                  top_labels=1)
#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior', 'BayesianRidge_inf_prior_fit_alpha'
  

alpha_init=1
lambda_init=1
with open('.\posterior_configure.csv') as csv_file:
    csv_reader=csv.reader(csv_file)
    line_count = 0
    for row in csv_reader:
        if line_count == 1:
            alpha_init=float(row[0])
            lambda_init=float(row[1])
        line_count=line_count+1

exp.show_in_notebook(show_table=True)

exp=calculate_posteriors.get_posterior(exp,'.\data\prior_knowledge_tabular.csv',hyper_para_alpha=alpha_init, hyper_para_lambda=lambda_init,
                                        label=1)

exp.show_in_notebook(show_table=True)
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
In [5]:
exp.as_list()
Out[5]:
[('LSTAT', -4.574269203719008),
 ('RM', 1.7203511978075454),
 ('DIS', -1.3533428321434107),
 ('PTRATIO', -0.3757520330750844),
 ('TAX', -0.2934330625075643),
 ('RAD=4', -0.2809675686099691),
 ('B', 0.247792931167461),
 ('CHAS=0', -0.1807569361402992),
 ('ZN', -0.17834242928188765),
 ('NOX', -0.09198945800501514),
 ('CRIM', 0.08136795875849968),
 ('INDUS', 0.06967150517368757),
 ('AGE', 0.011447210336717938)]
In [6]:
k=3#number of explanations 
m=13# number of features
i=1
instance=3
explanations=np.array([])
while i<=k:
    exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                 model_regressor='Bay_non_info_prior',
                                 num_samples=100,
                                 #labels=labels_test[i],
                                 )#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior' 'BayesianRidge_inf_prior_fit_alpha'
    temp_list=exp.as_list()
    temp_array = np.array(temp_list)
    explanations=np.append(explanations,temp_array)
    i=i+1
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3756786550639776
the lambda is 0.5513220738128569
the regulation term lambda/alpha is 1.4675363276068147
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.251708090554997
the lambda is 0.4811493752952507
the regulation term lambda/alpha is 1.9115371867243254
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3571166937389321
the lambda is 0.4782801736792113
the regulation term lambda/alpha is 1.3392825988382804
In [7]:
exps=explanations.reshape(k,2*m)# k exps, 13 features for this instance.. 
In [8]:
for exp in exps:
    #print(exp)
    i=1
    temp_vector=np.array([])
    while i<=(2*m-1):
        temp_vector=np.append(temp_vector,float(exp[i]))
        i=i+2
    #print(temp_vector)
    normlised_temp_vector=temp_vector/np.linalg.norm(temp_vector)
    #print(normlised_temp_vector)
    i=1
    while i<=(2*m-1):
        exp[i]=normlised_temp_vector[math.floor(i/2)]
        i=i+2
In [9]:
print(exps)
[['LSTAT' '-0.8066048395873953' 'RM' '0.3534211584807102' 'CHAS=0'
  '-0.2663661763123778' 'PTRATIO' '-0.2158419330851548' 'DIS'
  '-0.20857729278264972' 'TAX' '-0.16094573807918228' 'B'
  '0.12007040620142352' 'RAD=4' '-0.093526812375778' 'NOX'
  '-0.08937232544222505' 'AGE' '-0.061692424471191394' 'INDUS'
  '-0.047648124966020264' 'CRIM' '0.013750802449920253' 'ZN'
  '-0.010883777345780431']
 ['LSTAT' '-0.8558428207529889' 'RM' '0.39307863466990733' 'DIS'
  '-0.17236990524108228' 'RAD=4' '-0.16419416610483534' 'PTRATIO'
  '-0.15618642661565546' 'AGE' '-0.13230554125748603' 'CRIM'
  '-0.08890840422960931' 'INDUS' '0.05939566627771297' 'TAX'
  '-0.04069523820258217' 'B' '-0.029790752966329173' 'NOX'
  '0.017320782793975' 'CHAS=0' '0.010967692662899329' 'ZN'
  '0.007466453018965512']
 ['LSTAT' '-0.8279838012542706' 'RM' '0.3399687523683637' 'DIS'
  '-0.33222481527283954' 'CRIM' '0.15326085484966467' 'INDUS'
  '-0.1492749068223042' 'TAX' '-0.14042791967863635' 'PTRATIO'
  '-0.10671159238148356' 'ZN' '-0.0858551987939331' 'AGE'
  '0.04420364602374686' 'RAD=4' '-0.03734893906484879' 'NOX'
  '-0.029190080405645042' 'B' '-0.006254311671579373' 'CHAS=0'
  '-0.0005426242287322127']]
In [10]:
feature_names=np.array([])
i=0
while i<=(2*m-1):
    feature_names=np.append(feature_names,exps[0,i])
    i=i+2
print(feature_names)
['LSTAT' 'RM' 'CHAS=0' 'PTRATIO' 'DIS' 'TAX' 'B' 'RAD=4' 'NOX' 'AGE'
 'INDUS' 'CRIM' 'ZN']
In [11]:
def rankings_in_k_exp (feature, k_exps):
    ranks=np.array([])
    for exp in k_exps:
        rank=math.ceil(exp.tolist().index(feature)/2)+1
        ranks=np.append(ranks,rank)
    return ranks

print(rankings_in_k_exp('LSTAT',exps))
[1. 1. 1.]
In [12]:
def importance_in_k_exp (feature, k_exps):
    importance_s=np.array([])
    for exp in k_exps:
        importance=exp[exp.tolist().index(feature)+1]
        importance_s=np.append(importance_s,importance)
    return importance_s

print(importance_in_k_exp('INDUS',exps))
['-0.047648124966020264' '0.05939566627771297' '-0.1492749068223042']
In [13]:
g_i_s=np.array([])
f_i_s=np.array([])
for feature in feature_names:
    g_i=importance_in_k_exp(feature,exps)
    f_i=rankings_in_k_exp(feature,exps)
    g_i_s=np.append(g_i_s,g_i)
    f_i_s=np.append(f_i_s,f_i)
g_i_s=g_i_s.reshape(m,k)
f_i_s=f_i_s.reshape(m,k)
print(g_i_s)
print(f_i_s)
[['-0.8066048395873953' '-0.8558428207529889' '-0.8279838012542706']
 ['0.3534211584807102' '0.39307863466990733' '0.3399687523683637']
 ['-0.2663661763123778' '0.010967692662899329' '-0.0005426242287322127']
 ['-0.2158419330851548' '-0.15618642661565546' '-0.10671159238148356']
 ['-0.20857729278264972' '-0.17236990524108228' '-0.33222481527283954']
 ['-0.16094573807918228' '-0.04069523820258217' '-0.14042791967863635']
 ['0.12007040620142352' '-0.029790752966329173' '-0.006254311671579373']
 ['-0.093526812375778' '-0.16419416610483534' '-0.03734893906484879']
 ['-0.08937232544222505' '0.017320782793975' '-0.029190080405645042']
 ['-0.061692424471191394' '-0.13230554125748603' '0.04420364602374686']
 ['-0.047648124966020264' '0.05939566627771297' '-0.1492749068223042']
 ['0.013750802449920253' '-0.08890840422960931' '0.15326085484966467']
 ['-0.010883777345780431' '0.007466453018965512' '-0.0858551987939331']]
[[ 1.  1.  1.]
 [ 2.  2.  2.]
 [ 3. 12. 13.]
 [ 4.  5.  7.]
 [ 5.  3.  3.]
 [ 6.  9.  6.]
 [ 7. 10. 12.]
 [ 8.  4. 10.]
 [ 9. 11. 11.]
 [10.  6.  9.]
 [11.  8.  5.]
 [12.  7.  4.]
 [13. 13.  8.]]
In [14]:
#now calculate the index of dispersion of ranks for each feature
IoD_f_i_s=np.array([])
for f_i in f_i_s:
    if np.mean(f_i)==0:
        IoD_f_i=0
        IoD_f_i_s=np.append(IoD_f_i_s,IoD_f_i)
    else:
        IoD_f_i=np.var(f_i)/np.mean(f_i)
        IoD_f_i_s=np.append(IoD_f_i_s,IoD_f_i)
print(IoD_f_i_s)
[0.         0.         2.16666667 0.29166667 0.24242424 0.28571429
 0.43678161 0.84848485 0.08602151 0.34666667 0.75       1.42028986
 0.49019608]
In [15]:
#now calculate the weighted importance for each feature
weights_g_i_s=np.array([])
for g_i in g_i_s:
    weight=np.mean(abs(g_i.astype(np.float)))
    weights_g_i_s=np.append(weights_g_i_s,weight)
weights_g_i_s=weights_g_i_s/sum(weights_g_i_s)
print(weights_g_i_s)
[0.36460607 0.15906201 0.04068189 0.07008886 0.10441036 0.05007983
 0.02285574 0.04319905 0.01989368 0.03487338 0.03752577 0.03746741
 0.01525596]
In [16]:
np.dot(weights_g_i_s,IoD_f_i_s)
Out[16]:
0.2974815493882417
In [17]:
def kendall_w(expt_ratings):
    if expt_ratings.ndim!=2:
        raise 'ratings matrix must be 2-dimensional'
    m = expt_ratings.shape[0] #raters
    n = expt_ratings.shape[1] # items rated
    denom = m**2*(n**3-n)
    rating_sums = np.sum(expt_ratings, axis=0)
    S = n*np.var(rating_sums)
    return 12*S/denom
In [18]:
ken_w=kendall_w(f_i_s.T)
print(ken_w)
0.663003663003663

Now we have shown a toy example of calculating the inconsistency of k explanations for a given number of samples, while we want to see inconsistency as a function of the number of samples... Let us do it now...

In [19]:
n=10 #number of samples
inconsistency_non_info=np.array([])
ken_w_non_info=np.array([])
while n<=2000:


    k=100#number of explanations 
    m=13# number of features
    i=1
    instance=3
    explanations=np.array([])
    while i<=k:
        exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                         model_regressor='Bay_non_info_prior',
                                         num_samples=n)#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior' 'BayesianRidge_inf_prior_fit_alpha'
        temp_list=exp.as_list()
        temp_array = np.array(temp_list)
        explanations=np.append(explanations,temp_array)
        i=i+1
    exps=explanations.reshape(k,2*m)# k exps, 13 features for this instance.. 
    for exp in exps:
    #print(exp)
        i=1
        temp_vector=np.array([])
        while i<=(2*m-1):
            temp_vector=np.append(temp_vector,float(exp[i]))
            i=i+2
    #print(temp_vector)
        normlised_temp_vector=temp_vector/np.linalg.norm(temp_vector)
    #print(normlised_temp_vector)
        i=1
        while i<=(2*m-1):
            exp[i]=normlised_temp_vector[math.floor(i/2)]
            i=i+2
    feature_names=np.array([])
    i=0
    while i<=(2*m-1):
        feature_names=np.append(feature_names,exps[0,i])
        i=i+2
    
    g_i_s=np.array([])
    f_i_s=np.array([])
    for feature in feature_names:
        g_i=importance_in_k_exp(feature,exps)
        f_i=rankings_in_k_exp(feature,exps)
        g_i_s=np.append(g_i_s,g_i)
        f_i_s=np.append(f_i_s,f_i)
    g_i_s=g_i_s.reshape(m,k)
    f_i_s=f_i_s.reshape(m,k)
    IoD_f_i_s=np.array([])
    for f_i in f_i_s:
        if np.mean(f_i)==0:
            IoD_f_i=0
            IoD_f_i_s=np.append(IoD_f_i_s,IoD_f_i)
        else:
            IoD_f_i=np.var(f_i)/np.mean(f_i)
            IoD_f_i_s=np.append(IoD_f_i_s,IoD_f_i)
    weights_g_i_s=np.array([])
    for g_i in g_i_s:
        weight=np.mean(abs(g_i.astype(np.float)))
        weights_g_i_s=np.append(weights_g_i_s,weight)
    weights_g_i_s=weights_g_i_s/sum(weights_g_i_s)
    
    inconsistency_non_info=np.append(inconsistency_non_info,np.dot(weights_g_i_s,IoD_f_i_s))
    
    ken_w_non_info=np.append(ken_w_non_info,kendall_w(f_i_s.T))
    
    print(n)
    n=n+10
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 500001.23715843813
the lambda is 0.16278626887760012
the regulation term lambda/alpha is 3.2557173218756883e-07
using Bay_non_info_prior option for model regressor
Convergence after  30  iterations
the alpha is 0.19671090813521402
the lambda is 2.1581111584030457
the regulation term lambda/alpha is 10.970978573895941
using Bay_non_info_prior option for model regressor
Convergence after  30  iterations
the alpha is 0.29337017323318254
the lambda is 1039.1583278213554
the regulation term lambda/alpha is 3542.140349064696
using Bay_non_info_prior option for model regressor
Convergence after  23  iterations
the alpha is 499999.5676290682
the lambda is 0.27653036540013287
the regulation term lambda/alpha is 5.530612090554463e-07
using Bay_non_info_prior option for model regressor
Convergence after  23  iterations
the alpha is 1.0813439765546673
the lambda is 0.18360972402138065
the regulation term lambda/alpha is 0.1697977036006528
using Bay_non_info_prior option for model regressor
Convergence after  18  iterations
the alpha is 499998.9515080224
the lambda is 0.20119069549921967
the regulation term lambda/alpha is 4.0238223478752956e-07
using Bay_non_info_prior option for model regressor
Convergence after  33  iterations
the alpha is 499998.78405382193
the lambda is 0.25290363499652835
the regulation term lambda/alpha is 5.058085000648817e-07
using Bay_non_info_prior option for model regressor
Convergence after  63  iterations
the alpha is 0.43319979563652256
the lambda is 0.30730497308308824
the regulation term lambda/alpha is 0.7093839290287507
using Bay_non_info_prior option for model regressor
Convergence after  31  iterations
the alpha is 1.1482508950627877
the lambda is 0.7719344867932629
the regulation term lambda/alpha is 0.6722698759586446
using Bay_non_info_prior option for model regressor
Convergence after  17  iterations
the alpha is 499999.3745763536
the lambda is 0.13314180119908886
the regulation term lambda/alpha is 2.6628393547871756e-07
using Bay_non_info_prior option for model regressor
Convergence after  17  iterations
the alpha is 500000.0225871617
the lambda is 0.12198081442435563
the regulation term lambda/alpha is 2.4396161782791024e-07
using Bay_non_info_prior option for model regressor
Convergence after  18  iterations
the alpha is 500000.6434077526
the lambda is 0.2942698116318128
the regulation term lambda/alpha is 5.885388659226875e-07
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 500003.44234799285
the lambda is 0.3803542500066129
the regulation term lambda/alpha is 7.607032628025261e-07
using Bay_non_info_prior option for model regressor
Convergence after  60  iterations
the alpha is 0.11307755608417545
the lambda is 379.09006306269055
the regulation term lambda/alpha is 3352.478389084516
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.6043528721119776
the lambda is 1.7093794171362953
the regulation term lambda/alpha is 2.828445922930226
using Bay_non_info_prior option for model regressor
Convergence after  28  iterations
the alpha is 0.2785457822036801
the lambda is 0.3453664295131363
the regulation term lambda/alpha is 1.2398910756458525
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 500001.27559836424
the lambda is 0.30116851572746534
the regulation term lambda/alpha is 6.023354947785869e-07
using Bay_non_info_prior option for model regressor
Convergence after  15  iterations
the alpha is 500001.3370857012
the lambda is 0.44538196148897585
the regulation term lambda/alpha is 8.907615409289126e-07
using Bay_non_info_prior option for model regressor
Convergence after  18  iterations
the alpha is 499999.13515061076
the lambda is 0.6452858084726029
the regulation term lambda/alpha is 1.2905738492492162e-06
using Bay_non_info_prior option for model regressor
Convergence after  170  iterations
the alpha is 8.18492085191159
the lambda is 1.0562400383856765
the regulation term lambda/alpha is 0.12904706807751126
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 500004.4559694087
the lambda is 0.42319273880172975
the regulation term lambda/alpha is 8.463779347350888e-07
using Bay_non_info_prior option for model regressor
Convergence after  51  iterations
the alpha is 0.3522521798461745
the lambda is 1.8760783731038466
the regulation term lambda/alpha is 5.3259524864348995
using Bay_non_info_prior option for model regressor
Convergence after  51  iterations
the alpha is 2.909900850837532
the lambda is 0.16317629342034332
the regulation term lambda/alpha is 0.05607623825855705
using Bay_non_info_prior option for model regressor
Convergence after  27  iterations
the alpha is 2.773371817166914
the lambda is 0.5563594359162782
the regulation term lambda/alpha is 0.2006075898198954
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 500000.8600014693
the lambda is 0.30234124572191834
the regulation term lambda/alpha is 6.046814513899633e-07
using Bay_non_info_prior option for model regressor
Convergence after  85  iterations
the alpha is 0.9815514419759905
the lambda is 1.7143647880107218
the regulation term lambda/alpha is 1.7465867958580783
using Bay_non_info_prior option for model regressor
Convergence after  57  iterations
the alpha is 1.7250528273709975
the lambda is 0.621017746251483
the regulation term lambda/alpha is 0.35999926286195066
using Bay_non_info_prior option for model regressor
Convergence after  24  iterations
the alpha is 1.2777408532722985
the lambda is 0.8899311214163103
the regulation term lambda/alpha is 0.6964879608703077
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 500002.099531238
the lambda is 0.22723178235548333
the regulation term lambda/alpha is 4.5446165639807847e-07
using Bay_non_info_prior option for model regressor
Convergence after  29  iterations
the alpha is 1.052251458940713
the lambda is 0.5338043645938348
the regulation term lambda/alpha is 0.5072973385384595
using Bay_non_info_prior option for model regressor
Convergence after  32  iterations
the alpha is 0.25750350615728523
the lambda is 0.48220764948221684
the regulation term lambda/alpha is 1.872625568009472
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 500000.33231987647
the lambda is 0.1520951942619395
the regulation term lambda/alpha is 3.0419018634698865e-07
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.8768321798440574
the lambda is 0.5406137527476393
the regulation term lambda/alpha is 0.6165532757292123
using Bay_non_info_prior option for model regressor
Convergence after  15  iterations
the alpha is 499999.8494886471
the lambda is 0.3134212667601766
the regulation term lambda/alpha is 6.268427222142456e-07
using Bay_non_info_prior option for model regressor
Convergence after  53  iterations
the alpha is 0.565574492190224
the lambda is 0.7898076223985678
the regulation term lambda/alpha is 1.3964696663387106
using Bay_non_info_prior option for model regressor
Convergence after  18  iterations
the alpha is 500000.1527680261
the lambda is 0.3450143141290641
the regulation term lambda/alpha is 6.900284174295696e-07
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 500001.3159205463
the lambda is 0.39164289277218356
the regulation term lambda/alpha is 7.832837240660749e-07
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 500002.58816756547
the lambda is 0.42970422125737534
the regulation term lambda/alpha is 8.594039939516651e-07
using Bay_non_info_prior option for model regressor
Convergence after  15  iterations
the alpha is 500004.5655832122
the lambda is 0.745090917466889
the regulation term lambda/alpha is 1.4901682279596883e-06
using Bay_non_info_prior option for model regressor
Convergence after  26  iterations
the alpha is 499999.7245547257
the lambda is 0.3075671382537031
the regulation term lambda/alpha is 6.151346153792518e-07
using Bay_non_info_prior option for model regressor
Convergence after  55  iterations
the alpha is 0.3082687215820797
the lambda is 0.588021051180796
the regulation term lambda/alpha is 1.9074950198092977
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 500000.4381993502
the lambda is 0.3151792020470471
the regulation term lambda/alpha is 6.303578516492922e-07
using Bay_non_info_prior option for model regressor
Convergence after  26  iterations
the alpha is 499999.58017165464
the lambda is 0.19017024290924311
the regulation term lambda/alpha is 3.80340805174188e-07
using Bay_non_info_prior option for model regressor
Convergence after  21  iterations
the alpha is 499996.89281620213
the lambda is 0.4736973563751563
the regulation term lambda/alpha is 9.47400600245903e-07
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 500000.2482837201
the lambda is 0.8471865617034418
the regulation term lambda/alpha is 1.6943722820367765e-06
using Bay_non_info_prior option for model regressor
Convergence after  43  iterations
the alpha is 500000.07873747754
the lambda is 0.43288854577529123
the regulation term lambda/alpha is 8.657769552123953e-07
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 500001.78674787906
the lambda is 1.0409218497324608
the regulation term lambda/alpha is 2.081836260031877e-06
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 500000.0216771023
the lambda is 0.3138295741402008
the regulation term lambda/alpha is 6.276591210687397e-07
using Bay_non_info_prior option for model regressor
Convergence after  19  iterations
the alpha is 0.30919208020227607
the lambda is 0.2717629415882323
the regulation term lambda/alpha is 0.8789453514153489
using Bay_non_info_prior option for model regressor
Convergence after  51  iterations
the alpha is 0.16769077374456134
the lambda is 0.562771850315047
the regulation term lambda/alpha is 3.356009622642099
using Bay_non_info_prior option for model regressor
Convergence after  114  iterations
the alpha is 0.10874926010256347
the lambda is 5.972923172614013
the regulation term lambda/alpha is 54.92380515491173
using Bay_non_info_prior option for model regressor
Convergence after  20  iterations
the alpha is 500000.2639615635
the lambda is 0.15281221158493694
the regulation term lambda/alpha is 3.0562426182375786e-07
using Bay_non_info_prior option for model regressor
Convergence after  20  iterations
the alpha is 500000.44443396165
the lambda is 0.3574494285963923
the regulation term lambda/alpha is 7.148982217426869e-07
using Bay_non_info_prior option for model regressor
Convergence after  82  iterations
the alpha is 0.07801843687626937
the lambda is 283.1351705280159
the regulation term lambda/alpha is 3629.0802772304232
using Bay_non_info_prior option for model regressor
Convergence after  121  iterations
the alpha is 0.2566419944674206
the lambda is 3.4716778228419396
the regulation term lambda/alpha is 13.527317811125613
using Bay_non_info_prior option for model regressor
Convergence after  15  iterations
the alpha is 500000.5544297543
the lambda is 0.1301694764653793
the regulation term lambda/alpha is 2.603386642517553e-07
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 500003.7333853496
the lambda is 0.47101488336231545
the regulation term lambda/alpha is 9.420227328568912e-07
using Bay_non_info_prior option for model regressor
Convergence after  61  iterations
the alpha is 0.393776597237454
the lambda is 5.903534752227566
the regulation term lambda/alpha is 14.992091438759713
using Bay_non_info_prior option for model regressor
Convergence after  79  iterations
the alpha is 0.19675078687240144
the lambda is 0.2538773234908119
the regulation term lambda/alpha is 1.290349723762267
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 500001.8291378111
the lambda is 0.6750305464520191
the regulation term lambda/alpha is 1.3500561540265214e-06
using Bay_non_info_prior option for model regressor
Convergence after  30  iterations
the alpha is 499996.159018523
the lambda is 0.10605850394331835
the regulation term lambda/alpha is 2.1211863737415087e-07
using Bay_non_info_prior option for model regressor
Convergence after  64  iterations
the alpha is 500000.84010846476
the lambda is 0.19686987253617194
the regulation term lambda/alpha is 3.9373908350526996e-07
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 500002.60285854206
the lambda is 0.2939825879578723
the regulation term lambda/alpha is 5.87962115151317e-07
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 500003.8065144548
the lambda is 1.7006473024701223
the regulation term lambda/alpha is 3.4012687109832186e-06
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 499994.3857815256
the lambda is 0.34421101945714244
the regulation term lambda/alpha is 6.884297689045387e-07
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 2.1138887848161345
the lambda is 0.38051208724593255
the regulation term lambda/alpha is 0.1800057268760378
using Bay_non_info_prior option for model regressor
Convergence after  73  iterations
the alpha is 1.0360861168364612
the lambda is 0.3088743435006503
the regulation term lambda/alpha is 0.29811647746400977
using Bay_non_info_prior option for model regressor
Convergence after  21  iterations
the alpha is 0.6695993308578747
the lambda is 0.7016983172913496
the regulation term lambda/alpha is 1.0479376023156273
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 500000.229727318
the lambda is 0.454068386901976
the regulation term lambda/alpha is 9.081363565564928e-07
using Bay_non_info_prior option for model regressor
Convergence after  32  iterations
the alpha is 0.16890867641358961
the lambda is 0.4065935604188487
the regulation term lambda/alpha is 2.407179838549348
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 499957.30830584106
the lambda is 0.951315589520859
the regulation term lambda/alpha is 1.9027936460104842e-06
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 500001.6208523997
the lambda is 0.277480142162771
the regulation term lambda/alpha is 5.549584853139567e-07
using Bay_non_info_prior option for model regressor
Convergence after  23  iterations
the alpha is 499988.05679415225
the lambda is 0.5697755830024941
the regulation term lambda/alpha is 1.1395783864434861e-06
using Bay_non_info_prior option for model regressor
Convergence after  53  iterations
the alpha is 0.6510930376220023
the lambda is 0.5300998178468008
the regulation term lambda/alpha is 0.814169077560548
using Bay_non_info_prior option for model regressor
Convergence after  24  iterations
the alpha is 0.27514068623427845
the lambda is 0.7911581938348593
the regulation term lambda/alpha is 2.8754678367022724
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 500000.49621171784
the lambda is 0.22649985907645817
the regulation term lambda/alpha is 4.5299926858582586e-07
using Bay_non_info_prior option for model regressor
Convergence after  36  iterations
the alpha is 0.09266279971458735
the lambda is 0.5283085033537489
the regulation term lambda/alpha is 5.701408817572997
using Bay_non_info_prior option for model regressor
Convergence after  29  iterations
the alpha is 0.6679766392821459
the lambda is 1642.818466273706
the regulation term lambda/alpha is 2459.3950890845417
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 1.7842861673161479
the lambda is 1.9415612339043995
the regulation term lambda/alpha is 1.0881445305518556
using Bay_non_info_prior option for model regressor
Convergence after  33  iterations
the alpha is 499988.80767749465
the lambda is 0.7373471133980678
the regulation term lambda/alpha is 1.4747272380418468e-06
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 499996.9996424463
the lambda is 0.34260797982390157
the regulation term lambda/alpha is 6.852200714582378e-07
using Bay_non_info_prior option for model regressor
Convergence after  15  iterations
the alpha is 499996.14852437266
the lambda is 0.15164630290542078
the regulation term lambda/alpha is 3.032949420769962e-07
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 500001.9974061091
the lambda is 0.18289561400606807
the regulation term lambda/alpha is 3.657897667507066e-07
using Bay_non_info_prior option for model regressor
Convergence after  22  iterations
the alpha is 500000.65924527374
the lambda is 0.10252853437015697
the regulation term lambda/alpha is 2.0505679837486358e-07
using Bay_non_info_prior option for model regressor
Convergence after  67  iterations
the alpha is 0.8658517676798821
the lambda is 0.2531838740335146
the regulation term lambda/alpha is 0.2924101832256354
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 500004.92871174414
the lambda is 0.5360551097844084
the regulation term lambda/alpha is 1.072099651428531e-06
using Bay_non_info_prior option for model regressor
Convergence after  312  iterations
the alpha is 2.7172305263406744
the lambda is 4.481676165582559
the regulation term lambda/alpha is 1.6493544151434527
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 500004.3043745696
the lambda is 0.3010762859574313
the regulation term lambda/alpha is 6.021473881790529e-07
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 500001.9327999059
the lambda is 0.4154685077112862
the regulation term lambda/alpha is 8.309338033650184e-07
using Bay_non_info_prior option for model regressor
Convergence after  28  iterations
the alpha is 0.1717000991055918
the lambda is 730.8716306200414
the regulation term lambda/alpha is 4256.67564798883
using Bay_non_info_prior option for model regressor
Convergence after  23  iterations
the alpha is 500000.79429922474
the lambda is 0.19282937776780212
the regulation term lambda/alpha is 3.8565814287967644e-07
using Bay_non_info_prior option for model regressor
Convergence after  20  iterations
the alpha is 0.4389344756776596
the lambda is 0.16250248725384925
the regulation term lambda/alpha is 0.370220377433251
using Bay_non_info_prior option for model regressor
Convergence after  36  iterations
the alpha is 499973.0874326116
the lambda is 1.659505641611855
the regulation term lambda/alpha is 3.31918993906953e-06
using Bay_non_info_prior option for model regressor
Convergence after  91  iterations
the alpha is 0.2937182472983946
the lambda is 1.0418807871259494
the regulation term lambda/alpha is 3.5472116448641366
using Bay_non_info_prior option for model regressor
Convergence after  33  iterations
the alpha is 500000.7888190516
the lambda is 0.29717511127729535
the regulation term lambda/alpha is 5.943492848865122e-07
using Bay_non_info_prior option for model regressor
Convergence after  67  iterations
the alpha is 0.2047097748152431
the lambda is 0.35039062501900065
the regulation term lambda/alpha is 1.7116457938329472
using Bay_non_info_prior option for model regressor
Convergence after  29  iterations
the alpha is 1.1989506010128028
the lambda is 0.28941262842353543
the regulation term lambda/alpha is 0.2413882842037501
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 500004.24665018206
the lambda is 0.20887353996428104
the regulation term lambda/alpha is 4.177435319072704e-07
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 499999.18282355805
the lambda is 0.18325966037998984
the regulation term lambda/alpha is 3.6651991978286755e-07
using Bay_non_info_prior option for model regressor
Convergence after  29  iterations
the alpha is 1.0462584628920082
the lambda is 1.6695169358631317
the regulation term lambda/alpha is 1.5957022046429596
10
using Bay_non_info_prior option for model regressor
Convergence after  17  iterations
the alpha is 0.4161731769712778
the lambda is 1.0980256229985348
the regulation term lambda/alpha is 2.638386334721219
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.37075895308598755
the lambda is 0.36861827094290595
the regulation term lambda/alpha is 0.9942262159139684
using Bay_non_info_prior option for model regressor
Convergence after  30  iterations
the alpha is 0.09494769406194278
the lambda is 1.705532666830094
the regulation term lambda/alpha is 17.96286559331735
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.43766194729965635
the lambda is 0.18884874817132086
the regulation term lambda/alpha is 0.43149455724104974
using Bay_non_info_prior option for model regressor
Convergence after  18  iterations
the alpha is 0.2458770309906844
the lambda is 1.1148337264814558
the regulation term lambda/alpha is 4.534110900841705
using Bay_non_info_prior option for model regressor
Convergence after  29  iterations
the alpha is 0.21893422522654865
the lambda is 0.7324715498546011
the regulation term lambda/alpha is 3.3456237785419547
using Bay_non_info_prior option for model regressor
Convergence after  28  iterations
the alpha is 0.7077824059436888
the lambda is 0.2767565502715659
the regulation term lambda/alpha is 0.39101925669170234
using Bay_non_info_prior option for model regressor
Convergence after  17  iterations
the alpha is 0.1824141756396912
the lambda is 0.9324702115486357
the regulation term lambda/alpha is 5.111829759275249
using Bay_non_info_prior option for model regressor
Convergence after  21  iterations
the alpha is 0.3376425983446283
the lambda is 0.37236192288651543
the regulation term lambda/alpha is 1.1028286262222442
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.7008914261242193
the lambda is 1.460178086590441
the regulation term lambda/alpha is 2.083315663689761
using Bay_non_info_prior option for model regressor
Convergence after  33  iterations
the alpha is 0.1277298335274283
the lambda is 0.5732932776211588
the regulation term lambda/alpha is 4.488327133833237
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.4662893795900201
the lambda is 0.3456834216826959
the regulation term lambda/alpha is 0.7413495499010385
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 0.12950355567908392
the lambda is 0.35886031569107485
the regulation term lambda/alpha is 2.771046044329069
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.6112100776948499
the lambda is 0.440940899032724
the regulation term lambda/alpha is 0.7214228219137221
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.6120453293220078
the lambda is 0.5527947010880706
the regulation term lambda/alpha is 0.9031924182812211
using Bay_non_info_prior option for model regressor
Convergence after  35  iterations
the alpha is 0.25120546806838123
the lambda is 2.047478114562529
the regulation term lambda/alpha is 8.150611251842577
using Bay_non_info_prior option for model regressor
Convergence after  19  iterations
the alpha is 1.0357359565402215
the lambda is 0.8279783915681518
the regulation term lambda/alpha is 0.7994106860342434
using Bay_non_info_prior option for model regressor
Convergence after  20  iterations
the alpha is 0.420862689062896
the lambda is 0.4716124255527379
the regulation term lambda/alpha is 1.1205850216916178
using Bay_non_info_prior option for model regressor
Convergence after  15  iterations
the alpha is 0.23459998550378958
the lambda is 1.1748283902193148
the regulation term lambda/alpha is 5.007793959136189
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.25096700080422735
the lambda is 0.39983002056160827
the regulation term lambda/alpha is 1.5931577429715749
using Bay_non_info_prior option for model regressor
Convergence after  20  iterations
the alpha is 0.4592845552666852
the lambda is 1.1305944022894603
the regulation term lambda/alpha is 2.461642546706097
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.39563011459197794
the lambda is 0.45662521406545836
the regulation term lambda/alpha is 1.1541720339878223
using Bay_non_info_prior option for model regressor
Convergence after  17  iterations
the alpha is 0.8040198180770426
the lambda is 0.26864695918978027
the regulation term lambda/alpha is 0.33412977286094464
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.30518078637939855
the lambda is 0.3704665275849066
the regulation term lambda/alpha is 1.2139248082424996
using Bay_non_info_prior option for model regressor
Convergence after  23  iterations
the alpha is 0.45488482778427697
the lambda is 0.31335374468884564
the regulation term lambda/alpha is 0.6888639179617779
using Bay_non_info_prior option for model regressor
Convergence after  31  iterations
the alpha is 0.34502799110487475
the lambda is 1521.3461275256757
the regulation term lambda/alpha is 4409.341174476615
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.348580260533298
the lambda is 0.399900212607963
the regulation term lambda/alpha is 1.1472256403622794
using Bay_non_info_prior option for model regressor
Convergence after  18  iterations
the alpha is 0.7224601642909598
the lambda is 0.23734104355105537
the regulation term lambda/alpha is 0.328517827393276
using Bay_non_info_prior option for model regressor
Convergence after  20  iterations
the alpha is 0.41346390240173275
the lambda is 0.3393380040956077
the regulation term lambda/alpha is 0.8207197826084892
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.8845526084316387
the lambda is 0.3228895332327114
the regulation term lambda/alpha is 0.3650314635386273
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.5198690829870352
the lambda is 0.43311266840701634
the regulation term lambda/alpha is 0.8331187265810489
using Bay_non_info_prior option for model regressor
Convergence after  18  iterations
the alpha is 0.2631706291449207
the lambda is 0.3479117917020756
the regulation term lambda/alpha is 1.3220008358550162
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.4669161837877362
the lambda is 0.42140378723495353
the regulation term lambda/alpha is 0.9025255535510138
using Bay_non_info_prior option for model regressor
Convergence after  21  iterations
the alpha is 0.2641222581174618
the lambda is 0.2664244273793512
the regulation term lambda/alpha is 1.0087163016032732
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 0.48042860144507543
the lambda is 0.35970114403522274
the regulation term lambda/alpha is 0.7487088465451099
using Bay_non_info_prior option for model regressor
Convergence after  26  iterations
the alpha is 0.3274198956950139
the lambda is 0.5638228815935181
the regulation term lambda/alpha is 1.72201777902559
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.7055435648080083
the lambda is 0.5881097378333838
the regulation term lambda/alpha is 0.8335555267851101
using Bay_non_info_prior option for model regressor
Convergence after  19  iterations
the alpha is 0.47488272242446916
the lambda is 0.3737586148432604
the regulation term lambda/alpha is 0.7870545656727009
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.5367779533107384
the lambda is 0.6764589630421242
the regulation term lambda/alpha is 1.2602212122719672
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.2339283579695989
the lambda is 0.49030060392309005
the regulation term lambda/alpha is 2.095943425494437
using Bay_non_info_prior option for model regressor
Convergence after  103  iterations
the alpha is 0.18067878477436294
the lambda is 43.8097436260686
the regulation term lambda/alpha is 242.4730921274433
using Bay_non_info_prior option for model regressor
Convergence after  802  iterations
the alpha is 0.12711295139372616
the lambda is 12.381863651303302
the regulation term lambda/alpha is 97.40835623390636
using Bay_non_info_prior option for model regressor
Convergence after  15  iterations
the alpha is 0.5031849488109639
the lambda is 0.46766925743543875
the regulation term lambda/alpha is 0.9294182159870851
using Bay_non_info_prior option for model regressor
Convergence after  35  iterations
the alpha is 0.5980130706342968
the lambda is 2119.2224094878356
the regulation term lambda/alpha is 3543.7727259707417
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.2614169553309865
the lambda is 0.4076955393404284
the regulation term lambda/alpha is 1.55956043028745
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 0.4264244550434787
the lambda is 0.41159305745238467
the regulation term lambda/alpha is 0.9652191673913687
using Bay_non_info_prior option for model regressor
Convergence after  59  iterations
the alpha is 0.3954438425284054
the lambda is 0.44533031241022614
the regulation term lambda/alpha is 1.126153108271593
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.5845447270287172
the lambda is 0.8455899641637604
the regulation term lambda/alpha is 1.4465787219772812
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.41484421571272057
the lambda is 0.46093549907603015
the regulation term lambda/alpha is 1.111105040440597
using Bay_non_info_prior option for model regressor
Convergence after  23  iterations
the alpha is 0.6587126798855054
the lambda is 0.7820512122547538
the regulation term lambda/alpha is 1.1872417764763334
using Bay_non_info_prior option for model regressor
Convergence after  27  iterations
the alpha is 0.4195166011954392
the lambda is 0.5315340670689638
the regulation term lambda/alpha is 1.267015573529924
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 6.602500306100114
the lambda is 0.3941277048120508
the regulation term lambda/alpha is 0.0596937048905416
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.6945605007408114
the lambda is 0.47047658027414013
the regulation term lambda/alpha is 0.6773730722843214
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.7904788213517775
the lambda is 0.35145309929843543
the regulation term lambda/alpha is 0.4446078627349238
using Bay_non_info_prior option for model regressor
Convergence after  17  iterations
the alpha is 0.2665227970668636
the lambda is 0.3160791402542708
the regulation term lambda/alpha is 1.1859366017946105
using Bay_non_info_prior option for model regressor
Convergence after  38  iterations
the alpha is 0.18250640398879195
the lambda is 1.8957194067814496
the regulation term lambda/alpha is 10.387139110460305
using Bay_non_info_prior option for model regressor
Convergence after  15  iterations
the alpha is 0.6039767939217678
the lambda is 1.0248584169783805
the regulation term lambda/alpha is 1.6968506526943299
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.42977655726414243
the lambda is 0.35195096132396747
the regulation term lambda/alpha is 0.8189161446226975
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.38052479897053454
the lambda is 0.553344138331686
the regulation term lambda/alpha is 1.4541605168143945
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.3343922562576622
the lambda is 0.2012570054200777
the regulation term lambda/alpha is 0.6018590492269097
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.9898919354879662
the lambda is 0.4965729314444731
the regulation term lambda/alpha is 0.5016435770836823
using Bay_non_info_prior option for model regressor
Convergence after  77  iterations
the alpha is 0.12688389888361978
the lambda is 0.600801535740786
the regulation term lambda/alpha is 4.735049450930351
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 1.0429359030506942
the lambda is 0.5802472948061704
the regulation term lambda/alpha is 0.5563594973659337
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 2.0094492754861473
the lambda is 0.3996275025377675
the regulation term lambda/alpha is 0.19887414298680686
using Bay_non_info_prior option for model regressor
Convergence after  18  iterations
the alpha is 0.28717918707898465
the lambda is 0.598804202925283
the regulation term lambda/alpha is 2.085123956982963
using Bay_non_info_prior option for model regressor
Convergence after  29  iterations
the alpha is 0.3714668245766004
the lambda is 0.3129893024272247
the regulation term lambda/alpha is 0.8425767301937969
using Bay_non_info_prior option for model regressor
Convergence after  43  iterations
the alpha is 0.21342963441508064
the lambda is 0.3802685245263194
the regulation term lambda/alpha is 1.7817044271685738
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.34802200973443304
the lambda is 0.5639015533771212
the regulation term lambda/alpha is 1.6203042842244963
using Bay_non_info_prior option for model regressor
Convergence after  55  iterations
the alpha is 0.15219374974594924
the lambda is 0.4318279081172615
the regulation term lambda/alpha is 2.837356388406844
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 3.314358937235113
the lambda is 0.4411761258288559
the regulation term lambda/alpha is 0.13311054541271003
using Bay_non_info_prior option for model regressor
Convergence after  17  iterations
the alpha is 0.42756043871247124
the lambda is 0.4494797158741523
the regulation term lambda/alpha is 1.0512659151246253
using Bay_non_info_prior option for model regressor
Convergence after  36  iterations
the alpha is 0.48467524458164474
the lambda is 0.36140189529985056
the regulation term lambda/alpha is 0.7456578386044875
using Bay_non_info_prior option for model regressor
Convergence after  19  iterations
the alpha is 0.2886130587829648
the lambda is 0.35825235949590195
the regulation term lambda/alpha is 1.241289500227727
using Bay_non_info_prior option for model regressor
Convergence after  17  iterations
the alpha is 0.6529891036857445
the lambda is 0.38279675334304897
the regulation term lambda/alpha is 0.5862222680016917
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.7788272969344912
the lambda is 0.3431149714509018
the regulation term lambda/alpha is 0.4405533457820777
using Bay_non_info_prior option for model regressor
Convergence after  30  iterations
the alpha is 0.17083767852637324
the lambda is 0.34031041848336613
the regulation term lambda/alpha is 1.9920103189111784
using Bay_non_info_prior option for model regressor
Convergence after  36  iterations
the alpha is 0.4991651322063959
the lambda is 0.5828268961583795
the regulation term lambda/alpha is 1.1676033812341502
using Bay_non_info_prior option for model regressor
Convergence after  20  iterations
the alpha is 1.0448927444276772
the lambda is 0.35480000631548747
the regulation term lambda/alpha is 0.339556388162905
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.4508187667836733
the lambda is 0.6224794812512405
the regulation term lambda/alpha is 1.3807754404109338
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.883250457102872
the lambda is 0.7601989791377206
the regulation term lambda/alpha is 0.8606833690539267
using Bay_non_info_prior option for model regressor
Convergence after  20  iterations
the alpha is 0.19239139514721892
the lambda is 0.6899754428570133
the regulation term lambda/alpha is 3.5863113437533958
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.33144138986992067
the lambda is 0.33997572554214844
the regulation term lambda/alpha is 1.025749154852317
using Bay_non_info_prior option for model regressor
Convergence after  23  iterations
the alpha is 2.2690991267344884
the lambda is 0.49448450566926727
the regulation term lambda/alpha is 0.2179210682527083
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.2238245544754903
the lambda is 0.3211837836852859
the regulation term lambda/alpha is 1.4349801094788142
using Bay_non_info_prior option for model regressor
Convergence after  38  iterations
the alpha is 0.20778968595764327
the lambda is 0.29428092180125237
the regulation term lambda/alpha is 1.4162441241729382
using Bay_non_info_prior option for model regressor
Convergence after  28  iterations
the alpha is 0.6629215907915093
the lambda is 0.3372490009756354
the regulation term lambda/alpha is 0.5087313577658104
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.4751259213047002
the lambda is 0.6905334103394557
the regulation term lambda/alpha is 1.4533692635485862
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.6382951492185301
the lambda is 0.47234170504425377
the regulation term lambda/alpha is 0.7400051615973355
using Bay_non_info_prior option for model regressor
Convergence after  18  iterations
the alpha is 0.31118869869116994
the lambda is 0.5695339984901714
the regulation term lambda/alpha is 1.830188566890691
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.5237747579196671
the lambda is 0.6750045253848197
the regulation term lambda/alpha is 1.2887305376566984
using Bay_non_info_prior option for model regressor
Convergence after  24  iterations
the alpha is 0.4665240594755387
the lambda is 0.1995428092925342
the regulation term lambda/alpha is 0.427722440546492
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.3663381435213819
the lambda is 0.39768102255752313
the regulation term lambda/alpha is 1.08555723609576
using Bay_non_info_prior option for model regressor
Convergence after  24  iterations
the alpha is 0.35870838351967504
the lambda is 0.5491929113432958
the regulation term lambda/alpha is 1.5310289264905703
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.9902166427466715
the lambda is 0.2392609558848324
the regulation term lambda/alpha is 0.24162485819382745
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.7355887973952181
the lambda is 0.6333459722032098
the regulation term lambda/alpha is 0.8610054618095615
using Bay_non_info_prior option for model regressor
Convergence after  22  iterations
the alpha is 0.17567762973002807
the lambda is 0.3921916565335774
the regulation term lambda/alpha is 2.2324507516197505
using Bay_non_info_prior option for model regressor
Convergence after  15  iterations
the alpha is 0.3659697704260414
the lambda is 0.3872416803467533
the regulation term lambda/alpha is 1.0581247732454742
using Bay_non_info_prior option for model regressor
Convergence after  29  iterations
the alpha is 0.27703283725038413
the lambda is 0.19411015812051252
the regulation term lambda/alpha is 0.7006756312612662
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 0.15539277215149336
the lambda is 0.47379951463512293
the regulation term lambda/alpha is 3.049044740467162
using Bay_non_info_prior option for model regressor
Convergence after  29  iterations
the alpha is 0.7522616247217538
the lambda is 0.2920433723857448
the regulation term lambda/alpha is 0.38822048445414936
20
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.7477681668909545
the lambda is 0.43923260278243476
the regulation term lambda/alpha is 0.5873914165250728
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.3544016037175347
the lambda is 0.32162719936066086
the regulation term lambda/alpha is 0.9075218508802355
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.47588461508986946
the lambda is 0.42882503782222936
the regulation term lambda/alpha is 0.9011113707494977
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.42656596150874365
the lambda is 0.7460712980954852
the regulation term lambda/alpha is 1.7490174214948289
using Bay_non_info_prior option for model regressor
Convergence after  17  iterations
the alpha is 0.245664657921297
the lambda is 1.4104637353406537
the regulation term lambda/alpha is 5.7414190029422985
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.7212430633094695
the lambda is 0.43699825879799314
the regulation term lambda/alpha is 0.6058959607774929
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.19282020185171905
the lambda is 0.45810150084326956
the regulation term lambda/alpha is 2.3757961896313895
using Bay_non_info_prior option for model regressor
Convergence after  23  iterations
the alpha is 0.32516586487452454
the lambda is 0.3309364956114364
the regulation term lambda/alpha is 1.0177467297778586
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.5553384901250402
the lambda is 0.5317822469150227
the regulation term lambda/alpha is 0.9575821888291706
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.25792318074479137
the lambda is 0.30306184860297086
the regulation term lambda/alpha is 1.1750081854908694
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 1.6112149604780228
the lambda is 0.3453941978377286
the regulation term lambda/alpha is 0.21436878772231327
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 0.24229558573626125
the lambda is 0.7700552966655894
the regulation term lambda/alpha is 3.178164778882082
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.23082608394680196
the lambda is 0.5173138001713377
the regulation term lambda/alpha is 2.2411409981315713
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 0.30575505581927237
the lambda is 0.4799287808978442
the regulation term lambda/alpha is 1.5696511693383854
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.224985633977838
the lambda is 0.4977245515763485
the regulation term lambda/alpha is 2.212250368062951
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.3522961674377527
the lambda is 0.7982834514921852
the regulation term lambda/alpha is 2.2659441835490135
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.16968491962552884
the lambda is 0.45700676874437407
the regulation term lambda/alpha is 2.6932668486564677
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.561533439949572
the lambda is 0.5679603364158397
the regulation term lambda/alpha is 1.0114452604404909
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 0.28938559110979256
the lambda is 0.384073109896445
the regulation term lambda/alpha is 1.3272019122428529
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.47232042742665314
the lambda is 0.5046028524853523
the regulation term lambda/alpha is 1.0683485684381337
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.2880945591053241
the lambda is 0.5007996866918163
the regulation term lambda/alpha is 1.7383170589789916
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.21748533182963758
the lambda is 0.751224072559453
the regulation term lambda/alpha is 3.4541367283928284
using Bay_non_info_prior option for model regressor
Convergence after  20  iterations
the alpha is 0.42796191861024546
the lambda is 0.4533783233453152
the regulation term lambda/alpha is 1.0593894073977572
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 0.31991162563838965
the lambda is 0.4412333672686914
the regulation term lambda/alpha is 1.379235175927733
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.7704749711396095
the lambda is 0.5805391049242193
the regulation term lambda/alpha is 0.7534821073623508
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.2781059853419621
the lambda is 0.41693254579520006
the regulation term lambda/alpha is 1.4991858060247618
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.2946975647827839
the lambda is 0.581663898155904
the regulation term lambda/alpha is 1.9737655402230339
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.24068538558552585
the lambda is 0.4527633895501942
the regulation term lambda/alpha is 1.881142008056438
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.25087762622543314
the lambda is 0.46281004480686266
the regulation term lambda/alpha is 1.8447641257215648
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.37382706574027985
the lambda is 0.3463525256322936
the regulation term lambda/alpha is 0.9265046792329518
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.2707156071696759
the lambda is 0.31632290145267583
the regulation term lambda/alpha is 1.168469393988115
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.23111471404853076
the lambda is 0.6126407269074846
the regulation term lambda/alpha is 2.6508079739952812
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.44342756066664135
the lambda is 0.4739997862158612
the regulation term lambda/alpha is 1.0689452534327322
using Bay_non_info_prior option for model regressor
Convergence after  15  iterations
the alpha is 0.43739506856046323
the lambda is 0.5271778195660334
the regulation term lambda/alpha is 1.2052669484844891
using Bay_non_info_prior option for model regressor
Convergence after  18  iterations
the alpha is 0.16218123970140205
the lambda is 0.5705984699932966
the regulation term lambda/alpha is 3.5182766579158398
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.21924552463157013
the lambda is 0.39631354114497935
the regulation term lambda/alpha is 1.8076243143889124
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.457794630421099
the lambda is 0.4803440289235873
the regulation term lambda/alpha is 1.0492565814538855
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.42678755029545096
the lambda is 0.21231060815852848
the regulation term lambda/alpha is 0.49746204642462705
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.2821413262554302
the lambda is 0.4035167987691841
the regulation term lambda/alpha is 1.430193882351958
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.2861979820158712
the lambda is 0.17694554982482355
the regulation term lambda/alpha is 0.6182627444766923
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.17973862524723824
the lambda is 0.4195678584639991
the regulation term lambda/alpha is 2.334322174139617
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 0.22179863372330336
the lambda is 0.43229805744287525
the regulation term lambda/alpha is 1.9490564490229125
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2930529821184912
the lambda is 0.25952357523905045
the regulation term lambda/alpha is 0.8855858533257183
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.17949771704684922
the lambda is 0.23581733529577847
the regulation term lambda/alpha is 1.3137623094907092
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.6444051196065118
the lambda is 0.3705272418019238
the regulation term lambda/alpha is 0.5749911515727498
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.42996660200039344
the lambda is 0.5195267262542685
the regulation term lambda/alpha is 1.2082955369956692
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.5899426503187919
the lambda is 0.35357505288946606
the regulation term lambda/alpha is 0.5993380080223085
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.30036158229350923
the lambda is 0.6573786260120817
the regulation term lambda/alpha is 2.1886241941877254
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.4527053463994855
the lambda is 0.2365713536988956
the regulation term lambda/alpha is 0.5225724758508495
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.5865114141109847
the lambda is 0.559496334909873
the regulation term lambda/alpha is 0.9539393802897079
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.39628200544068104
the lambda is 0.5952769168096191
the regulation term lambda/alpha is 1.5021548004624838
using Bay_non_info_prior option for model regressor
Convergence after  18  iterations
the alpha is 0.22703032176815496
the lambda is 1.3050143612800484
the regulation term lambda/alpha is 5.748194122777744
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.49202530155001795
the lambda is 0.5346819134996497
the regulation term lambda/alpha is 1.086695972372257
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.2747594770243129
the lambda is 0.771680236054732
the regulation term lambda/alpha is 2.8085664029213726
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.26961501923646597
the lambda is 0.39865671971757777
the regulation term lambda/alpha is 1.478614658955389
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.4979078736339793
the lambda is 0.5988202850825343
the regulation term lambda/alpha is 1.202672857354205
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.3133282027529484
the lambda is 0.2720946610755071
the regulation term lambda/alpha is 0.8684014355708894
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.322321082200496
the lambda is 0.25716992099230634
the regulation term lambda/alpha is 0.7978687563239716
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.39037062530795447
the lambda is 0.2583202646166823
the regulation term lambda/alpha is 0.6617307959913719
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.25377257980932516
the lambda is 0.2429113636076886
the regulation term lambda/alpha is 0.9572009859780862
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.4543568421747532
the lambda is 0.519256825502651
the regulation term lambda/alpha is 1.14283923406382
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.35618976509623035
the lambda is 0.584022384041556
the regulation term lambda/alpha is 1.6396383087643551
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.5990060975114653
the lambda is 0.36731264409369085
the regulation term lambda/alpha is 0.6132035143209211
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.32577704953719255
the lambda is 0.4040720844300043
the regulation term lambda/alpha is 1.2403331818617662
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.24382673720978046
the lambda is 0.2120425965151784
the regulation term lambda/alpha is 0.8696445637655561
using Bay_non_info_prior option for model regressor
Convergence after  31  iterations
the alpha is 0.19511901233730206
the lambda is 0.20784583561750153
the regulation term lambda/alpha is 1.0652259517293918
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.19316947407479373
the lambda is 0.5092361326969599
the regulation term lambda/alpha is 2.6362143145856862
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.16331731615294892
the lambda is 0.8052129433274036
the regulation term lambda/alpha is 4.930358655742974
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.19149324208382182
the lambda is 0.32854817532165226
the regulation term lambda/alpha is 1.7157168145800037
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.5981805452548101
the lambda is 0.7588116618454297
the regulation term lambda/alpha is 1.2685328332137493
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.4628394837819547
the lambda is 0.3521567611839197
the regulation term lambda/alpha is 0.7608615373657749
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.3673131858427348
the lambda is 0.7048118664846953
the regulation term lambda/alpha is 1.918830833332677
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.2631947968260022
the lambda is 0.34449907350301706
the regulation term lambda/alpha is 1.3089129331487697
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.14293359554154714
the lambda is 0.24544166314983498
the regulation term lambda/alpha is 1.7171726648301615
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.5946894893777044
the lambda is 0.2923691509025897
the regulation term lambda/alpha is 0.4916332911962694
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.4431924011774865
the lambda is 0.48169596223341965
the regulation term lambda/alpha is 1.0868777554706168
using Bay_non_info_prior option for model regressor
Convergence after  15  iterations
the alpha is 0.25647059437120945
the lambda is 0.38095360036708514
the regulation term lambda/alpha is 1.4853695071790645
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.4114425601731464
the lambda is 1.2990141935240254
the regulation term lambda/alpha is 3.157218818046836
using Bay_non_info_prior option for model regressor
Convergence after  15  iterations
the alpha is 0.619967815019398
the lambda is 1.2023508147602986
the regulation term lambda/alpha is 1.939376183137311
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 0.29450631643030817
the lambda is 0.337806480137642
the regulation term lambda/alpha is 1.1470262649445766
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.3694857306622974
the lambda is 0.992838216680391
the regulation term lambda/alpha is 2.68708135196654
using Bay_non_info_prior option for model regressor
Convergence after  19  iterations
the alpha is 1.702541841966434
the lambda is 0.43214250055512715
the regulation term lambda/alpha is 0.25382195603251845
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.24010568082185738
the lambda is 0.2991356094232465
the regulation term lambda/alpha is 1.245849779144482
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.44505148105994286
the lambda is 0.2676842895862999
the regulation term lambda/alpha is 0.6014681468956761
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 1.5312368882336231
the lambda is 0.5021666585673237
the regulation term lambda/alpha is 0.32794838109379937
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.20643986065966444
the lambda is 0.5597491604628557
the regulation term lambda/alpha is 2.711439344486165
using Bay_non_info_prior option for model regressor
Convergence after  21  iterations
the alpha is 0.38019625318712713
the lambda is 0.19052114093621528
the regulation term lambda/alpha is 0.5011126210190281
using Bay_non_info_prior option for model regressor
Convergence after  24  iterations
the alpha is 0.6745111433739649
the lambda is 0.42618301874882447
the regulation term lambda/alpha is 0.6318398486599035
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.4312355258591963
the lambda is 0.3315948581595255
the regulation term lambda/alpha is 0.7689414212775116
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.21446941687737095
the lambda is 0.5826220489061943
the regulation term lambda/alpha is 2.7165740336736457
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.6136695616263605
the lambda is 0.6717639280847831
the regulation term lambda/alpha is 1.0946671793602727
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.3999114785361629
the lambda is 0.3390783097709205
the regulation term lambda/alpha is 0.8478834141297562
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.7819807264926023
the lambda is 0.5148895747346373
the regulation term lambda/alpha is 0.6584427944203408
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.2848625258823831
the lambda is 0.5232653194337613
the regulation term lambda/alpha is 1.8369047238239136
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.21428935886568135
the lambda is 0.5534283481454844
the regulation term lambda/alpha is 2.5826216993461566
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.3961981124920041
the lambda is 0.4194188056678788
the regulation term lambda/alpha is 1.0586087930349324
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.4002370531764403
the lambda is 0.6253186293377644
the regulation term lambda/alpha is 1.5623706610244785
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.23283167331798343
the lambda is 0.4853583661319169
the regulation term lambda/alpha is 2.084589090544619
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.678928441962176
the lambda is 0.411158253796763
the regulation term lambda/alpha is 0.6055988059779489
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.3145138899952276
the lambda is 0.40318252101964847
the regulation term lambda/alpha is 1.2819227825701633
30
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.3073595234533389
the lambda is 0.29012480741531455
the regulation term lambda/alpha is 0.9439265266799491
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.3153151203486369
the lambda is 0.43125180691357395
the regulation term lambda/alpha is 1.3676851475969451
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.28079006776552073
the lambda is 0.39571522811774756
the regulation term lambda/alpha is 1.4092921137374324
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.2924188554053947
the lambda is 0.3335239008459294
the regulation term lambda/alpha is 1.1405690661894863
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.3008735563626008
the lambda is 0.25975704770390906
the regulation term lambda/alpha is 0.8633428967445056
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.25183449316573847
the lambda is 0.6570672651675848
the regulation term lambda/alpha is 2.609123384599872
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.3464889240863104
the lambda is 0.668053106065713
the regulation term lambda/alpha is 1.9280648229301003
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.20474242470427328
the lambda is 0.3743694167763942
the regulation term lambda/alpha is 1.8284897100204192
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.3863155164617247
the lambda is 0.35498537899082444
the regulation term lambda/alpha is 0.918900131794203
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.3719670298620104
the lambda is 0.34065687546439427
the regulation term lambda/alpha is 0.9158254579465515
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3502794649623929
the lambda is 0.3907945789663756
the regulation term lambda/alpha is 1.1156651133069777
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.7873140019684151
the lambda is 0.6837513557747869
the regulation term lambda/alpha is 0.8684608098741995
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.23698720222215922
the lambda is 0.3792371515329426
the regulation term lambda/alpha is 1.6002431691540617
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.513725418677371
the lambda is 0.6097588186677018
the regulation term lambda/alpha is 1.1869352702803315
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.41175557545743746
the lambda is 0.623629947566383
the regulation term lambda/alpha is 1.514563456423304
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.3135998469704404
the lambda is 0.40500848461752165
the regulation term lambda/alpha is 1.2914817673865042
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.3436513826423277
the lambda is 0.4863490474030291
the regulation term lambda/alpha is 1.4152396060900505
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.2548915865824429
the lambda is 0.424287901388299
the regulation term lambda/alpha is 1.6645818211464039
using Bay_non_info_prior option for model regressor
Convergence after  17  iterations
the alpha is 0.3453511421373441
the lambda is 0.32673963382708776
the regulation term lambda/alpha is 0.9461084500978583
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.6909025547274483
the lambda is 0.33467231292535554
the regulation term lambda/alpha is 0.4843987196680424
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.1621678689268254
the lambda is 0.5277351031398742
the regulation term lambda/alpha is 3.254251946654135
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.31672524699581284
the lambda is 0.4235040049758897
the regulation term lambda/alpha is 1.3371337112935884
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.31741539784788064
the lambda is 0.4761949018173319
the regulation term lambda/alpha is 1.500226217902464
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4082702185125421
the lambda is 0.3843102207678965
the regulation term lambda/alpha is 0.9413133834940509
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.21169674278585837
the lambda is 0.4696380620217695
the regulation term lambda/alpha is 2.2184472743486254
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.17942790117057214
the lambda is 0.2943261430105959
the regulation term lambda/alpha is 1.640358835445533
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.3081364110798043
the lambda is 0.419165354276024
the regulation term lambda/alpha is 1.360323996788112
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.4632613996671984
the lambda is 0.7804108154450463
the regulation term lambda/alpha is 1.6846014280613155
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.3099776593985891
the lambda is 0.4557674016499028
the regulation term lambda/alpha is 1.4703233856729265
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.42053937209918724
the lambda is 0.40448483495032084
the regulation term lambda/alpha is 0.961823937985336
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.9030895160761261
the lambda is 0.774778029072961
the regulation term lambda/alpha is 0.8579194147212876
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.39544234555415436
the lambda is 0.5543463790417832
the regulation term lambda/alpha is 1.4018386884311749
using Bay_non_info_prior option for model regressor
Convergence after  15  iterations
the alpha is 0.26299307399976585
the lambda is 0.4803387842727372
the regulation term lambda/alpha is 1.8264313085034507
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.28153912270452586
the lambda is 0.4470362258636551
the regulation term lambda/alpha is 1.5878298602671208
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.31787625801888136
the lambda is 0.34687094273864
the regulation term lambda/alpha is 1.0912137474514891
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.32179404755785207
the lambda is 0.9472135869935757
the regulation term lambda/alpha is 2.943539801876807
using Bay_non_info_prior option for model regressor
Convergence after  16  iterations
the alpha is 0.29053509003370587
the lambda is 0.48164802423267583
the regulation term lambda/alpha is 1.6577963927758206
using Bay_non_info_prior option for model regressor
Convergence after  19  iterations
the alpha is 0.3742908914524955
the lambda is 0.40028641187957636
the regulation term lambda/alpha is 1.069452719851667
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.31639318464961175
the lambda is 0.3718570021408997
the regulation term lambda/alpha is 1.1753002914797646
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.28877780853903007
the lambda is 0.7113664928385864
the regulation term lambda/alpha is 2.4633696627780903
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.41506601108096314
the lambda is 0.5393561275145398
the regulation term lambda/alpha is 1.299446625634043
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.33484163382875765
the lambda is 0.3120872248418452
the regulation term lambda/alpha is 0.9320442660408552
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.43417439794778434
the lambda is 0.3030014933984846
the regulation term lambda/alpha is 0.6978796880485911
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.31533918438860964
the lambda is 0.35730073071133217
the regulation term lambda/alpha is 1.1330679737885383
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.3861865321942437
the lambda is 0.39137807354744636
the regulation term lambda/alpha is 1.013443092703687
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.5887271657760434
the lambda is 0.5170240399977061
the regulation term lambda/alpha is 0.8782065276641
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.5226362359955103
the lambda is 0.33389494752718046
the regulation term lambda/alpha is 0.6388668150634101
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.7149375603500783
the lambda is 0.5598374142546266
the regulation term lambda/alpha is 0.7830577735774508
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.269483085491961
the lambda is 0.8814256449270333
the regulation term lambda/alpha is 3.270801368916816
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.6527351095025055
the lambda is 0.38190638277058875
the regulation term lambda/alpha is 0.5850863194131936
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2671826659080779
the lambda is 0.3253306797169515
the regulation term lambda/alpha is 1.2176339307463868
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.2226874022578545
the lambda is 0.4742751167811416
the regulation term lambda/alpha is 2.1297797359545663
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.5472924182295474
the lambda is 0.3953235355829803
the regulation term lambda/alpha is 0.7223259859177735
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.33593614410392447
the lambda is 0.3919233155006288
the regulation term lambda/alpha is 1.1666601596146924
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.4700518408733371
the lambda is 0.8909928180727597
the regulation term lambda/alpha is 1.8955203247738195
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.3100628289121137
the lambda is 0.3435341883032335
the regulation term lambda/alpha is 1.1079502483692012
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.2063916824878624
the lambda is 0.9218022760624317
the regulation term lambda/alpha is 4.466276280860502
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.978625913250825
the lambda is 0.7708913671680013
the regulation term lambda/alpha is 0.7877283410647019
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.25109929766347927
the lambda is 0.4230029347850521
the regulation term lambda/alpha is 1.684604213238208
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.6306743106400595
the lambda is 0.61938309144191
the regulation term lambda/alpha is 0.9820965924762493
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.18171146910895639
the lambda is 0.3374623519580101
the regulation term lambda/alpha is 1.8571329240404941
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.5525748967842382
the lambda is 0.39644183491501717
the regulation term lambda/alpha is 0.7174445260219888
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.6364941806708989
the lambda is 0.6333233120036722
the regulation term lambda/alpha is 0.9950182283459615
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.47598146769440697
the lambda is 0.3766829163980825
the regulation term lambda/alpha is 0.7913814758853661
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4538846276539345
the lambda is 0.49465871882698803
the regulation term lambda/alpha is 1.0898336023932096
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.4462122260103882
the lambda is 0.7467735513749448
the regulation term lambda/alpha is 1.6735837967773644
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.24215912065548018
the lambda is 0.3195332806329012
the regulation term lambda/alpha is 1.3195178433419457
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.42136632832538723
the lambda is 0.535067720515529
the regulation term lambda/alpha is 1.2698397677906985
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.6067084999465066
the lambda is 0.5111738964126877
the regulation term lambda/alpha is 0.8425362368546969
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.3125072437745514
the lambda is 0.4178975717934547
the regulation term lambda/alpha is 1.3372412323822287
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.2801714596038801
the lambda is 0.34810209172382106
the regulation term lambda/alpha is 1.2424609280901935
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.35884467654126395
the lambda is 0.42858758808349406
the regulation term lambda/alpha is 1.1943540370013273
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.4135525800121992
the lambda is 0.35033627927834354
the regulation term lambda/alpha is 0.8471384201448076
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.1899852403226733
the lambda is 0.300167903414202
the regulation term lambda/alpha is 1.5799538053818976
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.16390135163355377
the lambda is 0.4616108736083207
the regulation term lambda/alpha is 2.816394550792832
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.35418207458925904
the lambda is 0.42940512065787445
the regulation term lambda/alpha is 1.212385243256172
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.36120502687064693
the lambda is 0.5153148559423822
the regulation term lambda/alpha is 1.426654718531712
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.30089136844035036
the lambda is 0.2994603612073234
the regulation term lambda/alpha is 0.9952441067337874
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.15339171604043217
the lambda is 0.41382814305825355
the regulation term lambda/alpha is 2.697851968415123
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.28155101842031754
the lambda is 0.3880145953659749
the regulation term lambda/alpha is 1.3781324519548412
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.45299531303082907
the lambda is 0.7255365313471214
the regulation term lambda/alpha is 1.6016424684238273
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.4010364760455762
the lambda is 0.8581708622888958
the regulation term lambda/alpha is 2.1398823138256584
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.2708759869810611
the lambda is 0.6843309825386208
the regulation term lambda/alpha is 2.5263626730651003
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.23667723292630224
the lambda is 0.5930438374145225
the regulation term lambda/alpha is 2.505707161107412
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.20781944287985962
the lambda is 0.4171697812261296
the regulation term lambda/alpha is 2.0073664689174215
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3807653630001497
the lambda is 0.3991809613014134
the regulation term lambda/alpha is 1.048364688836617
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2657805473820013
the lambda is 0.49048809663111737
the regulation term lambda/alpha is 1.8454627378208692
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.6831222593918378
the lambda is 0.330748016905801
the regulation term lambda/alpha is 0.4841710431164336
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.7626747518541286
the lambda is 0.575947378751227
the regulation term lambda/alpha is 0.7551677531622083
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3263083318563561
the lambda is 0.5568561533471434
the regulation term lambda/alpha is 1.7065336645840739
using Bay_non_info_prior option for model regressor
Convergence after  13  iterations
the alpha is 0.1983858896780716
the lambda is 0.32750023270824297
the regulation term lambda/alpha is 1.650824225652793
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.23508230871536415
the lambda is 0.23617744611095043
the regulation term lambda/alpha is 1.0046585274815907
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2061480067265723
the lambda is 0.4484981540234816
the regulation term lambda/alpha is 2.175612372611268
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.47014323768581956
the lambda is 0.6520290558820597
the regulation term lambda/alpha is 1.3868731986692706
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.4154628662658688
the lambda is 0.30110069767282055
the regulation term lambda/alpha is 0.7247355230061306
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.2021320701338685
the lambda is 0.28158508711850605
the regulation term lambda/alpha is 1.3930747700353399
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.4492716451908775
the lambda is 0.3206560903092662
the regulation term lambda/alpha is 0.7137242996339827
using Bay_non_info_prior option for model regressor
Convergence after  15  iterations
the alpha is 0.19428276630613062
the lambda is 0.3591058020694703
the regulation term lambda/alpha is 1.8483667331750293
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.6818519609342318
the lambda is 0.4840058977201777
the regulation term lambda/alpha is 0.7098401492561852
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.3079563276301272
the lambda is 0.744670114403038
the regulation term lambda/alpha is 2.4181029827626355
40
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.41806855249821756
the lambda is 0.5060576071005018
the regulation term lambda/alpha is 1.21046561401592
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.19415655382541122
the lambda is 0.40859503740246744
the regulation term lambda/alpha is 2.1044617312783727
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.35859926280456283
the lambda is 0.5758033283014188
the regulation term lambda/alpha is 1.6057013720500382
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.20985702047938962
the lambda is 0.45703803584210584
the regulation term lambda/alpha is 2.177854402002206
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.19876786776802688
the lambda is 0.6228090162388429
the regulation term lambda/alpha is 3.1333485800919068
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3142609608107154
the lambda is 0.5382310365440046
the regulation term lambda/alpha is 1.712688191226495
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.19486773050723163
the lambda is 0.26338209695078574
the regulation term lambda/alpha is 1.3515942134965826
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.18955690468906355
the lambda is 0.46342572581670544
the regulation term lambda/alpha is 2.444784201223785
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3909042705208075
the lambda is 0.7357910998871837
the regulation term lambda/alpha is 1.882279512850751
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.33068427856550275
the lambda is 0.4540653648808017
the regulation term lambda/alpha is 1.373108412805477
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3616612030142244
the lambda is 0.4936370102700118
the regulation term lambda/alpha is 1.364915578878381
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.28270449505951356
the lambda is 0.2793708993023542
the regulation term lambda/alpha is 0.988208196843642
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.28965575386114817
the lambda is 0.3979368931028244
the regulation term lambda/alpha is 1.3738269922080772
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.4313310374357135
the lambda is 0.5517236836207482
the regulation term lambda/alpha is 1.2791189034315165
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3235291785149865
the lambda is 0.5996860113627464
the regulation term lambda/alpha is 1.853576280554762
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3449478727182712
the lambda is 0.5147705789623325
the regulation term lambda/alpha is 1.4923141137407747
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5284599451147849
the lambda is 0.4292826070061489
the regulation term lambda/alpha is 0.8123276153179518
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.26279523183501263
the lambda is 0.6010472679471731
the regulation term lambda/alpha is 2.287131557716089
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.4157125522541459
the lambda is 0.4651349369701297
the regulation term lambda/alpha is 1.118885957250984
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.48052854678184526
the lambda is 0.46801337728925674
the regulation term lambda/alpha is 0.9739554089420825
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.18247992938151927
the lambda is 0.3399319338450163
the regulation term lambda/alpha is 1.8628456016897332
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2602170852715055
the lambda is 0.4404082481643064
the regulation term lambda/alpha is 1.6924647653507952
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.28414362478955385
the lambda is 0.3620355883489195
the regulation term lambda/alpha is 1.2741288445836327
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.7173118110690417
the lambda is 0.4565320406722186
the regulation term lambda/alpha is 0.6364485201935105
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.23979565250768553
the lambda is 0.4084435080484909
the regulation term lambda/alpha is 1.7032982198682693
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.2207278626335349
the lambda is 0.32433473419802566
the regulation term lambda/alpha is 1.4693873728868787
using Bay_non_info_prior option for model regressor
Convergence after  14  iterations
the alpha is 0.22007799027244368
the lambda is 0.637426429956465
the regulation term lambda/alpha is 2.8963660980699086
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.32089325025613963
the lambda is 0.43531196009287987
the regulation term lambda/alpha is 1.3565631553340878
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.42895472381881883
the lambda is 0.3070467514475962
the regulation term lambda/alpha is 0.7158022383203456
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3457333587872584
the lambda is 0.6486335217312263
the regulation term lambda/alpha is 1.8761091611363796
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.26990366734501947
the lambda is 0.44915300757357335
the regulation term lambda/alpha is 1.664123396290938
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2475468656099328
the lambda is 0.43002424882840773
the regulation term lambda/alpha is 1.7371427740313632
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.274501047414052
the lambda is 0.5868805438144423
the regulation term lambda/alpha is 2.137990180158414
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.4204618914464041
the lambda is 0.4964005056768612
the regulation term lambda/alpha is 1.1806076026752996
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.24271342742344457
the lambda is 0.3766353877417344
the regulation term lambda/alpha is 1.5517698865693403
using Bay_non_info_prior option for model regressor
Convergence after  12  iterations
the alpha is 0.25027513913118227
the lambda is 0.39010900827362816
the regulation term lambda/alpha is 1.5587205729976705
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.30927972165582757
the lambda is 0.3568040284251307
the regulation term lambda/alpha is 1.1536612439860803
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.16772019357782628
the lambda is 0.3178948322903222
the regulation term lambda/alpha is 1.8953879405273357
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.6871238541845641
the lambda is 0.5146960108746584
the regulation term lambda/alpha is 0.7490585689030803
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.43254010081678823
the lambda is 0.5282350240176911
the regulation term lambda/alpha is 1.221239425015616
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.39739193290828934
the lambda is 0.33338854526454287
the regulation term lambda/alpha is 0.8389414018162334
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.20983832393871144
the lambda is 0.4117245202781007
the regulation term lambda/alpha is 1.9621035497707997
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.23173526321602766
the lambda is 0.4457104191934148
the regulation term lambda/alpha is 1.9233603596096454
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2460734542187565
the lambda is 0.5787352608580664
the regulation term lambda/alpha is 2.3518801030182526
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.25943692024299886
the lambda is 0.4502700189394036
the regulation term lambda/alpha is 1.7355664664754074
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.21361985186193028
the lambda is 0.7479099052549283
the regulation term lambda/alpha is 3.5011254746975844
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.293123895565464
the lambda is 0.6428265606244076
the regulation term lambda/alpha is 2.1930199835272175
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.24828687992985596
the lambda is 0.34788658117353305
the regulation term lambda/alpha is 1.401147661414148
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.31797048446364357
the lambda is 0.4999239330322278
the regulation term lambda/alpha is 1.5722337684125165
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2981674983392933
the lambda is 0.35223229551662244
the regulation term lambda/alpha is 1.1813235764409415
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.27896634535033693
the lambda is 0.4404071487812174
the regulation term lambda/alpha is 1.5787106800576132
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.33468996280838786
the lambda is 0.3518803683598895
the regulation term lambda/alpha is 1.0513621783194713
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.515163048076036
the lambda is 0.842596430360842
the regulation term lambda/alpha is 1.6355917481031716
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.5126823756520232
the lambda is 0.7608424134594549
the regulation term lambda/alpha is 1.4840424590211918
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3422059577953429
the lambda is 0.34367715791905795
the regulation term lambda/alpha is 1.0042991657222837
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2699491138384687
the lambda is 0.5611664734548629
the regulation term lambda/alpha is 2.0787861292652807
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.7317524495753777
the lambda is 0.4806444739076437
the regulation term lambda/alpha is 0.6568402663859243
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4458180680218326
the lambda is 0.6949083353128381
the regulation term lambda/alpha is 1.5587262723475064
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.27105201366764925
the lambda is 0.44195343545270366
the regulation term lambda/alpha is 1.6305115371494912
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.42749610853131464
the lambda is 0.44714559191148856
the regulation term lambda/alpha is 1.0459641222178155
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.6505216134857715
the lambda is 0.5592448778637326
the regulation term lambda/alpha is 0.8596868517051426
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.42291487076719425
the lambda is 0.5935197160679818
the regulation term lambda/alpha is 1.4034023324630311
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.4153620371502928
the lambda is 0.5682395717080817
the regulation term lambda/alpha is 1.3680585149443312
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.17790125258336723
the lambda is 0.2881514000292553
the regulation term lambda/alpha is 1.6197266508521249
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.20690676748836093
the lambda is 0.5876605534404931
the regulation term lambda/alpha is 2.840219102420372
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.4419525226645816
the lambda is 0.4336639804243815
the regulation term lambda/alpha is 0.9812456274935878
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2258326444177338
the lambda is 0.3350281706727822
the regulation term lambda/alpha is 1.4835241004974642
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.5649047094950663
the lambda is 0.4376509849843196
the regulation term lambda/alpha is 0.7747341766286724
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.37605856733180437
the lambda is 0.6572407591982156
the regulation term lambda/alpha is 1.7477085121645912
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.39592713572480676
the lambda is 0.4712592777365824
the regulation term lambda/alpha is 1.1902676912353287
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.19907060434719173
the lambda is 0.38924937220298045
the regulation term lambda/alpha is 1.955333252136538
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3987446369184756
the lambda is 0.3564426940739192
the regulation term lambda/alpha is 0.8939121961075926
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.26716922308662266
the lambda is 0.36364617166960983
the regulation term lambda/alpha is 1.3611080178636707
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.3902812411423074
the lambda is 0.8789169741575896
the regulation term lambda/alpha is 2.2520092730696017
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.17217265034929105
the lambda is 0.46502114244643133
the regulation term lambda/alpha is 2.700900180737365
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.300571653748465
the lambda is 0.3868199693988693
the regulation term lambda/alpha is 1.2869476032579628
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.438215709587258
the lambda is 0.5883796069598058
the regulation term lambda/alpha is 1.3426711870142278
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.388697021261809
the lambda is 0.31673170341411766
the regulation term lambda/alpha is 0.8148549798141655
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2513096269836503
the lambda is 0.47523620752702717
the regulation term lambda/alpha is 1.8910386093484
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.4043662375436577
the lambda is 0.5129820120800881
the regulation term lambda/alpha is 1.2686074267629814
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.23731482085957895
the lambda is 0.30512286978362746
the regulation term lambda/alpha is 1.2857303588475457
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.212796561892175
the lambda is 0.515485185316265
the regulation term lambda/alpha is 2.422431926214408
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.34347669831286376
the lambda is 0.4243897393301413
the regulation term lambda/alpha is 1.2355706847501369
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.28882354220548084
the lambda is 0.3604149903792015
the regulation term lambda/alpha is 1.2478726201716188
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.202808543798318
the lambda is 0.37004653714908814
the regulation term lambda/alpha is 1.824610197473136
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.32270651703731923
the lambda is 0.4793517695241339
the regulation term lambda/alpha is 1.4854108740193168
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.30796389793773865
the lambda is 0.43019758624904275
the regulation term lambda/alpha is 1.3969091478898485
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.5473694019021486
the lambda is 0.4190895372371793
the regulation term lambda/alpha is 0.7656429748919333
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.332173814460938
the lambda is 0.5518799459608922
the regulation term lambda/alpha is 1.6614191785601766
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.5137062521536434
the lambda is 0.4779123833818382
the regulation term lambda/alpha is 0.9303223026355154
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.5035801439014118
the lambda is 0.4989665372295009
the regulation term lambda/alpha is 0.9908383864459633
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.38017021420421715
the lambda is 0.5898462038552427
the regulation term lambda/alpha is 1.5515318712959276
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.38950669851587205
the lambda is 0.34994019845108165
the regulation term lambda/alpha is 0.8984189483376033
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3578405918510039
the lambda is 0.48704394155855646
the regulation term lambda/alpha is 1.3610639839354772
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 1.0534816836521208
the lambda is 0.42317842747756895
the regulation term lambda/alpha is 0.401695097356159
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3271928449877717
the lambda is 0.45086012791309826
the regulation term lambda/alpha is 1.377964508759195
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3538807036222082
the lambda is 0.3963984640469702
the regulation term lambda/alpha is 1.1201471569078618
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.4836708874583793
the lambda is 0.5696873945449934
the regulation term lambda/alpha is 1.177840985093435
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.17436323363469378
the lambda is 0.4887532180070665
the regulation term lambda/alpha is 2.803074982143582
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.5025768630876131
the lambda is 0.5141896584798441
the regulation term lambda/alpha is 1.0231065061787505
50
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3930935699308753
the lambda is 0.2985165042938278
the regulation term lambda/alpha is 0.7594031730061658
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.6492571098150183
the lambda is 0.540138867943206
the regulation term lambda/alpha is 0.831933697417805
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.20297097916250442
the lambda is 0.3459020623039677
the regulation term lambda/alpha is 1.7041946771465715
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3630488767526841
the lambda is 0.4678706062116081
the regulation term lambda/alpha is 1.288726218895123
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.543494228907424
the lambda is 0.4226419196817316
the regulation term lambda/alpha is 0.7776382842764687
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.22004077157146812
the lambda is 0.577895326075202
the regulation term lambda/alpha is 2.626310214911715
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5804657183083276
the lambda is 0.3903364532168989
the regulation term lambda/alpha is 0.6724539295007304
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.18688616270473868
the lambda is 0.46252072670062216
the regulation term lambda/alpha is 2.4748794667658642
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.6411582297979033
the lambda is 0.7815357329572438
the regulation term lambda/alpha is 1.2189436189621838
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3790801687888315
the lambda is 0.515260771355942
the regulation term lambda/alpha is 1.359239585131056
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.40566067530470307
the lambda is 0.589193919477317
the regulation term lambda/alpha is 1.452430455662869
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.32948641887768937
the lambda is 0.4801062380750991
the regulation term lambda/alpha is 1.4571351368910967
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.48225432268183704
the lambda is 0.7898336491556098
the regulation term lambda/alpha is 1.637794856380573
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3096809128589382
the lambda is 0.2855718076144306
the regulation term lambda/alpha is 0.92214855923171
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.6353558470630987
the lambda is 0.4585258046150599
the regulation term lambda/alpha is 0.7216834577576849
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4167020856434781
the lambda is 0.4754726393973172
the regulation term lambda/alpha is 1.1410373400533493
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.49707176388752844
the lambda is 0.7872729696023755
the regulation term lambda/alpha is 1.5838215460987448
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.23208091615012877
the lambda is 0.3401957946421844
the regulation term lambda/alpha is 1.4658499297810346
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.33577925958915456
the lambda is 0.4556662364246682
the regulation term lambda/alpha is 1.3570410423270405
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3138534123349986
the lambda is 0.4054261094186891
the regulation term lambda/alpha is 1.2917690026130682
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.44134314755717163
the lambda is 0.4254331212380407
the regulation term lambda/alpha is 0.9639508930699554
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.25039840997511764
the lambda is 0.392077318794386
the regulation term lambda/alpha is 1.5658139316194026
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.42317325268178063
the lambda is 0.5252134009547635
the regulation term lambda/alpha is 1.2411309023581305
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.376307197577141
the lambda is 0.7662413554617445
the regulation term lambda/alpha is 2.03621232970084
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.46897405222742744
the lambda is 0.5003581012470967
the regulation term lambda/alpha is 1.0669206513038585
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3168064683129209
the lambda is 0.6281678700983736
the regulation term lambda/alpha is 1.9828126409272366
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2831222998265393
the lambda is 0.5775791832337029
the regulation term lambda/alpha is 2.040034231099312
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2597674595881115
the lambda is 0.4571763892164676
the regulation term lambda/alpha is 1.759944798095068
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2574336967278736
the lambda is 0.5851487438915531
the regulation term lambda/alpha is 2.2730075795403684
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.40234663364834333
the lambda is 0.4783625923043616
the regulation term lambda/alpha is 1.1889315140199666
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4022238594117155
the lambda is 0.5571790661207333
the regulation term lambda/alpha is 1.385246183395615
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.35071996999563143
the lambda is 0.46035881824855734
the regulation term lambda/alpha is 1.312610793888616
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.418719664676083
the lambda is 0.4254779598555735
the regulation term lambda/alpha is 1.0161403816195704
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3936882961324255
the lambda is 0.5149854635649361
the regulation term lambda/alpha is 1.308104580766378
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2727821229573262
the lambda is 0.37886414365479937
the regulation term lambda/alpha is 1.3888891967970665
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.3033282684190694
the lambda is 0.7764374891084067
the regulation term lambda/alpha is 2.5597267711155216
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.31551316669494556
the lambda is 0.405993245873357
the regulation term lambda/alpha is 1.2867711675116629
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.6005681666000316
the lambda is 0.40770694057768325
the regulation term lambda/alpha is 0.6788687167450372
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.266068685532604
the lambda is 0.5576911297457783
the regulation term lambda/alpha is 2.0960419623580204
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.4790312515776554
the lambda is 0.47773506784227293
the regulation term lambda/alpha is 0.9972941562139973
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3126118536624599
the lambda is 0.3499634334860969
the regulation term lambda/alpha is 1.1194822889344658
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.5547366096480151
the lambda is 0.6546599181958236
the regulation term lambda/alpha is 1.180127481781328
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3117315372378755
the lambda is 0.3636236057652401
the regulation term lambda/alpha is 1.1664639676407424
using Bay_non_info_prior option for model regressor
Convergence after  11  iterations
the alpha is 0.25330741774682747
the lambda is 0.48494959759600664
the regulation term lambda/alpha is 1.914470574567611
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.321186125641114
the lambda is 0.4697256513858347
the regulation term lambda/alpha is 1.4624718002629273
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.24017092624157188
the lambda is 0.3183878651795526
the regulation term lambda/alpha is 1.3256719710499327
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.4066845524747852
the lambda is 0.4955871474533395
the regulation term lambda/alpha is 1.218603323970773
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4777941877401419
the lambda is 0.44075380241331324
the regulation term lambda/alpha is 0.922476274770061
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.2585783195833163
the lambda is 0.4738660762903166
the regulation term lambda/alpha is 1.8325823953606157
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3353056815697936
the lambda is 0.5244309342172168
the regulation term lambda/alpha is 1.564038317996878
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.33889160701410004
the lambda is 0.4315821364825785
the regulation term lambda/alpha is 1.2735108440281377
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4278454937086857
the lambda is 0.933130799787481
the regulation term lambda/alpha is 2.180999481141754
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.27691246232665523
the lambda is 0.38426013000723114
the regulation term lambda/alpha is 1.3876592146797098
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4035582889830542
the lambda is 0.3578551567837887
the regulation term lambda/alpha is 0.8867496135082865
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.36492284285090304
the lambda is 0.3633314713600024
the regulation term lambda/alpha is 0.9956391562707658
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.5815253594982509
the lambda is 0.6797396300357513
the regulation term lambda/alpha is 1.1688907782495355
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.5374132877128982
the lambda is 0.5777143324204328
the regulation term lambda/alpha is 1.0749907857303755
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3370839680738357
the lambda is 0.5559777282330656
the regulation term lambda/alpha is 1.6493745799007646
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3205375772565673
the lambda is 0.45262833847798956
the regulation term lambda/alpha is 1.4120913446466001
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3225292853987703
the lambda is 0.4923752201439815
the regulation term lambda/alpha is 1.5266062414618142
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.32995265270967344
the lambda is 0.8643876324227047
the regulation term lambda/alpha is 2.619732332272784
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.24020100043609383
the lambda is 0.5921091749572982
the regulation term lambda/alpha is 2.4650570725446688
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.30914961723637285
the lambda is 0.7695467092266913
the regulation term lambda/alpha is 2.489237140598829
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3456322026987667
the lambda is 0.8839644630387069
the regulation term lambda/alpha is 2.5575292352290444
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2719536515130836
the lambda is 0.3759320930542314
the regulation term lambda/alpha is 1.3823388322334973
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.27923097770272903
the lambda is 0.500159400434678
the regulation term lambda/alpha is 1.7912031270654745
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.1957232041359503
the lambda is 0.37318306332251394
the regulation term lambda/alpha is 1.9066878910448408
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3409709717448572
the lambda is 0.539531716511635
the regulation term lambda/alpha is 1.582339146792113
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2697331748652098
the lambda is 0.35214790389478595
the regulation term lambda/alpha is 1.3055416860412523
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.34395382894006904
the lambda is 0.3930494275683353
the regulation term lambda/alpha is 1.1427389216150308
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.39429334273852024
the lambda is 0.4983938071901989
the regulation term lambda/alpha is 1.2640178089963694
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.39983397455840547
the lambda is 0.4241581830068684
the regulation term lambda/alpha is 1.0608357718358667
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2641412417329167
the lambda is 0.36661247915220774
the regulation term lambda/alpha is 1.38794107556632
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.31866450070879593
the lambda is 0.49807612846441596
the regulation term lambda/alpha is 1.5630110268215007
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.599886263310887
the lambda is 0.5096752810690239
the regulation term lambda/alpha is 0.8496198566975489
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.33677271411687826
the lambda is 0.413381568383369
the regulation term lambda/alpha is 1.2274793979891832
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.25748875640347524
the lambda is 0.46493624601977246
the regulation term lambda/alpha is 1.8056564974481246
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3522144097156112
the lambda is 0.46564487761084095
the regulation term lambda/alpha is 1.3220494811294548
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.9005504218954405
the lambda is 0.6692676071361439
the regulation term lambda/alpha is 0.7431761630042854
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.441051774756789
the lambda is 0.48778102148769337
the regulation term lambda/alpha is 1.1059495719219643
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.35504784863917543
the lambda is 0.3486176053959087
the regulation term lambda/alpha is 0.9818890798299088
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.20357269655505858
the lambda is 0.34247745374696376
the regulation term lambda/alpha is 1.6823349080820216
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.5901065313187008
the lambda is 0.5703450144416863
the regulation term lambda/alpha is 0.9665119502526877
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3627963513140099
the lambda is 0.5464615872568577
the regulation term lambda/alpha is 1.5062488508432672
using Bay_non_info_prior option for model regressor
Convergence after  9  iterations
the alpha is 0.24826703573918907
the lambda is 0.5310805860194493
the regulation term lambda/alpha is 2.1391506304419856
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.33625866290712514
the lambda is 0.7392498012841986
the regulation term lambda/alpha is 2.1984557807165843
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2966148822277153
the lambda is 0.5051173413190267
the regulation term lambda/alpha is 1.7029399790238482
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.5329393072552888
the lambda is 0.7456867166209371
the regulation term lambda/alpha is 1.3991963183600153
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3010306106385129
the lambda is 0.42869525295591865
the regulation term lambda/alpha is 1.4240918956601045
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.350753306291528
the lambda is 0.5277407469435867
the regulation term lambda/alpha is 1.5045923658520155
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3075094688476686
the lambda is 0.6225328521133164
the regulation term lambda/alpha is 2.0244347416231965
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.47647099094104706
the lambda is 0.5089259435349465
the regulation term lambda/alpha is 1.0681152750344773
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2463661487023164
the lambda is 0.4507403209753699
the regulation term lambda/alpha is 1.8295546013506845
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2696272980741695
the lambda is 0.5785044415392205
the regulation term lambda/alpha is 2.145570740319048
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.32613265192667645
the lambda is 0.46345345734015986
the regulation term lambda/alpha is 1.421058132640938
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2814911959925188
the lambda is 0.3478954225037001
the regulation term lambda/alpha is 1.2359016106242489
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.8130247165965155
the lambda is 0.6163126119613351
the regulation term lambda/alpha is 0.7580490474402098
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.265661700384737
the lambda is 0.396365059345098
the regulation term lambda/alpha is 1.491991727716391
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.22706966112570984
the lambda is 0.2767604767219303
the regulation term lambda/alpha is 1.2188351158401156
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.4057953475310245
the lambda is 0.5087945616437288
the regulation term lambda/alpha is 1.2538205889726957
60
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.4453141913858257
the lambda is 0.4326489539096426
the regulation term lambda/alpha is 0.9715588729908458
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3372320762851015
the lambda is 0.3046101930352217
the regulation term lambda/alpha is 0.90326577587388
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.47048055984707565
the lambda is 0.5594919520139044
the regulation term lambda/alpha is 1.1891924975513568
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2982021566548747
the lambda is 0.43994045542042254
the regulation term lambda/alpha is 1.4753094355705454
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5119233955285827
the lambda is 0.5308726611614334
the regulation term lambda/alpha is 1.0370158226765251
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.37780834899355614
the lambda is 0.56991344654207
the regulation term lambda/alpha is 1.5084723459930485
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.22775497612510842
the lambda is 0.49787977619861784
the regulation term lambda/alpha is 2.186032483984573
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.24229394581123861
the lambda is 0.2940234942178516
the regulation term lambda/alpha is 1.2134991373119715
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2674251049717096
the lambda is 0.5280781410370936
the regulation term lambda/alpha is 1.974676764520511
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3842663604010662
the lambda is 0.5467592101596781
the regulation term lambda/alpha is 1.4228651438263162
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.23976480593629845
the lambda is 0.33897836392613045
the regulation term lambda/alpha is 1.413795334150048
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.18159648619491436
the lambda is 0.40910428252031494
the regulation term lambda/alpha is 2.2528204762795236
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2699206598784749
the lambda is 0.4992262867869599
the regulation term lambda/alpha is 1.8495297359295289
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3864340790788503
the lambda is 0.4113221441681032
the regulation term lambda/alpha is 1.064404426101805
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2605665545700452
the lambda is 0.541217613369154
the regulation term lambda/alpha is 2.077080131263218
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.5032280086257596
the lambda is 0.5536268859710668
the regulation term lambda/alpha is 1.1001511769643726
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2439417660769184
the lambda is 0.33397797254950884
the regulation term lambda/alpha is 1.369088934300003
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2576307399731569
the lambda is 0.6420700092229351
the regulation term lambda/alpha is 2.4922103988438407
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24640157858939177
the lambda is 0.6585359960950569
the regulation term lambda/alpha is 2.6726127318869723
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.27987295040581767
the lambda is 0.3552711489420526
the regulation term lambda/alpha is 1.2694015210362668
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.407434448779892
the lambda is 0.42103871115565195
the regulation term lambda/alpha is 1.0333900641354687
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3822517123434836
the lambda is 0.4316208506115583
the regulation term lambda/alpha is 1.1291534783857622
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.23326988028655124
the lambda is 0.6310858466230961
the regulation term lambda/alpha is 2.7053893363680874
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4180203468043314
the lambda is 0.6398119948880215
the regulation term lambda/alpha is 1.5305762022811469
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.2991958930769301
the lambda is 0.3433455774515968
the regulation term lambda/alpha is 1.1475611310056142
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.7900428374540799
the lambda is 0.5647191387178871
the regulation term lambda/alpha is 0.7147955932841561
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2974510397033661
the lambda is 0.3839973728011009
the regulation term lambda/alpha is 1.2909599280071213
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3586496211026813
the lambda is 0.3924334628525443
the regulation term lambda/alpha is 1.0941973440428945
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3266852152819344
the lambda is 0.44721230220563113
the regulation term lambda/alpha is 1.3689395212442657
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.40089340189966804
the lambda is 0.41150416698583314
the regulation term lambda/alpha is 1.0264677967656366
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3217143081141987
the lambda is 0.4699118556044203
the regulation term lambda/alpha is 1.460649538277968
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3512307710433104
the lambda is 0.5128714792443034
the regulation term lambda/alpha is 1.460212263637519
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35412457958704996
the lambda is 0.5513474291980887
the regulation term lambda/alpha is 1.5569306989111664
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4114454164765631
the lambda is 0.5073930900737577
the regulation term lambda/alpha is 1.2331966033765744
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.37065830395666827
the lambda is 0.5573140706019903
the regulation term lambda/alpha is 1.5035790771522632
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2786844165501087
the lambda is 0.4132602906820336
the regulation term lambda/alpha is 1.4828970194956257
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.486347527786238
the lambda is 0.4542174384451127
the regulation term lambda/alpha is 0.9339359459944715
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.25848218088849484
the lambda is 0.4608678236087186
the regulation term lambda/alpha is 1.782977155425386
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.5633585146076876
the lambda is 0.4539410453997971
the regulation term lambda/alpha is 0.8057764880254152
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3127201967143389
the lambda is 0.5449875507726067
the regulation term lambda/alpha is 1.7427321819909107
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.24076136998959083
the lambda is 0.4470536434729309
the regulation term lambda/alpha is 1.8568329441399134
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.5087065730233125
the lambda is 0.4541945063432748
the regulation term lambda/alpha is 0.8928418275469392
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4235669027824027
the lambda is 0.5689114494329021
the regulation term lambda/alpha is 1.3431442487496872
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.27522007839529833
the lambda is 0.580885500979185
the regulation term lambda/alpha is 2.1106218135177612
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.4614120349724678
the lambda is 0.480085989283907
the regulation term lambda/alpha is 1.0404713204165847
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3160152441883391
the lambda is 0.5624769861613544
the regulation term lambda/alpha is 1.7799045979760673
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2234856908066617
the lambda is 0.4308658263918666
the regulation term lambda/alpha is 1.9279347363881576
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.34842210299119714
the lambda is 0.34536936813460545
the regulation term lambda/alpha is 0.9912384006916208
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4834167906748183
the lambda is 0.4912255186137351
the regulation term lambda/alpha is 1.0161531996603104
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.49211408345329166
the lambda is 0.6468789081219634
the regulation term lambda/alpha is 1.3144897288503652
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.37321975123745477
the lambda is 0.431846216715215
the regulation term lambda/alpha is 1.1570829659560544
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.34977952136893103
the lambda is 0.5447360224022397
the regulation term lambda/alpha is 1.5573696832516324
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2514857379884857
the lambda is 0.496621527333922
the regulation term lambda/alpha is 1.9747502633992702
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.45325812478760363
the lambda is 0.5344182104768761
the regulation term lambda/alpha is 1.1790593069397355
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3652802406608089
the lambda is 0.48670901719371046
the regulation term lambda/alpha is 1.3324263483653846
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.30916356721016075
the lambda is 0.3786008287221789
the regulation term lambda/alpha is 1.2245971675725187
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.22816884670219795
the lambda is 0.39001012119945294
the regulation term lambda/alpha is 1.7093048715300185
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.38012049718980623
the lambda is 0.5142613624184555
the regulation term lambda/alpha is 1.3528903761316204
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3472269282083188
the lambda is 0.34362618437267384
the regulation term lambda/alpha is 0.9896299983004639
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3937199465951354
the lambda is 0.5537431949189219
the regulation term lambda/alpha is 1.4064392716387808
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.36449304271316035
the lambda is 0.5016398994171057
the regulation term lambda/alpha is 1.3762674197649194
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.24221199815462852
the lambda is 0.48469569876233265
the regulation term lambda/alpha is 2.0011217547237363
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4859536832996774
the lambda is 0.5598421541224657
the regulation term lambda/alpha is 1.1520483810742574
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4285759775052319
the lambda is 0.4045065278510193
the regulation term lambda/alpha is 0.9438385469145462
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.5587327950171462
the lambda is 0.369330335249144
the regulation term lambda/alpha is 0.6610142424838515
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2869548847365629
the lambda is 0.49920702723401683
the regulation term lambda/alpha is 1.7396707767923543
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4039308836572065
the lambda is 0.5014047891762156
the regulation term lambda/alpha is 1.2413133272615267
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.39279087385344463
the lambda is 0.527709758554776
the regulation term lambda/alpha is 1.3434878294847332
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.29621017459549476
the lambda is 0.39721056128035936
the regulation term lambda/alpha is 1.3409754132274185
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2339568201171243
the lambda is 0.39248032025528673
the regulation term lambda/alpha is 1.6775758879728397
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.23521953733477657
the lambda is 0.42867272921143196
the regulation term lambda/alpha is 1.8224367502318604
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.36347694035229006
the lambda is 0.5928543494740683
the regulation term lambda/alpha is 1.6310645426349757
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3808985922853369
the lambda is 0.4102639908708184
the regulation term lambda/alpha is 1.0770950567427757
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.46693564974409735
the lambda is 0.6127221222624832
the regulation term lambda/alpha is 1.3122196229786347
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.27075710207526027
the lambda is 0.4008604849655867
the regulation term lambda/alpha is 1.4805169721980647
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3354433424072279
the lambda is 0.518338279369136
the regulation term lambda/alpha is 1.5452334681899091
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.5549527413172961
the lambda is 0.7203796358869231
the regulation term lambda/alpha is 1.2980918594562696
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.31894228842153055
the lambda is 0.26049252276723217
the regulation term lambda/alpha is 0.8167387399658707
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.21015119069194022
the lambda is 0.32150508205847816
the regulation term lambda/alpha is 1.5298751389411405
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.28831799901540345
the lambda is 0.26981032391553145
the regulation term lambda/alpha is 0.9358081175539679
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.22977818972095707
the lambda is 0.4444449883686583
the regulation term lambda/alpha is 1.9342348762882713
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.6510763109024671
the lambda is 0.5948473729737065
the regulation term lambda/alpha is 0.9136369470257322
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3625927265252539
the lambda is 0.5908595733550966
the regulation term lambda/alpha is 1.6295406116315034
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.23425333815649158
the lambda is 0.4970048370691592
the regulation term lambda/alpha is 2.121655302675508
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.44120745205774403
the lambda is 0.4066654116703314
the regulation term lambda/alpha is 0.9217102063296703
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2732142130327308
the lambda is 0.7124933275285489
the regulation term lambda/alpha is 2.6078194088797013
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.24344846030381412
the lambda is 0.48790279677000875
the regulation term lambda/alpha is 2.004131782805795
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.30276902076883105
the lambda is 0.4926129047857781
the regulation term lambda/alpha is 1.6270254583341137
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.256604155161702
the lambda is 0.5042488866294094
the regulation term lambda/alpha is 1.9650846507596547
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4189442141346366
the lambda is 0.4683734061125287
the regulation term lambda/alpha is 1.117985140527581
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4106695945064125
the lambda is 0.3889759578764134
the regulation term lambda/alpha is 0.9471749627432904
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.29241800160674014
the lambda is 0.39111689838741376
the regulation term lambda/alpha is 1.3375267467746714
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.36840738899875214
the lambda is 0.5939661571737044
the regulation term lambda/alpha is 1.6122536488423045
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.21973140292007282
the lambda is 0.38811865764904735
the regulation term lambda/alpha is 1.7663322242120545
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3161111396626533
the lambda is 0.3936436587102433
the regulation term lambda/alpha is 1.2452698096319255
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.22474852910653625
the lambda is 0.40059776658528073
the regulation term lambda/alpha is 1.7824266444715537
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5554137283757067
the lambda is 0.48409151719209753
the regulation term lambda/alpha is 0.8715872375135755
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.25782796097739885
the lambda is 0.672288684291753
the regulation term lambda/alpha is 2.6075088277593204
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2709919955205898
the lambda is 0.6579237891313853
the regulation term lambda/alpha is 2.4278347700546625
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2761874974860113
the lambda is 0.5084720608426682
the regulation term lambda/alpha is 1.8410393861815628
70
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3274552340227271
the lambda is 0.48616013217168075
the regulation term lambda/alpha is 1.4846613572160485
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4545255343132582
the lambda is 0.49186393885828905
the regulation term lambda/alpha is 1.0821480900989322
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2509181946243884
the lambda is 0.4750236125846265
the regulation term lambda/alpha is 1.8931413614533308
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4354622675867588
the lambda is 0.5462272931884249
the regulation term lambda/alpha is 1.2543619363751142
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.40904797213432675
the lambda is 0.3937065073862701
the regulation term lambda/alpha is 0.9624947052835684
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4437425899144992
the lambda is 0.5344572347734925
the regulation term lambda/alpha is 1.2044307824418483
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.26791775389854894
the lambda is 0.6530681309535036
the regulation term lambda/alpha is 2.437569446035284
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.32476939671585464
the lambda is 0.3980830583514653
the regulation term lambda/alpha is 1.225740671310092
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3743235339026229
the lambda is 0.3657036241790936
the regulation term lambda/alpha is 0.9769720337012747
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.31948868531523866
the lambda is 0.42803870146384626
the regulation term lambda/alpha is 1.3397616915337756
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4067471458908285
the lambda is 0.5003100303251492
the regulation term lambda/alpha is 1.2300271443316608
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.5839836838547628
the lambda is 0.6989723367749294
the regulation term lambda/alpha is 1.196903879507641
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.28881033080083196
the lambda is 0.4959738680719882
the regulation term lambda/alpha is 1.7172996086972365
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.36466693723233223
the lambda is 0.5100554644274367
the regulation term lambda/alpha is 1.3986885356225103
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.18767278731336173
the lambda is 0.6038045578907211
the regulation term lambda/alpha is 3.217326105369417
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.42772624003560444
the lambda is 0.42196055652943754
the regulation term lambda/alpha is 0.9865201547941342
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.42885320560555756
the lambda is 0.5086506006828856
the regulation term lambda/alpha is 1.1860715835495528
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5294743775118796
the lambda is 0.5638665232638221
the regulation term lambda/alpha is 1.0649552598060723
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3225568859169198
the lambda is 0.346189010398423
the regulation term lambda/alpha is 1.0732649821265638
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2730051730285871
the lambda is 0.6311226799786862
the regulation term lambda/alpha is 2.3117608834195957
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.35254948359511745
the lambda is 0.3515434462761472
the regulation term lambda/alpha is 0.9971463940076973
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.27338661194379965
the lambda is 0.37296459972755025
the regulation term lambda/alpha is 1.3642387133581397
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4032400478817075
the lambda is 0.33802835274367504
the regulation term lambda/alpha is 0.8382807077803874
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2155503297789372
the lambda is 0.2687490122495725
the regulation term lambda/alpha is 1.2468039948034153
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.30571672404881123
the lambda is 0.4784870359537775
the regulation term lambda/alpha is 1.5651320268543158
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.41983495667790366
the lambda is 0.42753320701497366
the regulation term lambda/alpha is 1.0183363729356536
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32246754746062095
the lambda is 0.5319178408355819
the regulation term lambda/alpha is 1.64952363431405
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.34518565067323237
the lambda is 0.47122573687838226
the regulation term lambda/alpha is 1.365137096398207
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3156234358019543
the lambda is 0.49431406000310546
the regulation term lambda/alpha is 1.5661513180956403
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.46682119040522396
the lambda is 0.3676750609727338
the regulation term lambda/alpha is 0.7876143339885098
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2659647579957669
the lambda is 0.371519863422581
the regulation term lambda/alpha is 1.3968762862502786
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.39531219631716036
the lambda is 0.6635555777371627
the regulation term lambda/alpha is 1.678560853722787
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.27339734059746024
the lambda is 0.5528900535333422
the regulation term lambda/alpha is 2.0222949218346504
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.308752877910838
the lambda is 0.39721993398450156
the regulation term lambda/alpha is 1.2865303043400658
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3067121311864846
the lambda is 0.380466078228359
the regulation term lambda/alpha is 1.240466351156587
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5913093021926275
the lambda is 0.5848775101810629
the regulation term lambda/alpha is 0.9891227958232437
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3496373583811072
the lambda is 0.4499040199294064
the regulation term lambda/alpha is 1.2867733070989735
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2904180119685086
the lambda is 0.5146961526479472
the regulation term lambda/alpha is 1.7722597478002093
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.48217626218361914
the lambda is 0.7402454503524011
the regulation term lambda/alpha is 1.535217530203728
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2955124077916547
the lambda is 0.49905332399355556
the regulation term lambda/alpha is 1.688772825895701
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.31879276011441454
the lambda is 0.43709998748744794
the regulation term lambda/alpha is 1.371110144818135
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.39134627617122214
the lambda is 0.5059013046848987
the regulation term lambda/alpha is 1.2927203744837892
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.5845193616189338
the lambda is 0.5665555393624461
the regulation term lambda/alpha is 0.9692673614664643
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.30194166918601967
the lambda is 0.4711578542309632
the regulation term lambda/alpha is 1.560426739049035
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3250964326116107
the lambda is 0.4706132374501005
the regulation term lambda/alpha is 1.4476112016041012
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37159067844614274
the lambda is 0.7663075143734649
the regulation term lambda/alpha is 2.0622355694655328
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2894351219343576
the lambda is 0.37536733166635
the regulation term lambda/alpha is 1.2968962756063909
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.40887112891901817
the lambda is 0.571269521456594
the regulation term lambda/alpha is 1.3971872334613795
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2870804180687367
the lambda is 0.3910261160900335
the regulation term lambda/alpha is 1.3620786771893607
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.30500547933561956
the lambda is 0.4329659959967957
the regulation term lambda/alpha is 1.419535140614218
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.41248313786326923
the lambda is 0.6882955817636578
the regulation term lambda/alpha is 1.668663561204326
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.31906202639246134
the lambda is 0.41167398186913245
the regulation term lambda/alpha is 1.290263170844261
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.224140870827428
the lambda is 0.47786549935257794
the regulation term lambda/alpha is 2.131987341659341
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.31946400526792473
the lambda is 0.4746430698578676
the regulation term lambda/alpha is 1.4857481970771602
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3261173582268502
the lambda is 0.4665618969303102
the regulation term lambda/alpha is 1.4306564344415102
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3124594634534199
the lambda is 0.5030270197339732
the regulation term lambda/alpha is 1.6098952938545332
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.5440939768939919
the lambda is 0.43709570622929395
the regulation term lambda/alpha is 0.8033459747606343
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2917781939468598
the lambda is 0.5357667839171253
the regulation term lambda/alpha is 1.836212558141689
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.30132327013393845
the lambda is 0.42556343321258144
the regulation term lambda/alpha is 1.4123151956482423
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3803158013538465
the lambda is 0.655313115335768
the regulation term lambda/alpha is 1.723076225081859
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.48025946562130717
the lambda is 0.5172624993666661
the regulation term lambda/alpha is 1.0770480050767735
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4070839131051109
the lambda is 0.534587940968751
the regulation term lambda/alpha is 1.3132131331132162
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4101823761482023
the lambda is 0.6304742525303562
the regulation term lambda/alpha is 1.537058365234494
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3465570196103582
the lambda is 0.576178297974526
the regulation term lambda/alpha is 1.6625786389274013
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3655645832329603
the lambda is 0.5234517312804557
the regulation term lambda/alpha is 1.4318994653453068
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.43175397594679993
the lambda is 0.37448961063799385
the regulation term lambda/alpha is 0.867368064918846
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.24096605894852396
the lambda is 0.3227263654344665
the regulation term lambda/alpha is 1.3393021691217037
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3700076641377433
the lambda is 0.452037878656944
the regulation term lambda/alpha is 1.2216986902429763
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.31326454244877616
the lambda is 0.3394136649858716
the regulation term lambda/alpha is 1.0834729725001395
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.23576509122779662
the lambda is 0.29361185392949135
the regulation term lambda/alpha is 1.245357624406758
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.5025699751785351
the lambda is 0.44099992365450164
the regulation term lambda/alpha is 0.877489594355172
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27578398997394754
the lambda is 0.574801015229348
the regulation term lambda/alpha is 2.0842435968949746
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3535770416473717
the lambda is 0.5316358239746087
the regulation term lambda/alpha is 1.5035926017640535
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2550671589902572
the lambda is 0.48291864774894794
the regulation term lambda/alpha is 1.893299982877819
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.35008090919363677
the lambda is 0.5751401139355116
the regulation term lambda/alpha is 1.6428776857906011
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2587255678175579
the lambda is 0.5645211880011668
the regulation term lambda/alpha is 2.181930424438155
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28713836047449703
the lambda is 0.6628331303282943
the regulation term lambda/alpha is 2.308410235514894
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.261273782340392
the lambda is 0.4795341195363172
the regulation term lambda/alpha is 1.8353702206200386
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.24333620311908477
the lambda is 0.44694580420499186
the regulation term lambda/alpha is 1.8367419170515449
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.356187227335774
the lambda is 0.4535777673816972
the regulation term lambda/alpha is 1.2734251331087572
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2560424793674115
the lambda is 0.43243805160657134
the regulation term lambda/alpha is 1.688930886292656
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2404905602821338
the lambda is 0.5670394429849062
the regulation term lambda/alpha is 2.3578449080066943
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.312241681755524
the lambda is 0.4786702807635528
the regulation term lambda/alpha is 1.5330121144374869
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4249519321231846
the lambda is 0.6135114476644814
the regulation term lambda/alpha is 1.443719633416415
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.22143126373237532
the lambda is 0.34813497322070763
the regulation term lambda/alpha is 1.5722033436139715
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4077223901468622
the lambda is 0.4432988681162548
the regulation term lambda/alpha is 1.0872566207526104
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4305861769352147
the lambda is 0.6427818177188565
the regulation term lambda/alpha is 1.4928064395703262
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3218250174804581
the lambda is 0.5325463711106979
the regulation term lambda/alpha is 1.6547699594020382
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3042638332938284
the lambda is 0.757092804871586
the regulation term lambda/alpha is 2.4882773502050095
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.258506533451778
the lambda is 0.3454895393712307
the regulation term lambda/alpha is 1.336482814410873
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2983436487478274
the lambda is 0.5615238316465837
the regulation term lambda/alpha is 1.8821377093272977
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.275059823675588
the lambda is 0.34872244796195184
the regulation term lambda/alpha is 1.267805829662871
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.38828608200290693
the lambda is 0.3628929466298364
the regulation term lambda/alpha is 0.9346019943798026
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.30201620085711356
the lambda is 0.48017372660916224
the regulation term lambda/alpha is 1.589893936969085
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3277226120262318
the lambda is 0.546538292751637
the regulation term lambda/alpha is 1.6676856362535357
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.374311651096373
the lambda is 0.6722359621417532
the regulation term lambda/alpha is 1.795925828578268
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.26604334235307914
the lambda is 0.39694927987835865
the regulation term lambda/alpha is 1.4920474098973988
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.44930065344428094
the lambda is 0.412237820309995
the regulation term lambda/alpha is 0.9175099505193971
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3618427416118748
the lambda is 0.6331784769724643
the regulation term lambda/alpha is 1.7498719862443275
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3393465616586601
the lambda is 0.4249215013790132
the regulation term lambda/alpha is 1.2521756498786356
80
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3138425344494663
the lambda is 0.4025145896615322
the regulation term lambda/alpha is 1.282536767578722
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.363436937807998
the lambda is 0.5799693189110497
the regulation term lambda/alpha is 1.5957907922321444
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2728189934189238
the lambda is 0.5456209388243068
the regulation term lambda/alpha is 1.9999375116324303
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.37007288159136154
the lambda is 0.4433900702761977
the regulation term lambda/alpha is 1.1981155397541228
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2823339283088386
the lambda is 0.4682291431715331
the regulation term lambda/alpha is 1.65842322237428
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2530128849680611
the lambda is 0.3872470441590978
the regulation term lambda/alpha is 1.530542779305416
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.33408458594523804
the lambda is 0.46314448927830376
the regulation term lambda/alpha is 1.3863090629216301
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3422106137172244
the lambda is 0.361181909956327
the regulation term lambda/alpha is 1.055437486386027
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.5863519510877349
the lambda is 0.5272028175818986
the regulation term lambda/alpha is 0.899123498444732
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.26734075389305473
the lambda is 0.43929262945534886
the regulation term lambda/alpha is 1.6431936510176846
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3037521234026921
the lambda is 0.4845401793199772
the regulation term lambda/alpha is 1.5951828546647218
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3168362167194736
the lambda is 0.30175121512154407
the regulation term lambda/alpha is 0.9523886449784061
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2749480514135009
the lambda is 0.4391312470437659
the regulation term lambda/alpha is 1.5971426048891904
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5150462962445586
the lambda is 0.5941599420989357
the regulation term lambda/alpha is 1.153604921404603
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3285255565071662
the lambda is 0.5775338102703932
the regulation term lambda/alpha is 1.757957025963657
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37968963025205427
the lambda is 0.7005434509422257
the regulation term lambda/alpha is 1.8450423586158382
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.24576307640533715
the lambda is 0.5911317435394035
the regulation term lambda/alpha is 2.405291112829535
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.30588068326254053
the lambda is 0.4467430255372927
the regulation term lambda/alpha is 1.4605140173361277
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.36508305244168066
the lambda is 0.4363473230196269
the regulation term lambda/alpha is 1.1952001608985403
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3542791546974879
the lambda is 0.48507071459242584
the regulation term lambda/alpha is 1.3691765608016604
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4437899498957513
the lambda is 0.48415035966467374
the regulation term lambda/alpha is 1.0909448485221518
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.23704346309431237
the lambda is 0.33055080388233155
the regulation term lambda/alpha is 1.3944733998035435
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2377939492611087
the lambda is 0.4189551227196426
the regulation term lambda/alpha is 1.7618409720745694
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.22826462803255196
the lambda is 0.5341815555574314
the regulation term lambda/alpha is 2.3401854249676117
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.25494655727132004
the lambda is 0.5061213225563643
the regulation term lambda/alpha is 1.9852055582681913
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3395992324427623
the lambda is 0.616322972993871
the regulation term lambda/alpha is 1.8148538456951577
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.23350738417247077
the lambda is 0.6041668271486452
the regulation term lambda/alpha is 2.5873564096902473
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3788788436124602
the lambda is 0.34870869784853736
the regulation term lambda/alpha is 0.9203699381146162
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3119618216031081
the lambda is 0.37737866941183146
the regulation term lambda/alpha is 1.2096950436837417
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.23955003591678178
the lambda is 0.38813008044854935
the regulation term lambda/alpha is 1.6202463880380438
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.23245732201834793
the lambda is 0.37981598370900194
the regulation term lambda/alpha is 1.633917058026776
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2556146997569232
the lambda is 0.5910523169512242
the regulation term lambda/alpha is 2.3122782747364896
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.16768413670999896
the lambda is 0.48361967457857147
the regulation term lambda/alpha is 2.8841110677926958
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.19062274860755968
the lambda is 0.5967151384510436
the regulation term lambda/alpha is 3.1303458942327893
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2893860289687223
the lambda is 0.5762386298143054
the regulation term lambda/alpha is 1.9912455064532055
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.31846120040920795
the lambda is 0.4782104172383216
the regulation term lambda/alpha is 1.5016285080375358
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.35280241858081673
the lambda is 0.2911067688888087
the regulation term lambda/alpha is 0.8251269083126329
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.22649707642484138
the lambda is 0.39316309713146486
the regulation term lambda/alpha is 1.7358418189646185
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4526031716080968
the lambda is 0.4994319647549492
the regulation term lambda/alpha is 1.1034654551369358
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3970901040682199
the lambda is 0.4929150184901968
the regulation term lambda/alpha is 1.2413178103413887
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3484702511558629
the lambda is 0.3216893308387475
the regulation term lambda/alpha is 0.9231471833584529
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5302902735394354
the lambda is 0.5411570871993155
the regulation term lambda/alpha is 1.0204921987109992
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.336089170850112
the lambda is 0.4718854171797645
the regulation term lambda/alpha is 1.4040482648880541
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3925294532648385
the lambda is 0.501786156547556
the regulation term lambda/alpha is 1.2783401407817474
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4162648140782512
the lambda is 0.44608898967224175
the regulation term lambda/alpha is 1.071647121220253
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.19360034606044838
the lambda is 0.45406474293083354
the regulation term lambda/alpha is 2.3453715459220286
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2877742630633542
the lambda is 0.5973319932011656
the regulation term lambda/alpha is 2.0756963699344495
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3310617950708128
the lambda is 0.49084798933602175
the regulation term lambda/alpha is 1.48264764054406
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30813596999147935
the lambda is 0.6793820514489416
the regulation term lambda/alpha is 2.2048125425529776
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27377163956938266
the lambda is 0.5706630123718572
the regulation term lambda/alpha is 2.0844489709359855
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.29474817830605404
the lambda is 0.6446897329664696
the regulation term lambda/alpha is 2.1872560389399625
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2787498108849047
the lambda is 0.3926756203804431
the regulation term lambda/alpha is 1.4087027328695774
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.254078031111935
the lambda is 0.5222749140331157
the regulation term lambda/alpha is 2.0555689594549227
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.30582379334279314
the lambda is 0.35719731041032576
the regulation term lambda/alpha is 1.1679840423990453
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2503553837683648
the lambda is 0.7357771981289155
the regulation term lambda/alpha is 2.9389309990220758
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31866817950315446
the lambda is 0.6754483119669964
the regulation term lambda/alpha is 2.1195976109698464
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5237305796430983
the lambda is 0.5605978810991473
the regulation term lambda/alpha is 1.070393639189777
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.49295511669602354
the lambda is 0.4586911981490115
the regulation term lambda/alpha is 0.9304928230045321
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3252961227991036
the lambda is 0.5100641297858314
the regulation term lambda/alpha is 1.5679994135707447
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.1940172416607352
the lambda is 0.5379995057618929
the regulation term lambda/alpha is 2.77294688429112
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3218233660689531
the lambda is 0.49684223108788744
the regulation term lambda/alpha is 1.543835170071011
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.24581106557048477
the lambda is 0.4019692488092832
the regulation term lambda/alpha is 1.6352772723082356
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.33741442758175244
the lambda is 0.36616176302340203
the regulation term lambda/alpha is 1.0851988921981837
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.32684091894526995
the lambda is 0.6744011558922153
the regulation term lambda/alpha is 2.0633926684227224
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28202197850783545
the lambda is 0.6611929732498532
the regulation term lambda/alpha is 2.344473210024953
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.28724216245967493
the lambda is 0.4951660015516014
the regulation term lambda/alpha is 1.7238625322670598
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.25261562462563875
the lambda is 0.36726570581641066
the regulation term lambda/alpha is 1.453851899939588
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3937746643917249
the lambda is 0.3924072296907782
the regulation term lambda/alpha is 0.996527367490595
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.26355430268029423
the lambda is 0.38399917787193655
the regulation term lambda/alpha is 1.4570021204994272
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.21733853081537147
the lambda is 0.5105712351820068
the regulation term lambda/alpha is 2.3491979690234297
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5504490705702757
the lambda is 0.44590710412873064
the regulation term lambda/alpha is 0.8100787665364979
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.28962190586882297
the lambda is 0.4670232312454617
the regulation term lambda/alpha is 1.6125273046749034
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2646275493351617
the lambda is 0.36278825257469166
the regulation term lambda/alpha is 1.3709390934018189
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.34892411896200803
the lambda is 0.5590919618836301
the regulation term lambda/alpha is 1.6023310843252592
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.385992771922649
the lambda is 0.5278058201623148
the regulation term lambda/alpha is 1.3673981964306947
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4031550098516312
the lambda is 0.5259325148073888
the regulation term lambda/alpha is 1.3045416823691265
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.437910458135276
the lambda is 0.5251449134298215
the regulation term lambda/alpha is 1.1992061474530888
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.26292221568117186
the lambda is 0.41222499334458823
the regulation term lambda/alpha is 1.5678591186241404
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.31033683365141
the lambda is 0.38248669744186586
the regulation term lambda/alpha is 1.2324888829390428
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2894743561554499
the lambda is 0.43092993280471203
the regulation term lambda/alpha is 1.488663585016489
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.331356813030771
the lambda is 0.4693174759596497
the regulation term lambda/alpha is 1.4163507660126702
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2961958039832869
the lambda is 0.4195840639689393
the regulation term lambda/alpha is 1.416576664241384
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.29399283154798767
the lambda is 0.6620127457726527
the regulation term lambda/alpha is 2.251798937705031
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2552409930720255
the lambda is 0.5099355550226883
the regulation term lambda/alpha is 1.9978591561066033
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3561840158230854
the lambda is 0.5130636613168793
the regulation term lambda/alpha is 1.440445495936334
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.36249685986703534
the lambda is 0.41133848620227037
the regulation term lambda/alpha is 1.134736688072692
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4211916266682696
the lambda is 0.4404942401388721
the regulation term lambda/alpha is 1.0458285783677397
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.44321959417340967
the lambda is 0.48744667378492557
the regulation term lambda/alpha is 1.0997859304798967
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.33594652606493836
the lambda is 0.5389912663055202
the regulation term lambda/alpha is 1.6043960109333988
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3471905848973535
the lambda is 0.44592468003285984
the regulation term lambda/alpha is 1.284380105424509
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24718514094348865
the lambda is 0.3828836614768377
the regulation term lambda/alpha is 1.5489752337676819
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.41090754136919244
the lambda is 0.439772879153706
the regulation term lambda/alpha is 1.070247768362515
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.34842303345458514
the lambda is 0.43486362476120854
the regulation term lambda/alpha is 1.2480909211126836
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2768860203534004
the lambda is 0.504573645787669
the regulation term lambda/alpha is 1.8223153525182023
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.33612524043293585
the lambda is 0.5081278917000873
the regulation term lambda/alpha is 1.5117219136700615
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2957316851906903
the lambda is 0.6761530359731387
the regulation term lambda/alpha is 2.286373323633379
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.32072700901957096
the lambda is 0.5913063030858609
the regulation term lambda/alpha is 1.8436436173349497
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2436261040849496
the lambda is 0.39020288371133693
the regulation term lambda/alpha is 1.6016464457982618
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31351604566113017
the lambda is 0.6200427242201167
the regulation term lambda/alpha is 1.9777065091280903
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.31764060472609923
the lambda is 0.40917887815310605
the regulation term lambda/alpha is 1.2881819013848688
90
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.23276869941573786
the lambda is 0.4546154501491198
the regulation term lambda/alpha is 1.9530781041017518
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.31220306900657097
the lambda is 0.4896928585262275
the regulation term lambda/alpha is 1.568507510462432
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.33147001534931075
the lambda is 0.3935205007038183
the regulation term lambda/alpha is 1.187197883612843
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.39863680481812136
the lambda is 0.5641316462632026
the regulation term lambda/alpha is 1.4151519364113618
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.41906717215082645
the lambda is 0.6346958018313004
the regulation term lambda/alpha is 1.5145443117717343
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35534959382569653
the lambda is 0.4545099508735056
the regulation term lambda/alpha is 1.279050148841449
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2669195200948329
the lambda is 0.4602999545037626
the regulation term lambda/alpha is 1.7244896676729535
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24466139321725633
the lambda is 0.34618761931851666
the regulation term lambda/alpha is 1.4149662714096714
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.22576601682034586
the lambda is 0.4059860508040876
the regulation term lambda/alpha is 1.7982602365135958
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4817683099674461
the lambda is 0.48586920691281527
the regulation term lambda/alpha is 1.008512176622091
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35535208687499936
the lambda is 0.47808338885556806
the regulation term lambda/alpha is 1.3453794321566523
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.32292946394720407
the lambda is 0.3730446570234325
the regulation term lambda/alpha is 1.1551892864270255
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4178399500968965
the lambda is 0.4438582192494557
the regulation term lambda/alpha is 1.0622685053129208
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3131205431382332
the lambda is 0.616708971780207
the regulation term lambda/alpha is 1.9695576840767959
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2179489794235055
the lambda is 0.4097604090317115
the regulation term lambda/alpha is 1.88007491531075
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37152050993991215
the lambda is 0.5684038000813074
the regulation term lambda/alpha is 1.5299392223951194
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.27709711100937384
the lambda is 0.5039577636112371
the regulation term lambda/alpha is 1.8187045031811568
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31982866865263987
the lambda is 0.5147897185248335
the regulation term lambda/alpha is 1.6095796561750293
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3875862406322447
the lambda is 0.6102234114537607
the regulation term lambda/alpha is 1.57441969678372
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.29336237958656836
the lambda is 0.4941654639159323
the regulation term lambda/alpha is 1.6844881903819877
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3993124046964779
the lambda is 0.6286919200966348
the regulation term lambda/alpha is 1.574436237648342
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2859068754416334
the lambda is 0.6760198637251703
the regulation term lambda/alpha is 2.364475714971663
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4147050101480908
the lambda is 0.4430909505204435
the regulation term lambda/alpha is 1.0684485108154735
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3488023793201726
the lambda is 0.5189671549846684
the regulation term lambda/alpha is 1.4878544005237366
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.29592735983484847
the lambda is 0.6355686654775433
the regulation term lambda/alpha is 2.147718500351716
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3770192677392138
the lambda is 0.5229924261041193
the regulation term lambda/alpha is 1.387176918676411
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.29258012694126995
the lambda is 0.44700724905135625
the regulation term lambda/alpha is 1.5278113852930437
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31288661895646597
the lambda is 0.39184928091541277
the regulation term lambda/alpha is 1.2523682930970386
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28953022230406444
the lambda is 0.40975722556827215
the regulation term lambda/alpha is 1.4152485440291804
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.41631243303300297
the lambda is 0.6538888709087265
the regulation term lambda/alpha is 1.5706686109393466
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3394868889084915
the lambda is 0.4556943953099654
the regulation term lambda/alpha is 1.3423033707578544
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.381660663181191
the lambda is 0.7636697359625263
the regulation term lambda/alpha is 2.0009128779404204
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3610043177793022
the lambda is 0.458591138733868
the regulation term lambda/alpha is 1.2703203705564123
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3789946736660704
the lambda is 0.479927929513521
the regulation term lambda/alpha is 1.266318401974119
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.36456654696478014
the lambda is 0.5370413961104169
the regulation term lambda/alpha is 1.4730956545014513
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.2305564104173978
the lambda is 0.3632632285702638
the regulation term lambda/alpha is 1.575593703565277
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3025789188336201
the lambda is 0.40227294601483377
the regulation term lambda/alpha is 1.3294810741128753
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2451423997400086
the lambda is 0.4075731206239934
the regulation term lambda/alpha is 1.6625974170778064
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5319597854756275
the lambda is 0.5783325491258572
the regulation term lambda/alpha is 1.087173438512401
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.20981128979195182
the lambda is 0.4616619981601219
the regulation term lambda/alpha is 2.200367761991761
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3154125419380417
the lambda is 0.4552294787173431
the regulation term lambda/alpha is 1.4432827430393256
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.48698685940848885
the lambda is 0.5057165718057294
the regulation term lambda/alpha is 1.0384604061390696
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.28314250197158986
the lambda is 0.4352807695061533
the regulation term lambda/alpha is 1.5373204887121779
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.26853377286658103
the lambda is 0.4562887895443779
the regulation term lambda/alpha is 1.699185859095204
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37816677699624707
the lambda is 0.5167367971202358
the regulation term lambda/alpha is 1.3664256845211018
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.38214050261285193
the lambda is 0.4306144692124347
the regulation term lambda/alpha is 1.1268485446272936
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4244076163853396
the lambda is 0.6150180988120747
the regulation term lambda/alpha is 1.4491212576488517
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4484863899699713
the lambda is 0.4149524206723458
the regulation term lambda/alpha is 0.9252285686977685
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.24555029160165903
the lambda is 0.428229534994806
the regulation term lambda/alpha is 1.7439585683306624
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2682302175425934
the lambda is 0.45871788023195653
the regulation term lambda/alpha is 1.7101648145183896
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3016220461073599
the lambda is 0.5351690095539845
the regulation term lambda/alpha is 1.7743033589908594
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.30981587546815664
the lambda is 0.5049070034789609
the regulation term lambda/alpha is 1.629700229905927
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.23722505392385285
the lambda is 0.4694604586735103
the regulation term lambda/alpha is 1.9789666011592644
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.31380573101239645
the lambda is 0.37355768557939856
the regulation term lambda/alpha is 1.1904106543058695
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4275405261469652
the lambda is 0.4491946107268969
the regulation term lambda/alpha is 1.0506480280947408
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.40807722331846435
the lambda is 0.47916928738687786
the regulation term lambda/alpha is 1.1742122814164835
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24595944142601042
the lambda is 0.3504531947102504
the regulation term lambda/alpha is 1.4248413993722366
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.30711387583255484
the lambda is 0.42528532801821506
the regulation term lambda/alpha is 1.3847805699606026
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3519723273188509
the lambda is 0.4742319888242492
the regulation term lambda/alpha is 1.3473558914040522
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.46757812724120773
the lambda is 0.6228060776407919
the regulation term lambda/alpha is 1.3319829165565464
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31141701552360174
the lambda is 0.38396530236497134
the regulation term lambda/alpha is 1.2329618589382163
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.297671996910081
the lambda is 0.3768007453715182
the regulation term lambda/alpha is 1.2658253019525378
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2612408003234875
the lambda is 0.5287456419464186
the regulation term lambda/alpha is 2.0239780359411204
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2590146930948346
the lambda is 0.4160989708868327
the regulation term lambda/alpha is 1.6064685980361888
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.21242839779150757
the lambda is 0.4373815354441036
the regulation term lambda/alpha is 2.0589598188909806
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2771946944243658
the lambda is 0.4843723089835015
the regulation term lambda/alpha is 1.7474082972236156
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.48737938701365097
the lambda is 0.49252026920945374
the regulation term lambda/alpha is 1.010548009072158
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.39113402327246305
the lambda is 0.4105406025155333
the regulation term lambda/alpha is 1.0496161880286023
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.32097386739722517
the lambda is 0.5448281837801786
the regulation term lambda/alpha is 1.697422248727557
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.27847418328789814
the lambda is 0.48562652837303155
the regulation term lambda/alpha is 1.7438834819060076
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.32557840074003874
the lambda is 0.5295489545605292
the regulation term lambda/alpha is 1.626486748988465
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.4610092879288311
the lambda is 0.5677583640361639
the regulation term lambda/alpha is 1.2315551527972952
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3066498043194681
the lambda is 0.3785078554188359
the regulation term lambda/alpha is 1.2343326168390638
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.24008413041951357
the lambda is 0.4745860110315359
the regulation term lambda/alpha is 1.9767487763654472
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.19565452640622408
the lambda is 0.4978740774421767
the regulation term lambda/alpha is 2.5446591325389267
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2484030051731845
the lambda is 0.43802762170027076
the regulation term lambda/alpha is 1.7633748891036223
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2563807716259098
the lambda is 0.5853072629288404
the regulation term lambda/alpha is 2.2829608445943586
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.33728772616339336
the lambda is 0.4615737500019667
the regulation term lambda/alpha is 1.3684866486317533
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.18963013805800763
the lambda is 0.3416738738272127
the regulation term lambda/alpha is 1.8017909881112626
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.25491094556146543
the lambda is 0.4117823575854457
the regulation term lambda/alpha is 1.6153969249082505
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3438768161499059
the lambda is 0.5750079453162426
the regulation term lambda/alpha is 1.6721335033693574
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.23587609905786502
the lambda is 0.37048544340633605
the regulation term lambda/alpha is 1.57067818607365
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4607000479407079
the lambda is 0.7106553688516647
the regulation term lambda/alpha is 1.5425554480149002
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.21619844649953637
the lambda is 0.43803310429817355
the regulation term lambda/alpha is 2.02606961978847
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2809527777610786
the lambda is 0.5314455413899053
the regulation term lambda/alpha is 1.8915831536709171
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35954273269511006
the lambda is 0.6866144239622062
the regulation term lambda/alpha is 1.9096879495112777
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3576844857323248
the lambda is 0.4487601755717048
the regulation term lambda/alpha is 1.2546257762701427
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.284990406547171
the lambda is 0.5204874395168493
the regulation term lambda/alpha is 1.8263331942392922
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.37966712773475336
the lambda is 0.6339038478277291
the regulation term lambda/alpha is 1.6696305830053135
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24672772030708795
the lambda is 0.44359576901278697
the regulation term lambda/alpha is 1.7979162149298367
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.26360123306950195
the lambda is 0.5118836085254893
the regulation term lambda/alpha is 1.9418862444794573
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2785641432007231
the lambda is 0.4426631454187499
the regulation term lambda/alpha is 1.5890887475053928
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3332479137753805
the lambda is 0.7321439731859208
the regulation term lambda/alpha is 2.196994918562067
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.30761793396231785
the lambda is 0.47755081032047497
the regulation term lambda/alpha is 1.552415375037833
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.33380882419816993
the lambda is 0.4273201091600652
the regulation term lambda/alpha is 1.280134251053774
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.28588675408114617
the lambda is 0.5225185196630535
the regulation term lambda/alpha is 1.8277115403350996
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.34208033002068
the lambda is 0.4901906815941592
the regulation term lambda/alpha is 1.4329695062107937
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3111388946049582
the lambda is 0.5198454009147574
the regulation term lambda/alpha is 1.6707824380966136
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4045008088376553
the lambda is 0.3982893002990656
the regulation term lambda/alpha is 0.9846440145411856
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.36302506896328873
the lambda is 0.489138739399724
the regulation term lambda/alpha is 1.3473965883308976
100
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3531122405605171
the lambda is 0.44668741952806207
the regulation term lambda/alpha is 1.2650012325231412
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31899974374784756
the lambda is 0.4759262676367652
the regulation term lambda/alpha is 1.4919330719367592
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4259059862291824
the lambda is 0.5119374766857451
the regulation term lambda/alpha is 1.2019964340446454
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.24723166612541123
the lambda is 0.40417646119658085
the regulation term lambda/alpha is 1.6348086292132071
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.26145332100400653
the lambda is 0.3161872613846437
the regulation term lambda/alpha is 1.2093449804747305
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.40954098061522926
the lambda is 0.5189544700957375
the regulation term lambda/alpha is 1.2671612723985346
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.320530471650239
the lambda is 0.5941536535681567
the regulation term lambda/alpha is 1.8536573153534488
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3021103840670433
the lambda is 0.4598104215285621
the regulation term lambda/alpha is 1.5219947601222557
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31222990172045234
the lambda is 0.5180461345456772
the regulation term lambda/alpha is 1.65918168532589
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.25056942028466256
the lambda is 0.48982555925144583
the regulation term lambda/alpha is 1.9548497126863018
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.28707400307190817
the lambda is 0.5175006321258587
the regulation term lambda/alpha is 1.8026732709622326
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.23085482015903905
the lambda is 0.3751420546619555
the regulation term lambda/alpha is 1.625012873473965
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2723006896538995
the lambda is 0.4374969070747406
the regulation term lambda/alpha is 1.6066683768991161
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3712547037716479
the lambda is 0.5674349822676615
the regulation term lambda/alpha is 1.5284250313948362
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30347734601111565
the lambda is 0.38283078945407534
the regulation term lambda/alpha is 1.261480616217242
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27973660373060066
the lambda is 0.4525614503012767
the regulation term lambda/alpha is 1.617812771964281
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36404622903867695
the lambda is 0.4915884033874851
the regulation term lambda/alpha is 1.3503460939167093
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3627554663582921
the lambda is 0.4976336588816906
the regulation term lambda/alpha is 1.3718157409933551
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.38763649040978004
the lambda is 0.5390375319880004
the regulation term lambda/alpha is 1.3905747919092204
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3039003589747326
the lambda is 0.48298985810649003
the regulation term lambda/alpha is 1.5893033484262766
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3265618681824967
the lambda is 0.5995679756066037
the regulation term lambda/alpha is 1.836001180859057
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2635211240466224
the lambda is 0.40312489493383635
the regulation term lambda/alpha is 1.5297631125105366
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2906151726128953
the lambda is 0.4906794724070859
the regulation term lambda/alpha is 1.688416568190264
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3810180299007237
the lambda is 0.5998943553961814
the regulation term lambda/alpha is 1.5744513600904586
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2496399986548043
the lambda is 0.4641362170131496
the regulation term lambda/alpha is 1.8592221579641375
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.35589361619641807
the lambda is 0.5453460561107989
the regulation term lambda/alpha is 1.5323288513548998
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3993792535215829
the lambda is 0.37762127549441066
the regulation term lambda/alpha is 0.9455205100532434
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37544150926123915
the lambda is 0.48353456105427844
the regulation term lambda/alpha is 1.2879091659463422
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3292735773396721
the lambda is 0.4678337621396109
the regulation term lambda/alpha is 1.4208056592922513
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35210449074969663
the lambda is 0.5458593624710646
the regulation term lambda/alpha is 1.5502766275682183
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.24624695638225344
the lambda is 0.4487416301513796
the regulation term lambda/alpha is 1.8223235598282488
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.364748052240078
the lambda is 0.555927246821493
the regulation term lambda/alpha is 1.5241404125595726
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28452297646009206
the lambda is 0.46487342803387105
the regulation term lambda/alpha is 1.633869551828885
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2729168047414445
the lambda is 0.6058065188765469
the regulation term lambda/alpha is 2.21974795377835
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.49191493413887305
the lambda is 0.4577961220382049
the regulation term lambda/alpha is 0.9306408288652688
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.29752690890315464
the lambda is 0.5153370263606745
the regulation term lambda/alpha is 1.7320686329195767
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.46569873374421855
the lambda is 0.5194464045456563
the regulation term lambda/alpha is 1.1154129631603384
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2738678585792784
the lambda is 0.45468747033442786
the regulation term lambda/alpha is 1.6602440048758271
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27313220045947784
the lambda is 0.40315327364536324
the regulation term lambda/alpha is 1.476037145994346
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4003590734971092
the lambda is 0.5141432992019811
the regulation term lambda/alpha is 1.2842054376611836
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.23931492609053162
the lambda is 0.4099602681776119
the regulation term lambda/alpha is 1.713057663701787
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.23336323014177696
the lambda is 0.5174862374399356
the regulation term lambda/alpha is 2.217514032204402
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.23199582960061224
the lambda is 0.355842810820885
the regulation term lambda/alpha is 1.5338327910181793
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5082282104261379
the lambda is 0.4301434064986015
the regulation term lambda/alpha is 0.8463587767745832
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3388181353479878
the lambda is 0.5026831047306186
the regulation term lambda/alpha is 1.4836369494045265
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5085521478167481
the lambda is 0.6956698688711146
the regulation term lambda/alpha is 1.3679420524673365
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39784144145593614
the lambda is 0.495221206476976
the regulation term lambda/alpha is 1.2447702900549273
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28128056693879144
the lambda is 0.5012849818678149
the regulation term lambda/alpha is 1.782152913453484
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2807725826253309
the lambda is 0.4946614528282592
the regulation term lambda/alpha is 1.7617868817638305
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.42832958677243455
the lambda is 0.646661839514862
the regulation term lambda/alpha is 1.5097295621990836
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.40946518011909927
the lambda is 0.6514597222614208
the regulation term lambda/alpha is 1.591001515860112
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2124938134231832
the lambda is 0.4012504501866433
the regulation term lambda/alpha is 1.8882923870708166
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.42812152346489035
the lambda is 0.5305800209230417
the regulation term lambda/alpha is 1.239321061526947
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3549739104911756
the lambda is 0.3998145686403308
the regulation term lambda/alpha is 1.1263209966251024
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.34140151263055135
the lambda is 0.40820064345604773
the regulation term lambda/alpha is 1.1956614963735772
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.691743171794632
the lambda is 0.4361994659020652
the regulation term lambda/alpha is 0.6305800818682548
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.26036491194541644
the lambda is 0.43223820753259656
the regulation term lambda/alpha is 1.6601246469924185
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27614712599916735
the lambda is 0.37942360837095324
the regulation term lambda/alpha is 1.373990792039231
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4164132586942241
the lambda is 0.6083044122954889
the regulation term lambda/alpha is 1.460819029161058
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28439681540466294
the lambda is 0.36580605606126493
the regulation term lambda/alpha is 1.286252293439947
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.25187866165356754
the lambda is 0.41369701610411047
the regulation term lambda/alpha is 1.6424456656558981
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.26014276811119563
the lambda is 0.30846589573012234
the regulation term lambda/alpha is 1.185756182921339
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37439160823919365
the lambda is 0.49679894064890984
the regulation term lambda/alpha is 1.3269499895721804
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.38301814547061325
the lambda is 0.39927158149324077
the regulation term lambda/alpha is 1.0424351593125099
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3222947237772552
the lambda is 0.4808352380589652
the regulation term lambda/alpha is 1.4919116032171869
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3000200407954734
the lambda is 0.4193230766763902
the regulation term lambda/alpha is 1.3976502221804803
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.34651263061552734
the lambda is 0.49350410863918437
the regulation term lambda/alpha is 1.4242023667724575
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2564718046310237
the lambda is 0.4747343077481672
the regulation term lambda/alpha is 1.8510194850897919
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.29184159330343445
the lambda is 0.42689319280712146
the regulation term lambda/alpha is 1.4627565179281032
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.35138587874069516
the lambda is 0.4548408718264974
the regulation term lambda/alpha is 1.2944198937548848
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2643251168289764
the lambda is 0.4929932733506938
the regulation term lambda/alpha is 1.8651018838655058
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2942768346845289
the lambda is 0.5102083157724274
the regulation term lambda/alpha is 1.733769891603536
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2720053615715746
the lambda is 0.46427355284143296
the regulation term lambda/alpha is 1.706854416982753
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.241223422696633
the lambda is 0.43573559590234456
the regulation term lambda/alpha is 1.806356907763197
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3261392208613144
the lambda is 0.5644075000079684
the regulation term lambda/alpha is 1.730572295222272
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3309423049549097
the lambda is 0.45903295218840445
the regulation term lambda/alpha is 1.3870482719063277
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2681058868734091
the lambda is 0.5072912501274016
the regulation term lambda/alpha is 1.892130217815501
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.34761451313982145
the lambda is 0.3407620204082189
the regulation term lambda/alpha is 0.9802870925333136
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3502412952078546
the lambda is 0.5703645219610074
the regulation term lambda/alpha is 1.628490214503456
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.3497822513358191
the lambda is 0.39802592879487453
the regulation term lambda/alpha is 1.1379248869112506
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3729532789765826
the lambda is 0.5573680491937774
the regulation term lambda/alpha is 1.4944715078608386
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.36350595980330286
the lambda is 0.578743253550447
the regulation term lambda/alpha is 1.5921148964479466
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.46573799677303573
the lambda is 0.524246921821431
the regulation term lambda/alpha is 1.125626265097086
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.381113906451305
the lambda is 0.7954518779589981
the regulation term lambda/alpha is 2.0871762076743665
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.34569585713033424
the lambda is 0.46987144068789893
the regulation term lambda/alpha is 1.3592047199765775
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27478764402110806
the lambda is 0.46392042940789613
the regulation term lambda/alpha is 1.6882870809586317
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2904413144716446
the lambda is 0.4917372884848269
the regulation term lambda/alpha is 1.6930693533713315
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30970945931924754
the lambda is 0.53851647841996
the regulation term lambda/alpha is 1.7387795632837255
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27660814460399213
the lambda is 0.47219315203689805
the regulation term lambda/alpha is 1.7070833279797906
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.24158165709940554
the lambda is 0.4405228223763207
the regulation term lambda/alpha is 1.823494497328724
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.301745823689836
the lambda is 0.51790284091246
the regulation term lambda/alpha is 1.7163546278102308
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28457213541564735
the lambda is 0.4920228269300094
the regulation term lambda/alpha is 1.7289915831406284
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37638414835862644
the lambda is 0.5322694711779334
the regulation term lambda/alpha is 1.4141654835866688
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3592032344618995
the lambda is 0.4724530191449373
the regulation term lambda/alpha is 1.315280525947074
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3673933513411821
the lambda is 0.39356117867126333
the regulation term lambda/alpha is 1.071225642038852
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.3295680693575412
the lambda is 0.5164890685865907
the regulation term lambda/alpha is 1.567169627790194
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3293568868824357
the lambda is 0.5945136188170733
the regulation term lambda/alpha is 1.8050741991294252
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3202645888090066
the lambda is 0.44745572555518837
the regulation term lambda/alpha is 1.3971439278353488
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3586781533073898
the lambda is 0.6685107609588317
the regulation term lambda/alpha is 1.863817895777759
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.30495647327562114
the lambda is 0.458993493854775
the regulation term lambda/alpha is 1.5051114964853836
110
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.5194019443425069
the lambda is 0.6382297540920638
the regulation term lambda/alpha is 1.2287781380949143
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2909313882391724
the lambda is 0.4555397820539918
the regulation term lambda/alpha is 1.5657979869793084
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.25828733945185195
the lambda is 0.35311606241206145
the regulation term lambda/alpha is 1.3671442942633538
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2401654351367346
the lambda is 0.36415626598385265
the regulation term lambda/alpha is 1.5162725884202517
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30352654891949593
the lambda is 0.44172497181286746
the regulation term lambda/alpha is 1.4553091760352923
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3017028403558722
the lambda is 0.42005840339846523
the regulation term lambda/alpha is 1.392291842208006
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3603265228945935
the lambda is 0.5695960323003771
the regulation term lambda/alpha is 1.5807774230014184
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31700992378360104
the lambda is 0.5060352940746761
the regulation term lambda/alpha is 1.596275876903174
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29358359753625507
the lambda is 0.5358512442869422
the regulation term lambda/alpha is 1.8252083862442934
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.6025277669024289
the lambda is 0.6041629093621191
the regulation term lambda/alpha is 1.0027138043248969
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.6377728493273143
the lambda is 0.7367823961382594
the regulation term lambda/alpha is 1.1552426493466672
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4696608094434555
the lambda is 0.5555547817033221
the regulation term lambda/alpha is 1.1828851173715138
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3370824262755638
the lambda is 0.4638903842835621
the regulation term lambda/alpha is 1.3761927295027039
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.32911021351112035
the lambda is 0.3993183359163085
the regulation term lambda/alpha is 1.2133270847360558
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4643367367970034
the lambda is 0.4323079899274629
the regulation term lambda/alpha is 0.9310225869904782
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2851181270981166
the lambda is 0.42926443605984477
the regulation term lambda/alpha is 1.5055669747442035
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.44111855743285344
the lambda is 0.5320197456426454
the regulation term lambda/alpha is 1.2060697440134989
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2972964737409712
the lambda is 0.7180081371962352
the regulation term lambda/alpha is 2.4151249699040234
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.18798949016053024
the lambda is 0.44811146178460587
the regulation term lambda/alpha is 2.383704862447093
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24609632682693647
the lambda is 0.4043714664601314
the regulation term lambda/alpha is 1.6431430394509687
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.33706415176356014
the lambda is 0.5144315866388044
the regulation term lambda/alpha is 1.5262126925905248
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.34891734074905995
the lambda is 0.48104328391536966
the regulation term lambda/alpha is 1.3786740518045337
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.403239976782382
the lambda is 0.4378112764049119
the regulation term lambda/alpha is 1.0857338101702827
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27386538013210243
the lambda is 0.49958931610358953
the regulation term lambda/alpha is 1.8242149331273865
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4922219086482056
the lambda is 0.5706052511594761
the regulation term lambda/alpha is 1.1592439124185585
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37180077924485266
the lambda is 0.5948938839004311
the regulation term lambda/alpha is 1.60003398892464
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3629039459021495
the lambda is 0.5078539150019856
the regulation term lambda/alpha is 1.399416900082203
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3299433090440596
the lambda is 0.5820529789446034
the regulation term lambda/alpha is 1.7640999619934037
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.34495804142253905
the lambda is 0.3972407212472109
the regulation term lambda/alpha is 1.1515624323731326
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32633551420004603
the lambda is 0.4998528892439202
the regulation term lambda/alpha is 1.531714654070739
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32863662667570875
the lambda is 0.5965652875337324
the regulation term lambda/alpha is 1.8152732809128107
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.29456334266077844
the lambda is 0.4485149182411825
the regulation term lambda/alpha is 1.5226433614915076
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24468619384969323
the lambda is 0.34603334994433244
the regulation term lambda/alpha is 1.4141923763663393
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.355935503632267
the lambda is 0.5116343247693209
the regulation term lambda/alpha is 1.4374354891494987
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.39937468632843254
the lambda is 0.49954569151885814
the regulation term lambda/alpha is 1.2508196153124445
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37666484454712307
the lambda is 0.5540785457828753
the regulation term lambda/alpha is 1.4710121048038416
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.23938976419765765
the lambda is 0.38611251848969036
the regulation term lambda/alpha is 1.6129032073856244
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.30211625246069945
the lambda is 0.35522934654190097
the regulation term lambda/alpha is 1.1758034983176242
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5495894263389139
the lambda is 0.705614090765493
the regulation term lambda/alpha is 1.2838931335814376
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2605968710818031
the lambda is 0.422120820627078
the regulation term lambda/alpha is 1.6198230580234843
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.5496885205625911
the lambda is 0.6152571533897758
the regulation term lambda/alpha is 1.1192832492846623
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.261910818669265
the lambda is 0.4332646079497092
the regulation term lambda/alpha is 1.6542447927545363
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3495925969564178
the lambda is 0.4194139153001641
the regulation term lambda/alpha is 1.1997219590792725
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35534601182346914
the lambda is 0.36556299839731143
the regulation term lambda/alpha is 1.0287522196222592
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3277429285534087
the lambda is 0.3943602434531286
the regulation term lambda/alpha is 1.2032608764245665
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4860090690105045
the lambda is 0.5548298666109879
the regulation term lambda/alpha is 1.1416039370224096
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.34363217118686723
the lambda is 0.569879274943442
the regulation term lambda/alpha is 1.6583990753110878
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37757961661379374
the lambda is 0.44394857176171715
the regulation term lambda/alpha is 1.17577472995797
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35570489734891186
the lambda is 0.6338147121803173
the regulation term lambda/alpha is 1.7818554563183502
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3510333738978731
the lambda is 0.5820453780493371
the regulation term lambda/alpha is 1.6580912851285554
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35623963730179015
the lambda is 0.4694254738136535
the regulation term lambda/alpha is 1.3177238708447747
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34856270275862067
the lambda is 0.5399005698725085
the regulation term lambda/alpha is 1.5489338520719156
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.303036654933928
the lambda is 0.4227221358882273
the regulation term lambda/alpha is 1.3949538084110475
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3403649227021444
the lambda is 0.48360014727589246
the regulation term lambda/alpha is 1.420828396288927
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3289058481623426
the lambda is 0.3953295226058207
the regulation term lambda/alpha is 1.2019534611944402
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3354255044364341
the lambda is 0.5056252883860463
the regulation term lambda/alpha is 1.507414557624572
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2739876442467727
the lambda is 0.5310541475755085
the regulation term lambda/alpha is 1.9382412262985242
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28887118983130905
the lambda is 0.5131800215515937
the regulation term lambda/alpha is 1.7765012213619273
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.26216916381146144
the lambda is 0.4770196918024774
the regulation term lambda/alpha is 1.819511054875719
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.36331080331097954
the lambda is 0.5753230018754711
the regulation term lambda/alpha is 1.5835559984243508
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2990921119479213
the lambda is 0.6530664787763121
the regulation term lambda/alpha is 2.1834961628477374
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2911549840158202
the lambda is 0.5652147096568237
the regulation term lambda/alpha is 1.9412846789052811
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.20185290798110397
the lambda is 0.3985064744400665
the regulation term lambda/alpha is 1.974241929065356
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2789569008780674
the lambda is 0.6190928182469393
the regulation term lambda/alpha is 2.2193135079226662
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32277759232297404
the lambda is 0.43819926968061385
the regulation term lambda/alpha is 1.3575888788529902
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2907066281740141
the lambda is 0.43802975112721126
the regulation term lambda/alpha is 1.5067759337947086
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.29685008150652936
the lambda is 0.48183560825989297
the regulation term lambda/alpha is 1.6231614484138006
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.44194943945334175
the lambda is 0.4765860260803405
the regulation term lambda/alpha is 1.0783722831956561
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3729802594595508
the lambda is 0.6542193754049996
the regulation term lambda/alpha is 1.7540321741235445
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3415956416212231
the lambda is 0.418231099782931
the regulation term lambda/alpha is 1.224345538479337
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.26236725789824517
the lambda is 0.4979616884231071
the regulation term lambda/alpha is 1.8979566749759353
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.25600685551018176
the lambda is 0.4504254556751611
the regulation term lambda/alpha is 1.7594273199345907
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.43740670719910363
the lambda is 0.7916164919300908
the regulation term lambda/alpha is 1.8097950463520305
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.33631100065607633
the lambda is 0.3987528617127026
the regulation term lambda/alpha is 1.1856670193208503
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35422221064801224
the lambda is 0.4752681177901918
the regulation term lambda/alpha is 1.3417230865358183
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28412887785368024
the lambda is 0.5308223575508662
the regulation term lambda/alpha is 1.8682450075498038
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28629084761944634
the lambda is 0.46954187972536876
the regulation term lambda/alpha is 1.6400869382646484
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.22221761966660317
the lambda is 0.44349603908206026
the regulation term lambda/alpha is 1.9957735113329214
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.26458879251925205
the lambda is 0.5660745781783983
the regulation term lambda/alpha is 2.1394503251199106
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.25855178259088163
the lambda is 0.45865112593799207
the regulation term lambda/alpha is 1.7739236656656003
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3824942871795101
the lambda is 0.47620295382258565
the regulation term lambda/alpha is 1.24499363724901
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.40872038584705395
the lambda is 0.43965205634162846
the regulation term lambda/alpha is 1.075679294612306
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.23458593727873334
the lambda is 0.38385571550557834
the regulation term lambda/alpha is 1.63631170716548
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.389571442289312
the lambda is 0.6409788173983832
the regulation term lambda/alpha is 1.6453434410686747
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3626298280763685
the lambda is 0.5629093781458693
the regulation term lambda/alpha is 1.5522975071629315
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23039897313367141
the lambda is 0.48295844543937
the regulation term lambda/alpha is 2.0961831507780646
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3772742958520644
the lambda is 0.4078137085947364
the regulation term lambda/alpha is 1.0809475044508388
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32293609957710934
the lambda is 0.6652535813930249
the regulation term lambda/alpha is 2.0600161526202445
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3544601977106298
the lambda is 0.5891133754683194
the regulation term lambda/alpha is 1.6620014864101982
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.24574481046195695
the lambda is 0.4868542368114231
the regulation term lambda/alpha is 1.9811374079323298
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2883980473596513
the lambda is 0.4786752734162476
the regulation term lambda/alpha is 1.6597729346596723
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30228975664797664
the lambda is 0.5200040557494423
the regulation term lambda/alpha is 1.7202172561705389
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.47946476331955423
the lambda is 0.43710759990916437
the regulation term lambda/alpha is 0.9116574008126649
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27110778121299794
the lambda is 0.5069201146288381
the regulation term lambda/alpha is 1.869810273835602
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3310012971827188
the lambda is 0.5088453241710789
the regulation term lambda/alpha is 1.5372910272620075
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3546115311398212
the lambda is 0.4605376842772014
the regulation term lambda/alpha is 1.2987104023292861
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2749060244700139
the lambda is 0.4570317211587889
the regulation term lambda/alpha is 1.6625016568476143
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.36786003475212914
the lambda is 0.5469871530961157
the regulation term lambda/alpha is 1.486943678088558
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2882952239096083
the lambda is 0.5882977704919607
the regulation term lambda/alpha is 2.040608798557186
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3324728753551397
the lambda is 0.4586870735630346
the regulation term lambda/alpha is 1.379622542359511
120
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31751795887382683
the lambda is 0.5547886080403072
the regulation term lambda/alpha is 1.7472668632918662
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.4286815648285338
the lambda is 0.5341117008580567
the regulation term lambda/alpha is 1.245940447827966
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.45681768363673436
the lambda is 0.7223819704593495
the regulation term lambda/alpha is 1.5813353911968835
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5668298108215689
the lambda is 0.6427686312614652
the regulation term lambda/alpha is 1.1339711126516614
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2821780393105332
the lambda is 0.4111418546024465
the regulation term lambda/alpha is 1.4570299503356827
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3484283693882038
the lambda is 0.5251147098239588
the regulation term lambda/alpha is 1.507095162044336
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5204735946005846
the lambda is 0.570527208140829
the regulation term lambda/alpha is 1.096169362018559
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3029444730526658
the lambda is 0.4914609270690959
the regulation term lambda/alpha is 1.622280552329658
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4072756734781195
the lambda is 0.5739762384008091
the regulation term lambda/alpha is 1.409306461883846
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35571776176886005
the lambda is 0.44315549111371505
the regulation term lambda/alpha is 1.245806475645348
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32897882310050464
the lambda is 0.44744035226445733
the regulation term lambda/alpha is 1.3600886161835473
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.294690197327671
the lambda is 0.49820784217179453
the regulation term lambda/alpha is 1.6906155911858474
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3650554004124294
the lambda is 0.6094394739209522
the regulation term lambda/alpha is 1.6694437973864364
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.316690577099421
the lambda is 0.5016210294936796
the regulation term lambda/alpha is 1.5839468104420487
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4804038351800074
the lambda is 0.6700084222510679
the regulation term lambda/alpha is 1.3946775050203661
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.320355543122598
the lambda is 0.5787051656195898
the regulation term lambda/alpha is 1.8064465499138347
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.23699611972309156
the lambda is 0.4181210148099014
the regulation term lambda/alpha is 1.7642525763647008
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35673586866842794
the lambda is 0.5560112870509442
the regulation term lambda/alpha is 1.558607742827607
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4125299186040371
the lambda is 0.49532400519099434
the regulation term lambda/alpha is 1.2006983805371614
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2615529207356516
the lambda is 0.5495819670345405
the regulation term lambda/alpha is 2.1012266484685767
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.23305681799121647
the lambda is 0.5945744392139849
the regulation term lambda/alpha is 2.5511995072222837
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2635884681403908
the lambda is 0.4479413873880269
the regulation term lambda/alpha is 1.6993967549044948
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3203327607522558
the lambda is 0.4346604594557365
the regulation term lambda/alpha is 1.356902923182126
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3417751563335587
the lambda is 0.4482153120120862
the regulation term lambda/alpha is 1.311433273326181
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3623132365369489
the lambda is 0.5256106033541463
the regulation term lambda/alpha is 1.4507077035827374
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.29024897620663354
the lambda is 0.4685740892389323
the regulation term lambda/alpha is 1.6143867081389665
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32776884185332483
the lambda is 0.5568872664071084
the regulation term lambda/alpha is 1.6990244199487183
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37396593016816115
the lambda is 0.5378449155191364
the regulation term lambda/alpha is 1.4382190251322728
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28778232093828243
the lambda is 0.3998925870976651
the regulation term lambda/alpha is 1.3895662033507117
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.339327913825613
the lambda is 0.4601806147421135
the regulation term lambda/alpha is 1.3561531368109285
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3461720579183551
the lambda is 0.4532250143372385
the regulation term lambda/alpha is 1.3092478262475242
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4036604887331048
the lambda is 0.49212519362530893
the regulation term lambda/alpha is 1.2191562150901916
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2273538588851712
the lambda is 0.40253839491587545
the regulation term lambda/alpha is 1.7705368929725713
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.28771486927799467
the lambda is 0.49489957766836673
the regulation term lambda/alpha is 1.7201042786224126
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30805111401160323
the lambda is 0.3629500472643367
the regulation term lambda/alpha is 1.1782137143989215
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3040818191158352
the lambda is 0.3970855347725545
the regulation term lambda/alpha is 1.3058509579005477
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28213160450547037
the lambda is 0.6675109889215749
the regulation term lambda/alpha is 2.3659560937584794
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39916474540149016
the lambda is 0.3958350248384051
the regulation term lambda/alpha is 0.9916582799421929
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2644231959119559
the lambda is 0.4759099434893313
the regulation term lambda/alpha is 1.7998040672944344
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.36292900969469455
the lambda is 0.4556753279440781
the regulation term lambda/alpha is 1.2555494759909223
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.30485058071698923
the lambda is 0.3940391443295991
the regulation term lambda/alpha is 1.2925648473519191
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.26592657566747957
the lambda is 0.4644922299668473
the regulation term lambda/alpha is 1.7466935329835502
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.5407874137645263
the lambda is 0.4804807772660541
the regulation term lambda/alpha is 0.888483653717704
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32941137185999075
the lambda is 0.4443861007598116
the regulation term lambda/alpha is 1.349030843260288
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.34769562937216647
the lambda is 0.47935644583765624
the regulation term lambda/alpha is 1.3786668722388875
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.6385666133792763
the lambda is 0.47586417027792904
the regulation term lambda/alpha is 0.7452067807924837
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.25852023913921524
the lambda is 0.27625138956838036
the regulation term lambda/alpha is 1.0685870881452215
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30643752999139834
the lambda is 0.47234706776429425
the regulation term lambda/alpha is 1.5414138985441925
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.38279350905582415
the lambda is 0.561220371370242
the regulation term lambda/alpha is 1.466117784375485
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.25972661465666835
the lambda is 0.4873845995998085
the regulation term lambda/alpha is 1.8765292892454646
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3353630478500194
the lambda is 0.4486983090902997
the regulation term lambda/alpha is 1.3379479700189447
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.26406709769032105
the lambda is 0.3932609764783588
the regulation term lambda/alpha is 1.4892464071368219
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3974170254426703
the lambda is 0.5113634316835838
the regulation term lambda/alpha is 1.28671747546294
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3711984090495571
the lambda is 0.4703054250404886
the regulation term lambda/alpha is 1.2669920279149154
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2332977759930679
the lambda is 0.5141900807469394
the regulation term lambda/alpha is 2.204007640270938
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4958786077941805
the lambda is 0.6952573487137494
the regulation term lambda/alpha is 1.402071671949041
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2968905555367819
the lambda is 0.36938406499551013
the regulation term lambda/alpha is 1.2441758692109928
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.283803886536296
the lambda is 0.36108273300533966
the regulation term lambda/alpha is 1.2722966461530836
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27824744187928296
the lambda is 0.4771274707209902
the regulation term lambda/alpha is 1.714759594907582
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3290139657919855
the lambda is 0.4788601301853474
the regulation term lambda/alpha is 1.4554401331647424
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.262483011050995
the lambda is 0.4981779389740804
the regulation term lambda/alpha is 1.897943554439395
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3015048483120967
the lambda is 0.4437674796111976
the regulation term lambda/alpha is 1.4718419358611463
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35627522773716785
the lambda is 0.48698325666266534
the regulation term lambda/alpha is 1.3668737502623216
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2910058608543954
the lambda is 0.5077798226924574
the regulation term lambda/alpha is 1.7449127010762326
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.36679327983579096
the lambda is 0.624769477478227
the regulation term lambda/alpha is 1.7033285826772206
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2818168545924697
the lambda is 0.5240758983561443
the regulation term lambda/alpha is 1.8596329134181881
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3182120533274783
the lambda is 0.6425763314808511
the regulation term lambda/alpha is 2.0193337265561184
using Bay_non_info_prior option for model regressor
Convergence after  10  iterations
the alpha is 0.23607048151765614
the lambda is 0.3050907973198383
the regulation term lambda/alpha is 1.2923716483249517
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4215185099046315
the lambda is 0.6589123568372481
the regulation term lambda/alpha is 1.5631872417330543
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4092882429185357
the lambda is 0.4177530197200187
the regulation term lambda/alpha is 1.020681700361395
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.5070869640559443
the lambda is 0.7960558388644617
the regulation term lambda/alpha is 1.5698605866283657
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.41952530549178435
the lambda is 0.5064683043437007
the regulation term lambda/alpha is 1.2072413695045126
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.48969133028528855
the lambda is 0.4681125938907628
the regulation term lambda/alpha is 0.9559340036059977
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3454265807637568
the lambda is 0.5296418014933207
the regulation term lambda/alpha is 1.5332977570002115
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.22852195530546643
the lambda is 0.4786965259457376
the regulation term lambda/alpha is 2.0947507004561623
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2599249622110527
the lambda is 0.34054754798907416
the regulation term lambda/alpha is 1.3101763874166032
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.283399275120737
the lambda is 0.4103533197878754
the regulation term lambda/alpha is 1.447968840474458
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3010604206480813
the lambda is 0.6006312985080057
the regulation term lambda/alpha is 1.99505234602094
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3405940204929052
the lambda is 0.5115969055937507
the regulation term lambda/alpha is 1.502072481640668
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2869971416997515
the lambda is 0.6279252282398384
the regulation term lambda/alpha is 2.1879145712773562
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3956803092086945
the lambda is 0.48906695066603767
the regulation term lambda/alpha is 1.2360153873820596
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.20776783768160076
the lambda is 0.3864460446970626
the regulation term lambda/alpha is 1.8599897318529248
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3669707994283485
the lambda is 0.6269637008625042
the regulation term lambda/alpha is 1.7084838952831167
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35917667873999776
the lambda is 0.5096192530359098
the regulation term lambda/alpha is 1.4188539601837986
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2743656984251319
the lambda is 0.5568586500515429
the regulation term lambda/alpha is 2.0296219726005464
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2949091787563519
the lambda is 0.4961664743613413
the regulation term lambda/alpha is 1.6824382220102554
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.25429162647600034
the lambda is 0.3770443687223367
the regulation term lambda/alpha is 1.4827242797863875
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3514897519198515
the lambda is 0.43193951794982893
the regulation term lambda/alpha is 1.2288822521582992
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.22312370506298654
the lambda is 0.4375065446564176
the regulation term lambda/alpha is 1.9608250254400894
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4360680061222553
the lambda is 0.4927557111405311
the regulation term lambda/alpha is 1.1299973954117215
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31489537516188915
the lambda is 0.5716262467243675
the regulation term lambda/alpha is 1.8152894320232293
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3044306455351187
the lambda is 0.3788576729095862
the regulation term lambda/alpha is 1.2444794190927855
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37376220098314916
the lambda is 0.5219024341436019
the regulation term lambda/alpha is 1.396348889135345
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2932145921651718
the lambda is 0.36071042934049063
the regulation term lambda/alpha is 1.2301926267615546
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.42392940315658273
the lambda is 0.5108959590735064
the regulation term lambda/alpha is 1.20514395856803
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3288303127159609
the lambda is 0.3793073026361982
the regulation term lambda/alpha is 1.153504673894948
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2877790560435683
the lambda is 0.3825373577420033
the regulation term lambda/alpha is 1.3292744892598753
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4330636506839111
the lambda is 0.4803458876455639
the regulation term lambda/alpha is 1.1091808026071521
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.25870423885833604
the lambda is 0.381509959552929
the regulation term lambda/alpha is 1.4746954330417452
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2955143478128276
the lambda is 0.4070713176455719
the regulation term lambda/alpha is 1.3775010271359214
130
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.45860699397589055
the lambda is 0.6720968755174571
the regulation term lambda/alpha is 1.4655181546419895
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.365842769468066
the lambda is 0.6967731936106527
the regulation term lambda/alpha is 1.9045700824530667
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30507410532746837
the lambda is 0.5628624178712878
the regulation term lambda/alpha is 1.8450022733561995
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3097787745227822
the lambda is 0.3711584778626836
the regulation term lambda/alpha is 1.1981404421089132
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37215540277605985
the lambda is 0.5328040511147708
the regulation term lambda/alpha is 1.431670874963434
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4324860523858388
the lambda is 0.6045048707918583
the regulation term lambda/alpha is 1.3977441988176635
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.41305582844742683
the lambda is 0.612198397998114
the regulation term lambda/alpha is 1.482120226457557
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3675088377881408
the lambda is 0.533943214156552
the regulation term lambda/alpha is 1.4528717659420105
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2853582217611256
the lambda is 0.4405640481627292
the regulation term lambda/alpha is 1.5438982113209516
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3296250085158217
the lambda is 0.5606849298329488
the regulation term lambda/alpha is 1.700978127713985
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4102374768623043
the lambda is 0.4109627571542067
the regulation term lambda/alpha is 1.001767952302773
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3162532587148354
the lambda is 0.44765591579228264
the regulation term lambda/alpha is 1.4154981915804783
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.43949471421115555
the lambda is 0.5269183786308236
the regulation term lambda/alpha is 1.1989185798891435
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.324886669797128
the lambda is 0.4221234214269961
the regulation term lambda/alpha is 1.2992943714513943
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2725868296755673
the lambda is 0.47420925969769034
the regulation term lambda/alpha is 1.7396631387587358
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2816235064789122
the lambda is 0.5061370042567158
the regulation term lambda/alpha is 1.7972114990856243
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30460173842218974
the lambda is 0.7114786486785829
the regulation term lambda/alpha is 2.335766868449208
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.45635387587150344
the lambda is 0.5204772194652018
the regulation term lambda/alpha is 1.1405123238435115
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4198515434612575
the lambda is 0.5367919020864949
the regulation term lambda/alpha is 1.2785278759753522
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.22520114066667193
the lambda is 0.49437619252051695
the regulation term lambda/alpha is 2.1952650464247
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3512230171189944
the lambda is 0.5135906479211026
the regulation term lambda/alpha is 1.462292113238974
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2980854843220089
the lambda is 0.4774902984634617
the regulation term lambda/alpha is 1.6018569288924165
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3699596820648164
the lambda is 0.5903976556266505
the regulation term lambda/alpha is 1.5958432344074014
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2481519537935839
the lambda is 0.37169554634683505
the regulation term lambda/alpha is 1.4978546034580746
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.42322458809378644
the lambda is 0.4595986693061702
the regulation term lambda/alpha is 1.0859451039369274
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2964079859885899
the lambda is 0.5556434592605745
the regulation term lambda/alpha is 1.874590043204719
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3254627030574445
the lambda is 0.4878499531268769
the regulation term lambda/alpha is 1.4989427315140649
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35088547041346524
the lambda is 0.5116813352739455
the regulation term lambda/alpha is 1.458257404249332
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.45645362357265795
the lambda is 0.5243764434040477
the regulation term lambda/alpha is 1.1488055222341285
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4304459490609734
the lambda is 0.5762047710959499
the regulation term lambda/alpha is 1.3386228221056613
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3123839166510639
the lambda is 0.48078728334580867
the regulation term lambda/alpha is 1.5390910277972252
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3852026017035075
the lambda is 0.546847293536077
the regulation term lambda/alpha is 1.4196355141884225
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3741026117351451
the lambda is 0.4485776556482711
the regulation term lambda/alpha is 1.1990765142421738
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2932665726998306
the lambda is 0.432247077944101
the regulation term lambda/alpha is 1.4739050344701992
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3512536971252571
the lambda is 0.5503587393799644
the regulation term lambda/alpha is 1.566841129030754
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.26093027809158065
the lambda is 0.5107458583430898
the regulation term lambda/alpha is 1.9574035718607925
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.48543932159035624
the lambda is 0.5575328698438475
the regulation term lambda/alpha is 1.1485119664746242
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30657269189487646
the lambda is 0.39965244182999804
the regulation term lambda/alpha is 1.3036139630043715
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3436512190105914
the lambda is 0.5086350921939964
the regulation term lambda/alpha is 1.4800910459692567
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28075684543044266
the lambda is 0.5321567851559488
the regulation term lambda/alpha is 1.8954365452428132
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35842046024146373
the lambda is 0.6314874354833964
the regulation term lambda/alpha is 1.7618621299073456
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37046024451925036
the lambda is 0.4662441251409591
the regulation term lambda/alpha is 1.2585537369765771
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31874753437465064
the lambda is 0.5517528503963219
the regulation term lambda/alpha is 1.731002724393785
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2539620497151839
the lambda is 0.4571681041034815
the regulation term lambda/alpha is 1.800143386053906
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3405700105874399
the lambda is 0.4708832520442068
the regulation term lambda/alpha is 1.3826327551036954
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4234641403589546
the lambda is 0.5472943536251407
the regulation term lambda/alpha is 1.2924219584714303
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.33098645387792536
the lambda is 0.4727328414127557
the regulation term lambda/alpha is 1.4282543465875777
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3378602716211054
the lambda is 0.5105506429671246
the regulation term lambda/alpha is 1.5111295581378195
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2907191486489232
the lambda is 0.37174556494681193
the regulation term lambda/alpha is 1.2787102833592068
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3419267272856574
the lambda is 0.5345383105735179
the regulation term lambda/alpha is 1.5633124523984525
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4074723512025078
the lambda is 0.4945867978059489
the regulation term lambda/alpha is 1.213792288842063
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2227850206493534
the lambda is 0.5018995337249945
the regulation term lambda/alpha is 2.2528423691238473
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.23564643297848814
the lambda is 0.42164173609138617
the regulation term lambda/alpha is 1.7892981903523117
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3492146773478587
the lambda is 0.6480697071576225
the regulation term lambda/alpha is 1.8557917212399098
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35213525403242807
the lambda is 0.5285059655658325
the regulation term lambda/alpha is 1.5008607048391767
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24687861427896166
the lambda is 0.3551733044827825
the regulation term lambda/alpha is 1.4386556142989881
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2590533746926194
the lambda is 0.4063195183161084
the regulation term lambda/alpha is 1.5684779972398666
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27117755730317766
the lambda is 0.4561652762684447
the regulation term lambda/alpha is 1.682164559652147
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.44810387320283634
the lambda is 0.5446397486222753
the regulation term lambda/alpha is 1.215431914768881
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3160965367330233
the lambda is 0.5324608979808907
the regulation term lambda/alpha is 1.6844882373090022
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3538364177042421
the lambda is 0.46398923925797975
the regulation term lambda/alpha is 1.3113100179694053
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2705277238715911
the lambda is 0.4629069427360137
the regulation term lambda/alpha is 1.7111257068637353
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3404821812078135
the lambda is 0.49239664848082904
the regulation term lambda/alpha is 1.4461745009213698
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.27114749677620187
the lambda is 0.5041731099087374
the regulation term lambda/alpha is 1.8594053638815957
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31685358532325414
the lambda is 0.41324663615732804
the regulation term lambda/alpha is 1.3042195364011226
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3195596809453194
the lambda is 0.45772564086730716
the regulation term lambda/alpha is 1.4323635557316434
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4085349457038293
the lambda is 0.5592324066149207
the regulation term lambda/alpha is 1.3688728773286893
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3361225229693091
the lambda is 0.6604490999046676
the regulation term lambda/alpha is 1.964905814910155
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3671264105106504
the lambda is 0.43156386945140235
the regulation term lambda/alpha is 1.1755184511272925
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.341598030513533
the lambda is 0.5033156324738031
the regulation term lambda/alpha is 1.4734149131865775
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.34695014665460344
the lambda is 0.5846636002752227
the regulation term lambda/alpha is 1.685151615910018
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.26470334877736557
the lambda is 0.4926586306011927
the regulation term lambda/alpha is 1.8611726405303388
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.40257272302525726
the lambda is 0.5711718375348264
the regulation term lambda/alpha is 1.4188041187753082
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31836850160702956
the lambda is 0.47563404330976006
the regulation term lambda/alpha is 1.4939733073746329
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3073817896145697
the lambda is 0.5461604227667871
the regulation term lambda/alpha is 1.7768145063233098
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30170267732524503
the lambda is 0.5014133756928147
the regulation term lambda/alpha is 1.661945396501322
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3146563505676254
the lambda is 0.49504538177243174
the regulation term lambda/alpha is 1.573289021115871
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3321444965575926
the lambda is 0.511087183847391
the regulation term lambda/alpha is 1.5387495175876578
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3761344796747494
the lambda is 0.6347259282056696
the regulation term lambda/alpha is 1.6874973247720582
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.23231100016020914
the lambda is 0.6057275752272038
the regulation term lambda/alpha is 2.607399455081656
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2994590019587462
the lambda is 0.5015519250318516
the regulation term lambda/alpha is 1.6748600701639484
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.457857755038978
the lambda is 0.45404911554488625
the regulation term lambda/alpha is 0.9916816097310233
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24991110213770798
the lambda is 0.3778286477746276
the regulation term lambda/alpha is 1.5118521928106798
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2204502643042679
the lambda is 0.38843287328889325
the regulation term lambda/alpha is 1.7619977663205424
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.24968326021088572
the lambda is 0.3983237735996883
the regulation term lambda/alpha is 1.595316294986131
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.25890893649029645
the lambda is 0.45541578826783824
the regulation term lambda/alpha is 1.758980568385698
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.352352827954081
the lambda is 0.5242653040529374
the regulation term lambda/alpha is 1.4878986699129322
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3046558886298329
the lambda is 0.42465843464742553
the regulation term lambda/alpha is 1.3938953767061426
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4124280789143493
the lambda is 0.5566413649299703
the regulation term lambda/alpha is 1.3496689323269146
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.20945305668122438
the lambda is 0.4679151618922928
the regulation term lambda/alpha is 2.2339858358067937
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2852177776787369
the lambda is 0.4417212096932867
the regulation term lambda/alpha is 1.5487155579440488
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37349839739787405
the lambda is 0.5083863759598625
the regulation term lambda/alpha is 1.3611474092037328
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29001871159085674
the lambda is 0.52295713961676
the regulation term lambda/alpha is 1.803184135079259
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.473582282560764
the lambda is 0.5577110930919462
the regulation term lambda/alpha is 1.1776434922275367
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.40546016591452816
the lambda is 0.5120316643985509
the regulation term lambda/alpha is 1.2628408594556937
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3761032557197354
the lambda is 0.49885762374194487
the regulation term lambda/alpha is 1.3263847524725592
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.253745462230414
the lambda is 0.5417206695733605
the regulation term lambda/alpha is 2.1348979595995696
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3389687946418033
the lambda is 0.45083354959651417
the regulation term lambda/alpha is 1.3300149061594921
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37973593113961374
the lambda is 0.47211225064728046
the regulation term lambda/alpha is 1.2432646266326155
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3036714582092054
the lambda is 0.49628619210482516
the regulation term lambda/alpha is 1.6342865906183506
140
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2730009252162634
the lambda is 0.5092467957695656
the regulation term lambda/alpha is 1.8653665564179134
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2840458113705765
the lambda is 0.5775866737533297
the regulation term lambda/alpha is 2.0334278860383868
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3865789969974541
the lambda is 0.535794203233291
the regulation term lambda/alpha is 1.3859889114379889
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31311202012948947
the lambda is 0.4694740972429464
the regulation term lambda/alpha is 1.4993806275747332
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2632693614772306
the lambda is 0.3771473454814732
the regulation term lambda/alpha is 1.4325531211275853
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.33050147492176424
the lambda is 0.37888238056388823
the regulation term lambda/alpha is 1.1463863532033454
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.23067908924123076
the lambda is 0.5712942928951608
the regulation term lambda/alpha is 2.4765759860345837
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3691045344960197
the lambda is 0.5101735392225394
the regulation term lambda/alpha is 1.382192553985112
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.22387436199624072
the lambda is 0.48055869333096357
the regulation term lambda/alpha is 2.1465552779064225
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3963648040415133
the lambda is 0.5050343643558463
the regulation term lambda/alpha is 1.2741655142088535
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28128802449039964
the lambda is 0.5362158515674924
the regulation term lambda/alpha is 1.9062875233986134
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3702975400640776
the lambda is 0.5457475239221219
the regulation term lambda/alpha is 1.4738081269124386
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.25264830445790404
the lambda is 0.41246023170015034
the regulation term lambda/alpha is 1.6325470008007672
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.36561930746766624
the lambda is 0.45156642312274076
the regulation term lambda/alpha is 1.235072694192101
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3436518953897871
the lambda is 0.3803454275313506
the regulation term lambda/alpha is 1.1067752939349975
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3329531832125125
the lambda is 0.46777801314317274
the regulation term lambda/alpha is 1.404936299541567
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38628006232324713
the lambda is 0.5073759261723328
the regulation term lambda/alpha is 1.3134924001015362
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.22009418040886836
the lambda is 0.46914267750418115
the regulation term lambda/alpha is 2.131554212985805
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3146633521656699
the lambda is 0.4345984726221487
the regulation term lambda/alpha is 1.3811537620476793
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32239702854455654
the lambda is 0.4557150383350485
the regulation term lambda/alpha is 1.4135212113844495
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3339322611456959
the lambda is 0.49639008823190534
the regulation term lambda/alpha is 1.486499347289265
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2729877465214838
the lambda is 0.369487779780996
the regulation term lambda/alpha is 1.3534958418066498
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3259482906594562
the lambda is 0.5374818033369616
the regulation term lambda/alpha is 1.6489787452160967
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24372157534909292
the lambda is 0.4491883655038721
the regulation term lambda/alpha is 1.8430389876664806
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2979330629500711
the lambda is 0.51820337719517
the regulation term lambda/alpha is 1.7393281969581627
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.38027533553689025
the lambda is 0.47416087338257834
the regulation term lambda/alpha is 1.2468883176794419
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.287816844219974
the lambda is 0.4867481312724791
the regulation term lambda/alpha is 1.6911731924225568
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2699904674519907
the lambda is 0.5463839018942755
the regulation term lambda/alpha is 2.023715529850819
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38658888952501547
the lambda is 0.6317874376688538
the regulation term lambda/alpha is 1.6342617565784234
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3290506819016537
the lambda is 0.504212030026451
the regulation term lambda/alpha is 1.5323233099305635
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2975627002371607
the lambda is 0.5014055768354645
the regulation term lambda/alpha is 1.6850417624112122
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32627639707903316
the lambda is 0.463170511742063
the regulation term lambda/alpha is 1.4195648716504317
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.23523273877683473
the lambda is 0.4072432960782859
the regulation term lambda/alpha is 1.731235618799803
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.252712707915743
the lambda is 0.4669120259722348
the regulation term lambda/alpha is 1.8476001061565452
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34061140714580246
the lambda is 0.5036527316710879
the regulation term lambda/alpha is 1.4786725315265024
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36603448716898873
the lambda is 0.5704167260821095
the regulation term lambda/alpha is 1.5583688042453845
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3382816354893779
the lambda is 0.46273462390156245
the regulation term lambda/alpha is 1.3678975603631087
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3872711968300305
the lambda is 0.5945816421368352
the regulation term lambda/alpha is 1.5353107770568106
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31096887442534
the lambda is 0.5004919507125518
the regulation term lambda/alpha is 1.6094599552364979
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2469547524253499
the lambda is 0.5325163718553352
the regulation term lambda/alpha is 2.156331743469102
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.23411863214464346
the lambda is 0.4715303187506587
the regulation term lambda/alpha is 2.0140657513295963
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32229340849963933
the lambda is 0.44298600558830187
the regulation term lambda/alpha is 1.3744805010146448
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.26312927225771826
the lambda is 0.43828964563324735
the regulation term lambda/alpha is 1.6656818219904121
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3165032212916506
the lambda is 0.5744590528000216
the regulation term lambda/alpha is 1.8150180287443916
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3743504286158422
the lambda is 0.5764509504385579
the regulation term lambda/alpha is 1.5398698822650765
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.33131928375471026
the lambda is 0.49822869893784166
the regulation term lambda/alpha is 1.5037721115765226
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29293556978311025
the lambda is 0.39730123637156844
the regulation term lambda/alpha is 1.3562751586150177
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.39043658060789377
the lambda is 0.6034982710858461
the regulation term lambda/alpha is 1.5457011485609877
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.40353669214518106
the lambda is 0.6674013021092862
the regulation term lambda/alpha is 1.6538800934344133
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3849529822300505
the lambda is 0.5402278031531195
the regulation term lambda/alpha is 1.403360483203831
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3152956170025845
the lambda is 0.48514922593885335
the regulation term lambda/alpha is 1.5387122426598037
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34028319551122266
the lambda is 0.4723780552096321
the regulation term lambda/alpha is 1.3881909581222707
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2533667997790418
the lambda is 0.4002739444454042
the regulation term lambda/alpha is 1.579820026911491
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30259363203619566
the lambda is 0.44321400885139023
the regulation term lambda/alpha is 1.4647169071898176
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3834606863603528
the lambda is 0.3912824764641053
the regulation term lambda/alpha is 1.0203978931399555
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30088070062471745
the lambda is 0.4141880553850807
the regulation term lambda/alpha is 1.376585651805196
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4272959780479365
the lambda is 0.444546320200796
the regulation term lambda/alpha is 1.040370944354932
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3640702192870936
the lambda is 0.5035676075462681
the regulation term lambda/alpha is 1.3831606675556494
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.323651371743448
the lambda is 0.40698734133123005
the regulation term lambda/alpha is 1.2574868419029623
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3135725422211538
the lambda is 0.49177897578231633
the regulation term lambda/alpha is 1.5683100704508706
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4726295189455046
the lambda is 0.39810597552618276
the regulation term lambda/alpha is 0.8423214369140692
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39327525305528493
the lambda is 0.43912362639992053
the regulation term lambda/alpha is 1.1165808755787399
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.357440069327384
the lambda is 0.47757695265826433
the regulation term lambda/alpha is 1.33610356991299
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28839519024063504
the lambda is 0.4676228195594764
the regulation term lambda/alpha is 1.621465389798266
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31269823320951645
the lambda is 0.4193304095411028
the regulation term lambda/alpha is 1.3410066479657397
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3766428212467414
the lambda is 0.5218135223018547
the regulation term lambda/alpha is 1.3854333412610325
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3933029265768396
the lambda is 0.5448689933786036
the regulation term lambda/alpha is 1.3853672489064293
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37394330287786043
the lambda is 0.47814245123630145
the regulation term lambda/alpha is 1.2786495908778854
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.40317136581629714
the lambda is 0.40906594128758395
the regulation term lambda/alpha is 1.014620521125929
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3992769144953048
the lambda is 0.457203304703663
the regulation term lambda/alpha is 1.1450782354436357
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28644060112030034
the lambda is 0.5657258095787903
the regulation term lambda/alpha is 1.9750196283842971
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.20896752685956987
the lambda is 0.41355775652592325
the regulation term lambda/alpha is 1.9790527396337607
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32749289526851527
the lambda is 0.5672487376463686
the regulation term lambda/alpha is 1.7320947899687251
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.398147362583732
the lambda is 0.5629554121140435
the regulation term lambda/alpha is 1.4139373132118933
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26810607206532777
the lambda is 0.5126162398781192
the regulation term lambda/alpha is 1.9119904145744717
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4150637576761149
the lambda is 0.42346088159027234
the regulation term lambda/alpha is 1.0202309253912503
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.451230234840347
the lambda is 0.4987204251441146
the regulation term lambda/alpha is 1.1052460288273245
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3283856961331754
the lambda is 0.4536037524644325
the regulation term lambda/alpha is 1.381313978671213
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3280288840271222
the lambda is 0.5194593150918715
the regulation term lambda/alpha is 1.5835779725084251
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2372373026719134
the lambda is 0.44357434205847207
the regulation term lambda/alpha is 1.8697495590392539
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.26623641955942384
the lambda is 0.48387112974053165
the regulation term lambda/alpha is 1.8174490572749453
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3111991833061293
the lambda is 0.426235319514286
the regulation term lambda/alpha is 1.3696543640829375
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24763247348467443
the lambda is 0.43266143653497124
the regulation term lambda/alpha is 1.7471918381566702
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33990165599645694
the lambda is 0.5476495392487937
the regulation term lambda/alpha is 1.6111999738374392
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.43807175049510205
the lambda is 0.42844749230153334
the regulation term lambda/alpha is 0.9780304067023461
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3373275740276628
the lambda is 0.4274378254489927
the regulation term lambda/alpha is 1.267129811967107
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28147079721220813
the lambda is 0.352818397690203
the regulation term lambda/alpha is 1.2534813600012795
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27217264388825707
the lambda is 0.41843013058697265
the regulation term lambda/alpha is 1.5373702684049426
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.23290724496729126
the lambda is 0.5341777600184107
the regulation term lambda/alpha is 2.2935214406637665
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31537017716094606
the lambda is 0.5241199961519428
the regulation term lambda/alpha is 1.6619199724914488
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23245732077185421
the lambda is 0.42687966087817875
the regulation term lambda/alpha is 1.8363786498990962
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.46167482326112064
the lambda is 0.6266680296539572
the regulation term lambda/alpha is 1.3573796925450217
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30724133268152765
the lambda is 0.455653866931185
the regulation term lambda/alpha is 1.4830487257503697
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2498167691719913
the lambda is 0.5321410891162652
the regulation term lambda/alpha is 2.130125575156655
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3695539754542569
the lambda is 0.5139822516955366
the regulation term lambda/alpha is 1.3908178123743575
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3005732708261799
the lambda is 0.4878564034953678
the regulation term lambda/alpha is 1.6230864512816006
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31544922929520447
the lambda is 0.5133103099893476
the regulation term lambda/alpha is 1.6272358982655186
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3184800102022557
the lambda is 0.5982595987145484
the regulation term lambda/alpha is 1.878483985021899
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.40939583711903055
the lambda is 0.5290061566080321
the regulation term lambda/alpha is 1.2921630086195166
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.36301071580680244
the lambda is 0.4501422723940285
the regulation term lambda/alpha is 1.240024750766857
150
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4054188217256015
the lambda is 0.5815466320931482
the regulation term lambda/alpha is 1.4344342219186723
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38591527638436557
the lambda is 0.6066951501468538
the regulation term lambda/alpha is 1.572094154527832
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.282748115412766
the lambda is 0.4146142427227465
the regulation term lambda/alpha is 1.466373143168355
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26629814607309
the lambda is 0.5924546920766179
the regulation term lambda/alpha is 2.2247796344553175
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33477742371594194
the lambda is 0.4780908429759449
the regulation term lambda/alpha is 1.4280856745633008
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3872072199949932
the lambda is 0.5652665792863462
the regulation term lambda/alpha is 1.459855472978152
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.40016420467862085
the lambda is 0.5005793629625057
the regulation term lambda/alpha is 1.2509348840047552
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2639185392385741
the lambda is 0.41477735022055917
the regulation term lambda/alpha is 1.5716112684513361
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2699092855043109
the lambda is 0.3924901558548396
the regulation term lambda/alpha is 1.4541558106142696
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2399810785584981
the lambda is 0.42278211150020517
the regulation term lambda/alpha is 1.7617310249614002
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.44815598916115895
the lambda is 0.6189992127714737
the regulation term lambda/alpha is 1.3812137464236338
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.43109497644084976
the lambda is 0.6120830115908719
the regulation term lambda/alpha is 1.4198333198968636
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.38407881172331343
the lambda is 0.5489681061424397
the regulation term lambda/alpha is 1.4293110928959833
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3392021271255274
the lambda is 0.4768877692917629
the regulation term lambda/alpha is 1.405910314693524
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3164648583322705
the lambda is 0.44524384057267524
the regulation term lambda/alpha is 1.4069298023137657
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24102231651910605
the lambda is 0.3504986205815474
the regulation term lambda/alpha is 1.4542164627886773
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23647893664788244
the lambda is 0.38586262371182023
the regulation term lambda/alpha is 1.6316997580480936
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2947255685579452
the lambda is 0.4945645870340472
the regulation term lambda/alpha is 1.678051176400775
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3236289725250486
the lambda is 0.3879223693302714
the regulation term lambda/alpha is 1.1986639091784237
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23385076858331524
the lambda is 0.455478763852763
the regulation term lambda/alpha is 1.9477325929355975
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23553153915950156
the lambda is 0.4505645171275349
the regulation term lambda/alpha is 1.9129689328884885
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.4707096282804561
the lambda is 0.5961663400805463
the regulation term lambda/alpha is 1.2665267593067824
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27167975451106957
the lambda is 0.4547176783672466
the regulation term lambda/alpha is 1.6737267713804531
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37967834699927916
the lambda is 0.5572607898048196
the regulation term lambda/alpha is 1.46771812037487
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4332214246519673
the lambda is 0.5086430868122246
the regulation term lambda/alpha is 1.1740949497611943
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2539588439572727
the lambda is 0.4272860325826727
the regulation term lambda/alpha is 1.6825010931872153
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29816865349266103
the lambda is 0.4354349563057209
the regulation term lambda/alpha is 1.4603646332542413
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2428255623563028
the lambda is 0.38533231184961525
the regulation term lambda/alpha is 1.5868688127826076
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3666059581182607
the lambda is 0.4941833598885597
the regulation term lambda/alpha is 1.3479959857312105
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4746216633569045
the lambda is 0.5169843062469625
the regulation term lambda/alpha is 1.0892556032744807
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.39757588729796717
the lambda is 0.501989212180716
the regulation term lambda/alpha is 1.2626248930546817
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28629523916965394
the lambda is 0.5477781611226236
the regulation term lambda/alpha is 1.9133331127382773
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2287895244179089
the lambda is 0.5167785733447674
the regulation term lambda/alpha is 2.258751027432599
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.232583557952695
the lambda is 0.5052330335273195
the regulation term lambda/alpha is 2.1722646173900158
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3155871458482463
the lambda is 0.44977176555976034
the regulation term lambda/alpha is 1.4251903839456066
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2934678293891512
the lambda is 0.4566723619622991
the regulation term lambda/alpha is 1.5561241002560846
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3048323469400596
the lambda is 0.5775127858539904
the regulation term lambda/alpha is 1.8945259308965297
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3576947567632972
the lambda is 0.411954688623182
the regulation term lambda/alpha is 1.1516933945324535
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3102931788377643
the lambda is 0.45866648137897076
the regulation term lambda/alpha is 1.4781713316965401
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34097851878449503
the lambda is 0.6452525418610354
the regulation term lambda/alpha is 1.8923554016282398
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30344789631401625
the lambda is 0.5401362165011776
the regulation term lambda/alpha is 1.7799965762235166
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33576686741232176
the lambda is 0.557709712013496
the regulation term lambda/alpha is 1.6610028151724343
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2650748415273748
the lambda is 0.48939510531731373
the regulation term lambda/alpha is 1.8462525620967802
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.43409499172219146
the lambda is 0.47842817477126176
the regulation term lambda/alpha is 1.1021278381332773
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3864195718997281
the lambda is 0.5918137119869081
the regulation term lambda/alpha is 1.531531410475445
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.38174543513078707
the lambda is 0.38417305062283125
the regulation term lambda/alpha is 1.0063592521838864
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3222220174813099
the lambda is 0.45284678284962354
the regulation term lambda/alpha is 1.4053874604515204
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33210644456144467
the lambda is 0.7067960911115894
the regulation term lambda/alpha is 2.128221546693959
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.32041503176224073
the lambda is 0.35775335019209675
the regulation term lambda/alpha is 1.1165311072470607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3517760534318302
the lambda is 0.5281969145662314
the regulation term lambda/alpha is 1.5015146978121106
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39977092258994296
the lambda is 0.5459376176178562
the regulation term lambda/alpha is 1.3656261292866485
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2536320611294064
the lambda is 0.5365225477132184
the regulation term lambda/alpha is 2.1153577561295673
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3076192361491665
the lambda is 0.5161408908381587
the regulation term lambda/alpha is 1.6778563567717815
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28486286116691806
the lambda is 0.46360028825224237
the regulation term lambda/alpha is 1.627450789313639
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.25475907878191517
the lambda is 0.42427240284282325
the regulation term lambda/alpha is 1.6653867837464542
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2796931092908961
the lambda is 0.4938318984058834
the regulation term lambda/alpha is 1.765620539089761
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2571165568137945
the lambda is 0.4081181737046249
the regulation term lambda/alpha is 1.5872885774531695
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.26736593285904664
the lambda is 0.5205567603321423
the regulation term lambda/alpha is 1.946982380162008
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.39611519881982177
the lambda is 0.4831346691036808
the regulation term lambda/alpha is 1.2196822301772898
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2784844702637098
the lambda is 0.3540921963957184
the regulation term lambda/alpha is 1.2714971002167987
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3390136772503113
the lambda is 0.5207473538174135
the regulation term lambda/alpha is 1.5360659134496184
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2960953039879735
the lambda is 0.36313109049739856
the regulation term lambda/alpha is 1.2263993572560943
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28074659949233305
the lambda is 0.4456475046575159
the regulation term lambda/alpha is 1.587365636710717
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.36937820726943094
the lambda is 0.4727589089985795
the regulation term lambda/alpha is 1.2798776421959859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.360109780376323
the lambda is 0.5426659245543959
the regulation term lambda/alpha is 1.506945809656426
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.39502056534186974
the lambda is 0.36592194416506296
the regulation term lambda/alpha is 0.9263364398468129
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.41068720018003224
the lambda is 0.5320043548860076
the regulation term lambda/alpha is 1.295400379297903
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3574893614250327
the lambda is 0.4781418167965574
the regulation term lambda/alpha is 1.3374994290475581
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3845512298879131
the lambda is 0.36683687746437477
the regulation term lambda/alpha is 0.9539349999512376
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27451186879727635
the lambda is 0.4996535323920847
the regulation term lambda/alpha is 1.8201527481533877
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27656739890597226
the lambda is 0.48044552765414184
the regulation term lambda/alpha is 1.7371733962667246
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35873184448122397
the lambda is 0.6007781684778523
the regulation term lambda/alpha is 1.6747277324840253
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.34762587672970413
the lambda is 0.5483994566953427
the regulation term lambda/alpha is 1.5775564864572775
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2579694498430453
the lambda is 0.44706711623300643
the regulation term lambda/alpha is 1.7330234898163817
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2995458100688873
the lambda is 0.4398594742191216
the regulation term lambda/alpha is 1.4684213880940815
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3811061213010966
the lambda is 0.47104831329917085
the regulation term lambda/alpha is 1.2360030106339188
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26624576486467694
the lambda is 0.43725921434278503
the regulation term lambda/alpha is 1.6423142526418326
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3777670003548228
the lambda is 0.626635170409265
the regulation term lambda/alpha is 1.6587874796387438
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27068726609106164
the lambda is 0.46754229336045283
the regulation term lambda/alpha is 1.727241551152862
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.22573171787184476
the lambda is 0.46240927684934896
the regulation term lambda/alpha is 2.048490487773959
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2826123496777839
the lambda is 0.6291172823417049
the regulation term lambda/alpha is 2.226078524377945
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37432104119290904
the lambda is 0.42008281836236255
the regulation term lambda/alpha is 1.1222527513377745
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2850815972018702
the lambda is 0.5066799968564784
the regulation term lambda/alpha is 1.7773156942771415
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.29094054006222275
the lambda is 0.5463981650969127
the regulation term lambda/alpha is 1.8780406641853895
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.392013816337755
the lambda is 0.43827598942137863
the regulation term lambda/alpha is 1.118011588254238
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28205435376428106
the lambda is 0.5711746417609038
the regulation term lambda/alpha is 2.0250516758136867
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32687316406315764
the lambda is 0.5134491033010425
the regulation term lambda/alpha is 1.5707900181179608
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3451051078547273
the lambda is 0.43168343020567324
the regulation term lambda/alpha is 1.2508752272290078
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23753058303317306
the lambda is 0.5356904285600015
the regulation term lambda/alpha is 2.255248236751004
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3523045234563197
the lambda is 0.6011163063978345
the regulation term lambda/alpha is 1.7062406707144187
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3107653810380124
the lambda is 0.46553869023844396
the regulation term lambda/alpha is 1.498039095228242
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3423453219687392
the lambda is 0.6597251612343318
the regulation term lambda/alpha is 1.9270751457634163
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30649646551016135
the lambda is 0.40344228272825816
the regulation term lambda/alpha is 1.3163032143184135
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3153491126645124
the lambda is 0.5204199050483148
the regulation term lambda/alpha is 1.650297667404472
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28064535649061395
the lambda is 0.552622900026714
the regulation term lambda/alpha is 1.9691147109544147
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.36313250822032944
the lambda is 0.4942831169010385
the regulation term lambda/alpha is 1.3611646044124859
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3823643957995252
the lambda is 0.4909453338459077
the regulation term lambda/alpha is 1.2839724075756045
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3220643084246212
the lambda is 0.45070878840954803
the regulation term lambda/alpha is 1.3994372447359715
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26828950616085
the lambda is 0.45698226687001403
the regulation term lambda/alpha is 1.7033177085802058
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4036000775614002
the lambda is 0.4618658140874654
the regulation term lambda/alpha is 1.1443650280696518
160
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4268874860665854
the lambda is 0.5228858042600072
the regulation term lambda/alpha is 1.2248796728101983
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3864884701187163
the lambda is 0.5241895042563904
the regulation term lambda/alpha is 1.356287560390552
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2397699819033644
the lambda is 0.45316363860973
the regulation term lambda/alpha is 1.8899932135473516
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39820182088681266
the lambda is 0.46274147445494934
the regulation term lambda/alpha is 1.1620777459641045
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3106213155725922
the lambda is 0.5180885822603504
the regulation term lambda/alpha is 1.667910591729089
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32806176874280074
the lambda is 0.410900629956159
the regulation term lambda/alpha is 1.2525099511924647
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33059104542121054
the lambda is 0.41590570688691786
the regulation term lambda/alpha is 1.2580670669921103
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29973036585003343
the lambda is 0.4105054792066713
the regulation term lambda/alpha is 1.369582551445798
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3220725043247412
the lambda is 0.43380789853260676
the regulation term lambda/alpha is 1.346926212910135
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2579312463636786
the lambda is 0.5154938384968092
the regulation term lambda/alpha is 1.9985707267508481
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3033865797903476
the lambda is 0.5700354036510502
the regulation term lambda/alpha is 1.8789077751724144
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3986256896038233
the lambda is 0.5762687252545404
the regulation term lambda/alpha is 1.4456387038860161
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.25433882703421234
the lambda is 0.41079514570814624
the regulation term lambda/alpha is 1.615149171278077
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3475437321183946
the lambda is 0.4652087921893008
the regulation term lambda/alpha is 1.3385618821369571
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30993862458450655
the lambda is 0.500215761045501
the regulation term lambda/alpha is 1.6139187612259482
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25288617879454295
the lambda is 0.4973628154612986
the regulation term lambda/alpha is 1.9667457424210613
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29855036476800983
the lambda is 0.5303970021789542
the regulation term lambda/alpha is 1.7765746244895801
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.40466115142981907
the lambda is 0.478081012041013
the regulation term lambda/alpha is 1.1814354067638422
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30966397350583463
the lambda is 0.47328691397839323
the regulation term lambda/alpha is 1.5283886873248935
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.42010910054867917
the lambda is 0.5004420242393911
the regulation term lambda/alpha is 1.1912191942183445
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.350367921313131
the lambda is 0.5420392517046979
the regulation term lambda/alpha is 1.5470573038570683
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32519494164084073
the lambda is 0.4466485583142902
the regulation term lambda/alpha is 1.373479415333551
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30606748860525695
the lambda is 0.5480302497515638
the regulation term lambda/alpha is 1.7905536202127381
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3044428424344033
the lambda is 0.5288764079010391
the regulation term lambda/alpha is 1.7371944226772003
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2454693253621058
the lambda is 0.4164779986441654
the regulation term lambda/alpha is 1.6966600532665128
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28317729184369617
the lambda is 0.521235786061884
the regulation term lambda/alpha is 1.8406694359856641
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2738707362635346
the lambda is 0.5689384182954729
the regulation term lambda/alpha is 2.07739762947147
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3444810882253459
the lambda is 0.46732047785223824
the regulation term lambda/alpha is 1.3565925498543934
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.323646989490952
the lambda is 0.5045326810604753
the regulation term lambda/alpha is 1.558898112582568
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4289859963844338
the lambda is 0.6633762230831285
the regulation term lambda/alpha is 1.5463820000516917
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3428416283733348
the lambda is 0.44408943142522644
the regulation term lambda/alpha is 1.295319455610678
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.261628298797117
the lambda is 0.5635002439491801
the regulation term lambda/alpha is 2.153819929036627
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2955466170690364
the lambda is 0.6346513421436386
the regulation term lambda/alpha is 2.147381514420756
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.29611135860018173
the lambda is 0.5214329321277472
the regulation term lambda/alpha is 1.7609352596021193
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38250526961732567
the lambda is 0.5167195663561607
the regulation term lambda/alpha is 1.350882216271448
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23052354192291086
the lambda is 0.4796922942571819
the regulation term lambda/alpha is 2.08088202296317
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23853981700245774
the lambda is 0.4098388399385111
the regulation term lambda/alpha is 1.7181150094295932
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2439378797998694
the lambda is 0.45330203802168473
the regulation term lambda/alpha is 1.8582683361582921
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34012107172028533
the lambda is 0.39773528868449903
the regulation term lambda/alpha is 1.169393259502591
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28006326547090266
the lambda is 0.4402021465914156
the regulation term lambda/alpha is 1.571795379344924
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.39697614707229356
the lambda is 0.4428357854376476
the regulation term lambda/alpha is 1.1155224028032156
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30224851108632966
the lambda is 0.5315561700396285
the regulation term lambda/alpha is 1.7586725841233437
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3543748335865815
the lambda is 0.5359567592810054
the regulation term lambda/alpha is 1.512400736408556
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34633839478122286
the lambda is 0.462408500883481
the regulation term lambda/alpha is 1.3351349658347236
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30357948453667694
the lambda is 0.5079426288070544
the regulation term lambda/alpha is 1.6731783756147969
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2551605763610676
the lambda is 0.45192302497318015
the regulation term lambda/alpha is 1.771131855156503
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.29039149330763564
the lambda is 0.43417060289751547
the regulation term lambda/alpha is 1.4951216302936352
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.39024677489874093
the lambda is 0.4459028873383317
the regulation term lambda/alpha is 1.1426177383631988
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4717804793932936
the lambda is 0.43691784698950176
the regulation term lambda/alpha is 0.9261041227296539
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26997629346209207
the lambda is 0.46376936633215227
the regulation term lambda/alpha is 1.7178151473409686
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2318778767954858
the lambda is 0.48850564919599937
the regulation term lambda/alpha is 2.1067367700061226
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.40204790228294957
the lambda is 0.540345600408414
the regulation term lambda/alpha is 1.3439831356914642
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3180575774577521
the lambda is 0.4892764941303304
the regulation term lambda/alpha is 1.5383267961767755
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.42426761027439414
the lambda is 0.6080423082946461
the regulation term lambda/alpha is 1.4331575014679911
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.25608961614183723
the lambda is 0.4822875097312282
the regulation term lambda/alpha is 1.883276319427608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.5096763381896922
the lambda is 0.5133479848327329
the regulation term lambda/alpha is 1.0072038789481224
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2595697177773549
the lambda is 0.4561502311961762
the regulation term lambda/alpha is 1.7573322308245434
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.41392446031624586
the lambda is 0.5611495028111904
the regulation term lambda/alpha is 1.355680943287241
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35881172233899516
the lambda is 0.5396993874155723
the regulation term lambda/alpha is 1.504129753335315
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2692232945955046
the lambda is 0.5094831388740937
the regulation term lambda/alpha is 1.8924184834732383
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2704243227241407
the lambda is 0.42879884591516193
the regulation term lambda/alpha is 1.5856519176811577
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27644351537218587
the lambda is 0.4275330115458662
the regulation term lambda/alpha is 1.5465474419621061
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.45152124313527037
the lambda is 0.4560189062111269
the regulation term lambda/alpha is 1.0099611328242846
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.46415777695833677
the lambda is 0.5602658542183365
the regulation term lambda/alpha is 1.207059069202295
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26237154388465783
the lambda is 0.4493166531507337
the regulation term lambda/alpha is 1.7125205214642467
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.36403499709788945
the lambda is 0.45431496852922437
the regulation term lambda/alpha is 1.2479980555470016
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24202396717804428
the lambda is 0.3992258772324509
the regulation term lambda/alpha is 1.6495303415085394
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3890046509469229
the lambda is 0.41643010606067526
the regulation term lambda/alpha is 1.0705016123765945
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27689316561666866
the lambda is 0.4094725402088056
the regulation term lambda/alpha is 1.478810570484358
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3514157041402888
the lambda is 0.6051836122237526
the regulation term lambda/alpha is 1.7221302437359403
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2642613286573575
the lambda is 0.5660244570362094
the regulation term lambda/alpha is 2.141911795842514
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30755853235439073
the lambda is 0.47330448842564277
the regulation term lambda/alpha is 1.5389086584672207
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2983133860356566
the lambda is 0.5776944868727133
the regulation term lambda/alpha is 1.9365355827635002
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.396110724731285
the lambda is 0.3679929419128751
the regulation term lambda/alpha is 0.9290153458039175
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.22221858913926873
the lambda is 0.4194107647348322
the regulation term lambda/alpha is 1.8873792978317365
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3614397459195567
the lambda is 0.4610061940638353
the regulation term lambda/alpha is 1.2754717743920683
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34410220718053397
the lambda is 0.5674554912195517
the regulation term lambda/alpha is 1.6490899487948794
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2871825990523092
the lambda is 0.4953019852138928
the regulation term lambda/alpha is 1.7246935811862176
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3970654339831679
the lambda is 0.541276489371515
the regulation term lambda/alpha is 1.363192166947628
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.276934028523159
the lambda is 0.5128336318836043
the regulation term lambda/alpha is 1.85182599126029
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.49789702414692166
the lambda is 0.7076754549575387
the regulation term lambda/alpha is 1.4213289508408764
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2938245151998556
the lambda is 0.4015827194511268
the regulation term lambda/alpha is 1.3667434086566108
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33737091382254325
the lambda is 0.5421175073363834
the regulation term lambda/alpha is 1.6068886946831957
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39180355620489843
the lambda is 0.573821595387512
the regulation term lambda/alpha is 1.4645645408267427
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2628142019700491
the lambda is 0.4918069884692669
the regulation term lambda/alpha is 1.8713105486031318
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.36861092092062264
the lambda is 0.5106842680352974
the regulation term lambda/alpha is 1.3854290229921569
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28991718310294556
the lambda is 0.4733963044258561
the regulation term lambda/alpha is 1.6328673566677132
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31732645078270344
the lambda is 0.5629875579284276
the regulation term lambda/alpha is 1.7741589348753855
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.48874561221645313
the lambda is 0.4922986483238064
the regulation term lambda/alpha is 1.0072697043585523
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4376168858505068
the lambda is 0.5559780045586127
the regulation term lambda/alpha is 1.2704674397517168
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2825653712306212
the lambda is 0.4624359493117577
the regulation term lambda/alpha is 1.6365627086495735
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4016207905407879
the lambda is 0.6152878290084518
the regulation term lambda/alpha is 1.5320118965453913
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2870671433549109
the lambda is 0.5608668281819634
the regulation term lambda/alpha is 1.9537827339875837
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3647670276016535
the lambda is 0.5734265538067271
the regulation term lambda/alpha is 1.5720350536533192
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37542915593153287
the lambda is 0.46599507750045976
the regulation term lambda/alpha is 1.2412330532619673
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32226182699240163
the lambda is 0.47948546763322225
the regulation term lambda/alpha is 1.4878754710359403
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4070999572523358
the lambda is 0.49897824872037355
the regulation term lambda/alpha is 1.2256897595572287
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30592548755271814
the lambda is 0.5263509747406523
the regulation term lambda/alpha is 1.7205201794438578
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35530576361714145
the lambda is 0.5400458436442744
the regulation term lambda/alpha is 1.519946758381885
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.44866794039405195
the lambda is 0.4836153992292561
the regulation term lambda/alpha is 1.077891589054727
170
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32005354213353815
the lambda is 0.5300316254079493
the regulation term lambda/alpha is 1.6560717368558309
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38811409633431304
the lambda is 0.7459956300324946
the regulation term lambda/alpha is 1.9221039304635568
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2736602622713608
the lambda is 0.45387362583660557
the regulation term lambda/alpha is 1.6585295288014656
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.26827660176991036
the lambda is 0.5013413331736539
the regulation term lambda/alpha is 1.8687478888063203
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.224571823208612
the lambda is 0.500679715307268
the regulation term lambda/alpha is 2.2294859085779897
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2850155482172458
the lambda is 0.5169878884435308
the regulation term lambda/alpha is 1.8138936337938663
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3227430175821681
the lambda is 0.5159501697210834
the regulation term lambda/alpha is 1.5986408430655703
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28538952787800703
the lambda is 0.44959379288458934
the regulation term lambda/alpha is 1.575368922004641
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3020735524090625
the lambda is 0.5279559325326865
the regulation term lambda/alpha is 1.747772780245714
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38926086817346794
the lambda is 0.5907941007832688
the regulation term lambda/alpha is 1.5177330913211413
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3207413157732445
the lambda is 0.40063330997776236
the regulation term lambda/alpha is 1.249085447604135
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2634337549381686
the lambda is 0.45360324366805094
the regulation term lambda/alpha is 1.7218873252386264
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26978457144071105
the lambda is 0.5976081204688284
the regulation term lambda/alpha is 2.2151308255971234
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38090634578053234
the lambda is 0.5336062579746459
the regulation term lambda/alpha is 1.4008857134716652
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27078170771851545
the lambda is 0.5136288470665162
the regulation term lambda/alpha is 1.8968373136949364
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2433211662175491
the lambda is 0.3834463008434603
the regulation term lambda/alpha is 1.5758855129792855
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37877500846899453
the lambda is 0.5518876901322443
the regulation term lambda/alpha is 1.4570330084948575
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32439067244960745
the lambda is 0.4402312553180027
the regulation term lambda/alpha is 1.3571020769297568
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.348758755624624
the lambda is 0.4439884421765845
the regulation term lambda/alpha is 1.2730531779235332
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24121196391962346
the lambda is 0.4377556093365858
the regulation term lambda/alpha is 1.8148171517829628
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.292114674963778
the lambda is 0.4481064118955443
the regulation term lambda/alpha is 1.534008559998258
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3187583335779339
the lambda is 0.452577419457345
the regulation term lambda/alpha is 1.419813607309794
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4818837314844585
the lambda is 0.503439455451857
the regulation term lambda/alpha is 1.0447322093671754
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3034600254417021
the lambda is 0.47899043136572544
the regulation term lambda/alpha is 1.578430077136287
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3208600802526189
the lambda is 0.4987400194352326
the regulation term lambda/alpha is 1.5543847618643167
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31907414561166714
the lambda is 0.5221222993347254
the regulation term lambda/alpha is 1.6363666768857554
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3377727673335912
the lambda is 0.5044963716076921
the regulation term lambda/alpha is 1.4935969397125535
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.316261583662875
the lambda is 0.5141413271330225
the regulation term lambda/alpha is 1.6256837810597988
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31555116499528113
the lambda is 0.5660805515241615
the regulation term lambda/alpha is 1.7939422012041275
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30896286034353576
the lambda is 0.4873857460455754
the regulation term lambda/alpha is 1.5774897523399778
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30775840959511486
the lambda is 0.41718386357195647
the regulation term lambda/alpha is 1.355556340835011
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3099704737058664
the lambda is 0.40605466803402396
the regulation term lambda/alpha is 1.3099785382117803
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3187269674386104
the lambda is 0.5948708616405444
the regulation term lambda/alpha is 1.8663963906823218
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30021035039077104
the lambda is 0.5283940221975342
the regulation term lambda/alpha is 1.760079296099372
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33052942743014824
the lambda is 0.5242547376247555
the regulation term lambda/alpha is 1.586106089557027
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3754928779280583
the lambda is 0.6092930880655384
the regulation term lambda/alpha is 1.6226488540277308
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.38241736217369854
the lambda is 0.5169505482721969
the regulation term lambda/alpha is 1.3517967524638481
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2884864578343802
the lambda is 0.43772805986115276
the regulation term lambda/alpha is 1.5173261966856413
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2535745679254433
the lambda is 0.47122520414431235
the regulation term lambda/alpha is 1.8583299106039028
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2746762739286885
the lambda is 0.43215779757440814
the regulation term lambda/alpha is 1.5733350077648318
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3014916392716744
the lambda is 0.42367715669412404
the regulation term lambda/alpha is 1.4052700025699492
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26912492511820835
the lambda is 0.5352840859450283
the regulation term lambda/alpha is 1.9889799716986982
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30365842281307837
the lambda is 0.3702443985684881
the regulation term lambda/alpha is 1.219279199103256
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.22831581197064246
the lambda is 0.46544408121807285
the regulation term lambda/alpha is 2.038597665228377
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2734906966342113
the lambda is 0.3973572513510942
the regulation term lambda/alpha is 1.4529095733101007
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29983471391163563
the lambda is 0.49208391010257385
the regulation term lambda/alpha is 1.6411839165747701
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35735004662263264
the lambda is 0.5545577405163689
the regulation term lambda/alpha is 1.5518613912536876
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2844483041518055
the lambda is 0.3952414422435082
the regulation term lambda/alpha is 1.3895018408426658
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.314041472286976
the lambda is 0.4536126496026039
the regulation term lambda/alpha is 1.4444354954115284
using Bay_non_info_prior option for model regressor
Convergence after  7  iterations
the alpha is 0.2840711185400809
the lambda is 0.3848757661628624
the regulation term lambda/alpha is 1.3548570799483037
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30046554052660684
the lambda is 0.49904751399270847
the regulation term lambda/alpha is 1.660914303577241
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3689696845386
the lambda is 0.5227110527561848
the regulation term lambda/alpha is 1.4166775067437851
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3751528037934792
the lambda is 0.5351403479140592
the regulation term lambda/alpha is 1.426459678570476
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35652071839276084
the lambda is 0.5370761938976121
the regulation term lambda/alpha is 1.506437539783992
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2810775532631204
the lambda is 0.4586601683238978
the regulation term lambda/alpha is 1.6317922331369519
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39777425316667175
the lambda is 0.4812080326021609
the regulation term lambda/alpha is 1.2097515833950405
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3399330331219993
the lambda is 0.5245891586600725
the regulation term lambda/alpha is 1.543213243626728
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3149954973669605
the lambda is 0.388693650433691
the regulation term lambda/alpha is 1.2339657350113622
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4153045778215746
the lambda is 0.47776848095718744
the regulation term lambda/alpha is 1.1504050436025988
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33842376384276684
the lambda is 0.5344024108827611
the regulation term lambda/alpha is 1.57909245147172
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3043394905374593
the lambda is 0.4597176593317013
the regulation term lambda/alpha is 1.510542251746056
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3043773857631531
the lambda is 0.4737050862882479
the regulation term lambda/alpha is 1.5563084133223182
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3082024304170187
the lambda is 0.45169167280394046
the regulation term lambda/alpha is 1.4655681728167136
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38983323815143933
the lambda is 0.5398544109953131
the regulation term lambda/alpha is 1.3848342269511527
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3670291675689221
the lambda is 0.4793176327551645
the regulation term lambda/alpha is 1.3059388057085584
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35137215449937975
the lambda is 0.49613291032416873
the regulation term lambda/alpha is 1.4119869886418235
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3183286192700085
the lambda is 0.6109230215012614
the regulation term lambda/alpha is 1.9191583304769477
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.34287761000640893
the lambda is 0.5217559908176863
the regulation term lambda/alpha is 1.5216974675247352
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3695891260295487
the lambda is 0.5238667093742424
the regulation term lambda/alpha is 1.4174299850271006
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33808545045229804
the lambda is 0.5925600572091311
the regulation term lambda/alpha is 1.7526931620878432
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24925650637521687
the lambda is 0.5512709037044923
the regulation term lambda/alpha is 2.211661038346737
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.23281630531356998
the lambda is 0.4656627096995504
the regulation term lambda/alpha is 2.000129282493208
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31098268009313534
the lambda is 0.46687020002482926
the regulation term lambda/alpha is 1.5012739612540724
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37936863200217724
the lambda is 0.46488005174551583
the regulation term lambda/alpha is 1.2254045604457036
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4987018973578014
the lambda is 0.5314183092842527
the regulation term lambda/alpha is 1.065603143079639
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3163574051507092
the lambda is 0.665206104810363
the regulation term lambda/alpha is 2.1027043906036154
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2702141384048658
the lambda is 0.4839644017749392
the regulation term lambda/alpha is 1.7910402639620886
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32456474898590004
the lambda is 0.5303633472322039
the regulation term lambda/alpha is 1.6340756317169993
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.5086466668548585
the lambda is 0.6204658605807387
the regulation term lambda/alpha is 1.219836678410374
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3384272798869632
the lambda is 0.5396318020714762
the regulation term lambda/alpha is 1.5945280837044713
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2909795605776616
the lambda is 0.5106679921598627
the regulation term lambda/alpha is 1.7549960936983644
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3148348600318628
the lambda is 0.6095900897851481
the regulation term lambda/alpha is 1.9362217059554798
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3393345342054382
the lambda is 0.44556065937838235
the regulation term lambda/alpha is 1.313042483051941
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32347991072701615
the lambda is 0.43994542858793523
the regulation term lambda/alpha is 1.3600394151190551
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35667740974655204
the lambda is 0.6200880344572571
the regulation term lambda/alpha is 1.7385122172382028
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33159382037400387
the lambda is 0.49268708726423904
the regulation term lambda/alpha is 1.4858150453724936
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2726614421943053
the lambda is 0.531615338148307
the regulation term lambda/alpha is 1.949726862258231
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3127122748956179
the lambda is 0.5033189620533963
the regulation term lambda/alpha is 1.6095273593638182
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3508739391877753
the lambda is 0.5111597703334584
the regulation term lambda/alpha is 1.456818854990264
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3132148337037517
the lambda is 0.4886936330868997
the regulation term lambda/alpha is 1.5602506027831406
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3230420447113311
the lambda is 0.5491081154467017
the regulation term lambda/alpha is 1.6998038627986714
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.5132929333521693
the lambda is 0.5580568153059644
the regulation term lambda/alpha is 1.08720923091899
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2938626704550797
the lambda is 0.5326153129366351
the regulation term lambda/alpha is 1.8124633255112663
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2726846197506347
the lambda is 0.4453765480012667
the regulation term lambda/alpha is 1.6333027818310977
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2782440994421791
the lambda is 0.4455871795170768
the regulation term lambda/alpha is 1.6014254405048856
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2940196298500248
the lambda is 0.500813173250781
the regulation term lambda/alpha is 1.7033324390831954
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30581819869416793
the lambda is 0.487875163074301
the regulation term lambda/alpha is 1.5953110872979743
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3024563616967038
the lambda is 0.46575792353071693
the regulation term lambda/alpha is 1.5399177617489432
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3182724299255051
the lambda is 0.4624602802610702
the regulation term lambda/alpha is 1.4530328007654127
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4170444796470027
the lambda is 0.462276848952867
the regulation term lambda/alpha is 1.1084593407018604
180
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3106260126611529
the lambda is 0.46488082821811544
the regulation term lambda/alpha is 1.496593360728072
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29242094649050077
the lambda is 0.40482812712542043
the regulation term lambda/alpha is 1.3844019451546752
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36123875494926394
the lambda is 0.507958620785809
the regulation term lambda/alpha is 1.4061576002750644
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3116281031176591
the lambda is 0.46555355986811026
the regulation term lambda/alpha is 1.4939395876383288
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32591322526378946
the lambda is 0.5451994202684258
the regulation term lambda/alpha is 1.6728361355300918
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4782033032718451
the lambda is 0.5457193617167317
the regulation term lambda/alpha is 1.1411869344752428
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30120847230236164
the lambda is 0.4158028703666815
the regulation term lambda/alpha is 1.3804487874739684
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2806288702665352
the lambda is 0.4333454708069348
the regulation term lambda/alpha is 1.5441941892698092
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35047689964581125
the lambda is 0.48883373061855995
the regulation term lambda/alpha is 1.3947673330612398
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2510171887793084
the lambda is 0.4015991737406527
the regulation term lambda/alpha is 1.5998871459505282
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28417200680413063
the lambda is 0.43965935268406986
the regulation term lambda/alpha is 1.5471592632525235
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28070880091245065
the lambda is 0.41784482288146935
the regulation term lambda/alpha is 1.4885348144527524
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.29328092328025096
the lambda is 0.40542718688245327
the regulation term lambda/alpha is 1.3823851287287394
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24614262361749834
the lambda is 0.5125310088758143
the regulation term lambda/alpha is 2.082252156669457
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3016574529485122
the lambda is 0.4481460712994965
the regulation term lambda/alpha is 1.485612461814386
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.294683031030667
the lambda is 0.48543949370647443
the regulation term lambda/alpha is 1.6473276116667737
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31665600631521573
the lambda is 0.4895751668555591
the regulation term lambda/alpha is 1.5460788903154759
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36102010756532
the lambda is 0.510974154149039
the regulation term lambda/alpha is 1.4153620350816265
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3721761419301304
the lambda is 0.5599728667168227
the regulation term lambda/alpha is 1.5045909816055536
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32508000764951095
the lambda is 0.4476773526785702
the regulation term lambda/alpha is 1.3771297592721823
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27037661770665744
the lambda is 0.4649780103630925
the regulation term lambda/alpha is 1.7197419447992577
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4400857566817937
the lambda is 0.41875737595502505
the regulation term lambda/alpha is 0.9515358531764747
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3922144575780125
the lambda is 0.5193967391661498
the regulation term lambda/alpha is 1.3242671939568684
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26288467075781685
the lambda is 0.4645858505505206
the regulation term lambda/alpha is 1.7672610929015387
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3731912801024881
the lambda is 0.5274803025259214
the regulation term lambda/alpha is 1.4134314777694204
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2979037932059774
the lambda is 0.4803243922944824
the regulation term lambda/alpha is 1.6123473525641727
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3973365631081499
the lambda is 0.6327607048271768
the regulation term lambda/alpha is 1.5925056075318884
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35095144073570034
the lambda is 0.4418591781503403
the regulation term lambda/alpha is 1.2590322388307336
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3913174866583141
the lambda is 0.4872589707419076
the regulation term lambda/alpha is 1.2451755603944337
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2451703559886322
the lambda is 0.4366929488198332
the regulation term lambda/alpha is 1.781181689192805
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3790766986123288
the lambda is 0.5393255475609816
the regulation term lambda/alpha is 1.4227346326885022
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3618794394291768
the lambda is 0.5735423251179269
the regulation term lambda/alpha is 1.5848988989886357
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3151505335580749
the lambda is 0.42811098890999566
the regulation term lambda/alpha is 1.3584333304995178
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.25628325374529354
the lambda is 0.5147919216966914
the regulation term lambda/alpha is 2.0086834163901948
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3284874437630514
the lambda is 0.4154595733614664
the regulation term lambda/alpha is 1.2647654613585497
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.263692745271661
the lambda is 0.3161498892722027
the regulation term lambda/alpha is 1.1989328297466033
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33440673930947107
the lambda is 0.5964424658185441
the regulation term lambda/alpha is 1.7835838687048005
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32790776301659935
the lambda is 0.4611051875977928
the regulation term lambda/alpha is 1.4062039378264146
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3583430831861198
the lambda is 0.5098525492956256
the regulation term lambda/alpha is 1.4228056106522178
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31874825386564265
the lambda is 0.5069322579730325
the regulation term lambda/alpha is 1.5903844235228732
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37906752383429726
the lambda is 0.5349441883202659
the regulation term lambda/alpha is 1.4112108125467044
using Bay_non_info_prior option for model regressor
Convergence after  8  iterations
the alpha is 0.42705284667758986
the lambda is 0.3786865467272137
the regulation term lambda/alpha is 0.8867439935674025
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3268789484371257
the lambda is 0.5797382396837203
the regulation term lambda/alpha is 1.7735563653014852
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30117291204684277
the lambda is 0.45766241846719036
the regulation term lambda/alpha is 1.5196002036066514
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.18141570216661126
the lambda is 0.5317269956443084
the regulation term lambda/alpha is 2.9309866196475816
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.25933564719081537
the lambda is 0.5295232297317883
the regulation term lambda/alpha is 2.0418451357062106
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3195338144730242
the lambda is 0.4779803710004573
the regulation term lambda/alpha is 1.4958678842448756
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.28200355389440956
the lambda is 0.3784539430906441
the regulation term lambda/alpha is 1.3420183464508693
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35517439576236953
the lambda is 0.5555561367417586
the regulation term lambda/alpha is 1.5641784525297118
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2416133569754571
the lambda is 0.407925452945301
the regulation term lambda/alpha is 1.6883398254622892
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3138188251397266
the lambda is 0.4920836986292687
the regulation term lambda/alpha is 1.5680502863719867
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2768246005527447
the lambda is 0.4895019599291479
the regulation term lambda/alpha is 1.7682747810409312
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29417451560555663
the lambda is 0.4064539228153326
the regulation term lambda/alpha is 1.3816761862551195
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.48019981681221385
the lambda is 0.4072676855945217
the regulation term lambda/alpha is 0.8481212847979639
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38283026347923405
the lambda is 0.5143600155400595
the regulation term lambda/alpha is 1.3435719811319464
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3409674420476563
the lambda is 0.6443656690983228
the regulation term lambda/alpha is 1.8898158288328926
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3605932479509105
the lambda is 0.5090089702027205
the regulation term lambda/alpha is 1.4115876353625307
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2571776276244671
the lambda is 0.5670656303754927
the regulation term lambda/alpha is 2.20495707816205
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2786197842865759
the lambda is 0.6173700550037002
the regulation term lambda/alpha is 2.215815565949548
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30401827739774007
the lambda is 0.4977727817467456
the regulation term lambda/alpha is 1.6373120261303271
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28812574443227196
the lambda is 0.5515568061568871
the regulation term lambda/alpha is 1.9142919951276285
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27725175463826235
the lambda is 0.46282865409450324
the regulation term lambda/alpha is 1.6693443642885795
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26539001865335543
the lambda is 0.4309440968477572
the regulation term lambda/alpha is 1.623814260364643
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31879721792547105
the lambda is 0.47595352446305844
the regulation term lambda/alpha is 1.4929663676498195
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3895740961172548
the lambda is 0.5089181271924834
the regulation term lambda/alpha is 1.3063448834629605
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2898215447924069
the lambda is 0.40955278668816136
the regulation term lambda/alpha is 1.413120570389325
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2869906588321591
the lambda is 0.46746078311683636
the regulation term lambda/alpha is 1.6288362311827778
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3763115075660902
the lambda is 0.508548664467369
the regulation term lambda/alpha is 1.3514034363619731
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2968264039592376
the lambda is 0.5189181533898829
the regulation term lambda/alpha is 1.748221002135459
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3392439911369914
the lambda is 0.641719099292022
the regulation term lambda/alpha is 1.8916152269676811
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37513141881836426
the lambda is 0.6820510670685634
the regulation term lambda/alpha is 1.8181656690259989
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36374870180279834
the lambda is 0.5060039232094677
the regulation term lambda/alpha is 1.391081042218513
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2849753199760413
the lambda is 0.5339722234558106
the regulation term lambda/alpha is 1.8737490092149145
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3480161266030607
the lambda is 0.5668877002980496
the regulation term lambda/alpha is 1.6289121594202123
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38767342042545355
the lambda is 0.4678154771359414
the regulation term lambda/alpha is 1.2067256935555077
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.44242591064554865
the lambda is 0.5802892376723888
the regulation term lambda/alpha is 1.3116077148955454
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28386892050284335
the lambda is 0.5289207410973666
the regulation term lambda/alpha is 1.8632569573324205
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.5567967617551152
the lambda is 0.4805597519206775
the regulation term lambda/alpha is 0.863079286606973
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2640354873747318
the lambda is 0.43212161242655095
the regulation term lambda/alpha is 1.6366042940783307
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4281156097425238
the lambda is 0.4951784701065838
the regulation term lambda/alpha is 1.1566466132930606
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2562171668510015
the lambda is 0.4707769199062081
the regulation term lambda/alpha is 1.837413650662916
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38869927516128727
the lambda is 0.4637657520677757
the regulation term lambda/alpha is 1.1931222456623833
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3763650703182458
the lambda is 0.5085378018165567
the regulation term lambda/alpha is 1.3511822480937157
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.368073315292317
the lambda is 0.5244879603656161
the regulation term lambda/alpha is 1.4249551341397229
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3488662845245824
the lambda is 0.4884878843378114
the regulation term lambda/alpha is 1.400215228603986
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24187053183106813
the lambda is 0.4636286062838468
the regulation term lambda/alpha is 1.916846185328865
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2545580460743585
the lambda is 0.48011242197733267
the regulation term lambda/alpha is 1.8860626461482497
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3287032968153173
the lambda is 0.4790037192768118
the regulation term lambda/alpha is 1.4572525554738842
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34350428503438996
the lambda is 0.5489410960253639
the regulation term lambda/alpha is 1.5980618581523856
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.21324723155008152
the lambda is 0.411331418195559
the regulation term lambda/alpha is 1.9288945286914876
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.321001411552375
the lambda is 0.4889941618379406
the regulation term lambda/alpha is 1.5233395998888175
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3580878109132467
the lambda is 0.4852172007578298
the regulation term lambda/alpha is 1.3550229468027957
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3259919808429901
the lambda is 0.5000292902895691
the regulation term lambda/alpha is 1.5338699099178206
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28017785131447726
the lambda is 0.5198922332603534
the regulation term lambda/alpha is 1.855579342982454
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2860390765183559
the lambda is 0.46357383847261496
the regulation term lambda/alpha is 1.6206661135785976
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27779131031247123
the lambda is 0.5338371998144459
the regulation term lambda/alpha is 1.9217202986442001
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28772986764264563
the lambda is 0.5003610984795295
the regulation term lambda/alpha is 1.7389960332549392
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36801431788947525
the lambda is 0.532936695655295
the regulation term lambda/alpha is 1.4481411992653788
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2912482672792611
the lambda is 0.476260264807334
the regulation term lambda/alpha is 1.6352381054706004
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.22278346795863693
the lambda is 0.4649477494282166
the regulation term lambda/alpha is 2.086993948377449
190
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29135953959799127
the lambda is 0.4292837957956995
the regulation term lambda/alpha is 1.4733816383290959
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3393939212306558
the lambda is 0.4818894592362832
the regulation term lambda/alpha is 1.41985294695006
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28583555359853735
the lambda is 0.5549420905118688
the regulation term lambda/alpha is 1.941473282540974
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.5248646942803026
the lambda is 0.574567512056041
the regulation term lambda/alpha is 1.0946964395155043
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26489524531572184
the lambda is 0.4972657320863785
the regulation term lambda/alpha is 1.877216525701321
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33225899367160494
the lambda is 0.4612109908710322
the regulation term lambda/alpha is 1.3881068674001933
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33309685551082163
the lambda is 0.463802960083182
the regulation term lambda/alpha is 1.3923966930636906
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29716016045590843
the lambda is 0.5218766316021637
the regulation term lambda/alpha is 1.75621331877561
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2968141769679494
the lambda is 0.42274381177869974
the regulation term lambda/alpha is 1.4242709566542993
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31450985193919556
the lambda is 0.39858962037246853
the regulation term lambda/alpha is 1.267335881260496
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.22948282206377119
the lambda is 0.47996858345070886
the regulation term lambda/alpha is 2.091522925917871
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3618191372749174
the lambda is 0.5128029303930434
the regulation term lambda/alpha is 1.4172907885837047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3407690211948627
the lambda is 0.5746832045544802
the regulation term lambda/alpha is 1.6864303056053263
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2919811850639148
the lambda is 0.4415007052193937
the regulation term lambda/alpha is 1.5120861473411344
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3160189962855468
the lambda is 0.5190575505397356
the regulation term lambda/alpha is 1.6424884473423498
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38544980710894816
the lambda is 0.5767777196517746
the regulation term lambda/alpha is 1.4963756863127635
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36649774719566647
the lambda is 0.39332729356586343
the regulation term lambda/alpha is 1.0732052149719578
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24197623009422373
the lambda is 0.4961178563272784
the regulation term lambda/alpha is 2.050275170144166
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3611926186532327
the lambda is 0.4833195128157736
the regulation term lambda/alpha is 1.3381212346418139
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2870339723752126
the lambda is 0.45840649478035866
the regulation term lambda/alpha is 1.5970461300696728
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.344600223585975
the lambda is 0.5258637350013131
the regulation term lambda/alpha is 1.5260110093054375
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3990536786746558
the lambda is 0.4944156785794477
the regulation term lambda/alpha is 1.2389703566234744
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28032841041620693
the lambda is 0.520073444257128
the regulation term lambda/alpha is 1.8552291702612973
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28968793457347974
the lambda is 0.6068825796282848
the regulation term lambda/alpha is 2.0949529034470307
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26345420600050357
the lambda is 0.532221853925021
the regulation term lambda/alpha is 2.0201683700734074
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34199378918412454
the lambda is 0.4798309974707486
the regulation term lambda/alpha is 1.4030400920889663
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4652099178685891
the lambda is 0.5579987248727525
the regulation term lambda/alpha is 1.1994557799397003
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2505359513869233
the lambda is 0.46557627351640357
the regulation term lambda/alpha is 1.858321214736067
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.20908936858724403
the lambda is 0.503587788032681
the regulation term lambda/alpha is 2.408481078857701
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32082802906536256
the lambda is 0.573391856797483
the regulation term lambda/alpha is 1.7872249456130447
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.22353460368975192
the lambda is 0.405487177068545
the regulation term lambda/alpha is 1.8139794482617493
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34651874262613974
the lambda is 0.36881760570448013
the regulation term lambda/alpha is 1.0643511023656194
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31138068570466426
the lambda is 0.45360748197905165
the regulation term lambda/alpha is 1.4567617800459385
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30465050440391256
the lambda is 0.4969954507483491
the regulation term lambda/alpha is 1.6313626387088507
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3560999770029503
the lambda is 0.5519071349032632
the regulation term lambda/alpha is 1.549865685328844
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3117836825688566
the lambda is 0.47490049700552617
the regulation term lambda/alpha is 1.5231730316760426
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26327435695704604
the lambda is 0.4185204530554255
the regulation term lambda/alpha is 1.5896742010605625
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28707213332203835
the lambda is 0.4718093757986651
the regulation term lambda/alpha is 1.643522031688767
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.5030166343930769
the lambda is 0.5433367768548212
the regulation term lambda/alpha is 1.0801566781392693
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3675810146680668
the lambda is 0.5052657329265192
the regulation term lambda/alpha is 1.3745697214062715
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3577894881791969
the lambda is 0.5143322590277789
the regulation term lambda/alpha is 1.4375275854112808
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32930221965692136
the lambda is 0.48491762830296026
the regulation term lambda/alpha is 1.4725610680916894
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3480437137251699
the lambda is 0.5387017170236074
the regulation term lambda/alpha is 1.5477990142611486
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24002467029603947
the lambda is 0.44238812849001524
the regulation term lambda/alpha is 1.8430944116885426
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4095245663740872
the lambda is 0.4971184243589949
the regulation term lambda/alpha is 1.21389158350245
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2797065754886962
the lambda is 0.5447332577412559
the regulation term lambda/alpha is 1.947516810391432
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3009525150087213
the lambda is 0.40690839960555575
the regulation term lambda/alpha is 1.3520684470563868
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29955984760512266
the lambda is 0.5024989214999172
the regulation term lambda/alpha is 1.677457528160807
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32204409458515554
the lambda is 0.45502651169108116
the regulation term lambda/alpha is 1.412932326168652
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.318829335893144
the lambda is 0.46410171278429185
the regulation term lambda/alpha is 1.4556430683650643
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.43907918550551417
the lambda is 0.6147203418758891
the regulation term lambda/alpha is 1.4000215955765662
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.26020121529125584
the lambda is 0.38681916432113916
the regulation term lambda/alpha is 1.4866155174877016
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32137544945806995
the lambda is 0.5333226861581531
the regulation term lambda/alpha is 1.6595003976112248
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24964161191866413
the lambda is 0.37627673040169396
the regulation term lambda/alpha is 1.5072676686781243
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27533765583032466
the lambda is 0.584356528018335
the regulation term lambda/alpha is 2.1223269525416515
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4025276230353216
the lambda is 0.5639660777882035
the regulation term lambda/alpha is 1.4010618042447134
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3157896046413724
the lambda is 0.4368586495685694
the regulation term lambda/alpha is 1.3833851499471919
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.41950255037023354
the lambda is 0.6174249403744126
the regulation term lambda/alpha is 1.4718025905432564
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3047922666664406
the lambda is 0.3943333203532813
the regulation term lambda/alpha is 1.2937773148451723
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2577236799405163
the lambda is 0.515993536717139
the regulation term lambda/alpha is 2.002119234197775
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4397389361623807
the lambda is 0.5058667776531977
the regulation term lambda/alpha is 1.1503797732079795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37539751943081257
the lambda is 0.49216688679186194
the regulation term lambda/alpha is 1.3110552449523325
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3412117809826399
the lambda is 0.46578665236043776
the regulation term lambda/alpha is 1.3650954577800347
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2655091541574404
the lambda is 0.5802800290234286
the regulation term lambda/alpha is 2.185536807063672
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32696737553590677
the lambda is 0.606143713866329
the regulation term lambda/alpha is 1.8538354564361232
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.48066776054083815
the lambda is 0.47274349861966364
the regulation term lambda/alpha is 0.9835140557122901
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2668734651233132
the lambda is 0.5164949997924284
the regulation term lambda/alpha is 1.9353553923158808
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2761528371920298
the lambda is 0.48929458885643606
the regulation term lambda/alpha is 1.7718253190214113
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3466954853943313
the lambda is 0.44360086375342617
the regulation term lambda/alpha is 1.2795115092106686
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33445994784963173
the lambda is 0.5001302281661875
the regulation term lambda/alpha is 1.4953366804656643
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35242992607612916
the lambda is 0.49694008090832537
the regulation term lambda/alpha is 1.4100393983029134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36462696305268916
the lambda is 0.5637031263638719
the regulation term lambda/alpha is 1.5459721399769768
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3284688502434189
the lambda is 0.546955407905608
the regulation term lambda/alpha is 1.665166750211702
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.5416219842264385
the lambda is 0.5378936679124762
the regulation term lambda/alpha is 0.9931163866635008
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4017115794067526
the lambda is 0.46145303124852405
the regulation term lambda/alpha is 1.1487172760366966
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2722022407409652
the lambda is 0.46554409714395556
the regulation term lambda/alpha is 1.710287526938397
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3314296013202605
the lambda is 0.4415188479266146
the regulation term lambda/alpha is 1.3321647980983293
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24446420257975193
the lambda is 0.5119635094870256
the regulation term lambda/alpha is 2.0942269014622172
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2881769773752438
the lambda is 0.5276654835854572
the regulation term lambda/alpha is 1.8310466311067186
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3159195803642233
the lambda is 0.4330090717587369
the regulation term lambda/alpha is 1.3706306879096295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3055490632239997
the lambda is 0.46086002822783134
the regulation term lambda/alpha is 1.5083012311183959
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3039731233900929
the lambda is 0.4595880478111524
the regulation term lambda/alpha is 1.5119364590051494
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32350842611397296
the lambda is 0.459636783834285
the regulation term lambda/alpha is 1.4207876726906448
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3451782294667106
the lambda is 0.5235320022098597
the regulation term lambda/alpha is 1.516700526040417
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2966859796315043
the lambda is 0.5361715952985884
the regulation term lambda/alpha is 1.8072023354947029
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2977415539162654
the lambda is 0.5513546260655791
the regulation term lambda/alpha is 1.8517893079198409
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3439737113307577
the lambda is 0.5403020342903531
the regulation term lambda/alpha is 1.5707654872811203
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2572858107494372
the lambda is 0.5512467899915204
the regulation term lambda/alpha is 2.1425464093251643
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33988199951879905
the lambda is 0.5047975501115728
the regulation term lambda/alpha is 1.485214135571343
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3284204960287175
the lambda is 0.5521544127136248
the regulation term lambda/alpha is 1.6812422470287716
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4026788873141646
the lambda is 0.5466029250308435
the regulation term lambda/alpha is 1.3574163986511447
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28796175804747326
the lambda is 0.49062304636778903
the regulation term lambda/alpha is 1.7037784798039228
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2283665841340349
the lambda is 0.5173250185024421
the regulation term lambda/alpha is 2.2653271294665824
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27044001576584714
the lambda is 0.4737620396496674
the regulation term lambda/alpha is 1.7518193019921315
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36187293784351676
the lambda is 0.6540131197170753
the regulation term lambda/alpha is 1.8073004398021262
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3100296652553563
the lambda is 0.6009445158782295
the regulation term lambda/alpha is 1.9383452076537928
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4137155091252636
the lambda is 0.6222416143155066
the regulation term lambda/alpha is 1.50403260354232
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34728783115733775
the lambda is 0.4969030120871003
the regulation term lambda/alpha is 1.4308103178598846
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2972391291957773
the lambda is 0.49583764523053014
the regulation term lambda/alpha is 1.6681439168930732
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3314671351019549
the lambda is 0.42483706653907716
the regulation term lambda/alpha is 1.2816868447859933
200
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36982738120869074
the lambda is 0.5152330075953585
the regulation term lambda/alpha is 1.3931716086338575
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2766326561754642
the lambda is 0.41203153216632
the regulation term lambda/alpha is 1.4894536959691926
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3310532352151865
the lambda is 0.4764633825047248
the regulation term lambda/alpha is 1.4392349381362213
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3310814881446159
the lambda is 0.5440522444567903
the regulation term lambda/alpha is 1.6432578200178596
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27417701331204075
the lambda is 0.45381216923682555
the regulation term lambda/alpha is 1.6551794906319959
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4003956081120481
the lambda is 0.48373619923351535
the regulation term lambda/alpha is 1.2081456175666765
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2765364866812401
the lambda is 0.44627537478737367
the regulation term lambda/alpha is 1.6138028660998696
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3498271376490247
the lambda is 0.572266775535575
the regulation term lambda/alpha is 1.6358558669331138
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.33179650275074113
the lambda is 0.4524253923643336
the regulation term lambda/alpha is 1.363562872464071
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33181408546623087
the lambda is 0.687404778289085
the regulation term lambda/alpha is 2.071656413630587
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3876123634862494
the lambda is 0.6004665678928505
the regulation term lambda/alpha is 1.5491419378168316
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2991345333964909
the lambda is 0.5067240205757886
the regulation term lambda/alpha is 1.693966974732891
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.26727378306394783
the lambda is 0.40206319644462873
the regulation term lambda/alpha is 1.5043121395428118
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27489149119098205
the lambda is 0.38540459685114853
the regulation term lambda/alpha is 1.402024468568898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178306108382573
the lambda is 0.5275558399147756
the regulation term lambda/alpha is 1.659864789371237
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2094478391989159
the lambda is 0.4692853426157152
the regulation term lambda/alpha is 2.240583356747011
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36468522361372474
the lambda is 0.5653411115916227
the regulation term lambda/alpha is 1.5502166662788428
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32335755296747243
the lambda is 0.5412986080088452
the regulation term lambda/alpha is 1.673994013875087
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.42420421169030387
the lambda is 0.4978448333765419
the regulation term lambda/alpha is 1.1735971017185478
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31860353908945827
the lambda is 0.4726384001498805
the regulation term lambda/alpha is 1.4834687696836035
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39003573952599363
the lambda is 0.46684008719685943
the regulation term lambda/alpha is 1.196916179435775
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29738728562152006
the lambda is 0.5022118140474321
the regulation term lambda/alpha is 1.6887467566000414
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37364914249664943
the lambda is 0.5731204077626463
the regulation term lambda/alpha is 1.5338464419673745
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.42753099091826285
the lambda is 0.5412215614218785
the regulation term lambda/alpha is 1.2659235772813284
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29441269369561146
the lambda is 0.507243126244251
the regulation term lambda/alpha is 1.7228982890550282
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27119375437551885
the lambda is 0.4767369340941411
the regulation term lambda/alpha is 1.7579200346701531
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3401989473320282
the lambda is 0.4286906196228107
the regulation term lambda/alpha is 1.2601174194828304
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3490233185089767
the lambda is 0.5417271187714808
the regulation term lambda/alpha is 1.5521229959239753
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34084171853968126
the lambda is 0.5004715496721923
the regulation term lambda/alpha is 1.4683400606487869
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.33664726314167326
the lambda is 0.39899933056510806
the regulation term lambda/alpha is 1.1852148353785807
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2580431355198219
the lambda is 0.47768230243224036
the regulation term lambda/alpha is 1.8511722912913784
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31286557174510055
the lambda is 0.5156408493120188
the regulation term lambda/alpha is 1.6481226951111272
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3274450307606892
the lambda is 0.5498044493132053
the regulation term lambda/alpha is 1.6790740358342033
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27935853681596773
the lambda is 0.4619347047504247
the regulation term lambda/alpha is 1.6535549978726163
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30139898227215417
the lambda is 0.49278657991609115
the regulation term lambda/alpha is 1.634997491368832
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27886189501010067
the lambda is 0.5447131578581306
the regulation term lambda/alpha is 1.9533438150034823
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32339645012020335
the lambda is 0.49372635077135385
the regulation term lambda/alpha is 1.5266906936914135
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2987015112695517
the lambda is 0.5091018121294267
the regulation term lambda/alpha is 1.7043831146539041
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2897119849274871
the lambda is 0.4370759363984427
the regulation term lambda/alpha is 1.5086567319879423
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2549452669567062
the lambda is 0.45060351602141724
the regulation term lambda/alpha is 1.7674519766548045
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3156791857870027
the lambda is 0.47851414999194014
the regulation term lambda/alpha is 1.5158242023432187
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32844460468870357
the lambda is 0.5278362090588072
the regulation term lambda/alpha is 1.6070783368753614
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.5552361666528637
the lambda is 0.5449455746739124
the regulation term lambda/alpha is 0.981466279401455
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4261867494348215
the lambda is 0.5173147864855898
the regulation term lambda/alpha is 1.213821844934447
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24356965892471807
the lambda is 0.4189092033405521
the regulation term lambda/alpha is 1.7198743274917816
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37274558067647734
the lambda is 0.5002619864708927
the regulation term lambda/alpha is 1.3421003826872802
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3436028387912195
the lambda is 0.41271215024051705
the regulation term lambda/alpha is 1.20113137508532
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32414831790571097
the lambda is 0.48060704528483594
the regulation term lambda/alpha is 1.482676351338143
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27966727822183324
the lambda is 0.5108429550392528
the regulation term lambda/alpha is 1.8266096709177757
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4115172822402296
the lambda is 0.4515265500245485
the regulation term lambda/alpha is 1.097223785029186
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3114543860135475
the lambda is 0.5747657947386883
the regulation term lambda/alpha is 1.84542527108187
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3956568211933728
the lambda is 0.521915305607282
the regulation term lambda/alpha is 1.3191111024778766
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3242272294925197
the lambda is 0.5375193451417003
the regulation term lambda/alpha is 1.6578476335347445
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.281240466249519
the lambda is 0.5379170305961148
the regulation term lambda/alpha is 1.9126587214475395
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3212886786498711
the lambda is 0.5474660189357361
the regulation term lambda/alpha is 1.7039692193211233
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30054577656610115
the lambda is 0.5010289164978019
the regulation term lambda/alpha is 1.66706357421598
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2864427442545881
the lambda is 0.4136749647745763
the regulation term lambda/alpha is 1.4441802875862173
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.292449477366102
the lambda is 0.5314089939355805
the regulation term lambda/alpha is 1.8170967468351389
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.294697726556089
the lambda is 0.47094858365706005
the regulation term lambda/alpha is 1.598073351839807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3755204526491184
the lambda is 0.5482882956961879
the regulation term lambda/alpha is 1.4600757211179163
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3560842750997944
the lambda is 0.5112733705584945
the regulation term lambda/alpha is 1.4358212544353655
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27792826530260045
the lambda is 0.4825668057877042
the regulation term lambda/alpha is 1.7362998515544976
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3534206267764854
the lambda is 0.5221764924043674
the regulation term lambda/alpha is 1.4774929725157457
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.29363095613181095
the lambda is 0.5220309362397372
the regulation term lambda/alpha is 1.7778470741531676
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36077264671204007
the lambda is 0.46069185774606725
the regulation term lambda/alpha is 1.2769589433807056
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4762363969755371
the lambda is 0.43725369470545095
the regulation term lambda/alpha is 0.9181442188844533
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28438868277113677
the lambda is 0.5304662722337973
the regulation term lambda/alpha is 1.8652861536712158
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.44597661059615923
the lambda is 0.5376763154614661
the regulation term lambda/alpha is 1.2056155024424426
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2594631372521058
the lambda is 0.5914496572954199
the regulation term lambda/alpha is 2.2795132424562543
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3028872547863335
the lambda is 0.4508598430629274
the regulation term lambda/alpha is 1.4885401611929119
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38688695438434395
the lambda is 0.5088181664570272
the regulation term lambda/alpha is 1.3151597920036182
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23857192676232783
the lambda is 0.5136572285665274
the regulation term lambda/alpha is 2.1530497554234342
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2804261988623875
the lambda is 0.5147337706095556
the regulation term lambda/alpha is 1.835540946950356
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3338735067710896
the lambda is 0.5088922566606999
the regulation term lambda/alpha is 1.5242067619627175
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3132525381466834
the lambda is 0.40223524956528195
the regulation term lambda/alpha is 1.284060623882101
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.26074627637656234
the lambda is 0.4073173372522394
the regulation term lambda/alpha is 1.5621213959888092
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33500931567100084
the lambda is 0.534826494257136
the regulation term lambda/alpha is 1.5964526036713784
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30129824666386035
the lambda is 0.49849755577065596
the regulation term lambda/alpha is 1.6544986945337208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.44572237730795383
the lambda is 0.4979593719080907
the regulation term lambda/alpha is 1.1171962577145769
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.332969381622491
the lambda is 0.5369274904762278
the regulation term lambda/alpha is 1.6125431349269745
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35427736046640257
the lambda is 0.4238851813512285
the regulation term lambda/alpha is 1.1964783208082728
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24297391374797114
the lambda is 0.471443058806014
the regulation term lambda/alpha is 1.9403031853659254
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3319794038245086
the lambda is 0.5554394951493329
the regulation term lambda/alpha is 1.6731143220045968
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23912746405416313
the lambda is 0.4672994090800272
the regulation term lambda/alpha is 1.9541854421798344
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3515942670066504
the lambda is 0.5893970139671797
the regulation term lambda/alpha is 1.6763555873225635
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37982847926607594
the lambda is 0.5182719767914911
the regulation term lambda/alpha is 1.364489513247987
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3099115148057642
the lambda is 0.5907306715924113
the regulation term lambda/alpha is 1.906126889033631
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35302027428156996
the lambda is 0.5889301985154547
the regulation term lambda/alpha is 1.668261687558835
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.324630158352011
the lambda is 0.4657972811124324
the regulation term lambda/alpha is 1.4348552318030403
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29129846602674536
the lambda is 0.45406260336103965
the regulation term lambda/alpha is 1.5587538429376768
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2790009766312919
the lambda is 0.3946778013566232
the regulation term lambda/alpha is 1.414610823668197
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.22081192153022589
the lambda is 0.43634162215726713
the regulation term lambda/alpha is 1.9760781896802542
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3241927621968654
the lambda is 0.46942534515553846
the regulation term lambda/alpha is 1.4479821880492227
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.40873325566722807
the lambda is 0.48992016598057314
the regulation term lambda/alpha is 1.198630547398971
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.274586604506285
the lambda is 0.4461565358113797
the regulation term lambda/alpha is 1.624829938858753
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30229459017694227
the lambda is 0.4974222725881781
the regulation term lambda/alpha is 1.6454885027781068
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3100757134803059
the lambda is 0.4824534512204092
the regulation term lambda/alpha is 1.5559214419127725
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.26413439747967915
the lambda is 0.5086294208565754
the regulation term lambda/alpha is 1.9256462835201391
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35875470863037945
the lambda is 0.45796648129301454
the regulation term lambda/alpha is 1.276544865547261
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.40984101738036693
the lambda is 0.46550073822017984
the regulation term lambda/alpha is 1.1358080779605229
210
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3803981741825723
the lambda is 0.5055298689463241
the regulation term lambda/alpha is 1.3289492517482346
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3028860567149261
the lambda is 0.4352554941427829
the regulation term lambda/alpha is 1.4370271740585334
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25345778672726016
the lambda is 0.5470020844115407
the regulation term lambda/alpha is 2.158158529965215
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3116326145780917
the lambda is 0.4549877566887551
the regulation term lambda/alpha is 1.460013282963809
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33079211157698984
the lambda is 0.4927996535837153
the regulation term lambda/alpha is 1.4897563646073197
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3037284244371595
the lambda is 0.4593165102136091
the regulation term lambda/alpha is 1.5122605369081623
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3089101582451884
the lambda is 0.5303337101094773
the regulation term lambda/alpha is 1.716789480547093
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3493833676369186
the lambda is 0.45381684787221793
the regulation term lambda/alpha is 1.2989079902161436
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30221415968642124
the lambda is 0.4783111324783353
the regulation term lambda/alpha is 1.582689351732007
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4790494259472988
the lambda is 0.4875364654718335
the regulation term lambda/alpha is 1.0177164172731277
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39097732038989436
the lambda is 0.4682450923096712
the regulation term lambda/alpha is 1.1976272481552719
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3703692522219565
the lambda is 0.4998262303053476
the regulation term lambda/alpha is 1.349534896071258
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3455579846450023
the lambda is 0.5752524166995652
the regulation term lambda/alpha is 1.664705902514543
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30037596527679
the lambda is 0.4724271567758531
the regulation term lambda/alpha is 1.572786145990481
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29978893999915646
the lambda is 0.47003648912475277
the regulation term lambda/alpha is 1.5678913609223721
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4792643034117071
the lambda is 0.5359113334866229
the regulation term lambda/alpha is 1.1181958048443548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3841768300365934
the lambda is 0.5186212956479211
the regulation term lambda/alpha is 1.3499546435388143
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2470522313451883
the lambda is 0.38228576237530587
the regulation term lambda/alpha is 1.5473884218481941
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3836014475819197
the lambda is 0.45433554917692565
the regulation term lambda/alpha is 1.184394772336985
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.22086143426644833
the lambda is 0.39281890703605865
the regulation term lambda/alpha is 1.7785762749424148
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3192267782018147
the lambda is 0.4487512111980545
the regulation term lambda/alpha is 1.4057442603212773
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2599659734147649
the lambda is 0.4130395432898981
the regulation term lambda/alpha is 1.5888215594696722
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2882041658749812
the lambda is 0.40091116100825047
the regulation term lambda/alpha is 1.3910665024257836
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2773584336142536
the lambda is 0.4684892750955258
the regulation term lambda/alpha is 1.689111338676993
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.295772224617697
the lambda is 0.48926017706251185
the regulation term lambda/alpha is 1.6541789131650528
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29887761755583636
the lambda is 0.48777397870017714
the regulation term lambda/alpha is 1.6320190942670745
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37541745150865263
the lambda is 0.5484181052152242
the regulation term lambda/alpha is 1.4608220875490765
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.38396813357394655
the lambda is 0.44962007581132496
the regulation term lambda/alpha is 1.1709827886660673
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3028780093668617
the lambda is 0.5337526451829453
the regulation term lambda/alpha is 1.762269391226869
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29748171974321796
the lambda is 0.525110881314832
the regulation term lambda/alpha is 1.765187056764699
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3537622432165744
the lambda is 0.5275609898666855
the regulation term lambda/alpha is 1.4912868741159326
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.313865748519558
the lambda is 0.4892643322010229
the regulation term lambda/alpha is 1.5588331460466296
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.257261706648901
the lambda is 0.3566443918996371
the regulation term lambda/alpha is 1.386309670977846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.5123023667482478
the lambda is 0.6101542613844583
the regulation term lambda/alpha is 1.1910041822709287
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31140577183120216
the lambda is 0.4952047990828068
the regulation term lambda/alpha is 1.5902235728348448
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3596401185574853
the lambda is 0.5746938551829374
the regulation term lambda/alpha is 1.5979692629621844
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37101104803668583
the lambda is 0.602139596283052
the regulation term lambda/alpha is 1.6229694492103428
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3013432702778502
the lambda is 0.4846732434728941
the regulation term lambda/alpha is 1.6083758665856602
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.42970278103649234
the lambda is 0.6331820492081055
the regulation term lambda/alpha is 1.4735349109931237
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36733803808337573
the lambda is 0.5589867528384254
the regulation term lambda/alpha is 1.52172303133919
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3921615475123428
the lambda is 0.4940632483913509
the regulation term lambda/alpha is 1.2598462330777112
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30714447448141025
the lambda is 0.5085704933847174
the regulation term lambda/alpha is 1.6558021896483712
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25564543046607585
the lambda is 0.4603248990752272
the regulation term lambda/alpha is 1.8006380878234096
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3278681045566084
the lambda is 0.47821988800593257
the regulation term lambda/alpha is 1.4585739855746322
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29904460215861023
the lambda is 0.41420102947471943
the regulation term lambda/alpha is 1.3850811099243028
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.27763645665504977
the lambda is 0.4668767291544365
the regulation term lambda/alpha is 1.6816117550963736
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3225466425209482
the lambda is 0.5256513723225872
the regulation term lambda/alpha is 1.629691036974437
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2729493287721882
the lambda is 0.509575021148861
the regulation term lambda/alpha is 1.8669216863111167
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3843043889145312
the lambda is 0.5815898899587284
the regulation term lambda/alpha is 1.5133573977685517
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.305316863084708
the lambda is 0.6104030210092075
the regulation term lambda/alpha is 1.9992443746543258
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2547579351209111
the lambda is 0.5011454580223548
the regulation term lambda/alpha is 1.9671436643749889
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4680100478036681
the lambda is 0.4721744472515527
the regulation term lambda/alpha is 1.008898098379357
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3351761174568041
the lambda is 0.46983169383199086
the regulation term lambda/alpha is 1.401745737127409
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29693897981410483
the lambda is 0.4778335459752743
the regulation term lambda/alpha is 1.6091977761707688
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3633887528472049
the lambda is 0.5304219721727146
the regulation term lambda/alpha is 1.459654345426983
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.255650245692297
the lambda is 0.490702508448705
the regulation term lambda/alpha is 1.9194290508889988
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37829745375899465
the lambda is 0.4786821302607658
the regulation term lambda/alpha is 1.265359112265461
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23539585890716191
the lambda is 0.4558551189981543
the regulation term lambda/alpha is 1.9365468921776554
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.43253503840098795
the lambda is 0.5599896652019231
the regulation term lambda/alpha is 1.294668906528623
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3364626556193783
the lambda is 0.47528473588125186
the regulation term lambda/alpha is 1.412592832944038
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2747036369656454
the lambda is 0.5394900779295483
the regulation term lambda/alpha is 1.9638985631523225
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4490315373020269
the lambda is 0.6220480989913305
the regulation term lambda/alpha is 1.3853104900579165
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3542742607378072
the lambda is 0.5238946736403055
the regulation term lambda/alpha is 1.4787827728417213
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3231054707222638
the lambda is 0.5166045135152807
the regulation term lambda/alpha is 1.5988726912004083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29628489795836443
the lambda is 0.5317809974007643
the regulation term lambda/alpha is 1.7948299122403906
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25239567474489033
the lambda is 0.49840926901676663
the regulation term lambda/alpha is 1.9747139863650012
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30378272746229457
the lambda is 0.5471626046707494
the regulation term lambda/alpha is 1.8011643033215674
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3237063226026465
the lambda is 0.5257779700553724
the regulation term lambda/alpha is 1.6242437460845378
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2816371118455799
the lambda is 0.45762660490376345
the regulation term lambda/alpha is 1.6248803359220558
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31673589956466763
the lambda is 0.5310120769784479
the regulation term lambda/alpha is 1.6765137065558042
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.22908075644560094
the lambda is 0.45884500105311926
the regulation term lambda/alpha is 2.0029836122969136
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34170511549291577
the lambda is 0.5314430829556394
the regulation term lambda/alpha is 1.5552681504022061
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31320178257431763
the lambda is 0.43051640329622404
the regulation term lambda/alpha is 1.374565622703854
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3370231361567651
the lambda is 0.48064965808217985
the regulation term lambda/alpha is 1.426162202284556
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.261929872192953
the lambda is 0.5371462071769285
the regulation term lambda/alpha is 2.050725267338866
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34708132829226923
the lambda is 0.49806974450321306
the regulation term lambda/alpha is 1.4350231600007015
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2612790891467026
the lambda is 0.5482130338140291
the regulation term lambda/alpha is 2.0981894709002877
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28446159278161065
the lambda is 0.4539208528370704
the regulation term lambda/alpha is 1.5957192969300376
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3460465176934265
the lambda is 0.5235507930130174
the regulation term lambda/alpha is 1.5129491737201863
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27408155430979136
the lambda is 0.5168387253302292
the regulation term lambda/alpha is 1.8857114504905796
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4750332732605772
the lambda is 0.48675909835330455
the regulation term lambda/alpha is 1.0246842184595673
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35233631757747297
the lambda is 0.49426880738573425
the regulation term lambda/alpha is 1.4028324153017597
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3142171547091724
the lambda is 0.41275532146341576
the regulation term lambda/alpha is 1.3135989403425368
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3473275770649342
the lambda is 0.574233352361418
the regulation term lambda/alpha is 1.6532904102056454
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35080599112387867
the lambda is 0.5430634326218876
the regulation term lambda/alpha is 1.5480449204475468
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3237363159453575
the lambda is 0.5985226241380953
the regulation term lambda/alpha is 1.84879667389283
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3337340036335666
the lambda is 0.4182258303615384
the regulation term lambda/alpha is 1.2531711656830216
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3765415024615214
the lambda is 0.48045566914566357
the regulation term lambda/alpha is 1.2759700219095
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2809919826160737
the lambda is 0.5236974297762849
the regulation term lambda/alpha is 1.8637450965703373
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28198308342402295
the lambda is 0.4340950329845749
the regulation term lambda/alpha is 1.5394364360922266
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3018790029853293
the lambda is 0.4755743224238269
the regulation term lambda/alpha is 1.5753805919616701
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2538867204003811
the lambda is 0.5268406126292928
the regulation term lambda/alpha is 2.075101099413398
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34234588087532736
the lambda is 0.3927962780700106
the regulation term lambda/alpha is 1.147366742271556
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35891146820833214
the lambda is 0.516099627198665
the regulation term lambda/alpha is 1.4379580284102043
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.25803986533138734
the lambda is 0.4600089145204787
the regulation term lambda/alpha is 1.7827048310140485
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34520613994026
the lambda is 0.4754169770122794
the regulation term lambda/alpha is 1.3771973380732834
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23838564215783495
the lambda is 0.5630362881328724
the regulation term lambda/alpha is 2.3618716422530452
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25754133054676154
the lambda is 0.4143181125878916
the regulation term lambda/alpha is 1.6087441643183724
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2686942246115477
the lambda is 0.48393214605429863
the regulation term lambda/alpha is 1.801051536384607
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33284102243103597
the lambda is 0.5320737701094066
the regulation term lambda/alpha is 1.5985823088247821
220
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3212463311318984
the lambda is 0.4769916426577436
the regulation term lambda/alpha is 1.48481584514003
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3042178610702673
the lambda is 0.4148228825111185
the regulation term lambda/alpha is 1.3635717543070358
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2626291180420681
the lambda is 0.46708132969361515
the regulation term lambda/alpha is 1.7784826495087942
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29984081980105104
the lambda is 0.4288941979403598
the regulation term lambda/alpha is 1.4304063009997694
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.44833171099689756
the lambda is 0.5589622079033661
the regulation term lambda/alpha is 1.2467603655794808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32348186005911045
the lambda is 0.5972566876608331
the regulation term lambda/alpha is 1.8463374964880417
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3659738699801642
the lambda is 0.5355596312979631
the regulation term lambda/alpha is 1.4633821571113548
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3934747483042076
the lambda is 0.4530736791366645
the regulation term lambda/alpha is 1.151468248189536
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2993392782176004
the lambda is 0.5409572896911269
the regulation term lambda/alpha is 1.8071710899826707
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3925722774043451
the lambda is 0.5197203893302614
the regulation term lambda/alpha is 1.3238845920720868
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28552020109489923
the lambda is 0.5119842383618433
the regulation term lambda/alpha is 1.7931629229683594
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2827543411603968
the lambda is 0.4072797304025925
the regulation term lambda/alpha is 1.44040133471039
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2834344054417089
the lambda is 0.5151448783559724
the regulation term lambda/alpha is 1.8175100427669044
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3099249100660287
the lambda is 0.5516374840558673
the regulation term lambda/alpha is 1.7799068940226277
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3043365988303271
the lambda is 0.4983599148237793
the regulation term lambda/alpha is 1.6375286992729505
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28288893151465083
the lambda is 0.5423157895929926
the regulation term lambda/alpha is 1.9170625965792023
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.328646679614473
the lambda is 0.49543364411916135
the regulation term lambda/alpha is 1.5074962713767315
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3234130384790795
the lambda is 0.4399981307929844
the regulation term lambda/alpha is 1.360483587372271
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3065086660953078
the lambda is 0.47903468857637105
the regulation term lambda/alpha is 1.5628748598821571
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3207298087744385
the lambda is 0.43129389612487673
the regulation term lambda/alpha is 1.3447265714805925
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2786348892113824
the lambda is 0.508629856869621
the regulation term lambda/alpha is 1.8254349206202825
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28472433597369146
the lambda is 0.5269686495042749
the regulation term lambda/alpha is 1.8508029800198282
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32068917207561054
the lambda is 0.5318469498721454
the regulation term lambda/alpha is 1.6584499764362144
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30314548328358415
the lambda is 0.49193697475441955
the regulation term lambda/alpha is 1.6227752082132334
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.420316824069018
the lambda is 0.5245817258314771
the regulation term lambda/alpha is 1.2480626417783798
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3551455072611808
the lambda is 0.5309532661580281
the regulation term lambda/alpha is 1.4950302208597415
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39063790332802667
the lambda is 0.546425455031987
the regulation term lambda/alpha is 1.398802958895523
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.276401298968058
the lambda is 0.458000100082018
the regulation term lambda/alpha is 1.6570113881228405
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32429114393318487
the lambda is 0.47175821216490976
the regulation term lambda/alpha is 1.4547366494291567
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37187917198772763
the lambda is 0.5103941766709275
the regulation term lambda/alpha is 1.3724731448196592
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3602529320603291
the lambda is 0.4613807120290118
the regulation term lambda/alpha is 1.2807132738388025
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.40717930475344294
the lambda is 0.5916238099214577
the regulation term lambda/alpha is 1.4529810405754793
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28289233802128144
the lambda is 0.4859890307914424
the regulation term lambda/alpha is 1.7179292807671673
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3023173707582074
the lambda is 0.47549603769810184
the regulation term lambda/alpha is 1.5728373017586286
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2830788338311145
the lambda is 0.4767818333713626
the regulation term lambda/alpha is 1.6842722817482418
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33645080681883094
the lambda is 0.4394404314678964
the regulation term lambda/alpha is 1.306106041542419
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3804754770116731
the lambda is 0.5373827686807982
the regulation term lambda/alpha is 1.4123979103765236
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2571991459875365
the lambda is 0.520205021145601
the regulation term lambda/alpha is 2.022576782470379
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.252302475136011
the lambda is 0.4895224627501501
the regulation term lambda/alpha is 1.9402206121293846
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28202845367280555
the lambda is 0.429460368606152
the regulation term lambda/alpha is 1.5227554631930478
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29885939658236005
the lambda is 0.5098411894321806
the regulation term lambda/alpha is 1.7059566982418033
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3171006909844479
the lambda is 0.4575314803051859
the regulation term lambda/alpha is 1.442858667020771
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.29072096201744757
the lambda is 0.43067042359630137
the regulation term lambda/alpha is 1.481387584189594
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.384346157803329
the lambda is 0.5545547012236047
the regulation term lambda/alpha is 1.4428522048797792
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2927437514159003
the lambda is 0.5139208369124942
the regulation term lambda/alpha is 1.7555313629303335
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3133135027602437
the lambda is 0.5286310255673841
the regulation term lambda/alpha is 1.6872270773848752
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31270215041032173
the lambda is 0.5114759667305762
the regulation term lambda/alpha is 1.6356650124069414
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2920099475027215
the lambda is 0.4553169935322741
the regulation term lambda/alpha is 1.5592516536719372
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35283788800154936
the lambda is 0.536557457079557
the regulation term lambda/alpha is 1.5206911596670734
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.40853521870587395
the lambda is 0.4414922580836922
the regulation term lambda/alpha is 1.0806712319251617
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2920516657031365
the lambda is 0.5097310631818296
the regulation term lambda/alpha is 1.7453455091742534
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29910344834429414
the lambda is 0.5369185360237073
the regulation term lambda/alpha is 1.7950930990460106
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2953590928649769
the lambda is 0.45298335413835084
the regulation term lambda/alpha is 1.5336699125949431
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.41423087465438974
the lambda is 0.568962847482228
the regulation term lambda/alpha is 1.37354041500875
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30579913256546654
the lambda is 0.5376256195016009
the regulation term lambda/alpha is 1.7581005380599115
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29532667919742817
the lambda is 0.5403829770053173
the regulation term lambda/alpha is 1.8297804264546893
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.43227693647580906
the lambda is 0.6644136665959472
the regulation term lambda/alpha is 1.5370092885654771
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3390430824389271
the lambda is 0.5302648491348576
the regulation term lambda/alpha is 1.5640043304242193
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28111953527369987
the lambda is 0.4113518006887034
the regulation term lambda/alpha is 1.4632629507167068
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.304776148505924
the lambda is 0.46363200072375615
the regulation term lambda/alpha is 1.5212214046163932
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2858278223927499
the lambda is 0.45076821698356734
the regulation term lambda/alpha is 1.5770620690807922
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31349019681615037
the lambda is 0.46202166029111447
the regulation term lambda/alpha is 1.4737993882535088
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25399581290878315
the lambda is 0.4603818451185974
the regulation term lambda/alpha is 1.8125568285802143
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3310676377232321
the lambda is 0.5020863285569949
the regulation term lambda/alpha is 1.5165672247818194
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28205718577528943
the lambda is 0.448126570742008
the regulation term lambda/alpha is 1.588779131828336
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37546396164682433
the lambda is 0.5619662305441749
the regulation term lambda/alpha is 1.4967248203511518
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32319693415472894
the lambda is 0.48848668920131605
the regulation term lambda/alpha is 1.5114211726013944
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33304098741759797
the lambda is 0.510411370522789
the regulation term lambda/alpha is 1.5325782405358634
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.293961547664091
the lambda is 0.4537554765332626
the regulation term lambda/alpha is 1.5435878608578006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4238527244664648
the lambda is 0.4767460162160561
the regulation term lambda/alpha is 1.12479167573164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3472765376040265
the lambda is 0.576932585585757
the regulation term lambda/alpha is 1.6613059712187932
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2865717172776618
the lambda is 0.47495940750107685
the regulation term lambda/alpha is 1.6573840992161994
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37810787613513713
the lambda is 0.4802724652704814
the regulation term lambda/alpha is 1.2701995794946896
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4225933220534917
the lambda is 0.6851046395362951
the regulation term lambda/alpha is 1.6211913529707287
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3722543691184526
the lambda is 0.5149904491457288
the regulation term lambda/alpha is 1.3834369502909907
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.41654526792722624
the lambda is 0.4919421164309033
the regulation term lambda/alpha is 1.1810051735285816
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34128372251758504
the lambda is 0.524452114399923
the regulation term lambda/alpha is 1.5367041549217162
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29673574584584866
the lambda is 0.49157543454364777
the regulation term lambda/alpha is 1.6566101031825684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36808194457311433
the lambda is 0.45790913370306335
the regulation term lambda/alpha is 1.2440412806287653
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29849539259490115
the lambda is 0.4833454593575916
the regulation term lambda/alpha is 1.619272763829749
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2909397560956897
the lambda is 0.4526028972098526
the regulation term lambda/alpha is 1.5556584747427644
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3803741312833546
the lambda is 0.6222273629406704
the regulation term lambda/alpha is 1.6358298626705254
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30683168757830404
the lambda is 0.5903225479804397
the regulation term lambda/alpha is 1.9239295414356063
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.276736074347686
the lambda is 0.4763001244754971
the regulation term lambda/alpha is 1.7211349318957332
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2393974519097451
the lambda is 0.4869550339053041
the regulation term lambda/alpha is 2.034086119216049
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2979977356699425
the lambda is 0.5268941162102655
the regulation term lambda/alpha is 1.7681144959901474
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2847279534842731
the lambda is 0.4259616242350607
the regulation term lambda/alpha is 1.4960302247197117
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3773822905311227
the lambda is 0.49642476776910355
the regulation term lambda/alpha is 1.315442669740655
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3178393763354385
the lambda is 0.5263173428251452
the regulation term lambda/alpha is 1.6559223998403678
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3880189348945347
the lambda is 0.5168004071464053
the regulation term lambda/alpha is 1.3318948140684783
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2922808870626002
the lambda is 0.5285898557515389
the regulation term lambda/alpha is 1.8084995603504055
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2574511704494388
the lambda is 0.4657073138817052
the regulation term lambda/alpha is 1.8089151160925334
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31758499655016625
the lambda is 0.5170633873566745
the regulation term lambda/alpha is 1.6281102475664282
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2514339046741475
the lambda is 0.4704492380076718
the regulation term lambda/alpha is 1.871065235284649
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35078559828522304
the lambda is 0.5313258924878037
the regulation term lambda/alpha is 1.514674191543587
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3557129252358557
the lambda is 0.45818678968211196
the regulation term lambda/alpha is 1.288080238800181
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3163907930576249
the lambda is 0.5754028966924809
the regulation term lambda/alpha is 1.818646146848153
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34987500358672213
the lambda is 0.5068280034267767
the regulation term lambda/alpha is 1.448597351142724
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2335662644651059
the lambda is 0.5083859863810373
the regulation term lambda/alpha is 2.1766242121707977
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.314446196419849
the lambda is 0.5089323954814053
the regulation term lambda/alpha is 1.6185039007496154
230
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.40947169636678626
the lambda is 0.5332321872152949
the regulation term lambda/alpha is 1.302244311259183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.44519354772757974
the lambda is 0.4662288797377224
the regulation term lambda/alpha is 1.0472498582190022
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3333327854559381
the lambda is 0.44818216926998117
the regulation term lambda/alpha is 1.3445487177534914
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31016227009788216
the lambda is 0.48451226069781617
the regulation term lambda/alpha is 1.562125079059139
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2727489067954653
the lambda is 0.4093684799363154
the regulation term lambda/alpha is 1.5008987011020405
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36547069709190905
the lambda is 0.538651623071795
the regulation term lambda/alpha is 1.4738572130622396
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33119772548708537
the lambda is 0.451382751528837
the regulation term lambda/alpha is 1.3628799861623389
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4375427428889793
the lambda is 0.5925698662028565
the regulation term lambda/alpha is 1.354313094739668
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2807186129835522
the lambda is 0.48269614848490694
the regulation term lambda/alpha is 1.7195017578445677
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2668878308870582
the lambda is 0.447482447756368
the regulation term lambda/alpha is 1.6766686074410562
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3140120365643925
the lambda is 0.45721028951118187
the regulation term lambda/alpha is 1.4560279106289116
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4103096492971225
the lambda is 0.4957835774108242
the regulation term lambda/alpha is 1.2083156666193986
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2988686724158038
the lambda is 0.516559870620647
the regulation term lambda/alpha is 1.7283841308799952
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3199495475101805
the lambda is 0.47720172219798884
the regulation term lambda/alpha is 1.4914905362783946
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25147740809309094
the lambda is 0.4987648180197537
the regulation term lambda/alpha is 1.9833384708463468
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2975066125651815
the lambda is 0.4170609481069061
the regulation term lambda/alpha is 1.401854380683828
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3788448917629468
the lambda is 0.5696857149120096
the regulation term lambda/alpha is 1.5037439524682226
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.29294907710150236
the lambda is 0.4253225367201948
the regulation term lambda/alpha is 1.4518650849779844
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3337996930455561
the lambda is 0.47770700797862514
the regulation term lambda/alpha is 1.4311187755149581
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4913811706154406
the lambda is 0.572426400026413
the regulation term lambda/alpha is 1.1649335266743444
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28346614215938215
the lambda is 0.5188371734707575
the regulation term lambda/alpha is 1.8303320795858409
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3580690604249552
the lambda is 0.5100014489045953
the regulation term lambda/alpha is 1.424310294498294
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2954426943579148
the lambda is 0.4338727208453145
the regulation term lambda/alpha is 1.4685511915880995
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.43535449664002945
the lambda is 0.5560913417377993
the regulation term lambda/alpha is 1.2773299599052963
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3293121609481726
the lambda is 0.46304197264845137
the regulation term lambda/alpha is 1.4060882881313492
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3538995489122861
the lambda is 0.5195025405298979
the regulation term lambda/alpha is 1.4679378431721495
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4337526693677827
the lambda is 0.6868744135152556
the regulation term lambda/alpha is 1.5835623894059514
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30882874257429305
the lambda is 0.4468644275702166
the regulation term lambda/alpha is 1.44696514918043
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37474032166279164
the lambda is 0.6506735490504069
the regulation term lambda/alpha is 1.7363318315020086
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2930500424244395
the lambda is 0.5069855531001046
the regulation term lambda/alpha is 1.7300306422266656
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3462722804439653
the lambda is 0.4593864301643486
the regulation term lambda/alpha is 1.326662444869559
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3581514657137891
the lambda is 0.5286563627206677
the regulation term lambda/alpha is 1.4760692425677098
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30156254674473354
the lambda is 0.5324368577302059
the regulation term lambda/alpha is 1.765593451433817
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3345297667801329
the lambda is 0.5565577168701507
the regulation term lambda/alpha is 1.663701625798651
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2792884361455098
the lambda is 0.5138057556311303
the regulation term lambda/alpha is 1.8396957737392197
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2825583958717415
the lambda is 0.44686856424833643
the regulation term lambda/alpha is 1.5815087103310794
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3683622782675675
the lambda is 0.4626031352646657
the regulation term lambda/alpha is 1.2558374257003708
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33584151579545846
the lambda is 0.5542119786693633
the regulation term lambda/alpha is 1.6502187865508016
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28430766657065076
the lambda is 0.4543351453287351
the regulation term lambda/alpha is 1.5980404285574632
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2979897202696368
the lambda is 0.4817499148995265
the regulation term lambda/alpha is 1.6166662207797429
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30952980478660974
the lambda is 0.5773446269595525
the regulation term lambda/alpha is 1.8652311280898284
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3308168256938411
the lambda is 0.4945059269840436
the regulation term lambda/alpha is 1.4948028291695503
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35477647052757344
the lambda is 0.4288790597787561
the regulation term lambda/alpha is 1.2088712059765063
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38393337170946296
the lambda is 0.6800764120154367
the regulation term lambda/alpha is 1.7713396701813056
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3311101642538605
the lambda is 0.5308826456917957
the regulation term lambda/alpha is 1.6033414343776249
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3113242776554168
the lambda is 0.4929810925961611
the regulation term lambda/alpha is 1.5834971056828646
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34383286890512116
the lambda is 0.4545039388100165
the regulation term lambda/alpha is 1.3218746080248496
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.41404267505159137
the lambda is 0.534953418563009
the regulation term lambda/alpha is 1.292024834146267
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27232101367833106
the lambda is 0.4430824880773181
the regulation term lambda/alpha is 1.6270594842919195
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.41016811960550814
the lambda is 0.5965222824806263
the regulation term lambda/alpha is 1.454336048970237
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.254461402002143
the lambda is 0.5177266535366549
the regulation term lambda/alpha is 2.0345979762081745
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4419155754576321
the lambda is 0.5446169295666284
the regulation term lambda/alpha is 1.232400394583609
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31201275565888326
the lambda is 0.5130239293862421
the regulation term lambda/alpha is 1.6442402436492691
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33698367605678076
the lambda is 0.4210151611634812
the regulation term lambda/alpha is 1.249363666780528
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3430667490954846
the lambda is 0.4537851597508062
the regulation term lambda/alpha is 1.3227313954128084
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35882023136529095
the lambda is 0.46192766963957205
the regulation term lambda/alpha is 1.287351239594164
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38693309108290885
the lambda is 0.5699618008172233
the regulation term lambda/alpha is 1.4730241841608127
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38206032953541197
the lambda is 0.4989670431641733
the regulation term lambda/alpha is 1.305990192101129
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3268468426481265
the lambda is 0.5080818261492328
the regulation term lambda/alpha is 1.5544951330498806
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3832395839812015
the lambda is 0.5213670371413046
the regulation term lambda/alpha is 1.3604206322457506
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36051359494960195
the lambda is 0.5871531625900307
the regulation term lambda/alpha is 1.6286574787064878
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.24348600467827256
the lambda is 0.43644859040379774
the regulation term lambda/alpha is 1.7924997002620093
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26418698489552134
the lambda is 0.507920337872492
the regulation term lambda/alpha is 1.9225789569965397
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32410173146838983
the lambda is 0.4971816893965631
the regulation term lambda/alpha is 1.5340297231489923
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3305300070911682
the lambda is 0.46369367145722484
the regulation term lambda/alpha is 1.4028791985876394
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30954010347465516
the lambda is 0.4046463479943102
the regulation term lambda/alpha is 1.3072501541870236
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30494173483121495
the lambda is 0.5120930007402056
the regulation term lambda/alpha is 1.6793142500604212
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2974127790914291
the lambda is 0.4630524203064912
the regulation term lambda/alpha is 1.5569351852367515
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31496876033920285
the lambda is 0.47071090215661093
the regulation term lambda/alpha is 1.4944685360214232
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2656448503901416
the lambda is 0.66110181499222
the regulation term lambda/alpha is 2.488667911391044
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3232098814703027
the lambda is 0.44442135461300264
the regulation term lambda/alpha is 1.375024032654265
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3098752333250051
the lambda is 0.5306980631513688
the regulation term lambda/alpha is 1.712618518933906
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3063070719388806
the lambda is 0.5049020768638957
the regulation term lambda/alpha is 1.6483526601848812
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.23190940017479458
the lambda is 0.4380742432541738
the regulation term lambda/alpha is 1.8889887297538988
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31735198007316684
the lambda is 0.48656453887684287
the regulation term lambda/alpha is 1.5332015220597122
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31138822141639216
the lambda is 0.5269419027028085
the regulation term lambda/alpha is 1.692234537022437
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31826709316787066
the lambda is 0.45737374469741293
the regulation term lambda/alpha is 1.4370751941237299
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30219143082556654
the lambda is 0.3590363265909746
the regulation term lambda/alpha is 1.1881088937899784
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34883524818681344
the lambda is 0.5246388266956933
the regulation term lambda/alpha is 1.5039730916605392
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3818858996486598
the lambda is 0.45829786623137536
the regulation term lambda/alpha is 1.2000910917449834
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3135879449136522
the lambda is 0.4526176611063159
the regulation term lambda/alpha is 1.4433515970486241
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3053154976348022
the lambda is 0.45813563109878586
the regulation term lambda/alpha is 1.500531858513048
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2841018125345401
the lambda is 0.4699097026941652
the regulation term lambda/alpha is 1.654018672045731
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2686944540380535
the lambda is 0.429427964497114
the regulation term lambda/alpha is 1.598201816388428
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30575114166290085
the lambda is 0.4448697415935035
the regulation term lambda/alpha is 1.4550059868099685
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34503063296310404
the lambda is 0.48990734129156305
the regulation term lambda/alpha is 1.419895204910549
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3056061261843749
the lambda is 0.5487247805574608
the regulation term lambda/alpha is 1.795529387478346
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.309611800606395
the lambda is 0.4173594870364028
the regulation term lambda/alpha is 1.3480089784012654
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28878999080329887
the lambda is 0.4890137970307
the regulation term lambda/alpha is 1.6933197569294496
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26959012241247515
the lambda is 0.45585736640743385
the regulation term lambda/alpha is 1.690927554496853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.349700206751828
the lambda is 0.49708357064905173
the regulation term lambda/alpha is 1.4214563247365117
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.294536599583798
the lambda is 0.4932508995248067
the regulation term lambda/alpha is 1.6746675972419274
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4144488869797236
the lambda is 0.48607764990012303
the regulation term lambda/alpha is 1.1728289426529543
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30950307428927387
the lambda is 0.5104758734472603
the regulation term lambda/alpha is 1.6493402355355904
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3523842634117049
the lambda is 0.4695241115819299
the regulation term lambda/alpha is 1.3324207699745256
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2510933769627401
the lambda is 0.559712271526237
the regulation term lambda/alpha is 2.2291000993199956
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3736348785120328
the lambda is 0.5249427904789317
the regulation term lambda/alpha is 1.4049619579667427
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3158118716737004
the lambda is 0.5104614139433009
the regulation term lambda/alpha is 1.6163465015992626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2965936121668874
the lambda is 0.6049633674170208
the regulation term lambda/alpha is 2.039704641638134
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34213812875713817
the lambda is 0.4437474324814432
the regulation term lambda/alpha is 1.2969832800962997
240
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3053106489198822
the lambda is 0.44332695421584645
the regulation term lambda/alpha is 1.4520520518502507
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2707777288430239
the lambda is 0.5099709308307449
the regulation term lambda/alpha is 1.8833562605379068
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35805981397315445
the lambda is 0.5191147980762904
the regulation term lambda/alpha is 1.4497991056745927
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33558705211108475
the lambda is 0.488835742801911
the regulation term lambda/alpha is 1.456658532344384
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.315564391096161
the lambda is 0.48665863562379275
the regulation term lambda/alpha is 1.542184889534937
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34046778239439396
the lambda is 0.5155832537715418
the regulation term lambda/alpha is 1.514337862295282
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3260867865076027
the lambda is 0.5297171570641495
the regulation term lambda/alpha is 1.6244667952891712
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2859102970963967
the lambda is 0.4812430842774666
the regulation term lambda/alpha is 1.683196055422978
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30371118947148545
the lambda is 0.4264334550986004
the regulation term lambda/alpha is 1.4040755490131094
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2777968723064096
the lambda is 0.4382193120119554
the regulation term lambda/alpha is 1.5774810867150444
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35166940865253354
the lambda is 0.5088962474583014
the regulation term lambda/alpha is 1.447087050898748
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26730877669137065
the lambda is 0.49523686370195413
the regulation term lambda/alpha is 1.852677154232555
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3434984582707904
the lambda is 0.4652129646130505
the regulation term lambda/alpha is 1.354337853377813
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24706434169481276
the lambda is 0.5073704646086239
the regulation term lambda/alpha is 2.053596488785724
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36695203044741304
the lambda is 0.5076322412474837
the regulation term lambda/alpha is 1.3833749349432507
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.33921278050836573
the lambda is 0.5072290690761663
the regulation term lambda/alpha is 1.495312376839106
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30581083450526203
the lambda is 0.45004082827136505
the regulation term lambda/alpha is 1.4716314057330147
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36286610621069837
the lambda is 0.4548621695609556
the regulation term lambda/alpha is 1.2535261954083958
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2657301820685486
the lambda is 0.44118208197769715
the regulation term lambda/alpha is 1.6602633488727616
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3274678386909997
the lambda is 0.4351060365259435
the regulation term lambda/alpha is 1.3286985319389233
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2437748540726588
the lambda is 0.4222456557605708
the regulation term lambda/alpha is 1.732113254120614
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32626013854644337
the lambda is 0.45668046898129044
the regulation term lambda/alpha is 1.3997433796721128
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3419002491469065
the lambda is 0.5414806978613317
the regulation term lambda/alpha is 1.5837388221050117
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3630447320672146
the lambda is 0.5357528277996665
the regulation term lambda/alpha is 1.475721255474591
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28112627981911203
the lambda is 0.4675780298850728
the regulation term lambda/alpha is 1.6632313072471607
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39324545941990113
the lambda is 0.5206010727792394
the regulation term lambda/alpha is 1.3238578102013125
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3259604919487967
the lambda is 0.6027905748899193
the regulation term lambda/alpha is 1.849274957483523
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38347184434420967
the lambda is 0.5412557688335422
the regulation term lambda/alpha is 1.4114615631277052
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26126193059217145
the lambda is 0.39956489807838325
the regulation term lambda/alpha is 1.5293651745309271
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3501104643332409
the lambda is 0.5419533770958002
the regulation term lambda/alpha is 1.5479496681937506
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2819551269343577
the lambda is 0.4490573233363346
the regulation term lambda/alpha is 1.5926552860337955
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2920295108371552
the lambda is 0.5207492915129602
the regulation term lambda/alpha is 1.783207765612929
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3416997462746507
the lambda is 0.5241908010561832
the regulation term lambda/alpha is 1.534068452701894
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2717950140107716
the lambda is 0.45710936245986394
the regulation term lambda/alpha is 1.681816585648433
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35778882058278516
the lambda is 0.4972237073760131
the regulation term lambda/alpha is 1.3897128103838157
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.3141222464061118
the lambda is 0.46572375960743684
the regulation term lambda/alpha is 1.4826194735833118
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23425862507767442
the lambda is 0.5042660984097529
the regulation term lambda/alpha is 2.152604192236468
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3521352739775671
the lambda is 0.5139579270861547
the regulation term lambda/alpha is 1.4595468419869138
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3754364383839285
the lambda is 0.49177475134813037
the regulation term lambda/alpha is 1.3098748578187611
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31348600910942315
the lambda is 0.4785887590069961
the regulation term lambda/alpha is 1.5266670444611241
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3709354806912609
the lambda is 0.5164690511874621
the regulation term lambda/alpha is 1.3923420057444775
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35613378826098685
the lambda is 0.5384028078653215
the regulation term lambda/alpha is 1.511799288953627
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.31008574568924513
the lambda is 0.5119743788681786
the regulation term lambda/alpha is 1.6510735691193552
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3707016598114212
the lambda is 0.5427576509694727
the regulation term lambda/alpha is 1.464136015052044
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.40630474723443005
the lambda is 0.560882291607714
the regulation term lambda/alpha is 1.3804473007648508
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31103154980174325
the lambda is 0.4898091450637574
the regulation term lambda/alpha is 1.5747892629412354
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26420988971597326
the lambda is 0.5184600037272068
the regulation term lambda/alpha is 1.9623035469435057
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3968736996554902
the lambda is 0.5771185740009159
the regulation term lambda/alpha is 1.4541618013536521
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39675093570580217
the lambda is 0.559078881431855
the regulation term lambda/alpha is 1.409143195685925
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3544997099929345
the lambda is 0.5202912405004919
the regulation term lambda/alpha is 1.467677478525615
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29189513093458475
the lambda is 0.44634225074811795
the regulation term lambda/alpha is 1.5291185204735245
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36749842350366996
the lambda is 0.465384322882938
the regulation term lambda/alpha is 1.2663573314030572
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2986727668255634
the lambda is 0.446736854572282
the regulation term lambda/alpha is 1.495740168480757
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31089612791488
the lambda is 0.4924285909042614
the regulation term lambda/alpha is 1.5839006880107653
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.339145564518472
the lambda is 0.47401008855788085
the regulation term lambda/alpha is 1.3976597017593113
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3244647789668455
the lambda is 0.46551950315971147
the regulation term lambda/alpha is 1.434730464865893
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3415877666625388
the lambda is 0.5947202363394376
the regulation term lambda/alpha is 1.7410466485674039
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3443417091559243
the lambda is 0.5144966953589034
the regulation term lambda/alpha is 1.494145732795703
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33556095319137763
the lambda is 0.5516408562360104
the regulation term lambda/alpha is 1.6439363727799337
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4579385988229405
the lambda is 0.5588491038701651
the regulation term lambda/alpha is 1.220358155671086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317315620125556
the lambda is 0.5531341977291097
the regulation term lambda/alpha is 1.7431672525614863
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3283882519110187
the lambda is 0.43656303460823864
the regulation term lambda/alpha is 1.3294112443661088
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3222421660674719
the lambda is 0.42347540059921995
the regulation term lambda/alpha is 1.3141526627851414
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3826190661270515
the lambda is 0.5166965493253545
the regulation term lambda/alpha is 1.3504202876125926
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3371926328465815
the lambda is 0.6884505991485327
the regulation term lambda/alpha is 2.0417130508950625
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3072867110038966
the lambda is 0.5268966030879517
the regulation term lambda/alpha is 1.7146742251449667
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3543418878495723
the lambda is 0.47328137173860746
the regulation term lambda/alpha is 1.335663064310162
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25023242204681523
the lambda is 0.5936471616541408
the regulation term lambda/alpha is 2.372383070100633
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3479951194778838
the lambda is 0.45454890825642574
the regulation term lambda/alpha is 1.3061933424193144
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.49959126071074744
the lambda is 0.5237868216842466
the regulation term lambda/alpha is 1.0484307130174317
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3648525308988592
the lambda is 0.5704013737091976
the regulation term lambda/alpha is 1.5633751321498126
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3669665315416175
the lambda is 0.5058262109596855
the regulation term lambda/alpha is 1.3783987570602743
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36513741606560407
the lambda is 0.4809822831265067
the regulation term lambda/alpha is 1.3172637532169227
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26324986227573255
the lambda is 0.5162366240004177
the regulation term lambda/alpha is 1.9610138426575978
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26893147818268487
the lambda is 0.49247541558817637
the regulation term lambda/alpha is 1.8312300922008033
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2941908538861963
the lambda is 0.5120936000524295
the regulation term lambda/alpha is 1.7406849780942746
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37155665165755564
the lambda is 0.4737389516306389
the regulation term lambda/alpha is 1.2750113596869728
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35166277042858585
the lambda is 0.48869444888694885
the regulation term lambda/alpha is 1.3896678579064734
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3227026974482055
the lambda is 0.49711523662263446
the regulation term lambda/alpha is 1.5404743764263777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28402028969035387
the lambda is 0.4492048347035559
the regulation term lambda/alpha is 1.5815941712942072
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3691833061251751
the lambda is 0.5326339686982164
the regulation term lambda/alpha is 1.4427357896773965
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28214058749886756
the lambda is 0.5693429623581777
the regulation term lambda/alpha is 2.017940656483757
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2305623621198267
the lambda is 0.38156589711803024
the regulation term lambda/alpha is 1.654935756252032
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26085460327102405
the lambda is 0.47370834768270725
the regulation term lambda/alpha is 1.8159861537522162
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30568981703140125
the lambda is 0.5542117413905436
the regulation term lambda/alpha is 1.81298725215179
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3769989829773866
the lambda is 0.5511984025332889
the regulation term lambda/alpha is 1.4620686723877747
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28510267698700426
the lambda is 0.41774775898327826
the regulation term lambda/alpha is 1.4652537233184952
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.289239572955108
the lambda is 0.4557613623078537
the regulation term lambda/alpha is 1.575722705062184
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.41896241273784113
the lambda is 0.5044678883195048
the regulation term lambda/alpha is 1.2040886556455062
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29463509174514024
the lambda is 0.541999854589215
the regulation term lambda/alpha is 1.8395631402183605
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2700348289612814
the lambda is 0.41322406746381757
the regulation term lambda/alpha is 1.530262111199986
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2746041297546767
the lambda is 0.5168300788633944
the regulation term lambda/alpha is 1.882091428577987
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.35456189730559573
the lambda is 0.41498475979767646
the regulation term lambda/alpha is 1.1704155549461155
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3109591498507219
the lambda is 0.49800590441811016
the regulation term lambda/alpha is 1.6015155195053155
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3179940069410466
the lambda is 0.4680999484867732
the regulation term lambda/alpha is 1.4720401588371914
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3007720336650133
the lambda is 0.49404551052869355
the regulation term lambda/alpha is 1.6425912492879566
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30798354839256575
the lambda is 0.5091715416790962
the regulation term lambda/alpha is 1.6532426629168182
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25970292849745585
the lambda is 0.4038590923745802
the regulation term lambda/alpha is 1.55508101010319
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40150801585723417
the lambda is 0.6146977514724702
the regulation term lambda/alpha is 1.5309725514696593
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3681736582497397
the lambda is 0.5973572276832144
the regulation term lambda/alpha is 1.6224876883451962
250
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2839972237629287
the lambda is 0.4629931158851496
the regulation term lambda/alpha is 1.6302733870090245
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36821221464270726
the lambda is 0.5931621502212673
the regulation term lambda/alpha is 1.6109246967725908
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3156278995338203
the lambda is 0.553964143652835
the regulation term lambda/alpha is 1.755117796845701
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.236314424813788
the lambda is 0.558088592994674
the regulation term lambda/alpha is 2.361635746249679
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3095413491828443
the lambda is 0.5598446823032582
the regulation term lambda/alpha is 1.8086264848983429
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23191019213001354
the lambda is 0.4099032894157307
the regulation term lambda/alpha is 1.767508731077807
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.30046121251343394
the lambda is 0.5448980024782585
the regulation term lambda/alpha is 1.813538585962724
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3132075013439897
the lambda is 0.5179493138581014
the regulation term lambda/alpha is 1.6536938343927072
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30422076095622314
the lambda is 0.49990392474823064
the regulation term lambda/alpha is 1.6432275140491348
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2780529854042861
the lambda is 0.4675626811387125
the regulation term lambda/alpha is 1.6815596511538309
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28682685692639115
the lambda is 0.4290687400115736
the regulation term lambda/alpha is 1.4959154962315337
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3159732157289253
the lambda is 0.48067635933250863
the regulation term lambda/alpha is 1.5212566616560401
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35378514418496426
the lambda is 0.48991599357987364
the regulation term lambda/alpha is 1.384783961770136
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2695058862814834
the lambda is 0.5394549679005306
the regulation term lambda/alpha is 2.0016444736835948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29201890803930175
the lambda is 0.48683815279515563
the regulation term lambda/alpha is 1.667145994291691
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3121768667922027
the lambda is 0.4442513519958479
the regulation term lambda/alpha is 1.4230758241659183
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2793410686705932
the lambda is 0.4509476409811933
the regulation term lambda/alpha is 1.614326325617961
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24960280379815428
the lambda is 0.5319546031389628
the regulation term lambda/alpha is 2.131204437788036
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35752508890842927
the lambda is 0.5035941630157097
the regulation term lambda/alpha is 1.408556150711684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215833454830501
the lambda is 0.4764738168824553
the regulation term lambda/alpha is 1.4816495430344638
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.367137534081175
the lambda is 0.5895896178085177
the regulation term lambda/alpha is 1.605909402001262
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27249978059488644
the lambda is 0.5006874456096829
the regulation term lambda/alpha is 1.837386600886968
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32106286110338045
the lambda is 0.3943761380737556
the regulation term lambda/alpha is 1.228345554258201
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36030319536052835
the lambda is 0.5391970461502004
the regulation term lambda/alpha is 1.49650919862275
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32685104492012207
the lambda is 0.4177329678618982
the regulation term lambda/alpha is 1.278053028602024
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4746129800509357
the lambda is 0.586556418979078
the regulation term lambda/alpha is 1.2358625735775883
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.250078037611098
the lambda is 0.5217551859696572
the regulation term lambda/alpha is 2.0863694827174326
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.289207591326526
the lambda is 0.4857602728223051
the regulation term lambda/alpha is 1.6796249040152749
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3042361586100092
the lambda is 0.48649671319328536
the regulation term lambda/alpha is 1.5990759133167674
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3641185711697543
the lambda is 0.4997107842262444
the regulation term lambda/alpha is 1.3723847773567037
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.361088224334625
the lambda is 0.39949172776032077
the regulation term lambda/alpha is 1.1063549039752312
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3480031348257606
the lambda is 0.5468518601644111
the regulation term lambda/alpha is 1.5713992359241555
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36834741441683233
the lambda is 0.5261786051460506
the regulation term lambda/alpha is 1.4284845896885054
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26642381372139334
the lambda is 0.48235993285522466
the regulation term lambda/alpha is 1.8104985666170277
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3316402177113891
the lambda is 0.6243665091510179
the regulation term lambda/alpha is 1.8826622219093305
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3514564256486397
the lambda is 0.48714876801503015
the regulation term lambda/alpha is 1.386085820215009
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3246195865965656
the lambda is 0.5531804722835754
the regulation term lambda/alpha is 1.704088401083029
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27046210074425
the lambda is 0.407207410033756
the regulation term lambda/alpha is 1.5055987841298804
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4006544024676416
the lambda is 0.6264677613332191
the regulation term lambda/alpha is 1.5636113255583535
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36001629579311495
the lambda is 0.4357303707184266
the regulation term lambda/alpha is 1.2103073550004555
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.22012457106099528
the lambda is 0.390032461333343
the regulation term lambda/alpha is 1.7718715337110968
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2774105196731988
the lambda is 0.5261806222566551
the regulation term lambda/alpha is 1.896757999215451
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3513143719151444
the lambda is 0.5102474703714377
the regulation term lambda/alpha is 1.452395663718197
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.42438746236224434
the lambda is 0.5213698240488882
the regulation term lambda/alpha is 1.228523154635192
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3072282340583352
the lambda is 0.543017637524755
the regulation term lambda/alpha is 1.767473094356455
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.321775811877815
the lambda is 0.5180007382732008
the regulation term lambda/alpha is 1.6098187593724307
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2885360133781892
the lambda is 0.5353905675710742
the regulation term lambda/alpha is 1.8555415710597223
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30407933472723697
the lambda is 0.4271679991262756
the regulation term lambda/alpha is 1.404791284187236
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2909361086393575
the lambda is 0.4561093943609501
the regulation term lambda/alpha is 1.5677304425843557
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2909208144158478
the lambda is 0.5521918081336356
the regulation term lambda/alpha is 1.8980828485662151
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2798623497947265
the lambda is 0.4720533258409668
the regulation term lambda/alpha is 1.6867339468392535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39186585480221714
the lambda is 0.5079332370132239
the regulation term lambda/alpha is 1.2961916196285803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3645485333489362
the lambda is 0.6360036084563918
the regulation term lambda/alpha is 1.7446335680292697
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2787240207852332
the lambda is 0.48836172113638354
the regulation term lambda/alpha is 1.7521335970992027
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34044453624740334
the lambda is 0.5462108799919311
the regulation term lambda/alpha is 1.6044048937093116
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38214976997490935
the lambda is 0.4852368460065276
the regulation term lambda/alpha is 1.2697556930058773
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33053225819563764
the lambda is 0.5588695734613209
the regulation term lambda/alpha is 1.6908170370788242
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3257701235007334
the lambda is 0.5219257154792839
the regulation term lambda/alpha is 1.6021288566018819
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30409247885225793
the lambda is 0.4840938862315323
the regulation term lambda/alpha is 1.5919298236465997
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30184309168859486
the lambda is 0.5359510219118971
the regulation term lambda/alpha is 1.7755947930218874
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30427429356273805
the lambda is 0.5119363393659597
the regulation term lambda/alpha is 1.6824830430849527
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3269554378222396
the lambda is 0.5159691009290512
the regulation term lambda/alpha is 1.5781022159037321
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2876884626341041
the lambda is 0.39125675691648454
the regulation term lambda/alpha is 1.3600015563158108
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2688922625214771
the lambda is 0.48027545230877017
the regulation term lambda/alpha is 1.7861259666049685
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.40038640473912973
the lambda is 0.49052348534977075
the regulation term lambda/alpha is 1.2251252278892175
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33995255075360875
the lambda is 0.5028920336365145
the regulation term lambda/alpha is 1.4793006627592602
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34008125245458337
the lambda is 0.46449131787039954
the regulation term lambda/alpha is 1.3658245331604413
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2513445175839568
the lambda is 0.5081606938384607
the regulation term lambda/alpha is 2.021769556476279
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33472123002829735
the lambda is 0.4570304190630127
the regulation term lambda/alpha is 1.3654061292269253
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3561053177528324
the lambda is 0.5312326376085745
the regulation term lambda/alpha is 1.4917851858008353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3663268943939801
the lambda is 0.5758536212131151
the regulation term lambda/alpha is 1.5719665414295014
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29956488550950766
the lambda is 0.4609006922540606
the regulation term lambda/alpha is 1.5385671503859635
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3733029900491986
the lambda is 0.5476723845005053
the regulation term lambda/alpha is 1.4670988422255231
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35600853019048356
the lambda is 0.5209315952362008
the regulation term lambda/alpha is 1.4632559364728552
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4021761625442519
the lambda is 0.565777909152576
the regulation term lambda/alpha is 1.4067912567799759
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33312449602610167
the lambda is 0.5923071867596934
the regulation term lambda/alpha is 1.7780355207300147
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2912805585815925
the lambda is 0.469884068923165
the regulation term lambda/alpha is 1.6131666020255266
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2540873828300812
the lambda is 0.3674634402087783
the regulation term lambda/alpha is 1.4462089227567683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3750816931204887
the lambda is 0.5388233009847746
the regulation term lambda/alpha is 1.4365491861307307
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3108393415091971
the lambda is 0.589869692891169
the regulation term lambda/alpha is 1.8976674253240107
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34284772072445535
the lambda is 0.5069738318784616
the regulation term lambda/alpha is 1.478714313186038
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33918662016156254
the lambda is 0.581700564946993
the regulation term lambda/alpha is 1.7149867664883578
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36131423373120575
the lambda is 0.5660642780632845
the regulation term lambda/alpha is 1.5666813682308445
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3919774205589814
the lambda is 0.5578083733962496
the regulation term lambda/alpha is 1.4230625136539348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32104642479335765
the lambda is 0.48871203582632533
the regulation term lambda/alpha is 1.5222472455218465
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3572339294459747
the lambda is 0.5249464682077495
the regulation term lambda/alpha is 1.4694753911586058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30107873743551045
the lambda is 0.46957026370310456
the regulation term lambda/alpha is 1.5596261220661063
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3421331232628933
the lambda is 0.47591233320292875
the regulation term lambda/alpha is 1.391015078178327
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3237590678923939
the lambda is 0.49261935071776375
the regulation term lambda/alpha is 1.5215615547839823
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3089549920646305
the lambda is 0.4825907404068056
the regulation term lambda/alpha is 1.562009848689715
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3270265769304817
the lambda is 0.5050920147632322
the regulation term lambda/alpha is 1.544498369227658
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2911385550295575
the lambda is 0.5388641802725904
the regulation term lambda/alpha is 1.85088567269245
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31141214151235214
the lambda is 0.6371425818098428
the regulation term lambda/alpha is 2.045978614435528
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36427602064541204
the lambda is 0.517073402218438
the regulation term lambda/alpha is 1.4194549542467954
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3185196657498412
the lambda is 0.49404772889490095
the regulation term lambda/alpha is 1.551074492470791
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3423661576254833
the lambda is 0.5218179277886787
the regulation term lambda/alpha is 1.5241516025059316
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2596646361124736
the lambda is 0.4833887160792936
the regulation term lambda/alpha is 1.8615885602146998
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3700422435627406
the lambda is 0.5851558233406393
the regulation term lambda/alpha is 1.5813216829159835
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2677956704588236
the lambda is 0.46256234957725545
the regulation term lambda/alpha is 1.7272958475569504
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27832417216032806
the lambda is 0.46465054133718153
the regulation term lambda/alpha is 1.6694580917302453
260
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34979289152482
the lambda is 0.5733972257792542
the regulation term lambda/alpha is 1.639247793972303
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.41333142205580053
the lambda is 0.5244720797549094
the regulation term lambda/alpha is 1.2688899313445003
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27033431597863006
the lambda is 0.5140494697646011
the regulation term lambda/alpha is 1.9015324336597974
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34918191554707834
the lambda is 0.4639598474998532
the regulation term lambda/alpha is 1.328705258899068
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2676836258334316
the lambda is 0.43085043576220655
the regulation term lambda/alpha is 1.6095509556132017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3297494947006156
the lambda is 0.514424565768464
the regulation term lambda/alpha is 1.5600465627264042
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.25107973087673646
the lambda is 0.4871539577730186
the regulation term lambda/alpha is 1.9402360997916595
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33619305337551814
the lambda is 0.48763278061818394
the regulation term lambda/alpha is 1.4504546590780147
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35141713286569387
the lambda is 0.5134131775698201
the regulation term lambda/alpha is 1.4609793591538935
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3305465351675986
the lambda is 0.4913700192379888
the regulation term lambda/alpha is 1.48653810268756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4166415153897846
the lambda is 0.5409875627935309
the regulation term lambda/alpha is 1.2984485290368042
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25524574125077654
the lambda is 0.494265556840333
the regulation term lambda/alpha is 1.9364301806497988
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3008004879574257
the lambda is 0.4048302384357039
the regulation term lambda/alpha is 1.3458430243404467
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34449317927312223
the lambda is 0.5740041408505749
the regulation term lambda/alpha is 1.6662278831230242
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3111429316023929
the lambda is 0.5912987252339459
the regulation term lambda/alpha is 1.9004086713098205
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29768997330738567
the lambda is 0.49822673974833914
the regulation term lambda/alpha is 1.6736429991677457
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27996376922089755
the lambda is 0.5616504795218933
the regulation term lambda/alpha is 2.0061541573214736
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4173726154367814
the lambda is 0.6155858573040796
the regulation term lambda/alpha is 1.4749071561867266
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33379804956921455
the lambda is 0.4540571108370563
the regulation term lambda/alpha is 1.3602749070075242
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3913285476527521
the lambda is 0.5461612235694774
the regulation term lambda/alpha is 1.3956590359825143
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36766894142548573
the lambda is 0.5124273520290769
the regulation term lambda/alpha is 1.3937194423938821
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33395291838779695
the lambda is 0.5327101928867187
the regulation term lambda/alpha is 1.5951655564456495
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25583343873444825
the lambda is 0.5258504183191124
the regulation term lambda/alpha is 2.055440527713573
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30745689484128574
the lambda is 0.40157272468172583
the regulation term lambda/alpha is 1.3061106497189605
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32507031160220823
the lambda is 0.4127911917281814
the regulation term lambda/alpha is 1.269852019686492
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.41304796905646707
the lambda is 0.5529027553650839
the regulation term lambda/alpha is 1.3385921171046784
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28688067910745596
the lambda is 0.4736149175302043
the regulation term lambda/alpha is 1.65091256407966
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2576527594802697
the lambda is 0.5542351580201342
the regulation term lambda/alpha is 2.15109342953719
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3391114917520621
the lambda is 0.5200801231876557
the regulation term lambda/alpha is 1.5336552604000426
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3137758301235071
the lambda is 0.4211069902752116
the regulation term lambda/alpha is 1.3420631860314327
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2584732517925856
the lambda is 0.4361221204346976
the regulation term lambda/alpha is 1.6873007841626415
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2950003082798512
the lambda is 0.46743592038144216
the regulation term lambda/alpha is 1.5845268878092509
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27901231997618736
the lambda is 0.4644213273648619
the regulation term lambda/alpha is 1.6645190699984092
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29302963055873515
the lambda is 0.41096793947755483
the regulation term lambda/alpha is 1.4024791236774945
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31390373879244465
the lambda is 0.5912633936554674
the regulation term lambda/alpha is 1.8835818774570727
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3074731079769864
the lambda is 0.47778522876173996
the regulation term lambda/alpha is 1.5539089968072948
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24455609998591674
the lambda is 0.44959400111341485
the regulation term lambda/alpha is 1.8384084516366823
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2685997996655394
the lambda is 0.4904919225130319
the regulation term lambda/alpha is 1.826106806943984
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2718667980061553
the lambda is 0.43534844723554766
the regulation term lambda/alpha is 1.6013299543318673
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.22513909913321875
the lambda is 0.44879552029221137
the regulation term lambda/alpha is 1.9934143914587275
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2844393269050091
the lambda is 0.5026765710682339
the regulation term lambda/alpha is 1.767254115448343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28136676756993134
the lambda is 0.5480299926671811
the regulation term lambda/alpha is 1.9477424338358398
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.277996219794938
the lambda is 0.4487869206899952
the regulation term lambda/alpha is 1.6143633932182235
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27727590169296856
the lambda is 0.5526006359594675
the regulation term lambda/alpha is 1.9929630832879586
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26313093847743263
the lambda is 0.4727807622353191
the regulation term lambda/alpha is 1.796750944495518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2964860942621981
the lambda is 0.5924059133360748
the regulation term lambda/alpha is 1.9980900446959224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3003727907329487
the lambda is 0.48792245240182275
the regulation term lambda/alpha is 1.6243896499787096
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3234259355444011
the lambda is 0.4861757306280786
the regulation term lambda/alpha is 1.5032057642802572
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3480882410681945
the lambda is 0.6713746590387412
the regulation term lambda/alpha is 1.9287484603859717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3888478593648942
the lambda is 0.5488321067125229
the regulation term lambda/alpha is 1.4114314724759736
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.47479751069721016
the lambda is 0.5735464031440222
the regulation term lambda/alpha is 1.207981066079739
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3280263265544581
the lambda is 0.4647120390149994
the regulation term lambda/alpha is 1.4166912878495717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3527310125878022
the lambda is 0.49135825243367304
the regulation term lambda/alpha is 1.3930112037181974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3167338625517163
the lambda is 0.4699007431283202
the regulation term lambda/alpha is 1.4835822710670692
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3063658750823264
the lambda is 0.4337603940099982
the regulation term lambda/alpha is 1.4158247679949292
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34141263270771993
the lambda is 0.4743561301891577
the regulation term lambda/alpha is 1.3893924381973568
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29521054891390347
the lambda is 0.47342166979973144
the regulation term lambda/alpha is 1.6036746367684924
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3536982943920497
the lambda is 0.48957986425555944
the regulation term lambda/alpha is 1.3841736644420868
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29816513648887366
the lambda is 0.49158895177469986
the regulation term lambda/alpha is 1.6487137214080159
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3610382964544112
the lambda is 0.4773015142483774
the regulation term lambda/alpha is 1.3220246132771316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33484418021658074
the lambda is 0.5145324374241503
the regulation term lambda/alpha is 1.5366324631694221
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.26970700535022096
the lambda is 0.4676222141716
the regulation term lambda/alpha is 1.7338156032112753
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35755890134039614
the lambda is 0.525278502370655
the regulation term lambda/alpha is 1.4690684539009413
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31521112765536563
the lambda is 0.570756845540516
the regulation term lambda/alpha is 1.810712869770733
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3340597017734183
the lambda is 0.5181823814006967
the regulation term lambda/alpha is 1.5511669879660095
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3426603373641706
the lambda is 0.42084482992580013
the regulation term lambda/alpha is 1.2281690760099178
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35751683006015295
the lambda is 0.47621203454407446
the regulation term lambda/alpha is 1.3319989284531046
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27031682655784095
the lambda is 0.5240867530867709
the regulation term lambda/alpha is 1.9387870143356747
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.27292167583218735
the lambda is 0.4626998145185879
the regulation term lambda/alpha is 1.6953575164293302
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.352334603122578
the lambda is 0.46437584247075503
the regulation term lambda/alpha is 1.3179966950597741
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36460308408310316
the lambda is 0.47585731252895225
the regulation term lambda/alpha is 1.3051379247809411
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33895597414561013
the lambda is 0.5474242309970395
the regulation term lambda/alpha is 1.615030484052996
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4082762468953094
the lambda is 0.5549767936809819
the regulation term lambda/alpha is 1.359316878954483
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29999057474535207
the lambda is 0.5037347712752543
the regulation term lambda/alpha is 1.679168659558225
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.42480649264092285
the lambda is 0.5529296997063513
the regulation term lambda/alpha is 1.3016036931754889
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24895246118730724
the lambda is 0.4724242839939624
the regulation term lambda/alpha is 1.8976485781296177
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2024976020187246
the lambda is 0.44599332060659547
the regulation term lambda/alpha is 2.2024622324434007
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.32587030306585757
the lambda is 0.48061952806886155
the regulation term lambda/alpha is 1.4748798020166003
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26812564374422515
the lambda is 0.431725301524906
the regulation term lambda/alpha is 1.6101604288799192
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3109387458868938
the lambda is 0.54585127878233
the regulation term lambda/alpha is 1.7554945660612116
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3373022134899871
the lambda is 0.5030723106727143
the regulation term lambda/alpha is 1.4914586698603094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35523408977996906
the lambda is 0.536484675218872
the regulation term lambda/alpha is 1.5102285806837092
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31102501887020634
the lambda is 0.4689792021684211
the regulation term lambda/alpha is 1.5078504098222738
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3439287740838169
the lambda is 0.5301380699095137
the regulation term lambda/alpha is 1.54141819428088
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2561032840269559
the lambda is 0.44404184922744616
the regulation term lambda/alpha is 1.7338389506192702
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2880001869608369
the lambda is 0.42367292670053336
the regulation term lambda/alpha is 1.471085596059511
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3957232555854647
the lambda is 0.5604966159216743
the regulation term lambda/alpha is 1.4163853349796962
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35063850849924616
the lambda is 0.45560230850005756
the regulation term lambda/alpha is 1.2993504633876718
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3095954539543113
the lambda is 0.4574588511029053
the regulation term lambda/alpha is 1.4776019649513814
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.40345900578545085
the lambda is 0.48738463949255706
the regulation term lambda/alpha is 1.2080152692185429
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3360629766830536
the lambda is 0.47979571199927207
the regulation term lambda/alpha is 1.4276958346761746
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4309440801719286
the lambda is 0.5501590941353242
the regulation term lambda/alpha is 1.2766368525490217
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3141962971427299
the lambda is 0.5294308819220856
the regulation term lambda/alpha is 1.6850322130995108
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3323932155242088
the lambda is 0.5365056763773242
the regulation term lambda/alpha is 1.6140692749435779
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3298193569363605
the lambda is 0.4653642294043189
the regulation term lambda/alpha is 1.410967002443438
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27390447480159325
the lambda is 0.4553272420400343
the regulation term lambda/alpha is 1.662357806931987
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3154090491721413
the lambda is 0.5251095587853764
the regulation term lambda/alpha is 1.6648525467599582
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3546450493131348
the lambda is 0.6297316406562234
the regulation term lambda/alpha is 1.7756673662183289
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33110974386045083
the lambda is 0.506266558714903
the regulation term lambda/alpha is 1.5289992762287103
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2441962067268288
the lambda is 0.5098583937565504
the regulation term lambda/alpha is 2.087904642707681
270
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3050272662280192
the lambda is 0.5267080414284774
the regulation term lambda/alpha is 1.726757243513908
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3529478638702772
the lambda is 0.4730955251149328
the regulation term lambda/alpha is 1.3404119235265148
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3019369877428759
the lambda is 0.536684273384958
the regulation term lambda/alpha is 1.7774711120917344
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33436596542010805
the lambda is 0.4019359586712291
the regulation term lambda/alpha is 1.202083944656939
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38999899050014225
the lambda is 0.4783755286675558
the regulation term lambda/alpha is 1.2266070946852394
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32896159631996863
the lambda is 0.4604175250425903
the regulation term lambda/alpha is 1.3996087391148218
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2937056278285821
the lambda is 0.5293919026237459
the regulation term lambda/alpha is 1.802457469193336
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3319486407859377
the lambda is 0.5379814954241381
the regulation term lambda/alpha is 1.6206769039643814
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35877356912554836
the lambda is 0.4840537479256023
the regulation term lambda/alpha is 1.3491901008912217
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.346286588090939
the lambda is 0.5146306362847597
the regulation term lambda/alpha is 1.4861408266542842
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3881439428713797
the lambda is 0.5031383797308369
the regulation term lambda/alpha is 1.2962675032586124
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34545823772860673
the lambda is 0.45202814316364615
the regulation term lambda/alpha is 1.3084885343471275
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29172158711475377
the lambda is 0.6141060183345879
the regulation term lambda/alpha is 2.105109959150944
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3285470839167197
the lambda is 0.5804732284252038
the regulation term lambda/alpha is 1.7667885573817554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31942318633084893
the lambda is 0.4487917854173503
the regulation term lambda/alpha is 1.4050069144088535
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.323627326076822
the lambda is 0.468011077399832
the regulation term lambda/alpha is 1.4461420272302237
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3212847895607666
the lambda is 0.4791419600957622
the regulation term lambda/alpha is 1.4913309800653949
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34206048238166337
the lambda is 0.5141226372721998
the regulation term lambda/alpha is 1.5030167580087586
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34920314292854376
the lambda is 0.5624840597596032
the regulation term lambda/alpha is 1.6107645969117248
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39518954907830406
the lambda is 0.5730816974608632
the regulation term lambda/alpha is 1.4501438583015542
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33424924319268057
the lambda is 0.5484638954753798
the regulation term lambda/alpha is 1.640882983717673
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3071277896187652
the lambda is 0.4574685149472835
the regulation term lambda/alpha is 1.4895054449977805
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3203338302585985
the lambda is 0.46336230162791653
the regulation term lambda/alpha is 1.4464981773977923
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32036769613218996
the lambda is 0.48900811459061394
the regulation term lambda/alpha is 1.5263964516223871
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3139892077609638
the lambda is 0.46792616401733195
the regulation term lambda/alpha is 1.4902619340138548
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3583177037945736
the lambda is 0.6196772098318677
the regulation term lambda/alpha is 1.7294071804700266
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28987548295639487
the lambda is 0.42242136252929713
the regulation term lambda/alpha is 1.4572510866427457
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23371569003124937
the lambda is 0.44737308926030234
the regulation term lambda/alpha is 1.914176533036723
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28979620603234363
the lambda is 0.4927889006608746
the regulation term lambda/alpha is 1.7004670537538897
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2914678925401712
the lambda is 0.4481025977338919
the regulation term lambda/alpha is 1.5373995187896474
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35443643348283105
the lambda is 0.5208401862622393
the regulation term lambda/alpha is 1.4694882835386303
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3647664754575794
the lambda is 0.5053252123744566
the regulation term lambda/alpha is 1.3853389671859346
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2914683042632205
the lambda is 0.5613872439248874
the regulation term lambda/alpha is 1.9260661818580014
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2525857653521968
the lambda is 0.4237720706396622
the regulation term lambda/alpha is 1.6777353626748095
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34871825779701277
the lambda is 0.4515244827321423
the regulation term lambda/alpha is 1.2948117072636114
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.323454085117
the lambda is 0.4927228816421131
the regulation term lambda/alpha is 1.5233163045811744
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2981012935422062
the lambda is 0.4751625448249516
the regulation term lambda/alpha is 1.5939633779471556
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3230592567059959
the lambda is 0.5042660278786938
the regulation term lambda/alpha is 1.5609087726515987
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37330535464870535
the lambda is 0.4986691427304826
the regulation term lambda/alpha is 1.3358210283368406
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2821759320118392
the lambda is 0.5417148010824201
the regulation term lambda/alpha is 1.9197767762124072
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2659673928221223
the lambda is 0.5582415141308347
the regulation term lambda/alpha is 2.098909600186155
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.384483608160882
the lambda is 0.5106094455472774
the regulation term lambda/alpha is 1.328039569722358
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3366113957289845
the lambda is 0.5073704728784584
the regulation term lambda/alpha is 1.5072884617577145
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28900542913692623
the lambda is 0.4427181937648972
the regulation term lambda/alpha is 1.5318680866550236
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30160243863440905
the lambda is 0.47227869236861253
the regulation term lambda/alpha is 1.5658981223991053
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3992954288268366
the lambda is 0.5362432821018168
the regulation term lambda/alpha is 1.342973756742832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34520896174764615
the lambda is 0.5608990916668409
the regulation term lambda/alpha is 1.6248103433562309
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31928218669692165
the lambda is 0.495886608459888
the regulation term lambda/alpha is 1.5531295797927116
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2816211832149904
the lambda is 0.5003883435275682
the regulation term lambda/alpha is 1.7768135827537175
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37731016136616846
the lambda is 0.5211046528470127
the regulation term lambda/alpha is 1.3811042113474805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.41973007631995163
the lambda is 0.5946516035349902
the regulation term lambda/alpha is 1.4167476601836355
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35392152313399966
the lambda is 0.49586107447052374
the regulation term lambda/alpha is 1.401048091338553
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3557558046058796
the lambda is 0.4800492684348082
the regulation term lambda/alpha is 1.349378596834494
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2881242522034903
the lambda is 0.612683082597201
the regulation term lambda/alpha is 2.126454395669852
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3300516886897143
the lambda is 0.44135159014264297
the regulation term lambda/alpha is 1.3372196091308688
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.43173272401146673
the lambda is 0.5967977019541502
the regulation term lambda/alpha is 1.3823314026534141
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4183394492098452
the lambda is 0.523189941172538
the regulation term lambda/alpha is 1.2506349620164514
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.37842430477847977
the lambda is 0.426359076144058
the regulation term lambda/alpha is 1.1266693781564534
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3092415944696962
the lambda is 0.38707669200519085
the regulation term lambda/alpha is 1.2516967281486515
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3161146110220479
the lambda is 0.5018776309774443
the regulation term lambda/alpha is 1.5876445234682306
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32093599932288264
the lambda is 0.5301298833539236
the regulation term lambda/alpha is 1.651824302890304
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3280174868533748
the lambda is 0.4954458537044822
the regulation term lambda/alpha is 1.5104251253712841
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36204258502596165
the lambda is 0.5797629359739643
the regulation term lambda/alpha is 1.6013666898671333
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3138916160225229
the lambda is 0.5832667403892046
the regulation term lambda/alpha is 1.8581787808800634
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3037398180876831
the lambda is 0.47360782299330717
the regulation term lambda/alpha is 1.5592549767597046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3039365019104401
the lambda is 0.529679313328866
the regulation term lambda/alpha is 1.7427301755448403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3490968189192555
the lambda is 0.5588055426685585
the regulation term lambda/alpha is 1.6007179452351519
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3549640511756352
the lambda is 0.3876930995305071
the regulation term lambda/alpha is 1.092203839364786
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26074014256069733
the lambda is 0.43429585412012556
the regulation term lambda/alpha is 1.6656271253630477
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.286736195719623
the lambda is 0.46923070983063314
the regulation term lambda/alpha is 1.6364544024621759
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29314566838367
the lambda is 0.5570183074527673
the regulation term lambda/alpha is 1.9001416958470623
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2893706988360715
the lambda is 0.5088803692028839
the regulation term lambda/alpha is 1.7585760108046207
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37800009398243595
the lambda is 0.5293497722707097
the regulation term lambda/alpha is 1.4003958747568626
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.42718689367541934
the lambda is 0.485882590226099
the regulation term lambda/alpha is 1.1374005088163524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3363924580284171
the lambda is 0.5358548092273991
the regulation term lambda/alpha is 1.5929453721050197
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26729266895293197
the lambda is 0.3869772461484445
the regulation term lambda/alpha is 1.4477660298890875
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.338605529561756
the lambda is 0.6066278073334299
the regulation term lambda/alpha is 1.7915472559428216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33577724954064386
the lambda is 0.5734957807779386
the regulation term lambda/alpha is 1.7079649725003787
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3165504018069476
the lambda is 0.510031158371031
the regulation term lambda/alpha is 1.6112162722259948
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3212599558571548
the lambda is 0.402593159854093
the regulation term lambda/alpha is 1.2531694427334799
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2933020232982832
the lambda is 0.5031564141470997
the regulation term lambda/alpha is 1.7154890664882938
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3132667445271097
the lambda is 0.45155290789052216
the regulation term lambda/alpha is 1.4414326313894623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3760152517938731
the lambda is 0.5761834041319811
the regulation term lambda/alpha is 1.5323405138040458
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31570431238861146
the lambda is 0.5496874844140569
the regulation term lambda/alpha is 1.7411465819238712
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35490326975059916
the lambda is 0.5527136091996157
the regulation term lambda/alpha is 1.5573640941319689
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3209217815616348
the lambda is 0.49607402350843016
the regulation term lambda/alpha is 1.545778604040176
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2877957579579123
the lambda is 0.41818635892699807
the regulation term lambda/alpha is 1.4530664450869157
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3174796727620904
the lambda is 0.5673868646344113
the regulation term lambda/alpha is 1.7871596619024923
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28732626168592174
the lambda is 0.4796146971728414
the regulation term lambda/alpha is 1.6692337635921057
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3750896085182672
the lambda is 0.5458462367974267
the regulation term lambda/alpha is 1.4552422258609266
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33095852518189295
the lambda is 0.48211221295118156
the regulation term lambda/alpha is 1.4567148940678152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3861643598577031
the lambda is 0.5694259648418193
the regulation term lambda/alpha is 1.4745689246196771
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29311690516892397
the lambda is 0.43397131207833944
the regulation term lambda/alpha is 1.4805400317263884
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3543937364689201
the lambda is 0.45837756265565666
the regulation term lambda/alpha is 1.2934132731091759
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3382991054496797
the lambda is 0.46447867918646263
the regulation term lambda/alpha is 1.3729822861017038
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4263714568994198
the lambda is 0.5566535921547252
the regulation term lambda/alpha is 1.305560170942772
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38021537266522387
the lambda is 0.5062328013782301
the regulation term lambda/alpha is 1.3314369638177765
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29511154686731494
the lambda is 0.44702744565873875
the regulation term lambda/alpha is 1.5147744993513477
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28247055403563054
the lambda is 0.4158650356823565
the regulation term lambda/alpha is 1.4722420788324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30481141074245466
the lambda is 0.5594817098253857
the regulation term lambda/alpha is 1.8355011987989862
280
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3159665993435503
the lambda is 0.5303971976149672
the regulation term lambda/alpha is 1.678649574723772
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29764575090444645
the lambda is 0.47974156423770264
the regulation term lambda/alpha is 1.6117870414072015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37409424978692934
the lambda is 0.5876934374380376
the regulation term lambda/alpha is 1.5709769336811958
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3189711216697099
the lambda is 0.4714834842273297
the regulation term lambda/alpha is 1.478138465197938
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3077399039590204
the lambda is 0.5287373341414988
the regulation term lambda/alpha is 1.7181305620083223
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3041735077869269
the lambda is 0.4617043532208889
the regulation term lambda/alpha is 1.5178979805970219
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2875455617284616
the lambda is 0.46157767089323964
the regulation term lambda/alpha is 1.6052331606812353
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3830997235335252
the lambda is 0.5347150584798693
the regulation term lambda/alpha is 1.3957594475608548
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2976570375806464
the lambda is 0.4409079896814413
the regulation term lambda/alpha is 1.4812617677886515
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3104643270109803
the lambda is 0.42851692707740063
the regulation term lambda/alpha is 1.3802452964660417
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32444103443453076
the lambda is 0.48991183105594377
the regulation term lambda/alpha is 1.5100180897580127
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30286799392333424
the lambda is 0.47123074980475255
the regulation term lambda/alpha is 1.55589484283386
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25538338714474795
the lambda is 0.4897924508548429
the regulation term lambda/alpha is 1.9178712301173881
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23439151632549177
the lambda is 0.41671493573109586
the regulation term lambda/alpha is 1.777858440714286
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3349590452061852
the lambda is 0.4798966416704945
the regulation term lambda/alpha is 1.4327024409061486
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3532130439617827
the lambda is 0.5459930638662003
the regulation term lambda/alpha is 1.5457896394258763
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28150826653882016
the lambda is 0.49130467697694385
the regulation term lambda/alpha is 1.7452584359869683
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35436976847414475
the lambda is 0.46167711894285485
the regulation term lambda/alpha is 1.3028118084981037
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2187643725708243
the lambda is 0.45930110662301427
the regulation term lambda/alpha is 2.0995242562831704
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24118932105164065
the lambda is 0.4463950818298606
the regulation term lambda/alpha is 1.8508078213557544
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3156439131663962
the lambda is 0.42762906973188447
the regulation term lambda/alpha is 1.3547831968058694
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2826720981841717
the lambda is 0.41907631180399924
the regulation term lambda/alpha is 1.4825528041007958
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3104768693463737
the lambda is 0.5339824328424637
the regulation term lambda/alpha is 1.7198783083796916
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33998798972674626
the lambda is 0.600151560807648
the regulation term lambda/alpha is 1.765214004441743
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3595785970761317
the lambda is 0.5555978086010676
the regulation term lambda/alpha is 1.5451359261058402
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2862300521148711
the lambda is 0.48117090705828514
the regulation term lambda/alpha is 1.681063548369755
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34725765238058975
the lambda is 0.5010149442444567
the regulation term lambda/alpha is 1.4427758202297325
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33194375585462543
the lambda is 0.48292964758107965
the regulation term lambda/alpha is 1.4548538391322485
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32981438610060754
the lambda is 0.48169568231595844
the regulation term lambda/alpha is 1.4605053709483145
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37423632497139253
the lambda is 0.5387416470795577
the regulation term lambda/alpha is 1.4395760409434877
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.400627481358649
the lambda is 0.5594086612831078
the regulation term lambda/alpha is 1.3963312236743814
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35168351527302527
the lambda is 0.5231921097289249
the regulation term lambda/alpha is 1.4876787992827898
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3596315583296212
the lambda is 0.5680854413679198
the regulation term lambda/alpha is 1.579631787617592
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3468689111375265
the lambda is 0.5284045617146259
the regulation term lambda/alpha is 1.523355206385516
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23754449756059606
the lambda is 0.3728001923653955
the regulation term lambda/alpha is 1.5693909822949976
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34337633127816036
the lambda is 0.5506944262045473
the regulation term lambda/alpha is 1.6037634980683741
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.264952103006135
the lambda is 0.4240968574211468
the regulation term lambda/alpha is 1.600654807451469
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3000459829556937
the lambda is 0.4048514653534728
the regulation term lambda/alpha is 1.3492980688005252
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3870370868569661
the lambda is 0.557258094708432
the regulation term lambda/alpha is 1.4398054182191926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3898598078888122
the lambda is 0.5427054459842691
the regulation term lambda/alpha is 1.3920528225855187
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3468460353709923
the lambda is 0.5123851752966849
the regulation term lambda/alpha is 1.477269805747179
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30134705774958287
the lambda is 0.5808842482833767
the regulation term lambda/alpha is 1.927625418417349
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.268841596733665
the lambda is 0.44799786215817294
the regulation term lambda/alpha is 1.666400838267576
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26628147081861536
the lambda is 0.5235124646912257
the regulation term lambda/alpha is 1.96601161576064
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3343154647497213
the lambda is 0.47886656742178474
the regulation term lambda/alpha is 1.43237934799181
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3170738720193529
the lambda is 0.4539686515587047
the regulation term lambda/alpha is 1.431744119020303
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25467530173182995
the lambda is 0.44077026243966927
the regulation term lambda/alpha is 1.730714597930643
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2423131573480636
the lambda is 0.4472463497399775
the regulation term lambda/alpha is 1.8457369572282187
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3076959653788591
the lambda is 0.4652950594178516
the regulation term lambda/alpha is 1.5121909669661877
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3481978408958266
the lambda is 0.5266235348680404
the regulation term lambda/alpha is 1.5124261928596936
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30649566748825335
the lambda is 0.5512340121641266
the regulation term lambda/alpha is 1.7985050708269898
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3339915061460464
the lambda is 0.46134573970774284
the regulation term lambda/alpha is 1.3813097974593627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32959299628438965
the lambda is 0.5688850637387741
the regulation term lambda/alpha is 1.7260229135691678
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2855717584191414
the lambda is 0.5576220205811968
the regulation term lambda/alpha is 1.9526511433345586
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26783666181029164
the lambda is 0.49665198452938236
the regulation term lambda/alpha is 1.8543091941653616
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3345743416606515
the lambda is 0.4779356129668695
the regulation term lambda/alpha is 1.4284885403783443
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3128390254948413
the lambda is 0.5091665769183416
the regulation term lambda/alpha is 1.6275673283183067
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3173389320665468
the lambda is 0.581645555102095
the regulation term lambda/alpha is 1.832884327536977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2619845474058545
the lambda is 0.508580973463478
the regulation term lambda/alpha is 1.9412632481548906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30599363931169427
the lambda is 0.490429977499293
the regulation term lambda/alpha is 1.6027456603427184
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3099593628485178
the lambda is 0.5455693513700256
the regulation term lambda/alpha is 1.7601318648878956
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2532726199902247
the lambda is 0.4764227780178297
the regulation term lambda/alpha is 1.8810670416573954
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33596297617421456
the lambda is 0.46871828891443706
the regulation term lambda/alpha is 1.3951486388529368
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23935389553206626
the lambda is 0.5173157919935577
the regulation term lambda/alpha is 2.1613009090309663
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31025590344281423
the lambda is 0.5369468164903597
the regulation term lambda/alpha is 1.7306578554413508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2846246688082985
the lambda is 0.5307720093456844
the regulation term lambda/alpha is 1.8648137969487526
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30507053995988914
the lambda is 0.5942128314815772
the regulation term lambda/alpha is 1.9477883100731546
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3011652676994584
the lambda is 0.560914576097447
the regulation term lambda/alpha is 1.8624809573234056
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37138853054240006
the lambda is 0.45833291292880707
the regulation term lambda/alpha is 1.2341062667159586
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33610232922024386
the lambda is 0.46392513349875525
the regulation term lambda/alpha is 1.3803091890944637
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3624735256447128
the lambda is 0.4394770968586244
the regulation term lambda/alpha is 1.212439159734354
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24773796272628693
the lambda is 0.49840007067245007
the regulation term lambda/alpha is 2.0118033796181125
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.402477768251649
the lambda is 0.5713698841938286
the regulation term lambda/alpha is 1.4196309194315049
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2514139436489647
the lambda is 0.6060431945956375
the regulation term lambda/alpha is 2.4105393113829114
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.310151269083148
the lambda is 0.4903801980436341
the regulation term lambda/alpha is 1.5811000854301478
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31414944904778774
the lambda is 0.4030905571757137
the regulation term lambda/alpha is 1.2831171864140256
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2939713433319792
the lambda is 0.4970285650177973
the regulation term lambda/alpha is 1.6907381494546132
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2998623618099627
the lambda is 0.5196483803966419
the regulation term lambda/alpha is 1.7329563379013477
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35810914428223184
the lambda is 0.5596301472749351
the regulation term lambda/alpha is 1.5627362668904126
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4319394286320562
the lambda is 0.47414960728663047
the regulation term lambda/alpha is 1.0977224486966912
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3283784662017423
the lambda is 0.5186599324757065
the regulation term lambda/alpha is 1.5794578081653594
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2932652873775557
the lambda is 0.4730504767277586
the regulation term lambda/alpha is 1.613046265918079
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3486976302901364
the lambda is 0.5937413978469445
the regulation term lambda/alpha is 1.7027399852213438
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40873226492191345
the lambda is 0.570675342679745
the regulation term lambda/alpha is 1.396208206828913
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26836641082767376
the lambda is 0.47023938792707914
the regulation term lambda/alpha is 1.752228926402545
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32492132299367454
the lambda is 0.4785105307493508
the regulation term lambda/alpha is 1.4726966095686687
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29785121051145313
the lambda is 0.426551772292079
the regulation term lambda/alpha is 1.4320968229728817
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2803565036788342
the lambda is 0.5131785190192676
the regulation term lambda/alpha is 1.8304498461257224
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3687030870992876
the lambda is 0.500667222295289
the regulation term lambda/alpha is 1.3579143755866219
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3568214585918025
the lambda is 0.494091441765312
the regulation term lambda/alpha is 1.3847021524861374
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2861807168385384
the lambda is 0.4788285558462165
the regulation term lambda/alpha is 1.6731684829637523
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2537962899689675
the lambda is 0.4262912656218636
the regulation term lambda/alpha is 1.6796591694621996
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32658274923913927
the lambda is 0.4313308970577467
the regulation term lambda/alpha is 1.3207399902862165
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.40734916572775637
the lambda is 0.6008577360881131
the regulation term lambda/alpha is 1.4750434925149307
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2794977081557483
the lambda is 0.4283717124922377
the regulation term lambda/alpha is 1.5326483902813626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2940855886692214
the lambda is 0.4741921652876498
the regulation term lambda/alpha is 1.6124291143725742
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26285802657031965
the lambda is 0.47640272986640564
the regulation term lambda/alpha is 1.812395596521602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2909070521000697
the lambda is 0.5752101912438081
the regulation term lambda/alpha is 1.9772988901140165
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2899384651387788
the lambda is 0.5530515426623828
the regulation term lambda/alpha is 1.9074790314478112
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3243691489098803
the lambda is 0.46584076155486465
the regulation term lambda/alpha is 1.4361438599214302
290
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37829734551780936
the lambda is 0.5112696505265896
the regulation term lambda/alpha is 1.3515020831742004
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3065384245245957
the lambda is 0.4972626371885266
the regulation term lambda/alpha is 1.622186967130536
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31045748878227153
the lambda is 0.39384985602884015
the regulation term lambda/alpha is 1.268611227816292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.274574106315981
the lambda is 0.47467360551861665
the regulation term lambda/alpha is 1.728763181231519
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3874386322790235
the lambda is 0.5134598266109924
the regulation term lambda/alpha is 1.325267497437405
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31458020845937257
the lambda is 0.47528416101076326
the regulation term lambda/alpha is 1.5108520759726858
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26770689279840526
the lambda is 0.4880780562625254
the regulation term lambda/alpha is 1.8231807599741894
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2949241137100199
the lambda is 0.4431054176747496
the regulation term lambda/alpha is 1.5024387531445695
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2840663959486325
the lambda is 0.47182249631857887
the regulation term lambda/alpha is 1.6609585049401556
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.40217285839035827
the lambda is 0.5834608858292465
the regulation term lambda/alpha is 1.450771412482853
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.306608786052108
the lambda is 0.5143075206838135
the regulation term lambda/alpha is 1.6774063369351953
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4435530683776559
the lambda is 0.5100289977197177
the regulation term lambda/alpha is 1.149871422567777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2867558096109687
the lambda is 0.4985312172259189
the regulation term lambda/alpha is 1.7385217684072671
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2881641105217642
the lambda is 0.4813506922560572
the regulation term lambda/alpha is 1.6704047266139417
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4478641640646076
the lambda is 0.5433103944195778
the regulation term lambda/alpha is 1.2131142386761746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3145113082941538
the lambda is 0.5051556802764359
the regulation term lambda/alpha is 1.606160627470913
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2785627213611245
the lambda is 0.445683018899394
the regulation term lambda/alpha is 1.5999377688503311
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32738743254227654
the lambda is 0.5190448149566301
the regulation term lambda/alpha is 1.5854145986181198
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.34080975667964303
the lambda is 0.45275661801771033
the regulation term lambda/alpha is 1.3284731705709234
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37107353836548185
the lambda is 0.5664586960318347
the regulation term lambda/alpha is 1.5265402607984189
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246606071352496
the lambda is 0.4397322119272279
the regulation term lambda/alpha is 1.3544366093791012
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.276686130063351
the lambda is 0.47151196315273397
the regulation term lambda/alpha is 1.7041402221527149
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.22560828242542402
the lambda is 0.39419041722569675
the regulation term lambda/alpha is 1.7472338027128878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27175223976120233
the lambda is 0.500054587278575
the regulation term lambda/alpha is 1.8401121099056608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3374647806573763
the lambda is 0.5514666698491371
the regulation term lambda/alpha is 1.6341458470862895
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29826860606791133
the lambda is 0.524098789830365
the regulation term lambda/alpha is 1.757136953632443
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.336079489262589
the lambda is 0.42785603872156297
the regulation term lambda/alpha is 1.2730798885119292
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.357395769821595
the lambda is 0.5100356025588721
the regulation term lambda/alpha is 1.4270890861788095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3483951099264505
the lambda is 0.5286772341478326
the regulation term lambda/alpha is 1.517464565617587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196367472587794
the lambda is 0.4734575370153172
the regulation term lambda/alpha is 1.4812362504490253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25817601893577047
the lambda is 0.5744824592159912
the regulation term lambda/alpha is 2.2251580978902306
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.338009320839519
the lambda is 0.4540475911564827
the regulation term lambda/alpha is 1.3432990250942123
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4499541245363494
the lambda is 0.5711486611916932
the regulation term lambda/alpha is 1.269348651443583
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4154123715499529
the lambda is 0.5445731380819507
the regulation term lambda/alpha is 1.3109218101764366
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28936134249118256
the lambda is 0.4440499770831415
the regulation term lambda/alpha is 1.5345863869036778
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2655582458964943
the lambda is 0.49240108586793785
the regulation term lambda/alpha is 1.85421124546763
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30156655844331715
the lambda is 0.5200748433620008
the regulation term lambda/alpha is 1.7245773073998016
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.395396102889468
the lambda is 0.548922728961356
the regulation term lambda/alpha is 1.3882856329385875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.284335838451521
the lambda is 0.5199742985159923
the regulation term lambda/alpha is 1.8287328862508039
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2887516562895786
the lambda is 0.46567694121887526
the regulation term lambda/alpha is 1.6127247448647175
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2744816023054625
the lambda is 0.44856396901363804
the regulation term lambda/alpha is 1.6342223494981074
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3218214094599915
the lambda is 0.5709428775785459
the regulation term lambda/alpha is 1.7740984931256567
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.301822457625311
the lambda is 0.480680936112775
the regulation term lambda/alpha is 1.5925949973858566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3035479039254963
the lambda is 0.4860097781142594
the regulation term lambda/alpha is 1.601097460496868
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33690872208937356
the lambda is 0.5584135524561293
the regulation term lambda/alpha is 1.657462439657457
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32835168257359304
the lambda is 0.4772109805810206
the regulation term lambda/alpha is 1.453353236507518
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23313243478840837
the lambda is 0.4368080741734268
the regulation term lambda/alpha is 1.8736478026743684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32061656510085224
the lambda is 0.5776417031557806
the regulation term lambda/alpha is 1.801658947266431
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2755294025341728
the lambda is 0.5401893802546893
the regulation term lambda/alpha is 1.9605507625912695
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3468511221235314
the lambda is 0.5755173622927638
the regulation term lambda/alpha is 1.6592633714697704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4015402354728856
the lambda is 0.5587780134800236
the regulation term lambda/alpha is 1.3915866060644269
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33718815856139767
the lambda is 0.5414821703247684
the regulation term lambda/alpha is 1.6058754039138994
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2677447451989515
the lambda is 0.45706508239091126
the regulation term lambda/alpha is 1.7070926342598531
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32270252897632795
the lambda is 0.5249768552494843
the regulation term lambda/alpha is 1.6268135763137894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3857915241803321
the lambda is 0.6154735846723665
the regulation term lambda/alpha is 1.5953527905519074
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3006591655469719
the lambda is 0.4468654767844626
the regulation term lambda/alpha is 1.4862858944330066
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28437008296536515
the lambda is 0.4485697767066394
the regulation term lambda/alpha is 1.57741550035442
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3388094121632702
the lambda is 0.4474455803465072
the regulation term lambda/alpha is 1.320640939369435
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29590567822727987
the lambda is 0.4730391096817333
the regulation term lambda/alpha is 1.5986145062022108
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3383143220594686
the lambda is 0.5184737041552615
the regulation term lambda/alpha is 1.5325207073678797
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3018398501058574
the lambda is 0.4891356961541934
the regulation term lambda/alpha is 1.6205139778019702
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34758246433052886
the lambda is 0.5728183987095758
the regulation term lambda/alpha is 1.6480071853246945
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33566488428320307
the lambda is 0.5245881406027865
the regulation term lambda/alpha is 1.5628329478760352
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2852932702782549
the lambda is 0.5074556529266763
the regulation term lambda/alpha is 1.7787158190999033
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28595703035347286
the lambda is 0.41744586868706507
the regulation term lambda/alpha is 1.4598202679999097
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33705198707231754
the lambda is 0.5144389795987111
the regulation term lambda/alpha is 1.526289709985699
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3052734447067897
the lambda is 0.464118801185694
the regulation term lambda/alpha is 1.520337943680207
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35785875568937714
the lambda is 0.4999916500160565
the regulation term lambda/alpha is 1.3971759585786168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3602500018443933
the lambda is 0.5174402599572032
the regulation term lambda/alpha is 1.4363365921111273
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3732087668758396
the lambda is 0.5295878596879817
the regulation term lambda/alpha is 1.4190123777670176
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2735173634534265
the lambda is 0.4439084551380307
the regulation term lambda/alpha is 1.6229626139022715
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3629289424388507
the lambda is 0.5538647283246936
the regulation term lambda/alpha is 1.52609688442804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32027875947504436
the lambda is 0.43740561016678237
the regulation term lambda/alpha is 1.3657028361284893
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30785837176651853
the lambda is 0.5249556138328916
the regulation term lambda/alpha is 1.7051854423209278
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3084134260828152
the lambda is 0.4957680184903701
the regulation term lambda/alpha is 1.6074787170816827
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3251985255637966
the lambda is 0.4382757649968055
the regulation term lambda/alpha is 1.3477175649458033
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31802590663568325
the lambda is 0.5606652642631221
the regulation term lambda/alpha is 1.7629546919439996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36013282462234963
the lambda is 0.5859671355809382
the regulation term lambda/alpha is 1.6270861624330075
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28895303925263516
the lambda is 0.4324054067065841
the regulation term lambda/alpha is 1.4964556449206503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3232372781386461
the lambda is 0.5238210454846437
the regulation term lambda/alpha is 1.6205465177192875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2829303394142814
the lambda is 0.5241514864703376
the regulation term lambda/alpha is 1.852581407690066
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24368845440536227
the lambda is 0.5028096314539605
the regulation term lambda/alpha is 2.0633297243437085
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27383399323723523
the lambda is 0.5411781268210668
the regulation term lambda/alpha is 1.9763000218611237
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3155970472690653
the lambda is 0.6017599202354655
the regulation term lambda/alpha is 1.9067349502875082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367799779333188
the lambda is 0.4309436977967588
the regulation term lambda/alpha is 1.2796001129321413
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3467915649572076
the lambda is 0.5187445936461974
the regulation term lambda/alpha is 1.495839709106558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3024284956600466
the lambda is 0.5075877493976596
the regulation term lambda/alpha is 1.6783727614352457
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2889827856532819
the lambda is 0.4976606041507281
the regulation term lambda/alpha is 1.7221115888467329
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.41401528485191186
the lambda is 0.6098683910043032
the regulation term lambda/alpha is 1.4730576703767002
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3067712548908579
the lambda is 0.5177785140345729
the regulation term lambda/alpha is 1.687832565077802
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36176818772808517
the lambda is 0.5203911757231329
the regulation term lambda/alpha is 1.4384658280519487
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28238759856180107
the lambda is 0.4512323384320619
the regulation term lambda/alpha is 1.5979183956030167
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30639915841156645
the lambda is 0.41384192749142873
the regulation term lambda/alpha is 1.3506627421461166
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3324061209614823
the lambda is 0.5322927461169069
the regulation term lambda/alpha is 1.6013325644463283
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2519541752666305
the lambda is 0.43605556285553204
the regulation term lambda/alpha is 1.7306939343000618
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2834902184651182
the lambda is 0.4936774431213811
the regulation term lambda/alpha is 1.7414267264467371
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2720384018865334
the lambda is 0.4409944803806307
the regulation term lambda/alpha is 1.6210743678922528
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31547089600307243
the lambda is 0.5705331970430976
the regulation term lambda/alpha is 1.8085129381873029
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2909065051633235
the lambda is 0.5157607036486566
the regulation term lambda/alpha is 1.7729431775995979
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34065843811945173
the lambda is 0.5042448819326731
the regulation term lambda/alpha is 1.480206639577969
300
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39188479588565234
the lambda is 0.48793710975794424
the regulation term lambda/alpha is 1.2451034459125045
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2618365967771993
the lambda is 0.453865893817548
the regulation term lambda/alpha is 1.733393648572928
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2837282562322258
the lambda is 0.463066360125383
the regulation term lambda/alpha is 1.6320769960478403
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31800566403925884
the lambda is 0.49461289997636887
the regulation term lambda/alpha is 1.5553587747270667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32161334045234624
the lambda is 0.51144925247827
the regulation term lambda/alpha is 1.5902613111723576
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3187499570910488
the lambda is 0.539799418208675
the regulation term lambda/alpha is 1.6934885988219441
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29190518909596513
the lambda is 0.4660815420401952
the regulation term lambda/alpha is 1.5966881009674987
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2743344151478426
the lambda is 0.5423341984440191
the regulation term lambda/alpha is 1.9769090879529192
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26084550378958976
the lambda is 0.5481874827305825
the regulation term lambda/alpha is 2.101579190618429
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31671166779313975
the lambda is 0.4673560902773467
the regulation term lambda/alpha is 1.475651634604761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31453487963320864
the lambda is 0.5331305531466892
the regulation term lambda/alpha is 1.694980708557326
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3062753968153241
the lambda is 0.5288410426855616
the regulation term lambda/alpha is 1.7266847033241741
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27160943616374544
the lambda is 0.504331884232211
the regulation term lambda/alpha is 1.8568275511906882
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34169062144326723
the lambda is 0.46694541881143237
the regulation term lambda/alpha is 1.3665737058837064
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29183877626231325
the lambda is 0.5092179439032934
the regulation term lambda/alpha is 1.7448604685951445
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37243014929105944
the lambda is 0.4407194009356861
the regulation term lambda/alpha is 1.1833612337095127
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28404712147304023
the lambda is 0.43339857618344496
the regulation term lambda/alpha is 1.5257981631212556
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4138927962347292
the lambda is 0.4279923732017494
the regulation term lambda/alpha is 1.0340657704006617
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31589437225692363
the lambda is 0.4772341799165815
the regulation term lambda/alpha is 1.5107397340033546
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38746515174089385
the lambda is 0.5207153335887107
the regulation term lambda/alpha is 1.3439023645071546
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2957966068008867
the lambda is 0.4161285433696078
the regulation term lambda/alpha is 1.4068063453132227
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26858159078164534
the lambda is 0.4565556990961707
the regulation term lambda/alpha is 1.6998771128261982
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32698102460970024
the lambda is 0.4467813731111751
the regulation term lambda/alpha is 1.366383182768707
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2650522635011809
the lambda is 0.4051029192493971
the regulation term lambda/alpha is 1.5283888313128564
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2551462645093776
the lambda is 0.4126153866957634
the regulation term lambda/alpha is 1.6171719679658418
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33294387379941975
the lambda is 0.4664075690338723
the regulation term lambda/alpha is 1.4008594412968747
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2775173616206869
the lambda is 0.4724888282399179
the regulation term lambda/alpha is 1.7025559247198365
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.305108189110128
the lambda is 0.46224663161259333
the regulation term lambda/alpha is 1.5150253192507614
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3302676630904541
the lambda is 0.5634115266157118
the regulation term lambda/alpha is 1.7059239810026574
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3264801188662872
the lambda is 0.45386971546066857
the regulation term lambda/alpha is 1.3901909771313055
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2564661295739275
the lambda is 0.5157962058325719
the regulation term lambda/alpha is 2.0111669587304757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3350816822778124
the lambda is 0.5230790675979259
the regulation term lambda/alpha is 1.5610494254479927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4001913069224252
the lambda is 0.5469636481119242
the regulation term lambda/alpha is 1.3667554458346842
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26112729445616706
the lambda is 0.4246493687441427
the regulation term lambda/alpha is 1.6262159404995655
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3415601161326823
the lambda is 0.46257584803093715
the regulation term lambda/alpha is 1.3543028772459054
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31230941001864493
the lambda is 0.45673136026560546
the regulation term lambda/alpha is 1.4624322726565893
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24149930783044185
the lambda is 0.47835601434671066
the regulation term lambda/alpha is 1.9807759228965052
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.362086259420274
the lambda is 0.6059461710428274
the regulation term lambda/alpha is 1.6734856827016595
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30395396623138954
the lambda is 0.4703956753919959
the regulation term lambda/alpha is 1.547588541858013
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3393472426751615
the lambda is 0.5285620294421766
the regulation term lambda/alpha is 1.5575845711177327
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32205996478421933
the lambda is 0.489066832591747
the regulation term lambda/alpha is 1.51855829990984
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36672089262470375
the lambda is 0.5526149855272917
the regulation term lambda/alpha is 1.5069089234924746
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3984060977426124
the lambda is 0.49526805413537306
the regulation term lambda/alpha is 1.2431236794355938
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37022767026161774
the lambda is 0.604102795059828
the regulation term lambda/alpha is 1.6317062272329474
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35701802171779695
the lambda is 0.4810064879362287
the regulation term lambda/alpha is 1.3472890965611752
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2734044176277323
the lambda is 0.5466001411785427
the regulation term lambda/alpha is 1.9992366835959245
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3647697862936256
the lambda is 0.6007176269273742
the regulation term lambda/alpha is 1.646840416886446
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3336182785641805
the lambda is 0.516871611161303
the regulation term lambda/alpha is 1.5492904447136542
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29319792745218753
the lambda is 0.48215141955258217
the regulation term lambda/alpha is 1.644457120629571
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2917270934948673
the lambda is 0.5029010443543146
the regulation term lambda/alpha is 1.723875003619308
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31443521200879904
the lambda is 0.6102893858227487
the regulation term lambda/alpha is 1.9409066240509687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36062829999662754
the lambda is 0.4457062378067972
the regulation term lambda/alpha is 1.2359158663115604
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27917354984611725
the lambda is 0.5398503519368514
the regulation term lambda/alpha is 1.9337446267184744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34252883335949924
the lambda is 0.5852540137165368
the regulation term lambda/alpha is 1.7086270022187788
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2905057917060984
the lambda is 0.502721698347256
the regulation term lambda/alpha is 1.730504907991143
using Bay_non_info_prior option for model regressor
Convergence after  6  iterations
the alpha is 0.2827383339451695
the lambda is 0.3791986632059534
the regulation term lambda/alpha is 1.341164665982258
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3360023412480009
the lambda is 0.517585247084112
the regulation term lambda/alpha is 1.540421549331069
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38954581722603165
the lambda is 0.5575484111851462
the regulation term lambda/alpha is 1.4312781360494804
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31414555332607896
the lambda is 0.4850600233603103
the regulation term lambda/alpha is 1.5440614015530068
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28532086679734153
the lambda is 0.46648322751800714
the regulation term lambda/alpha is 1.6349425569681242
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.280605128754743
the lambda is 0.45491089420642045
the regulation term lambda/alpha is 1.6211781168263169
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2749190741431996
the lambda is 0.46981686640991704
the regulation term lambda/alpha is 1.7089278649512665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.387777048651147
the lambda is 0.5058220513667969
the regulation term lambda/alpha is 1.3044146194991697
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.293154151271047
the lambda is 0.4769305967272021
the regulation term lambda/alpha is 1.6268935461406362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3433629591826237
the lambda is 0.5291220572782741
the regulation term lambda/alpha is 1.5409992345646435
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3125516947725935
the lambda is 0.46081347554505986
the regulation term lambda/alpha is 1.4743592284160825
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.304654613674311
the lambda is 0.5674155653620497
the regulation term lambda/alpha is 1.8624880106645672
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27369056052185886
the lambda is 0.4853250140169582
the regulation term lambda/alpha is 1.7732617927763596
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31378862671001867
the lambda is 0.4768203451464171
the regulation term lambda/alpha is 1.5195590424858223
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28102390489057194
the lambda is 0.5209601722761877
the regulation term lambda/alpha is 1.8537930873853765
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30917154315716966
the lambda is 0.5826306419485991
the regulation term lambda/alpha is 1.88448987251202
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3263864561598839
the lambda is 0.5019754937989194
the regulation term lambda/alpha is 1.5379789336387824
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3827022827500758
the lambda is 0.524582680020051
the regulation term lambda/alpha is 1.3707330833002385
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3706916538143283
the lambda is 0.5375959030998462
the regulation term lambda/alpha is 1.4502508960428786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3416796918810166
the lambda is 0.5716251451402258
the regulation term lambda/alpha is 1.672985426770062
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30263414925653254
the lambda is 0.4971152385326809
the regulation term lambda/alpha is 1.642627706601919
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3033661971070787
the lambda is 0.5072604234839444
the regulation term lambda/alpha is 1.6721059508976786
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2968985469520714
the lambda is 0.4554656152372309
the regulation term lambda/alpha is 1.53407829008593
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31435387788058466
the lambda is 0.5368105258776618
the regulation term lambda/alpha is 1.7076631263368187
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3021298108858773
the lambda is 0.42518734467528524
the regulation term lambda/alpha is 1.4073002045994398
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2952493738212038
the lambda is 0.4948581725092419
the regulation term lambda/alpha is 1.67606849120336
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32027581894435836
the lambda is 0.46801522422192193
the regulation term lambda/alpha is 1.4612880415528042
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26351968934221187
the lambda is 0.5131974569886462
the regulation term lambda/alpha is 1.9474729128198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.347905508618623
the lambda is 0.4902590134340792
the regulation term lambda/alpha is 1.4091728969187012
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3122756682427609
the lambda is 0.5028437353016398
the regulation term lambda/alpha is 1.6102558938749358
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.308883532200777
the lambda is 0.5041097549406481
the regulation term lambda/alpha is 1.6320383004846382
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3105023061315271
the lambda is 0.48421187319546016
the regulation term lambda/alpha is 1.5594469465561736
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3362591216101033
the lambda is 0.5386546317397005
the regulation term lambda/alpha is 1.60190340461389
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35630538161937725
the lambda is 0.5435256369054743
the regulation term lambda/alpha is 1.5254488563579847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27280778992013444
the lambda is 0.5764757908646209
the regulation term lambda/alpha is 2.1131207104950573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31365035563033317
the lambda is 0.5146457028995622
the regulation term lambda/alpha is 1.640826141788665
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3355965108573954
the lambda is 0.48380274929769196
the regulation term lambda/alpha is 1.4416203197752364
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2929814320020788
the lambda is 0.4620533217683392
the regulation term lambda/alpha is 1.5770737367583783
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3074665371852198
the lambda is 0.48172655334569436
the regulation term lambda/alpha is 1.5667609156943774
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2520904595226629
the lambda is 0.4899732839752835
the regulation term lambda/alpha is 1.9436407268369271
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3410311419374128
the lambda is 0.5233817086632216
the regulation term lambda/alpha is 1.534703563111179
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28865028868414366
the lambda is 0.45234553434859853
the regulation term lambda/alpha is 1.5671057749870425
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30445621429443676
the lambda is 0.4693771213038844
the regulation term lambda/alpha is 1.5416900666378062
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30616018424927055
the lambda is 0.5015446039285418
the regulation term lambda/alpha is 1.6381771037875799
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35883840980521564
the lambda is 0.5095344503389604
the regulation term lambda/alpha is 1.419955156460384
310
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31181942488258074
the lambda is 0.5424505689814398
the regulation term lambda/alpha is 1.7396304581913264
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3792313368796688
the lambda is 0.555353018962679
the regulation term lambda/alpha is 1.4644175334563505
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3666291750237601
the lambda is 0.5236792280677967
the regulation term lambda/alpha is 1.428362126483411
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2690697559927845
the lambda is 0.4885328667041214
the regulation term lambda/alpha is 1.8156364876520055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40263780320355386
the lambda is 0.49804197223801605
the regulation term lambda/alpha is 1.2369478679731185
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31092744923583293
the lambda is 0.522324701760336
the regulation term lambda/alpha is 1.6798925377738585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137110251717631
the lambda is 0.5785360049164214
the regulation term lambda/alpha is 1.844168545238923
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3342246068129747
the lambda is 0.4364553736525561
the regulation term lambda/alpha is 1.305874447170156
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3587287231853219
the lambda is 0.5281012978443466
the regulation term lambda/alpha is 1.4721466771745666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.43285209677840614
the lambda is 0.5088700541251228
the regulation term lambda/alpha is 1.1756210906970221
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30591650698354067
the lambda is 0.4675190279505009
the regulation term lambda/alpha is 1.5282569501084653
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34723661423595215
the lambda is 0.5354209408857001
the regulation term lambda/alpha is 1.541948397532393
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33977985020378343
the lambda is 0.528137701607919
the regulation term lambda/alpha is 1.5543526235919158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246318135167693
the lambda is 0.5286215646739951
the regulation term lambda/alpha is 1.6283726445273008
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29438623242101175
the lambda is 0.5464958206012754
the regulation term lambda/alpha is 1.8563905523262147
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.259599886641647
the lambda is 0.4806797209301856
the regulation term lambda/alpha is 1.8516176071899382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3355092748670738
the lambda is 0.4728188330223161
the regulation term lambda/alpha is 1.4092571157970022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3307918705484229
the lambda is 0.4742930763385151
the regulation term lambda/alpha is 1.4338111621430727
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30644251868258976
the lambda is 0.5440855776905281
the regulation term lambda/alpha is 1.7754898374728696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3642309918479302
the lambda is 0.5416385989067489
the regulation term lambda/alpha is 1.4870744418500446
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3720014981985058
the lambda is 0.5161660920615491
the regulation term lambda/alpha is 1.387537670039476
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33736092208879465
the lambda is 0.45555112433271516
the regulation term lambda/alpha is 1.3503375598813796
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29427436459427025
the lambda is 0.5129991965127212
the regulation term lambda/alpha is 1.7432683856781648
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32901793245601774
the lambda is 0.472874972064025
the regulation term lambda/alpha is 1.4372316078158984
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32025080443208725
the lambda is 0.5004897074860984
the regulation term lambda/alpha is 1.5628054654652175
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31733725506951693
the lambda is 0.5406150099330491
the regulation term lambda/alpha is 1.7035976750180821
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4001596162001442
the lambda is 0.4899104165126871
the regulation term lambda/alpha is 1.2242875009847398
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32018667700676107
the lambda is 0.5501512862214336
the regulation term lambda/alpha is 1.7182204186772474
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3412338250765496
the lambda is 0.5293110072781627
the regulation term lambda/alpha is 1.5511680507037116
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3846860542966885
the lambda is 0.518110017147481
the regulation term lambda/alpha is 1.3468385748860274
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35182099902708963
the lambda is 0.4829809384239633
the regulation term lambda/alpha is 1.372803044046767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38093558732507043
the lambda is 0.5391239688460149
the regulation term lambda/alpha is 1.415262807635651
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196966515645047
the lambda is 0.5696388217062389
the regulation term lambda/alpha is 1.7818104097074152
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3784869151068253
the lambda is 0.5490177795417421
the regulation term lambda/alpha is 1.4505594714860504
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2955228651274338
the lambda is 0.5191249745230737
the regulation term lambda/alpha is 1.7566321790336574
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3581775702240951
the lambda is 0.5512794738479284
the regulation term lambda/alpha is 1.5391233836976963
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31672385975994927
the lambda is 0.43309366151277673
the regulation term lambda/alpha is 1.3674172253426888
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35719456059500104
the lambda is 0.5173113766927541
the regulation term lambda/alpha is 1.4482621903061361
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2797956911669311
the lambda is 0.4577486415546965
the regulation term lambda/alpha is 1.636010331844587
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.241339995631761
the lambda is 0.4459834640579381
the regulation term lambda/alpha is 1.847946764441084
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35160562550041546
the lambda is 0.4064285161465284
the regulation term lambda/alpha is 1.1559215401291927
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3127757256932266
the lambda is 0.45005801969425413
the regulation term lambda/alpha is 1.4389160753979844
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314833728537417
the lambda is 0.4510500010398273
the regulation term lambda/alpha is 1.3607017364302048
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24370544443676406
the lambda is 0.393133201492819
the regulation term lambda/alpha is 1.6131490307957728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.300397658043289
the lambda is 0.4895632366000614
the regulation term lambda/alpha is 1.6297172214622013
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31974184836784014
the lambda is 0.5127683983252344
the regulation term lambda/alpha is 1.603694983758682
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28749316075359166
the lambda is 0.5046268846302969
the regulation term lambda/alpha is 1.7552657019998088
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3314280398181314
the lambda is 0.44098169597185904
the regulation term lambda/alpha is 1.3305503548035476
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2844300374071186
the lambda is 0.45030072167176344
the regulation term lambda/alpha is 1.583168661709333
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3404780338956656
the lambda is 0.5214027122081769
the regulation term lambda/alpha is 1.5313842900301549
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.320305466019187
the lambda is 0.4492853736385603
the regulation term lambda/alpha is 1.4026778225871646
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33637465886372175
the lambda is 0.47212443379062724
the regulation term lambda/alpha is 1.403567187211635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3078908907478159
the lambda is 0.5314714797158564
the regulation term lambda/alpha is 1.7261682488397119
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32926999022398634
the lambda is 0.5401359038121445
the regulation term lambda/alpha is 1.6404042878147393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3581136028652997
the lambda is 0.5855316971006889
the regulation term lambda/alpha is 1.6350445568551326
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32052513162361024
the lambda is 0.4632101151320957
the regulation term lambda/alpha is 1.4451600496526404
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.43054475507112505
the lambda is 0.562248484714113
the regulation term lambda/alpha is 1.3059002068698544
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29873886995454624
the lambda is 0.4279925728050493
the regulation term lambda/alpha is 1.4326644968234945
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3918530705619084
the lambda is 0.5449207558316868
the regulation term lambda/alpha is 1.3906252030902368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3144958267837158
the lambda is 0.49729427415352667
the regulation term lambda/alpha is 1.5812428394972775
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3373174540205466
the lambda is 0.5148746896808967
the regulation term lambda/alpha is 1.526380220009412
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27776773060566723
the lambda is 0.45885710265933927
the regulation term lambda/alpha is 1.6519453201378365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30271875713713975
the lambda is 0.5434936603532207
the regulation term lambda/alpha is 1.795374906705908
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3289194964579482
the lambda is 0.49256241311649007
the regulation term lambda/alpha is 1.497516621607328
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2821325139845521
the lambda is 0.494353429383264
the regulation term lambda/alpha is 1.7522029715806944
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33569667754918797
the lambda is 0.49282249944459194
the regulation term lambda/alpha is 1.4680589127140857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.376145620988392
the lambda is 0.527516050841765
the regulation term lambda/alpha is 1.4024250753089171
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30603390461135493
the lambda is 0.4096345745737294
the regulation term lambda/alpha is 1.3385267723651117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3902292589059463
the lambda is 0.556421607744971
the regulation term lambda/alpha is 1.4258838747893086
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31379587292240946
the lambda is 0.495609694309851
the regulation term lambda/alpha is 1.579401569861939
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3104802370802228
the lambda is 0.4818366323509735
the regulation term lambda/alpha is 1.551907576734023
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2699232623436564
the lambda is 0.3981072476217025
the regulation term lambda/alpha is 1.4748904713327264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31309234471090175
the lambda is 0.5404706393316492
the regulation term lambda/alpha is 1.7262339640744024
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3403392483580373
the lambda is 0.4914206766553554
the regulation term lambda/alpha is 1.4439142092080435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3983594933996446
the lambda is 0.5727302270364953
the regulation term lambda/alpha is 1.4377220488678488
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37343987144845325
the lambda is 0.5029756615679535
the regulation term lambda/alpha is 1.346871879580165
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3444533605786445
the lambda is 0.507677728954262
the regulation term lambda/alpha is 1.473864932255032
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31163974136465056
the lambda is 0.5763681380908318
the regulation term lambda/alpha is 1.8494693121196688
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3485191905858758
the lambda is 0.5070730624955464
the regulation term lambda/alpha is 1.454935843398278
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3188795873870214
the lambda is 0.5176515731307175
the regulation term lambda/alpha is 1.6233449665827882
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.323704592688666
the lambda is 0.5254715656882833
the regulation term lambda/alpha is 1.623305870713035
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31363553973315744
the lambda is 0.4255505142061082
the regulation term lambda/alpha is 1.3568312907656082
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.306435157757168
the lambda is 0.4940460518036005
the regulation term lambda/alpha is 1.612236844556535
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4414512380781648
the lambda is 0.46717500668035034
the regulation term lambda/alpha is 1.0582709173365843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28405622584430934
the lambda is 0.4416276711065095
the regulation term lambda/alpha is 1.5547192102332754
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.42256472618860985
the lambda is 0.5433711737005313
the regulation term lambda/alpha is 1.2858886225586186
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2967713633907883
the lambda is 0.4375407335295069
the regulation term lambda/alpha is 1.4743360967525483
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33355747494946714
the lambda is 0.4819145928122763
the regulation term lambda/alpha is 1.4447722776570506
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38696053036157485
the lambda is 0.4956286495215779
the regulation term lambda/alpha is 1.280824814506182
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321532523635526
the lambda is 0.5685364427152998
the regulation term lambda/alpha is 1.7682081933327707
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32409426081943166
the lambda is 0.5002216833590163
the regulation term lambda/alpha is 1.5434450523568932
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.255680129287044
the lambda is 0.5155052066682402
the regulation term lambda/alpha is 2.0162114596300866
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2760475938275998
the lambda is 0.46643020626270987
the regulation term lambda/alpha is 1.6896731458344456
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2466972603541148
the lambda is 0.5443454189478888
the regulation term lambda/alpha is 2.206532079709856
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.42318150930553133
the lambda is 0.46296427423243297
the regulation term lambda/alpha is 1.0940087505056346
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34540527805874643
the lambda is 0.4305685595576624
the regulation term lambda/alpha is 1.2465604520508555
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3309209494699956
the lambda is 0.4702968174485041
the regulation term lambda/alpha is 1.4211757164414445
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27068194786338506
the lambda is 0.4279609934610491
the regulation term lambda/alpha is 1.5810474131693621
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30904077747820824
the lambda is 0.4832758359448963
the regulation term lambda/alpha is 1.563793101636803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32933029793968455
the lambda is 0.46564845840090197
the regulation term lambda/alpha is 1.4139253549218953
320
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28943962739612583
the lambda is 0.43585223457613037
the regulation term lambda/alpha is 1.5058485201116738
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37335593637009695
the lambda is 0.5086747224398452
the regulation term lambda/alpha is 1.3624390906580113
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2501310657180348
the lambda is 0.49755699845828794
the regulation term lambda/alpha is 1.9891851379195296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.385259783532288
the lambda is 0.5788625209441532
the regulation term lambda/alpha is 1.5025251679186487
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34877304723222385
the lambda is 0.5425782011436237
the regulation term lambda/alpha is 1.5556769809175028
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2641981302761814
the lambda is 0.4994965716990185
the regulation term lambda/alpha is 1.890613575413521
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30142991311705125
the lambda is 0.4705410472188618
the regulation term lambda/alpha is 1.5610297012431587
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31860141230540007
the lambda is 0.5250290537338858
the regulation term lambda/alpha is 1.6479181618649306
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3202996382412854
the lambda is 0.46204776586446705
the regulation term lambda/alpha is 1.44254850989373
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32674904416930795
the lambda is 0.5987686203821845
the regulation term lambda/alpha is 1.8325030510936313
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36706038903383287
the lambda is 0.6522175314545221
the regulation term lambda/alpha is 1.7768671067212474
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27946462089520435
the lambda is 0.5813822558578162
the regulation term lambda/alpha is 2.080342957171051
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36362089939992315
the lambda is 0.5627869669097759
the regulation term lambda/alpha is 1.5477299787733128
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3402674949764405
the lambda is 0.4631099322468791
the regulation term lambda/alpha is 1.3610172557885494
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3654021815338708
the lambda is 0.4708128228802684
the regulation term lambda/alpha is 1.2884784127557996
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3122188496950237
the lambda is 0.5029738128366621
the regulation term lambda/alpha is 1.6109655561410479
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36330126768019877
the lambda is 0.553516795802824
the regulation term lambda/alpha is 1.5235751841363383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40683031844711537
the lambda is 0.5326814442563479
the regulation term lambda/alpha is 1.3093454939386286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2717920639007668
the lambda is 0.43743246583751894
the regulation term lambda/alpha is 1.6094379635647809
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3762042881301688
the lambda is 0.5329125732295835
the regulation term lambda/alpha is 1.4165510336904845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3548340838559731
the lambda is 0.5020279669451052
the regulation term lambda/alpha is 1.414824532890358
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27985751222660876
the lambda is 0.5602745023727057
the regulation term lambda/alpha is 2.0019991527654084
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32540413499178455
the lambda is 0.5247960648075071
the regulation term lambda/alpha is 1.6127516782193212
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3745697527189677
the lambda is 0.5058150182459492
the regulation term lambda/alpha is 1.3503893856198588
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2361616154935345
the lambda is 0.4771591902285779
the regulation term lambda/alpha is 2.020477329609228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37285902157942746
the lambda is 0.5906854122895477
the regulation term lambda/alpha is 1.584205767068233
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3043293852747984
the lambda is 0.5071012932340461
the regulation term lambda/alpha is 1.6662909261166219
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.317817834964392
the lambda is 0.500562031867344
the regulation term lambda/alpha is 1.5749966704147569
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2643648085774837
the lambda is 0.4499157257760097
the regulation term lambda/alpha is 1.7018744975814064
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2909276050411757
the lambda is 0.5097747351534472
the regulation term lambda/alpha is 1.752239135510353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35816273381791625
the lambda is 0.48093456944921803
the regulation term lambda/alpha is 1.3427822719650027
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2721914596417253
the lambda is 0.4642335412380659
the regulation term lambda/alpha is 1.7055404377827206
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3239360115690597
the lambda is 0.5422556604592393
the regulation term lambda/alpha is 1.673959180495856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3079214732312195
the lambda is 0.4721891278509507
the regulation term lambda/alpha is 1.533472553557127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.308824764640568
the lambda is 0.5553439510092574
the regulation term lambda/alpha is 1.7982494106507478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3766014590318038
the lambda is 0.5269259882286325
the regulation term lambda/alpha is 1.3991607721948147
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2680382194005404
the lambda is 0.5035430572764505
the regulation term lambda/alpha is 1.8786240947377197
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31231203320194595
the lambda is 0.45059931437961037
the regulation term lambda/alpha is 1.442785632560772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3642012902217147
the lambda is 0.4688330540228675
the regulation term lambda/alpha is 1.2872910300165499
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3555688546097547
the lambda is 0.49293660441435655
the regulation term lambda/alpha is 1.3863323461087902
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30033516303712143
the lambda is 0.5165657109801448
the regulation term lambda/alpha is 1.719964141915335
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33255795873367666
the lambda is 0.535394327016645
the regulation term lambda/alpha is 1.6099278725889894
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28488946439913165
the lambda is 0.4896779619115329
the regulation term lambda/alpha is 1.7188349275896404
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28447050093783316
the lambda is 0.4629918428218229
the regulation term lambda/alpha is 1.6275566053261985
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31697392486277837
the lambda is 0.465962266904021
the regulation term lambda/alpha is 1.4700334328943347
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3300929205126003
the lambda is 0.46974348744993816
the regulation term lambda/alpha is 1.4230644108346064
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39913603613629683
the lambda is 0.49912982356893154
the regulation term lambda/alpha is 1.2505255812043212
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32994034008786105
the lambda is 0.5106669093082373
the regulation term lambda/alpha is 1.547755297737312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3035445991652772
the lambda is 0.5133569367577986
the regulation term lambda/alpha is 1.6912076122239965
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2596056729941941
the lambda is 0.45094369857728356
the regulation term lambda/alpha is 1.737033298911648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3274186382311434
the lambda is 0.5536516429406841
the regulation term lambda/alpha is 1.6909594576892413
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3887691400371876
the lambda is 0.42850467837054695
the regulation term lambda/alpha is 1.1022085712090175
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32498251902877207
the lambda is 0.4647155122352096
the regulation term lambda/alpha is 1.4299707985033694
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31923825700111025
the lambda is 0.5038078123429061
the regulation term lambda/alpha is 1.5781561303949667
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39160065526760157
the lambda is 0.6050728607654481
the regulation term lambda/alpha is 1.5451272939060063
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2910701277398777
the lambda is 0.527911265670471
the regulation term lambda/alpha is 1.8136909815158098
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3293199838746486
the lambda is 0.51167278015853
the regulation term lambda/alpha is 1.5537252678637674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33867983688311776
the lambda is 0.5210790948297248
the regulation term lambda/alpha is 1.5385595423253824
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34749708526130746
the lambda is 0.47549311820355433
the regulation term lambda/alpha is 1.3683369972614237
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3121492793415795
the lambda is 0.5087218624630618
the regulation term lambda/alpha is 1.6297390259433417
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28593015054304277
the lambda is 0.47579876739147986
the regulation term lambda/alpha is 1.664038460049896
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3304280609726902
the lambda is 0.44900139725523974
the regulation term lambda/alpha is 1.3588476594073216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28879803319715264
the lambda is 0.4381695148844725
the regulation term lambda/alpha is 1.5172177941577218
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3419424832719552
the lambda is 0.5351103171109469
the regulation term lambda/alpha is 1.5649132333327551
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4056364775571118
the lambda is 0.5013179051751162
the regulation term lambda/alpha is 1.2358797418669847
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2734204757847679
the lambda is 0.4595576824929245
the regulation term lambda/alpha is 1.680772740863346
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2814563237219544
the lambda is 0.5333307525954714
the regulation term lambda/alpha is 1.8948970324871406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3870197820058213
the lambda is 0.4587531294809712
the regulation term lambda/alpha is 1.1853480127123603
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3440182675454459
the lambda is 0.5139038643034445
the regulation term lambda/alpha is 1.4938272550760874
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30301902111830925
the lambda is 0.5041462896828796
the regulation term lambda/alpha is 1.6637446976836585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38973833727872104
the lambda is 0.5237453546764016
the regulation term lambda/alpha is 1.3438384284526916
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3189208783407574
the lambda is 0.4552056835501569
the regulation term lambda/alpha is 1.4273310857490593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3208210574468553
the lambda is 0.5375514345129064
the regulation term lambda/alpha is 1.6755491013926136
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35641591484972995
the lambda is 0.5159968394565543
the regulation term lambda/alpha is 1.447737931888103
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36231596288842305
the lambda is 0.5279511501907662
the regulation term lambda/alpha is 1.4571567478890002
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3546304536861179
the lambda is 0.5154364866344011
the regulation term lambda/alpha is 1.453446767689647
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3160302663126587
the lambda is 0.505637972362805
the regulation term lambda/alpha is 1.5999669217205972
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3655170793004887
the lambda is 0.5249377731760241
the regulation term lambda/alpha is 1.4361511483420364
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33227154578527357
the lambda is 0.4887293947035244
the regulation term lambda/alpha is 1.4708734494507687
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3138385400055048
the lambda is 0.4871097887266214
the regulation term lambda/alpha is 1.5521031569866384
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33472489287070967
the lambda is 0.5039376393888881
the regulation term lambda/alpha is 1.5055278233625078
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.312305834082621
the lambda is 0.48738339965391986
the regulation term lambda/alpha is 1.5605965257920278
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2913471085625577
the lambda is 0.4835276797284078
the regulation term lambda/alpha is 1.6596275216666012
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.41468459250405715
the lambda is 0.46025800680032225
the regulation term lambda/alpha is 1.1098989813464537
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27367875022869964
the lambda is 0.4352465477730116
the regulation term lambda/alpha is 1.5903556538799517
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3649035382351197
the lambda is 0.5366289477235785
the regulation term lambda/alpha is 1.470604944854797
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26419495637297485
the lambda is 0.4826345550295362
the regulation term lambda/alpha is 1.8268121453014463
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3909033420481279
the lambda is 0.5090377591851782
the regulation term lambda/alpha is 1.3022087673082767
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3394107125341266
the lambda is 0.4545719592211377
the regulation term lambda/alpha is 1.339297619179984
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.259177042607396
the lambda is 0.478388728287564
the regulation term lambda/alpha is 1.8457990085650915
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3069871043773571
the lambda is 0.4052862413703386
the regulation term lambda/alpha is 1.3202060789893943
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2889544416683012
the lambda is 0.4907214751021945
the regulation term lambda/alpha is 1.698265900565416
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3126452700328988
the lambda is 0.5187569401741425
the regulation term lambda/alpha is 1.6592508823803895
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2834042005864334
the lambda is 0.4987302011925034
the regulation term lambda/alpha is 1.7597840828064906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2987288439257141
the lambda is 0.47212038390063915
the regulation term lambda/alpha is 1.5804311953821337
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35610728011843173
the lambda is 0.48629354733080693
the regulation term lambda/alpha is 1.3655815943135976
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26174292065305493
the lambda is 0.4779428527906589
the regulation term lambda/alpha is 1.8260010685224262
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3625528329550309
the lambda is 0.5343769073515636
the regulation term lambda/alpha is 1.4739283734071522
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30973788331213375
the lambda is 0.509802709957734
the regulation term lambda/alpha is 1.645916555334589
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2531438033315232
the lambda is 0.4535296688134525
the regulation term lambda/alpha is 1.7915890606237719
330
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33826034920853937
the lambda is 0.5790668286794387
the regulation term lambda/alpha is 1.7118968570639086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.44698498294573347
the lambda is 0.5358209723742634
the regulation term lambda/alpha is 1.1987449082586186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2572648602224086
the lambda is 0.4833552667006343
the regulation term lambda/alpha is 1.8788235061825693
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3163962711106947
the lambda is 0.4381460286653919
the regulation term lambda/alpha is 1.384801493163305
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3056978715579938
the lambda is 0.44250641691134923
the regulation term lambda/alpha is 1.4475286159373912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.41437196876288473
the lambda is 0.46747205465863445
the regulation term lambda/alpha is 1.1281459410835173
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25142359348371146
the lambda is 0.4664566873602339
the regulation term lambda/alpha is 1.8552621927681316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2823395135195396
the lambda is 0.5384340441396341
the regulation term lambda/alpha is 1.9070445982842257
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4161191569046515
the lambda is 0.5445017801217098
the regulation term lambda/alpha is 1.3085237030951582
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2876012607730609
the lambda is 0.49231067611714274
the regulation term lambda/alpha is 1.7117820512811068
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27101417809384587
the lambda is 0.5704595441289426
the regulation term lambda/alpha is 2.1049066441513102
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.357784402823082
the lambda is 0.5130478709575033
the regulation term lambda/alpha is 1.4339581795889418
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4071938596398933
the lambda is 0.5188615272379069
the regulation term lambda/alpha is 1.274237110787398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35948339939085683
the lambda is 0.4355629247798169
the regulation term lambda/alpha is 1.21163571257498
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3360590087201686
the lambda is 0.4865492796425719
the regulation term lambda/alpha is 1.447809066317024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3361022806986881
the lambda is 0.4935823843263505
the regulation term lambda/alpha is 1.4685481553421578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2832463396114818
the lambda is 0.54019366140478
the regulation term lambda/alpha is 1.9071514291967302
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3387003405821677
the lambda is 0.5353519227128793
the regulation term lambda/alpha is 1.5806063902761402
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3490495612130249
the lambda is 0.5144923102126862
the regulation term lambda/alpha is 1.4739806817825838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3141990493460597
the lambda is 0.5332138748585021
the regulation term lambda/alpha is 1.6970575689782528
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3060956043838929
the lambda is 0.48210853889213773
the regulation term lambda/alpha is 1.575026011440192
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2836021433858912
the lambda is 0.4349068825221095
the regulation term lambda/alpha is 1.533510562825124
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2851488341357062
the lambda is 0.4573727570320047
the regulation term lambda/alpha is 1.6039790533189935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300164542793833
the lambda is 0.4395118390414904
the regulation term lambda/alpha is 1.3317876528344588
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.41295626268979374
the lambda is 0.6732289522385302
the regulation term lambda/alpha is 1.6302669630276299
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36297749195383655
the lambda is 0.47411516553031147
the regulation term lambda/alpha is 1.306183375112993
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3258586903750277
the lambda is 0.5893131963621624
the regulation term lambda/alpha is 1.808493109954893
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27046833600769615
the lambda is 0.49190327834191794
the regulation term lambda/alpha is 1.818709301069242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3424498130600421
the lambda is 0.45321418831536353
the regulation term lambda/alpha is 1.3234470308672677
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32412005478673334
the lambda is 0.484327613449985
the regulation term lambda/alpha is 1.4942846216926198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28354664378898864
the lambda is 0.5100278066149581
the regulation term lambda/alpha is 1.798743937856353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3335507574844477
the lambda is 0.5412469329505049
the regulation term lambda/alpha is 1.6226823678424456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34617712646514376
the lambda is 0.4786980582550986
the regulation term lambda/alpha is 1.3828125016321615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34452065700792667
the lambda is 0.48068828414955267
the regulation term lambda/alpha is 1.3952379178775718
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33183925964373984
the lambda is 0.5493296221884478
the regulation term lambda/alpha is 1.6554087746525352
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27065703908860306
the lambda is 0.4923890342530203
the regulation term lambda/alpha is 1.8192360188047074
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3219191544140022
the lambda is 0.45331986013383835
the regulation term lambda/alpha is 1.408179208717879
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37861230431151877
the lambda is 0.5877979032592255
the regulation term lambda/alpha is 1.5525060769699413
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3615501903739735
the lambda is 0.5086636890437127
the regulation term lambda/alpha is 1.406896476855871
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3138778609122418
the lambda is 0.45006687806849033
the regulation term lambda/alpha is 1.4338917589167786
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3637246769651654
the lambda is 0.48674682013292137
the regulation term lambda/alpha is 1.3382287509173814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29015055527065087
the lambda is 0.5846691601324133
the regulation term lambda/alpha is 2.0150544243730195
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31360233363622103
the lambda is 0.5491207223614328
the regulation term lambda/alpha is 1.75100968157467
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2753193688825401
the lambda is 0.46139860777720093
the regulation term lambda/alpha is 1.6758668656328646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4338852844765588
the lambda is 0.5776137385440043
the regulation term lambda/alpha is 1.3312591120504127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30447993555042224
the lambda is 0.47214541288749284
the regulation term lambda/alpha is 1.5506618261527614
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3306806541160168
the lambda is 0.5272658996693453
the regulation term lambda/alpha is 1.5944866840754406
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3014427848609742
the lambda is 0.3997501730543867
the regulation term lambda/alpha is 1.3261228768130975
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3100375520862897
the lambda is 0.5109182188457074
the regulation term lambda/alpha is 1.647923664109916
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3584903326937994
the lambda is 0.626445636547365
the regulation term lambda/alpha is 1.7474547551675172
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35999372938985835
the lambda is 0.41489354074560375
the regulation term lambda/alpha is 1.1525021323254527
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25673309056300775
the lambda is 0.46586403056445946
the regulation term lambda/alpha is 1.8145850600825706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34406143370346604
the lambda is 0.5678518264650373
the regulation term lambda/alpha is 1.6504373081071562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2608769819169015
the lambda is 0.4284356053216368
the regulation term lambda/alpha is 1.6422897956482363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3315738695440548
the lambda is 0.5649831353766238
the regulation term lambda/alpha is 1.7039434867214616
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34987905389367174
the lambda is 0.48965340746911973
the regulation term lambda/alpha is 1.399493344971504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3864875108971464
the lambda is 0.6407505972319164
the regulation term lambda/alpha is 1.6578817663332865
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28357580076084044
the lambda is 0.4702862864561523
the regulation term lambda/alpha is 1.6584147349469287
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32867812546081954
the lambda is 0.5242091767963178
the regulation term lambda/alpha is 1.5949013219585457
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26416290475982057
the lambda is 0.4903600559289409
the regulation term lambda/alpha is 1.8562790122813835
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33824343801163925
the lambda is 0.4911606161044308
the regulation term lambda/alpha is 1.4520920760258165
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2841203698556103
the lambda is 0.46777439468163434
the regulation term lambda/alpha is 1.6463951349892894
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.3414793496685748
the lambda is 0.3919512868097225
the regulation term lambda/alpha is 1.147803775514196
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31888691436801736
the lambda is 0.45583534669239784
the regulation term lambda/alpha is 1.4294576734068574
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28928000157129813
the lambda is 0.46541756366565235
the regulation term lambda/alpha is 1.6088826090210804
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27772472007432514
the lambda is 0.4873286237755766
the regulation term lambda/alpha is 1.7547182103384853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30668255316787413
the lambda is 0.41404375931230164
the regulation term lambda/alpha is 1.3500727544995341
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.45603372191086167
the lambda is 0.5855894061560327
the regulation term lambda/alpha is 1.2840923335719778
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3268685212960248
the lambda is 0.5715747045486582
the regulation term lambda/alpha is 1.748637960860777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3218531192557511
the lambda is 0.5154450541274188
the regulation term lambda/alpha is 1.601491560247504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34582073279124254
the lambda is 0.6249690549992042
the regulation term lambda/alpha is 1.80720528221329
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29469209166708155
the lambda is 0.5052267413866036
the regulation term lambda/alpha is 1.7144224621995168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.319253426638027
the lambda is 0.43205006504419663
the regulation term lambda/alpha is 1.3533137908463537
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30195695733515426
the lambda is 0.40912610305792785
the regulation term lambda/alpha is 1.3549153053752034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3247305918554743
the lambda is 0.5719954442250192
the regulation term lambda/alpha is 1.7614461297184882
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2614119530006421
the lambda is 0.5003226571425453
the regulation term lambda/alpha is 1.9139241775272469
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38527563158079553
the lambda is 0.4489959729253075
the regulation term lambda/alpha is 1.1653889738187329
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30340479958097777
the lambda is 0.44917323949065374
the regulation term lambda/alpha is 1.4804421027979515
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3445949985456576
the lambda is 0.44412877288523017
the regulation term lambda/alpha is 1.2888427712521913
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3121822674324036
the lambda is 0.4828994571403921
the regulation term lambda/alpha is 1.5468510146719132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4428687097928968
the lambda is 0.5298189326392343
the regulation term lambda/alpha is 1.1963340848510136
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35453165196295644
the lambda is 0.6221885073949502
the regulation term lambda/alpha is 1.7549589830697547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32391753065164935
the lambda is 0.4222135611578806
the regulation term lambda/alpha is 1.303460051416426
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32517305364657767
the lambda is 0.5711999336883083
the regulation term lambda/alpha is 1.756602914302767
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33245933189699656
the lambda is 0.5098551708626649
the regulation term lambda/alpha is 1.5335865832174311
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3631423532046497
the lambda is 0.48543308350997727
the regulation term lambda/alpha is 1.3367570023880149
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33279004846311805
the lambda is 0.49602007689107475
the regulation term lambda/alpha is 1.490489511876275
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3617148976467468
the lambda is 0.5505330091282967
the regulation term lambda/alpha is 1.522008113876335
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31344332513612916
the lambda is 0.48822782103487294
the regulation term lambda/alpha is 1.557627111130328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32455573253985537
the lambda is 0.4474882273630013
the regulation term lambda/alpha is 1.3787716022179637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37298739803888864
the lambda is 0.5135634419871963
the regulation term lambda/alpha is 1.3768922078532284
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3513329117700881
the lambda is 0.4945107976109228
the regulation term lambda/alpha is 1.407527678290869
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27101668367158877
the lambda is 0.4412976047468238
the regulation term lambda/alpha is 1.6283042016762967
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36156672275662466
the lambda is 0.5087701421638674
the regulation term lambda/alpha is 1.4071265692952815
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2952047557876053
the lambda is 0.49004517606557957
the regulation term lambda/alpha is 1.6600178908301821
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3943751230746455
the lambda is 0.4594353802892278
the regulation term lambda/alpha is 1.1649704897899151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2928519392415868
the lambda is 0.5141633097016419
the regulation term lambda/alpha is 1.7557107903509062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33538835547699464
the lambda is 0.53560280058059
the regulation term lambda/alpha is 1.596963018644005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2975341615995443
the lambda is 0.5012808701059265
the regulation term lambda/alpha is 1.6847842527091323
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2818711314316268
the lambda is 0.4605248283233473
the regulation term lambda/alpha is 1.6338133883535226
340
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30724935391643715
the lambda is 0.5213559574888267
the regulation term lambda/alpha is 1.696849646201763
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30636732957983576
the lambda is 0.5017685996280875
the regulation term lambda/alpha is 1.6378006111690588
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2897738825701118
the lambda is 0.46764515894626996
the regulation term lambda/alpha is 1.6138278398265296
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3178034815263601
the lambda is 0.42697910716883497
the regulation term lambda/alpha is 1.3435318742202618
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3435376219790833
the lambda is 0.5779135175247383
the regulation term lambda/alpha is 1.6822422947316242
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3175313487611536
the lambda is 0.465059141511993
the regulation term lambda/alpha is 1.4646085916443152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2799915946253105
the lambda is 0.494456952719313
the regulation term lambda/alpha is 1.765970701302672
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30250924448032224
the lambda is 0.5424751711278782
the regulation term lambda/alpha is 1.7932515485924776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38562495402363434
the lambda is 0.5588633688121288
the regulation term lambda/alpha is 1.4492406753787956
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37677070323879647
the lambda is 0.593595767741259
the regulation term lambda/alpha is 1.575482813919954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31576520265930585
the lambda is 0.4400941731705234
the regulation term lambda/alpha is 1.3937386686821285
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4088739939542418
the lambda is 0.5209660778911548
the regulation term lambda/alpha is 1.274148235383876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2936612969023601
the lambda is 0.5292158319196616
the regulation term lambda/alpha is 1.8021299963666013
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4102398806751172
the lambda is 0.563903795787873
the regulation term lambda/alpha is 1.3745708848683276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32655853710481475
the lambda is 0.4838477845626539
the regulation term lambda/alpha is 1.4816571290780691
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34670655935401024
the lambda is 0.5266058728623585
the regulation term lambda/alpha is 1.5188806172099536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36588781443597046
the lambda is 0.49159429717980535
the regulation term lambda/alpha is 1.3435656443973574
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31859068349302083
the lambda is 0.425784603147546
the regulation term lambda/alpha is 1.3364628195628747
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3567135995644937
the lambda is 0.551338251585883
the regulation term lambda/alpha is 1.5456047996460005
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3223049962440484
the lambda is 0.49217895779626997
the regulation term lambda/alpha is 1.5270596594276606
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28298729482816265
the lambda is 0.47580725316641015
the regulation term lambda/alpha is 1.6813731989463798
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27827792878029156
the lambda is 0.5028332397450289
the regulation term lambda/alpha is 1.8069461776899678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31835016505852065
the lambda is 0.5075435723509522
the regulation term lambda/alpha is 1.5942934166773655
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3199772148910257
the lambda is 0.49186859815294354
the regulation term lambda/alpha is 1.5371988231113853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3500523455396773
the lambda is 0.4788848968085575
the regulation term lambda/alpha is 1.3680379603520683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3289544437129022
the lambda is 0.47544685554209903
the regulation term lambda/alpha is 1.4453273534649353
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32549300213322346
the lambda is 0.5377721273778386
the regulation term lambda/alpha is 1.6521772322396346
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32103636412764364
the lambda is 0.4565028575232851
the regulation term lambda/alpha is 1.4219661961464907
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3396817643628364
the lambda is 0.6601309362353317
the regulation term lambda/alpha is 1.943380556426345
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.2969890074577561
the lambda is 0.5479105894126108
the regulation term lambda/alpha is 1.8448850821205764
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30549329468693454
the lambda is 0.46026542520462776
the regulation term lambda/alpha is 1.5066302050141613
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34040111080907814
the lambda is 0.5691139521919556
the regulation term lambda/alpha is 1.6718921710897598
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3617681527773931
the lambda is 0.46107425453395434
the regulation term lambda/alpha is 1.2745020560659117
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30490065653501014
the lambda is 0.5206105060232122
the regulation term lambda/alpha is 1.7074758445573675
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3382362125651557
the lambda is 0.49914275943047637
the regulation term lambda/alpha is 1.4757224119943237
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36491703372521145
the lambda is 0.48419238799186504
the regulation term lambda/alpha is 1.3268560884896097
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2890173610190388
the lambda is 0.5350045435996128
the regulation term lambda/alpha is 1.8511155928946765
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39375118760836086
the lambda is 0.5277938723583342
the regulation term lambda/alpha is 1.340424839259906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26404996378288986
the lambda is 0.5869751183530371
the regulation term lambda/alpha is 2.222969887758312
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27816273844547956
the lambda is 0.4783999404680319
the regulation term lambda/alpha is 1.7198563083667628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3054542680858329
the lambda is 0.47795177747697243
the regulation term lambda/alpha is 1.5647245018775364
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29292447532524146
the lambda is 0.4599809058641539
the regulation term lambda/alpha is 1.5703054698772627
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.40153395294462924
the lambda is 0.5994853226030336
the regulation term lambda/alpha is 1.4929878736449005
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2951903768649297
the lambda is 0.46299115808344105
the regulation term lambda/alpha is 1.5684493613939587
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34072193216699753
the lambda is 0.6115244008974013
the regulation term lambda/alpha is 1.7947902473083999
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34285049674944607
the lambda is 0.48106221874719957
the regulation term lambda/alpha is 1.403125336868793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3208132807971307
the lambda is 0.4544918059650576
the regulation term lambda/alpha is 1.4166863816727706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.446472862976629
the lambda is 0.5591764961804412
the regulation term lambda/alpha is 1.252431093913342
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.260432617485146
the lambda is 0.4350716895024209
the regulation term lambda/alpha is 1.670572963185902
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2936847908334173
the lambda is 0.5039577340340063
the regulation term lambda/alpha is 1.7159817251818776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35065462718198687
the lambda is 0.5227804057988137
the regulation term lambda/alpha is 1.4908698339448831
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26735448504168335
the lambda is 0.5477456824425796
the regulation term lambda/alpha is 2.0487618988594125
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28206303771466235
the lambda is 0.4926067575184743
the regulation term lambda/alpha is 1.7464420773089737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3295810230338523
the lambda is 0.49340376478411185
the regulation term lambda/alpha is 1.4970636362562442
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2931887946718028
the lambda is 0.500580390853299
the regulation term lambda/alpha is 1.707365356215784
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.367609391306959
the lambda is 0.5268419780623357
the regulation term lambda/alpha is 1.43315701535605
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32324252153837607
the lambda is 0.5418350998249675
the regulation term lambda/alpha is 1.6762494527213359
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2880452370354117
the lambda is 0.4500596447780826
the regulation term lambda/alpha is 1.5624616793186314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35188026825724505
the lambda is 0.45873877539394364
the regulation term lambda/alpha is 1.3036785997292089
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.301993583041584
the lambda is 0.4940253685887748
the regulation term lambda/alpha is 1.6358803508773507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25829847083337776
the lambda is 0.46787292875605435
the regulation term lambda/alpha is 1.8113654612298038
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3101830000356214
the lambda is 0.49459989913143965
the regulation term lambda/alpha is 1.5945422511054437
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3039513285144894
the lambda is 0.4749417553870941
the regulation term lambda/alpha is 1.5625585770863097
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2461331947933605
the lambda is 0.5095798611728934
the regulation term lambda/alpha is 2.0703418797318576
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30602812332836354
the lambda is 0.5698927601463227
the regulation term lambda/alpha is 1.862223490926801
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2718592681739043
the lambda is 0.5038215409822293
the regulation term lambda/alpha is 1.853243938918949
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3366373894157668
the lambda is 0.48605807712854665
the regulation term lambda/alpha is 1.4438624241118878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36775683844404844
the lambda is 0.5519622507148887
the regulation term lambda/alpha is 1.5008891555904154
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25045948581328625
the lambda is 0.42296293100106375
the regulation term lambda/alpha is 1.6887479011929944
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.334021144179557
the lambda is 0.5346831437675607
the regulation term lambda/alpha is 1.6007463990966257
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3356954663325617
the lambda is 0.5136746411349496
the regulation term lambda/alpha is 1.5301804541681545
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3051783159622175
the lambda is 0.5025516395841928
the regulation term lambda/alpha is 1.646747535124386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3380568823259344
the lambda is 0.44159055300416333
the regulation term lambda/alpha is 1.306261094185942
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25500415524546516
the lambda is 0.45313842000343696
the regulation term lambda/alpha is 1.776984455673866
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30981145555271217
the lambda is 0.534670456284896
the regulation term lambda/alpha is 1.7257930483268578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4087858167962454
the lambda is 0.5374695493234866
the regulation term lambda/alpha is 1.314795003250766
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33472720388861293
the lambda is 0.5436667883139404
the regulation term lambda/alpha is 1.624208555498394
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2627487755926086
the lambda is 0.48882629991999954
the regulation term lambda/alpha is 1.8604322658307022
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2554261001734912
the lambda is 0.4416242414013229
the regulation term lambda/alpha is 1.7289706928985005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32800446467166305
the lambda is 0.4849507975948365
the regulation term lambda/alpha is 1.4784884043583946
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3205726254635662
the lambda is 0.46595162357510894
the regulation term lambda/alpha is 1.4534978552872895
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33072893509452667
the lambda is 0.5057726568413201
the regulation term lambda/alpha is 1.52926642689054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24446546304686562
the lambda is 0.4061396705930044
the regulation term lambda/alpha is 1.661337620173958
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27796725593790916
the lambda is 0.47237947882672987
the regulation term lambda/alpha is 1.6994069219874137
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2709968511288961
the lambda is 0.4720429903444855
the regulation term lambda/alpha is 1.7418762925771578
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30585693033371536
the lambda is 0.5277252238635156
the regulation term lambda/alpha is 1.7253989415499706
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32029304122924757
the lambda is 0.5395392661773841
the regulation term lambda/alpha is 1.6845176033381648
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33428962334519535
the lambda is 0.5710603947984995
the regulation term lambda/alpha is 1.708280350086754
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3442522461508082
the lambda is 0.5626958787193005
the regulation term lambda/alpha is 1.634545264441928
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3041902672926186
the lambda is 0.4846011684787732
the regulation term lambda/alpha is 1.5930857117548956
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27276231617800295
the lambda is 0.567714013296861
the regulation term lambda/alpha is 2.081350610494063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29789634880977556
the lambda is 0.5301838168467744
the regulation term lambda/alpha is 1.7797593658501942
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2911741092621826
the lambda is 0.5388145832842416
the regulation term lambda/alpha is 1.850489333167584
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2938771250409938
the lambda is 0.5141159656429991
the regulation term lambda/alpha is 1.749424918905422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3096538195684485
the lambda is 0.47847400942263657
the regulation term lambda/alpha is 1.5451900773885678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28953860683294064
the lambda is 0.4393876908599855
the regulation term lambda/alpha is 1.517544398193176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2682805205498688
the lambda is 0.40437397338549863
the regulation term lambda/alpha is 1.5072804114018126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3688743196444611
the lambda is 0.5320731387378971
the regulation term lambda/alpha is 1.4424239108071684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34196330418622173
the lambda is 0.5205386089368735
the regulation term lambda/alpha is 1.5222060453989699
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3238868176118592
the lambda is 0.6174324962480504
the regulation term lambda/alpha is 1.9063217848772458
350
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32058923017501934
the lambda is 0.4588323974175755
the regulation term lambda/alpha is 1.4312158807302573
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23833776554909822
the lambda is 0.45275447563226595
the regulation term lambda/alpha is 1.8996338015890197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29225831693956916
the lambda is 0.4130000227569135
the regulation term lambda/alpha is 1.413133515178322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2858011062245364
the lambda is 0.5573832958988126
the regulation term lambda/alpha is 1.950248910026649
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.356251414472647
the lambda is 0.5064664143848435
the regulation term lambda/alpha is 1.4216544659466328
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28311179221295124
the lambda is 0.4917583087053758
the regulation term lambda/alpha is 1.7369757185369539
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3752183613057947
the lambda is 0.4958548271955718
the regulation term lambda/alpha is 1.3215100281072358
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3512444219955384
the lambda is 0.4524400275833017
the regulation term lambda/alpha is 1.2881059434704667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30268691065140496
the lambda is 0.5592214049128214
the regulation term lambda/alpha is 1.8475242411683244
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33223619988839964
the lambda is 0.45382670483942206
the regulation term lambda/alpha is 1.3659760886738577
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3107713438412194
the lambda is 0.5211989992957093
the regulation term lambda/alpha is 1.6771140892643002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3210990019127521
the lambda is 0.5212404360499112
the regulation term lambda/alpha is 1.6233013274564487
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32527848009211285
the lambda is 0.5220369370931983
the regulation term lambda/alpha is 1.6048923277843867
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3397362593491793
the lambda is 0.5095348209686685
the regulation term lambda/alpha is 1.4997952292309522
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33048209591757777
the lambda is 0.49330779396347685
the regulation term lambda/alpha is 1.492691434898512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33512533877508804
the lambda is 0.5866898590650548
the regulation term lambda/alpha is 1.750658011147282
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3030109258656935
the lambda is 0.5443898844106005
the regulation term lambda/alpha is 1.7966015015969945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3540549023776177
the lambda is 0.4978887846270611
the regulation term lambda/alpha is 1.406247396331875
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3272256495771858
the lambda is 0.5083689471130364
the regulation term lambda/alpha is 1.553573039796572
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2751529373095245
the lambda is 0.4698862425643247
the regulation term lambda/alpha is 1.7077275174996267
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35877010285445676
the lambda is 0.501388119262904
the regulation term lambda/alpha is 1.3975192338317652
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33698031916624405
the lambda is 0.5057081090270532
the regulation term lambda/alpha is 1.5007051755374767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25997540645583356
the lambda is 0.5328710578020072
the regulation term lambda/alpha is 2.049697950534929
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.298356857686431
the lambda is 0.5511246445518792
the regulation term lambda/alpha is 1.8471995208204788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2980845800598389
the lambda is 0.4696156133547695
the regulation term lambda/alpha is 1.575444168431982
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3570999593508133
the lambda is 0.4757038027615377
the regulation term lambda/alpha is 1.3321306550309868
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28170600370773574
the lambda is 0.5001300891010307
the regulation term lambda/alpha is 1.7753618400689306
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3113335127240674
the lambda is 0.47471481152460526
the regulation term lambda/alpha is 1.5247790299573099
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3376145298133604
the lambda is 0.5063982238875535
the regulation term lambda/alpha is 1.4999301841881625
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2924116540509161
the lambda is 0.5229151294903006
the regulation term lambda/alpha is 1.7882841612025768
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4022802400003671
the lambda is 0.6025536031724666
the regulation term lambda/alpha is 1.4978453904967264
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3770800516356261
the lambda is 0.5047093559177048
the regulation term lambda/alpha is 1.3384673989739648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3322750170245176
the lambda is 0.4908050041688646
the regulation term lambda/alpha is 1.4771047446298062
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34039303557073186
the lambda is 0.39851433290030647
the regulation term lambda/alpha is 1.1707476101328675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3228422328257734
the lambda is 0.4300596021013053
the regulation term lambda/alpha is 1.3321045339609991
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32430344539123107
the lambda is 0.4982474659769987
the regulation term lambda/alpha is 1.5363619260224823
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35651078123054447
the lambda is 0.4708787892462098
the regulation term lambda/alpha is 1.3207981750815752
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3430485269685096
the lambda is 0.5456475831376429
the regulation term lambda/alpha is 1.590584247539215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35148731229794195
the lambda is 0.5975206306487904
the regulation term lambda/alpha is 1.699977807854116
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31968092033570944
the lambda is 0.49779605250524633
the regulation term lambda/alpha is 1.557165350945847
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3082774771887398
the lambda is 0.49786221102440714
the regulation term lambda/alpha is 1.6149808139230228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3259901698131462
the lambda is 0.4924571211179508
the regulation term lambda/alpha is 1.510650218073206
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2787855984263041
the lambda is 0.4703434728467476
the regulation term lambda/alpha is 1.6871153872429354
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3487002839876926
the lambda is 0.5168916739943046
the regulation term lambda/alpha is 1.482337978286672
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36052430299229843
the lambda is 0.5433623452723592
the regulation term lambda/alpha is 1.5071448464431718
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27203061624127456
the lambda is 0.49110112461479927
the regulation term lambda/alpha is 1.8053156346902606
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34367253408163767
the lambda is 0.5114455810732316
the regulation term lambda/alpha is 1.4881770591296082
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29692123040142737
the lambda is 0.44286551698222504
the regulation term lambda/alpha is 1.4915252654163058
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2853875899405521
the lambda is 0.395064860289082
the regulation term lambda/alpha is 1.3843098796670743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3112289005312537
the lambda is 0.522220149799939
the regulation term lambda/alpha is 1.6779294882593898
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35127890192234806
the lambda is 0.49525435323456374
the regulation term lambda/alpha is 1.4098607987109972
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3039405789330296
the lambda is 0.5122434899879482
the regulation term lambda/alpha is 1.6853409037587448
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27427230597559044
the lambda is 0.49951877545330803
the regulation term lambda/alpha is 1.8212512330638442
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2788853456081505
the lambda is 0.4918942316816029
the regulation term lambda/alpha is 1.7637865862365598
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2911086179964545
the lambda is 0.47288502758734524
the regulation term lambda/alpha is 1.6244281287237765
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3823689008049098
the lambda is 0.5536842059987412
the regulation term lambda/alpha is 1.4480367122775997
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3244064576045297
the lambda is 0.5530742407259679
the regulation term lambda/alpha is 1.704880491004891
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2907086274581286
the lambda is 0.5193821711606743
the regulation term lambda/alpha is 1.7866073521862782
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2890407444462995
the lambda is 0.4080449431658123
the regulation term lambda/alpha is 1.4117211881234357
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30324858566463697
the lambda is 0.3921306264389389
the regulation term lambda/alpha is 1.2930996053270853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2975851033700385
the lambda is 0.45088882538859537
the regulation term lambda/alpha is 1.515159261275011
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31574924576563224
the lambda is 0.4605992603379714
the regulation term lambda/alpha is 1.4587501522643553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2709005703717604
the lambda is 0.4420040358746206
the regulation term lambda/alpha is 1.6316098385029336
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35598108488065533
the lambda is 0.5899557924053658
the regulation term lambda/alpha is 1.6572672466660743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.325649311645884
the lambda is 0.5523522184882728
the regulation term lambda/alpha is 1.6961565670033072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3126205241864978
the lambda is 0.5340487306068303
the regulation term lambda/alpha is 1.7082970863686375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3222412083403361
the lambda is 0.47543615037769493
the regulation term lambda/alpha is 1.4754045667416984
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3103201932625786
the lambda is 0.47735387371763965
the regulation term lambda/alpha is 1.5382623628160894
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2948044639866142
the lambda is 0.4871264898951954
the regulation term lambda/alpha is 1.6523714848405882
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2639947292708789
the lambda is 0.47932949365002864
the regulation term lambda/alpha is 1.8156782712059363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.346308899030095
the lambda is 0.4750946491473898
the regulation term lambda/alpha is 1.3718811456418942
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36453932052784965
the lambda is 0.4356879259556974
the regulation term lambda/alpha is 1.1951740221735894
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3040602785340701
the lambda is 0.4556665556235366
the regulation term lambda/alpha is 1.498605992931362
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2897094760863169
the lambda is 0.4615836681559146
the regulation term lambda/alpha is 1.593263963579807
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3138115749974176
the lambda is 0.37580362630500674
the regulation term lambda/alpha is 1.1975454579968865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2871606088308769
the lambda is 0.5424017355332034
the regulation term lambda/alpha is 1.888844496261152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34534832927757914
the lambda is 0.4918650378641572
the regulation term lambda/alpha is 1.4242577599638913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30980845119181966
the lambda is 0.5860027335298791
the regulation term lambda/alpha is 1.891500155259006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2942299284406451
the lambda is 0.445376465144862
the regulation term lambda/alpha is 1.513702115570842
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3584451912952442
the lambda is 0.531114503357004
the regulation term lambda/alpha is 1.4817174738425645
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4046969193056239
the lambda is 0.5095007278225195
the regulation term lambda/alpha is 1.258968634346704
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28152861927365896
the lambda is 0.4909184495386498
the regulation term lambda/alpha is 1.7437603708113745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32509652713397635
the lambda is 0.49922144172482086
the regulation term lambda/alpha is 1.5356098883181408
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.39351173992100785
the lambda is 0.5126171250686067
the regulation term lambda/alpha is 1.3026730159855144
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29406463657165954
the lambda is 0.594602628921665
the regulation term lambda/alpha is 2.0220133772418722
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32867541280564977
the lambda is 0.5342491698938076
the regulation term lambda/alpha is 1.625461318610152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2830175489099101
the lambda is 0.45745842544426735
the regulation term lambda/alpha is 1.6163606363147647
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3276473352554928
the lambda is 0.4307196111499208
the regulation term lambda/alpha is 1.3145829823827329
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3768040881281728
the lambda is 0.5789555016678904
the regulation term lambda/alpha is 1.5364894381691376
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3833887987439792
the lambda is 0.6460513462706436
the regulation term lambda/alpha is 1.6851075158877196
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29093156003654724
the lambda is 0.5209651039144105
the regulation term lambda/alpha is 1.7906792368932616
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27224327236323986
the lambda is 0.4780779650086555
the regulation term lambda/alpha is 1.756068977788297
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3018365962314749
the lambda is 0.4870256945356999
the regulation term lambda/alpha is 1.6135409046363802
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4004021505359311
the lambda is 0.5410018947138031
the regulation term lambda/alpha is 1.3511463262364645
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37394032700983365
the lambda is 0.5207779475281296
the regulation term lambda/alpha is 1.3926766115130302
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3378948152621447
the lambda is 0.5462112880694218
the regulation term lambda/alpha is 1.61651278267073
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29601244922422104
the lambda is 0.43409847283183317
the regulation term lambda/alpha is 1.4664872169042318
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27096454432737965
the lambda is 0.4344817065953611
the regulation term lambda/alpha is 1.6034633153716962
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34865479431202284
the lambda is 0.4755884563722972
the regulation term lambda/alpha is 1.3640668768394366
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3138473132320459
the lambda is 0.5352847147228638
the regulation term lambda/alpha is 1.705557741471236
360
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39203352103097394
the lambda is 0.5689548623234524
the regulation term lambda/alpha is 1.4512913610734328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34415740314003546
the lambda is 0.5809900664979956
the regulation term lambda/alpha is 1.6881521687377283
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36568082354667364
the lambda is 0.562994819306992
the regulation term lambda/alpha is 1.5395798276940116
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2687982041593975
the lambda is 0.44413720552261604
the regulation term lambda/alpha is 1.6523071904871895
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2606559175266899
the lambda is 0.4306359452360151
the regulation term lambda/alpha is 1.6521241847191908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28001574667283724
the lambda is 0.5080054308568138
the regulation term lambda/alpha is 1.8142030828371718
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2572991952327411
the lambda is 0.5140090205353588
the regulation term lambda/alpha is 1.9977093984705616
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28488146740120895
the lambda is 0.5492658729384013
the regulation term lambda/alpha is 1.9280505606384364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3851326619314841
the lambda is 0.49388778927515037
the regulation term lambda/alpha is 1.28238354752424
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29540403995934417
the lambda is 0.5237102186344298
the regulation term lambda/alpha is 1.7728607188530898
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27326454624614965
the lambda is 0.482924857489288
the regulation term lambda/alpha is 1.7672430036140938
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30631923580765896
the lambda is 0.5185784023743404
the regulation term lambda/alpha is 1.6929345002021394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36887997332441874
the lambda is 0.48973895887416174
the regulation term lambda/alpha is 1.3276376986816012
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35383632062349396
the lambda is 0.6174243181666678
the regulation term lambda/alpha is 1.744943303385888
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2888817554210606
the lambda is 0.48333726508679825
the regulation term lambda/alpha is 1.6731318472580878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38442238230346687
the lambda is 0.534943679480916
the regulation term lambda/alpha is 1.391551855736189
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2922681871063136
the lambda is 0.4572854186534581
the regulation term lambda/alpha is 1.5646089407846464
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2931867928591117
the lambda is 0.43598673794259046
the regulation term lambda/alpha is 1.4870613157261146
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2664501676823394
the lambda is 0.41775830437154127
the regulation term lambda/alpha is 1.5678665470745383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3791570982354946
the lambda is 0.5496388710017885
the regulation term lambda/alpha is 1.4496336045393186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34941904112382977
the lambda is 0.5188440576259735
the regulation term lambda/alpha is 1.4848763134293579
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35132948201663655
the lambda is 0.550040759141826
the regulation term lambda/alpha is 1.5655980704624723
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.295062381083825
the lambda is 0.49653832524814023
the regulation term lambda/alpha is 1.6828249112077676
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2740110403257569
the lambda is 0.41312805817268505
the regulation term lambda/alpha is 1.5077058854327163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37486773210664665
the lambda is 0.5405932325694573
the regulation term lambda/alpha is 1.442090599613581
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3369391525031127
the lambda is 0.5327846490386421
the regulation term lambda/alpha is 1.5812488548172512
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3097741450794007
the lambda is 0.4986945097274943
the regulation term lambda/alpha is 1.60986485686102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2689544164834421
the lambda is 0.5047747652508449
the regulation term lambda/alpha is 1.8768041508696356
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3219817685322687
the lambda is 0.4756995259429061
the regulation term lambda/alpha is 1.4774113705609764
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32359805705702827
the lambda is 0.5443267485311131
the regulation term lambda/alpha is 1.682107591997023
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28151043803628134
the lambda is 0.4517840357153479
the regulation term lambda/alpha is 1.6048571373297411
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28234800576658564
the lambda is 0.5074505870024003
the regulation term lambda/alpha is 1.7972522441752423
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2785565322072189
the lambda is 0.4825947087012164
the regulation term lambda/alpha is 1.7324839050703469
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3145529789503905
the lambda is 0.5466299168041976
the regulation term lambda/alpha is 1.7377992051711229
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33760509772160063
the lambda is 0.5559398109445518
the regulation term lambda/alpha is 1.646716280934231
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.323937342165771
the lambda is 0.5432947556905993
the regulation term lambda/alpha is 1.6771600089642482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3286037370453235
the lambda is 0.5252880968035257
the regulation term lambda/alpha is 1.5985457180941132
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27856020178618857
the lambda is 0.4543528659908794
the regulation term lambda/alpha is 1.6310760226244454
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31863649728240145
the lambda is 0.5190100641758497
the regulation term lambda/alpha is 1.6288468791315547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37179060469383723
the lambda is 0.5282737742089852
the regulation term lambda/alpha is 1.4208905968562844
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3475445434894568
the lambda is 0.4992335738112526
the regulation term lambda/alpha is 1.4364592486441885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.364155243497376
the lambda is 0.5563819671381391
the regulation term lambda/alpha is 1.5278702615802051
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2803128247622587
the lambda is 0.5712627714875071
the regulation term lambda/alpha is 2.0379473253569875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.275771353151154
the lambda is 0.5166044294028654
the regulation term lambda/alpha is 1.873307083929445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3405075649498423
the lambda is 0.48815692270272154
the regulation term lambda/alpha is 1.4336154991875978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2633601839909379
the lambda is 0.473003322363705
the regulation term lambda/alpha is 1.796032016669539
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33695430729082093
the lambda is 0.5974385588540745
the regulation term lambda/alpha is 1.7730551173469136
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33185002881130404
the lambda is 0.4782212774730086
the regulation term lambda/alpha is 1.4410764982784856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33211664541221986
the lambda is 0.532495651377429
the regulation term lambda/alpha is 1.6033392446093775
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3359045548432529
the lambda is 0.49464806524141797
the regulation term lambda/alpha is 1.4725851677487418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4090486564318627
the lambda is 0.5935640634944481
the regulation term lambda/alpha is 1.4510842516196385
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29298793071815543
the lambda is 0.5650508868726605
the regulation term lambda/alpha is 1.9285807626533957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30934410357380393
the lambda is 0.5990930402564225
the regulation term lambda/alpha is 1.9366557608022734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28097594338015913
the lambda is 0.4823117335337117
the regulation term lambda/alpha is 1.7165588189916536
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3992924893488355
the lambda is 0.5386489491417717
the regulation term lambda/alpha is 1.3490084675026024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.392890723705329
the lambda is 0.536996950630501
the regulation term lambda/alpha is 1.3667844981579478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28179453693432804
the lambda is 0.4987161304536705
the regulation term lambda/alpha is 1.7697863694564664
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2995339400588335
the lambda is 0.5289130234481856
the regulation term lambda/alpha is 1.76578661952064
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39020021632758517
the lambda is 0.48804675333600456
the regulation term lambda/alpha is 1.2507598225580536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37577060531066225
the lambda is 0.5600695315167034
the regulation term lambda/alpha is 1.4904559420066266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34549299388893157
the lambda is 0.5698972722624696
the regulation term lambda/alpha is 1.6495190418989483
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4081523290073046
the lambda is 0.5971767466062504
the regulation term lambda/alpha is 1.4631222319830568
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34692481282581655
the lambda is 0.462243470799396
the regulation term lambda/alpha is 1.3324024506470755
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3489740801645531
the lambda is 0.5621482742951006
the regulation term lambda/alpha is 1.610859677687319
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34888720341549223
the lambda is 0.5423744928840455
the regulation term lambda/alpha is 1.5545840821170156
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30108070411283633
the lambda is 0.47017261760942186
the regulation term lambda/alpha is 1.5616165738512913
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2937883914855314
the lambda is 0.47429924642920535
the regulation term lambda/alpha is 1.6144247362223088
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38883950396354605
the lambda is 0.5370736583911945
the regulation term lambda/alpha is 1.3812219512592154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38950318512515547
the lambda is 0.5409283835168475
the regulation term lambda/alpha is 1.3887649810695024
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2723460238571467
the lambda is 0.5269353057566025
the regulation term lambda/alpha is 1.9348008033816393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3562568480805564
the lambda is 0.431600697110855
the regulation term lambda/alpha is 1.2114874406940859
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32032953535465053
the lambda is 0.5053118083790346
the regulation term lambda/alpha is 1.5774749206924745
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2620398962229007
the lambda is 0.49531274344199305
the regulation term lambda/alpha is 1.8902188200405252
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2545710455213985
the lambda is 0.49801450140801923
the regulation term lambda/alpha is 1.9562888638337215
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33829155411629536
the lambda is 0.49802889595176403
the regulation term lambda/alpha is 1.4721883827479634
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2553487062944854
the lambda is 0.5029738400454992
the regulation term lambda/alpha is 1.969752842473522
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3755097171189118
the lambda is 0.511301349550754
the regulation term lambda/alpha is 1.3616194900992173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2973741049050169
the lambda is 0.49941350530453454
the regulation term lambda/alpha is 1.6794115461534562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3191844761395572
the lambda is 0.5239305341099747
the regulation term lambda/alpha is 1.6414662155464488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26861938921090694
the lambda is 0.4489782327490163
the regulation term lambda/alpha is 1.6714289838418936
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36265930203666324
the lambda is 0.4814135107236078
the regulation term lambda/alpha is 1.3274539161687875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3429868559352369
the lambda is 0.5437626690204197
the regulation term lambda/alpha is 1.5853746568151097
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28548675388890526
the lambda is 0.4618150840490398
the regulation term lambda/alpha is 1.617641021021771
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32901476281813075
the lambda is 0.5503503923715966
the regulation term lambda/alpha is 1.6727224871542112
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2803771469728683
the lambda is 0.4976620324550927
the regulation term lambda/alpha is 1.774973594774651
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3153616905181938
the lambda is 0.4842802144733516
the regulation term lambda/alpha is 1.5356342543623338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27034311132362426
the lambda is 0.5676939445750715
the regulation term lambda/alpha is 2.0999016464506557
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4562248765785742
the lambda is 0.5339042283649663
the regulation term lambda/alpha is 1.170265489179246
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34235420518766774
the lambda is 0.5392441971751036
the regulation term lambda/alpha is 1.5751061006524136
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.326726012573279
the lambda is 0.5146679419428789
the regulation term lambda/alpha is 1.5752279345295404
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30666563455395884
the lambda is 0.5001344870331866
the regulation term lambda/alpha is 1.630878816143275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3621725214748856
the lambda is 0.4994265657942774
the regulation term lambda/alpha is 1.378974207541887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33095951874366103
the lambda is 0.4679786778704691
the regulation term lambda/alpha is 1.414005796379387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34390738361456114
the lambda is 0.41360218348186173
the regulation term lambda/alpha is 1.2026557241510465
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3192977255933402
the lambda is 0.45926071447321526
the regulation term lambda/alpha is 1.4383463384206279
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27128671549575606
the lambda is 0.43980105363674127
the regulation term lambda/alpha is 1.6211669371020911
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3095010104999793
the lambda is 0.49011997532356144
the regulation term lambda/alpha is 1.5835811796924464
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3239493679832312
the lambda is 0.526187613499307
the regulation term lambda/alpha is 1.6242896745720596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2383612410259366
the lambda is 0.4955982164053709
the regulation term lambda/alpha is 2.0791896126746705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2986005911563277
the lambda is 0.4741989119553738
the regulation term lambda/alpha is 1.588070908095136
370
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3109307053027148
the lambda is 0.49360389578338976
the regulation term lambda/alpha is 1.5875045061980244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2735713805742206
the lambda is 0.46630058992847845
the regulation term lambda/alpha is 1.704493317063076
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3492282095921345
the lambda is 0.5078669898272802
the regulation term lambda/alpha is 1.454255343290912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3183528236008251
the lambda is 0.5016914894408904
the regulation term lambda/alpha is 1.5758977217992234
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3327889586530439
the lambda is 0.5004377075428039
the regulation term lambda/alpha is 1.5037689638752278
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32151913748837424
the lambda is 0.5132527362712023
the regulation term lambda/alpha is 1.596336505131863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37759532421875225
the lambda is 0.618772030861397
the regulation term lambda/alpha is 1.6387174076947093
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3723373151896273
the lambda is 0.5553823424095429
the regulation term lambda/alpha is 1.491610751199333
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2914361944834031
the lambda is 0.5388657914603447
the regulation term lambda/alpha is 1.8490009191052366
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2918791282353253
the lambda is 0.5691883676326636
the regulation term lambda/alpha is 1.9500824573306244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3100840971772046
the lambda is 0.5757704465566043
the regulation term lambda/alpha is 1.8568203006798094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31990975090285007
the lambda is 0.4657648051936777
the regulation term lambda/alpha is 1.4559256286474394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203987436723171
the lambda is 0.5229702506913653
the regulation term lambda/alpha is 1.6322481314915052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.355511258602828
the lambda is 0.46187743487936217
the regulation term lambda/alpha is 1.2991921456849413
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3147341416555279
the lambda is 0.5761686931913181
the regulation term lambda/alpha is 1.830652023198445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34931597957162835
the lambda is 0.44734162061170857
the regulation term lambda/alpha is 1.2806216914562298
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2953938733904702
the lambda is 0.47131864804933243
the regulation term lambda/alpha is 1.5955599980447592
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3733730525430835
the lambda is 0.542766447725003
the regulation term lambda/alpha is 1.4536840407419955
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26166192793897536
the lambda is 0.5171237621579573
the regulation term lambda/alpha is 1.9763049452060928
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31535258084972284
the lambda is 0.49522009409374884
the regulation term lambda/alpha is 1.570369561458384
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33818866347639887
the lambda is 0.46014171673369275
the regulation term lambda/alpha is 1.360606567954353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2956043328400029
the lambda is 0.498878595778706
the regulation term lambda/alpha is 1.687656574535821
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35126837232110397
the lambda is 0.5192864792247468
the regulation term lambda/alpha is 1.4783183461505978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3018370905386265
the lambda is 0.46975699781392816
the regulation term lambda/alpha is 1.556326285068709
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38535113693150486
the lambda is 0.5221023976985881
the regulation term lambda/alpha is 1.3548744188378778
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25920643710371855
the lambda is 0.5109542543984816
the regulation term lambda/alpha is 1.9712251752221301
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2753785181766021
the lambda is 0.4716027778518706
the regulation term lambda/alpha is 1.7125619709720008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3836223094522395
the lambda is 0.5271576748561082
the regulation term lambda/alpha is 1.3741580243568672
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.24327464252915104
the lambda is 0.5207352856287742
the regulation term lambda/alpha is 2.1405243070755957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2986172537580254
the lambda is 0.47655239349876066
the regulation term lambda/alpha is 1.5958635594610322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32731984601560393
the lambda is 0.5058695623458216
the regulation term lambda/alpha is 1.5454900413270567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3125624461254151
the lambda is 0.4848321953177427
the regulation term lambda/alpha is 1.5511530618211398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32123303058461145
the lambda is 0.5173816072619025
the regulation term lambda/alpha is 1.6106114813919372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2907348883558383
the lambda is 0.5382993361301355
the regulation term lambda/alpha is 1.8515126931422705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3575523434351341
the lambda is 0.478373626260819
the regulation term lambda/alpha is 1.3379121548048358
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3179434649424478
the lambda is 0.4567696547013043
the regulation term lambda/alpha is 1.4366379720494837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2877708044137633
the lambda is 0.5858298825332876
the regulation term lambda/alpha is 2.035751624375933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36308002123148414
the lambda is 0.5336773826131285
the regulation term lambda/alpha is 1.4698616046209791
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31699438662117685
the lambda is 0.48860817040336924
the regulation term lambda/alpha is 1.541377989722193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35776602585089956
the lambda is 0.5274429856914317
the regulation term lambda/alpha is 1.4742679505047405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3163347051145737
the lambda is 0.5026588134754008
the regulation term lambda/alpha is 1.5890093794588303
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2781157581239633
the lambda is 0.3969908470420159
the regulation term lambda/alpha is 1.427430253215163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31196571646440874
the lambda is 0.5344895164130378
the regulation term lambda/alpha is 1.7132956866881113
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2917290158929179
the lambda is 0.5073792489815482
the regulation term lambda/alpha is 1.7392142068164618
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37478832997081724
the lambda is 0.5360875889177147
the regulation term lambda/alpha is 1.4303742834240782
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3725129089536415
the lambda is 0.5388060869286267
the regulation term lambda/alpha is 1.44640916858986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3554610951036371
the lambda is 0.5125087129233212
the regulation term lambda/alpha is 1.441813801799873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33013082545712
the lambda is 0.604431866495964
the regulation term lambda/alpha is 1.8308858788300955
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2888884336098281
the lambda is 0.48894327184927505
the regulation term lambda/alpha is 1.6924986083369489
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.250808840919188
the lambda is 0.42874695512643674
the regulation term lambda/alpha is 1.7094571050810023
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.277624637244975
the lambda is 0.47033961628328064
the regulation term lambda/alpha is 1.694156617189038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33210893618700205
the lambda is 0.47112828177189037
the regulation term lambda/alpha is 1.418595618597297
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30675604926432753
the lambda is 0.4509804858294968
the regulation term lambda/alpha is 1.4701600405633501
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.296105717703987
the lambda is 0.5548373036222383
the regulation term lambda/alpha is 1.873781120893119
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3069452713478537
the lambda is 0.5186015888386187
the regulation term lambda/alpha is 1.6895571857528309
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3048870838582369
the lambda is 0.5054841132583432
the regulation term lambda/alpha is 1.6579387583810463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30316697929479747
the lambda is 0.4971741599235335
the regulation term lambda/alpha is 1.6399350650919169
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3274270870069922
the lambda is 0.48813389197281554
the regulation term lambda/alpha is 1.4908170745274703
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25792708212355736
the lambda is 0.45459313662979883
the regulation term lambda/alpha is 1.7624870288418593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36830623260741346
the lambda is 0.5044263777066552
the regulation term lambda/alpha is 1.369584147777199
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2798334815229
the lambda is 0.47393260228377715
the regulation term lambda/alpha is 1.693623649695375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29951062176609583
the lambda is 0.5449314853519573
the regulation term lambda/alpha is 1.8194062105000204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3164544316591735
the lambda is 0.47008102221936576
the regulation term lambda/alpha is 1.485461966055355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36922086913194846
the lambda is 0.4949025226425859
the regulation term lambda/alpha is 1.340396938575329
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3179189334662559
the lambda is 0.48707173398564185
the regulation term lambda/alpha is 1.5320626823798147
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31978119428784185
the lambda is 0.5397192909123191
the regulation term lambda/alpha is 1.6877768316372797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38954135757871333
the lambda is 0.5889432050323916
the regulation term lambda/alpha is 1.5118887727175048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2963939940491667
the lambda is 0.5713046259363384
the regulation term lambda/alpha is 1.9275175523346422
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38797916382727177
the lambda is 0.5416768974956603
the regulation term lambda/alpha is 1.3961494533681058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3528435326557879
the lambda is 0.5561076673210216
the regulation term lambda/alpha is 1.5760744235137376
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30259185883178785
the lambda is 0.5171452575509997
the regulation term lambda/alpha is 1.7090521190739736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33230809357907226
the lambda is 0.6149500527788071
the regulation term lambda/alpha is 1.8505419057224393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35226196310803815
the lambda is 0.5761672072695245
the regulation term lambda/alpha is 1.6356214056889673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3395758155514898
the lambda is 0.5721199799282766
the regulation term lambda/alpha is 1.684807791741948
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35654605830245933
the lambda is 0.47036310843237156
the regulation term lambda/alpha is 1.3192211706723198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.41457710206377457
the lambda is 0.5433594439278788
the regulation term lambda/alpha is 1.3106354432577745
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3201721126454246
the lambda is 0.5008377169879655
the regulation term lambda/alpha is 1.5642765163080254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35428977572031567
the lambda is 0.49026881617574275
the regulation term lambda/alpha is 1.3838074078738642
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29704422346016635
the lambda is 0.5227342483296684
the regulation term lambda/alpha is 1.7597859410983197
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28332260869493386
the lambda is 0.42492570015237835
the regulation term lambda/alpha is 1.4997945349639035
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3712392878418773
the lambda is 0.5887184483556523
the regulation term lambda/alpha is 1.5858193559686127
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3498213435160705
the lambda is 0.5016046595621569
the regulation term lambda/alpha is 1.4338880941926107
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27195995212954294
the lambda is 0.45527071158426596
the regulation term lambda/alpha is 1.6740358571890264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32194668265387427
the lambda is 0.47632679753797147
the regulation term lambda/alpha is 1.4795207504904522
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29110062435602024
the lambda is 0.4298726908918686
the regulation term lambda/alpha is 1.476715111287869
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3242264966812341
the lambda is 0.4424798631114224
the regulation term lambda/alpha is 1.3647245602707483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.23920292065343582
the lambda is 0.4932209633648568
the regulation term lambda/alpha is 2.061935372768503
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26914562326228636
the lambda is 0.4414960123025673
the regulation term lambda/alpha is 1.6403611061968597
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29273260454072264
the lambda is 0.4666380138550169
the regulation term lambda/alpha is 1.594075981345296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3738647671361966
the lambda is 0.5425291886698692
the regulation term lambda/alpha is 1.4511375137744105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3023407990326555
the lambda is 0.5131745137338195
the regulation term lambda/alpha is 1.697337955630633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32241846179843936
the lambda is 0.5483796897841983
the regulation term lambda/alpha is 1.7008321630385392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34574050478288165
the lambda is 0.5407126315145162
the regulation term lambda/alpha is 1.5639261932994322
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3463149589698748
the lambda is 0.4921377344162703
the regulation term lambda/alpha is 1.4210698142527545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29416410994625997
the lambda is 0.4707920446807422
the regulation term lambda/alpha is 1.600440124278757
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34218801663972354
the lambda is 0.4767283839585871
the regulation term lambda/alpha is 1.393176735526995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2846243151874585
the lambda is 0.5401103126234804
the regulation term lambda/alpha is 1.8976253390992066
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26295558089722104
the lambda is 0.49021036677786434
the regulation term lambda/alpha is 1.8642326019673574
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33513701386745276
the lambda is 0.5802255066142294
the regulation term lambda/alpha is 1.7313083383971117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28662599084454415
the lambda is 0.47100893879535344
the regulation term lambda/alpha is 1.6432876076852783
380
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3272597948773194
the lambda is 0.5031049401523787
the regulation term lambda/alpha is 1.5373258433440589
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26925798538990675
the lambda is 0.4667264086286054
the regulation term lambda/alpha is 1.7333800071063774
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.339716550893156
the lambda is 0.4959480390859517
the regulation term lambda/alpha is 1.4598877734453743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32158187543755745
the lambda is 0.5108879852572781
the regulation term lambda/alpha is 1.5886715772216422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2879223435385429
the lambda is 0.49805789368830145
the regulation term lambda/alpha is 1.7298341197394034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3539686189756742
the lambda is 0.4912045979928285
the regulation term lambda/alpha is 1.3877066261249151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33406831089977534
the lambda is 0.5696290608655145
the regulation term lambda/alpha is 1.7051274912346004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3028587135555592
the lambda is 0.49551525697572163
the regulation term lambda/alpha is 1.6361267970743716
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2739436306893354
the lambda is 0.47684417226635173
the regulation term lambda/alpha is 1.7406653006184136
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3984908778603587
the lambda is 0.5106748520455364
the regulation term lambda/alpha is 1.281522063409667
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35416346257879994
the lambda is 0.5433539048927211
the regulation term lambda/alpha is 1.5341896110241102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2963902292362507
the lambda is 0.5370928311661963
the regulation term lambda/alpha is 1.8121138222072875
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30887010576775
the lambda is 0.4353288236205666
the regulation term lambda/alpha is 1.409423623365821
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3442700856441874
the lambda is 0.5143017430718743
the regulation term lambda/alpha is 1.493890304496044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29169941154909307
the lambda is 0.491815016275139
the regulation term lambda/alpha is 1.6860336250365264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38436783010195447
the lambda is 0.6108164898029861
the regulation term lambda/alpha is 1.5891457139921559
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30337639302534014
the lambda is 0.48805331234889
the regulation term lambda/alpha is 1.60873859525426
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2948215420046585
the lambda is 0.5491672455726685
the regulation term lambda/alpha is 1.8627107159082394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3131806986417072
the lambda is 0.5352274131627814
the regulation term lambda/alpha is 1.7090051062664804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25848118887861316
the lambda is 0.45168119254073413
the regulation term lambda/alpha is 1.7474431872597536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31533823643255593
the lambda is 0.5041852203186377
the regulation term lambda/alpha is 1.598871186769233
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32374691201010286
the lambda is 0.48459357821074495
the regulation term lambda/alpha is 1.4968284182294307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3134206182146649
the lambda is 0.4735112318077812
the regulation term lambda/alpha is 1.5107852013854068
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3564438676504263
the lambda is 0.5139651387725643
the regulation term lambda/alpha is 1.4419244807337328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29968364146380655
the lambda is 0.515893281411451
the regulation term lambda/alpha is 1.7214595995015514
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3609024091620308
the lambda is 0.4802025269492867
the regulation term lambda/alpha is 1.330560602419517
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26866990180559264
the lambda is 0.49618836011038303
the regulation term lambda/alpha is 1.846832699813993
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3238056695462738
the lambda is 0.5346777796404211
the regulation term lambda/alpha is 1.6512304444503012
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3892467562008007
the lambda is 0.6100500748978348
the regulation term lambda/alpha is 1.5672579544455558
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28595819300695713
the lambda is 0.49221766472639594
the regulation term lambda/alpha is 1.7212924013491044
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3062130433414525
the lambda is 0.5604245238163078
the regulation term lambda/alpha is 1.8301784852168717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2532815186694797
the lambda is 0.5179444370954555
the regulation term lambda/alpha is 2.0449357687694074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159321432027247
the lambda is 0.4762890060916696
the regulation term lambda/alpha is 1.5075674202167153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30575131059310795
the lambda is 0.43399045002809333
the regulation term lambda/alpha is 1.4194230245038761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31257106978432375
the lambda is 0.46564564208477277
the regulation term lambda/alpha is 1.4897272559679677
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3150772183854439
the lambda is 0.47881147817120423
the regulation term lambda/alpha is 1.51966391167469
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2993545948034716
the lambda is 0.5317228792224385
the regulation term lambda/alpha is 1.7762308929031752
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38337015067190366
the lambda is 0.5110824377455658
the regulation term lambda/alpha is 1.3331304924231335
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25631220435381386
the lambda is 0.4592340671705078
the regulation term lambda/alpha is 1.7916980126961892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29261223208788917
the lambda is 0.4872612957934233
the regulation term lambda/alpha is 1.6652116431245747
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28735713438338967
the lambda is 0.4952737644601072
the regulation term lambda/alpha is 1.7235478267239286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28292853890954367
the lambda is 0.4383511573604368
the regulation term lambda/alpha is 1.5493352457476337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3574140669861148
the lambda is 0.5430324783716443
the regulation term lambda/alpha is 1.5193371736897545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31583945236043676
the lambda is 0.536993258834502
the regulation term lambda/alpha is 1.7002095679348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28629551624264266
the lambda is 0.5450442287535341
the regulation term lambda/alpha is 1.9037819240298384
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3471311479118992
the lambda is 0.5354130622773553
the regulation term lambda/alpha is 1.542394180119041
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2677093091574633
the lambda is 0.5251136991576248
the regulation term lambda/alpha is 1.9615070570771949
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3293165077300648
the lambda is 0.4702378415997164
the regulation term lambda/alpha is 1.4279206494718522
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.322339017311801
the lambda is 0.510026870958127
the regulation term lambda/alpha is 1.5822684923828945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.340081599948309
the lambda is 0.5126106885346741
the regulation term lambda/alpha is 1.5073167399018024
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2966179075161144
the lambda is 0.4236434346184675
the regulation term lambda/alpha is 1.4282463191992283
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40379440002967526
the lambda is 0.5501694388458606
the regulation term lambda/alpha is 1.3624989321432592
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3250594403247821
the lambda is 0.5433660668958454
the regulation term lambda/alpha is 1.6715898678498398
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30803766252373
the lambda is 0.4867042752829912
the regulation term lambda/alpha is 1.5800154802353021
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3189098873007036
the lambda is 0.5217134090576167
the regulation term lambda/alpha is 1.6359273570144517
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2801283643839507
the lambda is 0.45051228548674005
the regulation term lambda/alpha is 1.6082351620389894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3147857772120245
the lambda is 0.5277655741812607
the regulation term lambda/alpha is 1.676586467328806
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2782659635120486
the lambda is 0.4828903836574795
the regulation term lambda/alpha is 1.7353555482058478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3841452789278101
the lambda is 0.5335511835155712
the regulation term lambda/alpha is 1.3889307321562527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4163621207563719
the lambda is 0.5814543494538834
the regulation term lambda/alpha is 1.396511162921357
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4244996186196389
the lambda is 0.5920249026995366
the regulation term lambda/alpha is 1.3946417775936897
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3422902946122772
the lambda is 0.5052323311713313
the regulation term lambda/alpha is 1.4760346382114735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29011230114910447
the lambda is 0.4787139585787686
the regulation term lambda/alpha is 1.650098795130826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3227230891676625
the lambda is 0.5014806433660909
the regulation term lambda/alpha is 1.5539038271462489
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.336221887387377
the lambda is 0.506161494789449
the regulation term lambda/alpha is 1.5054388598035457
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31446534412995325
the lambda is 0.5144133964611529
the regulation term lambda/alpha is 1.6358349371833192
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30895076783141534
the lambda is 0.507250368921219
the regulation term lambda/alpha is 1.6418485459081607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.345841015981406
the lambda is 0.49300459129912605
the regulation term lambda/alpha is 1.4255237768721807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2536150666266669
the lambda is 0.4750265223120926
the regulation term lambda/alpha is 1.8730216963464303
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2761073928467561
the lambda is 0.500119793189954
the regulation term lambda/alpha is 1.8113234420620106
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012269855541227
the lambda is 0.5155341267220369
the regulation term lambda/alpha is 1.711447351815725
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3681919967496396
the lambda is 0.46160784259742055
the regulation term lambda/alpha is 1.2537150363735394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3597056767811259
the lambda is 0.5442670945374642
the regulation term lambda/alpha is 1.5130900891192787
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38557338958209925
the lambda is 0.5433292227912203
the regulation term lambda/alpha is 1.4091460600538421
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3267671565642528
the lambda is 0.46812476961866334
the regulation term lambda/alpha is 1.4325943113154187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34953444026612207
the lambda is 0.5713877216069035
the regulation term lambda/alpha is 1.634710791794568
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36179126225167546
the lambda is 0.47151827875970675
the regulation term lambda/alpha is 1.303288188402132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2843148006836699
the lambda is 0.4696511603088196
the regulation term lambda/alpha is 1.65187024797684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30761706457051574
the lambda is 0.5324844778100079
the regulation term lambda/alpha is 1.7309978513495152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3740555829563573
the lambda is 0.5720577572409402
the regulation term lambda/alpha is 1.5293389092596024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3081245434757017
the lambda is 0.5377179302728842
the regulation term lambda/alpha is 1.7451317710927106
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31869568593994546
the lambda is 0.531589396131423
the regulation term lambda/alpha is 1.6680156637940649
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.299437651149555
the lambda is 0.5314974163357272
the regulation term lambda/alpha is 1.7749852575161609
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28558416714592644
the lambda is 0.4896903812843881
the regulation term lambda/alpha is 1.7146972333174493
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.41010400461496044
the lambda is 0.6052768978425851
the regulation term lambda/alpha is 1.475910722722323
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.289272506865584
the lambda is 0.4441596035572124
the regulation term lambda/alpha is 1.5354366316035686
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.311851539780907
the lambda is 0.49118713488048726
the regulation term lambda/alpha is 1.5750672105886456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.319529780514191
the lambda is 0.4787317216682676
the regulation term lambda/alpha is 1.498238195193847
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3423137322218356
the lambda is 0.4972492027989831
the regulation term lambda/alpha is 1.4526124896349235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34511632444929097
the lambda is 0.5240413796712315
the regulation term lambda/alpha is 1.5184485419733618
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2691511645901267
the lambda is 0.44176689551886666
the regulation term lambda/alpha is 1.6413337694139483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257398786188844
the lambda is 0.5608339740005428
the regulation term lambda/alpha is 1.7217234081944213
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2623719001569705
the lambda is 0.5002817858993552
the regulation term lambda/alpha is 1.9067658754616987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2562105053855805
the lambda is 0.5140501549500591
the regulation term lambda/alpha is 2.006358615843821
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31492355454009313
the lambda is 0.5315571357996813
the regulation term lambda/alpha is 1.6878925953187425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26352306121828767
the lambda is 0.4643817572561049
the regulation term lambda/alpha is 1.7622053838826546
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27424422436116236
the lambda is 0.46205804111621257
the regulation term lambda/alpha is 1.684841466370177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30846710470673794
the lambda is 0.5012424421166978
the regulation term lambda/alpha is 1.6249461756813026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3419179365193149
the lambda is 0.572239479363339
the regulation term lambda/alpha is 1.6736164390457862
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3296504456156958
the lambda is 0.5038194172364789
the regulation term lambda/alpha is 1.5283444143249487
390
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3139692505964766
the lambda is 0.4320929062392082
the regulation term lambda/alpha is 1.3762268292780935
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31549351419616445
the lambda is 0.49708443768759986
the regulation term lambda/alpha is 1.575577358393896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176479670444322
the lambda is 0.53343470212064
the regulation term lambda/alpha is 1.6793266680848105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28898671635346557
the lambda is 0.4861517265759439
the regulation term lambda/alpha is 1.6822632289482877
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33219739059365966
the lambda is 0.4462502563157982
the regulation term lambda/alpha is 1.3433286020649295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37499328891844286
the lambda is 0.5542725781911892
the regulation term lambda/alpha is 1.4780866606701801
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3548963787511339
the lambda is 0.5103140474850653
the regulation term lambda/alpha is 1.4379240759819525
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3390581653355947
the lambda is 0.5006727090027706
the regulation term lambda/alpha is 1.4766572824082036
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3186280215809437
the lambda is 0.5223372758416255
the regulation term lambda/alpha is 1.6393325146041238
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34149571898953757
the lambda is 0.4387968007623492
the regulation term lambda/alpha is 1.2849262124301848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28276300461422105
the lambda is 0.5540280558016928
the regulation term lambda/alpha is 1.9593371366157457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3004660974513153
the lambda is 0.4774407524900841
the regulation term lambda/alpha is 1.5890004114938263
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4021292543478781
the lambda is 0.4661441118926843
the regulation term lambda/alpha is 1.1591897551662023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.276144538019044
the lambda is 0.4896799976415221
the regulation term lambda/alpha is 1.7732742467198532
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2839444667015022
the lambda is 0.5078730600508453
the regulation term lambda/alpha is 1.7886351720484448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38673378175650125
the lambda is 0.5823662780795444
the regulation term lambda/alpha is 1.5058583075791891
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3641595505551944
the lambda is 0.502191275363766
the regulation term lambda/alpha is 1.3790418913856017
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3455911472560368
the lambda is 0.5454693221925795
the regulation term lambda/alpha is 1.578366015806706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.255549045804669
the lambda is 0.4523388857122825
the regulation term lambda/alpha is 1.7700668155029287
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2927139605937118
the lambda is 0.4024365677346976
the regulation term lambda/alpha is 1.374845828734767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37137223035877714
the lambda is 0.5149566310289921
the regulation term lambda/alpha is 1.3866320336647149
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32225424793909113
the lambda is 0.5498556364348537
the regulation term lambda/alpha is 1.7062789395371483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32546713651251796
the lambda is 0.5380140008969843
the regulation term lambda/alpha is 1.653051692597822
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3014456821787354
the lambda is 0.4988490080299763
the regulation term lambda/alpha is 1.6548553770101608
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31113632796566515
the lambda is 0.5035347604441576
the regulation term lambda/alpha is 1.6183734112196766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3200222468751913
the lambda is 0.479752156813743
the regulation term lambda/alpha is 1.4991212689061781
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37284957014448955
the lambda is 0.514761267327825
the regulation term lambda/alpha is 1.3806138146500766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31696419067127213
the lambda is 0.5726436253739097
the regulation term lambda/alpha is 1.8066508527703249
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3353861462404634
the lambda is 0.5473778714247108
the regulation term lambda/alpha is 1.6320825340002407
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3226193988623172
the lambda is 0.47229605750914017
the regulation term lambda/alpha is 1.463941905460867
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24774837969767063
the lambda is 0.5068880684620451
the regulation term lambda/alpha is 2.045979348404235
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.274605419455335
the lambda is 0.42323201264814153
the regulation term lambda/alpha is 1.5412369263782169
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3242122594040437
the lambda is 0.4958660459940438
the regulation term lambda/alpha is 1.5294487842795597
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3535984762159127
the lambda is 0.4561011731231766
the regulation term lambda/alpha is 1.2898844418228606
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3625399300296062
the lambda is 0.4909941228464297
the regulation term lambda/alpha is 1.3543173652798286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211078521879883
the lambda is 0.48700444538753224
the regulation term lambda/alpha is 1.5166382325101846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3340585248059801
the lambda is 0.5251072823189933
the regulation term lambda/alpha is 1.571902057054145
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27246992665365727
the lambda is 0.4348953181688256
the regulation term lambda/alpha is 1.596122271217223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33808993819176775
the lambda is 0.46377697735147466
the regulation term lambda/alpha is 1.3717562250800142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3481918734829142
the lambda is 0.5340682873213335
the regulation term lambda/alpha is 1.5338332913376862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31340852114533424
the lambda is 0.533361326407271
the regulation term lambda/alpha is 1.70180863129736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3332768674972954
the lambda is 0.5382559103541057
the regulation term lambda/alpha is 1.615041315036585
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4787674737677674
the lambda is 0.49600066162296047
the regulation term lambda/alpha is 1.0359949010729002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37040256794773857
the lambda is 0.5342630283688463
the regulation term lambda/alpha is 1.4423847850974603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31040018864463137
the lambda is 0.5408201333289523
the regulation term lambda/alpha is 1.7423318448692129
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2893909290310008
the lambda is 0.4870775104131161
the regulation term lambda/alpha is 1.6831125704045073
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36656141134408693
the lambda is 0.5921330822352019
the regulation term lambda/alpha is 1.6153721147678948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37687778862269367
the lambda is 0.5924522344403766
the regulation term lambda/alpha is 1.5720009306080454
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3571989028114377
the lambda is 0.5669903398091253
the regulation term lambda/alpha is 1.587323856110596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28719677042786795
the lambda is 0.4898508247084339
the regulation term lambda/alpha is 1.7056279009636854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33004274801408734
the lambda is 0.46284420037391083
the regulation term lambda/alpha is 1.402376519886918
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4130921685763696
the lambda is 0.5840453544701314
the regulation term lambda/alpha is 1.413837876624275
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3235169890380363
the lambda is 0.5032858943377645
the regulation term lambda/alpha is 1.5556706800290867
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29854944783666115
the lambda is 0.474594242674544
the regulation term lambda/alpha is 1.5896671258765762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.297768136682531
the lambda is 0.5179279486780655
the regulation term lambda/alpha is 1.739366590557204
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26614071496555003
the lambda is 0.45868715654436176
the regulation term lambda/alpha is 1.7234760814546375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29836786742655913
the lambda is 0.4530327791920119
the regulation term lambda/alpha is 1.5183698670351033
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.4232686044597554
the lambda is 0.5483093069971519
the regulation term lambda/alpha is 1.2954169083648286
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3171238996774127
the lambda is 0.5079304949938889
the regulation term lambda/alpha is 1.6016783834664303
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27932806039187524
the lambda is 0.49610826134398117
the regulation term lambda/alpha is 1.7760774218242894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2869494003443139
the lambda is 0.4935875712199896
the regulation term lambda/alpha is 1.720120587907583
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32726509083274496
the lambda is 0.5320435854359549
the regulation term lambda/alpha is 1.6257266672780135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31776989472723055
the lambda is 0.48713095496103626
the regulation term lambda/alpha is 1.53296760657325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3463095895911402
the lambda is 0.5632399470449223
the regulation term lambda/alpha is 1.6264058633487286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2943225738685625
the lambda is 0.44872354081711396
the regulation term lambda/alpha is 1.5245977735214538
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30574702982247415
the lambda is 0.49152953265355265
the regulation term lambda/alpha is 1.6076346937497623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3294946002568325
the lambda is 0.4959491322866027
the regulation term lambda/alpha is 1.5051813653395933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3534599048562606
the lambda is 0.562912705123677
the regulation term lambda/alpha is 1.5925786698567501
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073538689180977
the lambda is 0.43848326647137237
the regulation term lambda/alpha is 1.426639814279408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3234181132156983
the lambda is 0.45452065541811615
the regulation term lambda/alpha is 1.4053654908158506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3232848437188201
the lambda is 0.5685854552864399
the regulation term lambda/alpha is 1.7587754772103459
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2979971596734577
the lambda is 0.5634159509820287
the regulation term lambda/alpha is 1.8906755742216277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3297527812586707
the lambda is 0.5047519544533638
the regulation term lambda/alpha is 1.5306980960910141
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3602267773567434
the lambda is 0.4719245451947985
the regulation term lambda/alpha is 1.310076248794346
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31179579685487324
the lambda is 0.45438417429261707
the regulation term lambda/alpha is 1.4573133405775582
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2879767686704529
the lambda is 0.4985999220055732
the regulation term lambda/alpha is 1.7313893905662492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38284870001268645
the lambda is 0.4874540834766629
the regulation term lambda/alpha is 1.2732290418134113
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28207735500559256
the lambda is 0.43480143782898284
the regulation term lambda/alpha is 1.5414262439477366
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33519641891444446
the lambda is 0.4783619014885859
the regulation term lambda/alpha is 1.4271092246086408
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.353833409111206
the lambda is 0.46023807461109273
the regulation term lambda/alpha is 1.3007196685218747
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3658090439607721
the lambda is 0.621049875918853
the regulation term lambda/alpha is 1.6977433613846133
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2643246062127509
the lambda is 0.47858652087494646
the regulation term lambda/alpha is 1.8106014711688982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3281268847957537
the lambda is 0.5162349640561793
the regulation term lambda/alpha is 1.5732784723736235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3148128045315238
the lambda is 0.5604933804501994
the regulation term lambda/alpha is 1.7804021068465603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4143349876721929
the lambda is 0.5297618658595622
the regulation term lambda/alpha is 1.2785834689844995
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.223127146257373
the lambda is 0.45783503837474726
the regulation term lambda/alpha is 2.0519020032042317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.295572174216296
the lambda is 0.47433043327757557
the regulation term lambda/alpha is 1.6047871709684909
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3134595339781971
the lambda is 0.5136547190001092
the regulation term lambda/alpha is 1.638663570002745
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30748470001944384
the lambda is 0.5447362048764847
the regulation term lambda/alpha is 1.771588000450228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33353590670463656
the lambda is 0.5215875956514331
the regulation term lambda/alpha is 1.563812426688219
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3255808258917633
the lambda is 0.5035495625444542
the regulation term lambda/alpha is 1.5466192186386771
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3361493896036769
the lambda is 0.5124942294364583
the regulation term lambda/alpha is 1.5246025882739025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3230016429461658
the lambda is 0.48759055455245065
the regulation term lambda/alpha is 1.5095606019369896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2847388872386011
the lambda is 0.5318433540941447
the regulation term lambda/alpha is 1.8678283084265863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34385347893104024
the lambda is 0.5523205771013222
the regulation term lambda/alpha is 1.606267235737609
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3385565383754833
the lambda is 0.43198632407699294
the regulation term lambda/alpha is 1.2759650903504023
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2939555627699489
the lambda is 0.4794645269671912
the regulation term lambda/alpha is 1.631078257030375
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3176148248849334
the lambda is 0.4703891407825874
the regulation term lambda/alpha is 1.4810049907242258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3357622211888957
the lambda is 0.5020223970404611
the regulation term lambda/alpha is 1.495172373064656
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32958469123638423
the lambda is 0.5142018201435617
the regulation term lambda/alpha is 1.5601508013452199
400
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28460647530541994
the lambda is 0.4371262879142577
the regulation term lambda/alpha is 1.5358971978594798
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40381416231371725
the lambda is 0.5191161182049565
the regulation term lambda/alpha is 1.2855322241067486
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25884394055753374
the lambda is 0.4762986635553726
the regulation term lambda/alpha is 1.8400997239087573
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28712015341989783
the lambda is 0.46716241172654593
the regulation term lambda/alpha is 1.6270624202521442
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.319137515152609
the lambda is 0.49358850439156077
the regulation term lambda/alpha is 1.5466326613326256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3830364321985043
the lambda is 0.5920260824745359
the regulation term lambda/alpha is 1.5456129827559721
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3295011605918012
the lambda is 0.5224693166478757
the regulation term lambda/alpha is 1.5856372575729132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3395217599137274
the lambda is 0.4353886834620372
the regulation term lambda/alpha is 1.2823587023484728
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2879934757697741
the lambda is 0.4603055993039971
the regulation term lambda/alpha is 1.5983195385716713
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37666692321780704
the lambda is 0.4723362430475412
the regulation term lambda/alpha is 1.253989171686343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3497210179236449
the lambda is 0.5215868979909734
the regulation term lambda/alpha is 1.4914370920218818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38656755295787204
the lambda is 0.5083092433783765
the regulation term lambda/alpha is 1.31492992489665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2868761769059832
the lambda is 0.4665731733882522
the regulation term lambda/alpha is 1.6263921892028015
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3480902871144531
the lambda is 0.47072736481340427
the regulation term lambda/alpha is 1.3523139893260732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34308245520424235
the lambda is 0.5436183981313583
the regulation term lambda/alpha is 1.5845123814557458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3267038165387136
the lambda is 0.5158346638450577
the regulation term lambda/alpha is 1.5789061459706963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32748855103829627
the lambda is 0.4237482425110338
the regulation term lambda/alpha is 1.2939329975583818
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30238158936118015
the lambda is 0.45987735974706856
the regulation term lambda/alpha is 1.520851056833911
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30693831343251554
the lambda is 0.5295106049305581
the regulation term lambda/alpha is 1.725136881769496
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3093320082461826
the lambda is 0.5133689650602616
the regulation term lambda/alpha is 1.6596050566215435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.270534503649136
the lambda is 0.44911416542297034
the regulation term lambda/alpha is 1.6600993934786206
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3014934219556726
the lambda is 0.4621405612702113
the regulation term lambda/alpha is 1.5328379580306666
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3203690675754072
the lambda is 0.5162043517383031
the regulation term lambda/alpha is 1.611280251383199
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26597374157056236
the lambda is 0.4960339378243052
the regulation term lambda/alpha is 1.8649733424632382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3571392583072444
the lambda is 0.5407905474186447
the regulation term lambda/alpha is 1.5142287912616048
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3318284223026583
the lambda is 0.47861250278655654
the regulation term lambda/alpha is 1.4423493306128476
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.41031358526162787
the lambda is 0.5538092590509328
the regulation term lambda/alpha is 1.3497219661830304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28699558344531384
the lambda is 0.5710445212238687
the regulation term lambda/alpha is 1.9897327839286405
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3533111109791242
the lambda is 0.5552058526119701
the regulation term lambda/alpha is 1.5714361517625044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36470699054359873
the lambda is 0.4833181836721536
the regulation term lambda/alpha is 1.325223251004221
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33536058521566686
the lambda is 0.5500958011826358
the regulation term lambda/alpha is 1.6403114302441801
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30500031401002103
the lambda is 0.4435164825884014
the regulation term lambda/alpha is 1.4541509048211316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32926962154769385
the lambda is 0.48771651788422543
the regulation term lambda/alpha is 1.4812071505162554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3689012395956509
the lambda is 0.5347245532056251
the regulation term lambda/alpha is 1.4495059810363649
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.316215240851986
the lambda is 0.4791662339947641
the regulation term lambda/alpha is 1.5153166960066047
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2888723180047893
the lambda is 0.49816724925105216
the regulation term lambda/alpha is 1.7245240135567192
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3029997866045517
the lambda is 0.45936316150692563
the regulation term lambda/alpha is 1.5160511056941617
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3232937100643769
the lambda is 0.5182115512664482
the regulation term lambda/alpha is 1.6029125687699204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34601422632048945
the lambda is 0.5370774905914207
the regulation term lambda/alpha is 1.5521832622395195
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35934816206235576
the lambda is 0.4989519791708523
the regulation term lambda/alpha is 1.388491807798009
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2859719806079043
the lambda is 0.5460876370065322
the regulation term lambda/alpha is 1.9095844139893972
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34495705764660073
the lambda is 0.5406528419609079
the regulation term lambda/alpha is 1.5673047701919822
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30235396758626787
the lambda is 0.4599700758842864
the regulation term lambda/alpha is 1.5212966429919508
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3121362055365946
the lambda is 0.48560841962585816
the regulation term lambda/alpha is 1.5557580665499755
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33759979715747
the lambda is 0.460422752932332
the regulation term lambda/alpha is 1.3638122913846789
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32814312069421453
the lambda is 0.526683785561856
the regulation term lambda/alpha is 1.6050428984999348
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3236022431575096
the lambda is 0.5362633191900881
the regulation term lambda/alpha is 1.6571681146507635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3417052510477445
the lambda is 0.5534208641933385
the regulation term lambda/alpha is 1.6195854833849543
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34428070612280864
the lambda is 0.4895746082714376
the regulation term lambda/alpha is 1.422021622369977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3452421594496845
the lambda is 0.5509515898215926
the regulation term lambda/alpha is 1.5958409908564142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29548865247552736
the lambda is 0.48438334636507074
the regulation term lambda/alpha is 1.6392620911396516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30077826179868156
the lambda is 0.5377388419115192
the regulation term lambda/alpha is 1.7878248205032894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33499267424153106
the lambda is 0.5244720160736932
the regulation term lambda/alpha is 1.5656223446114728
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26806189472106756
the lambda is 0.46341289406383673
the regulation term lambda/alpha is 1.7287533334271254
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31419833864482477
the lambda is 0.5047858873412115
the regulation term lambda/alpha is 1.606583566031615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32094998370662997
the lambda is 0.5592678157287296
the regulation term lambda/alpha is 1.7425388506638415
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30892051661099657
the lambda is 0.4875628787026397
the regulation term lambda/alpha is 1.5782793711839989
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3301064936159767
the lambda is 0.5184953748759354
the regulation term lambda/alpha is 1.5706912311731664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.308066661839951
the lambda is 0.5706132260801725
the regulation term lambda/alpha is 1.8522394558117474
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3048154038350108
the lambda is 0.4558797955999709
the regulation term lambda/alpha is 1.4955930371771091
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3002075426131029
the lambda is 0.555870887051153
the regulation term lambda/alpha is 1.8516219886171885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3306820949552961
the lambda is 0.5144388674951788
the regulation term lambda/alpha is 1.5556901185252385
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31411505330622175
the lambda is 0.5181537787155751
the regulation term lambda/alpha is 1.6495668490310837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36078630423010044
the lambda is 0.4697672748447716
the regulation term lambda/alpha is 1.3020651541838069
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32341144873526273
the lambda is 0.45364581403904775
the regulation term lambda/alpha is 1.4026894094599351
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30804348084894717
the lambda is 0.5261865704232536
the regulation term lambda/alpha is 1.7081568127107207
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3662579178297661
the lambda is 0.5835139606074595
the regulation term lambda/alpha is 1.5931777367845803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29954767448778724
the lambda is 0.47963122996777463
the regulation term lambda/alpha is 1.601184955910347
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27367757458468744
the lambda is 0.5085596205795575
the regulation term lambda/alpha is 1.858243669951071
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2712614433912893
the lambda is 0.48383540737957753
the regulation term lambda/alpha is 1.7836497562303921
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087615627252828
the lambda is 0.555135375792347
the regulation term lambda/alpha is 1.7979419811599817
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3280004905728112
the lambda is 0.5417014188221074
the regulation term lambda/alpha is 1.6515262458177873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31964932970212856
the lambda is 0.5132107602956846
the regulation term lambda/alpha is 1.6055430517371334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31158519713104715
the lambda is 0.4949122024642932
the regulation term lambda/alpha is 1.5883687897282937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30023765491223536
the lambda is 0.48432551812318947
the regulation term lambda/alpha is 1.6131404912044298
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3220072751366483
the lambda is 0.5627270818562818
the regulation term lambda/alpha is 1.7475601494328994
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3805284751446069
the lambda is 0.5427270793471489
the regulation term lambda/alpha is 1.4262456420400706
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3523484818543669
the lambda is 0.47472425322845696
the regulation term lambda/alpha is 1.3473145981218406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2994333354836267
the lambda is 0.450625298957718
the regulation term lambda/alpha is 1.5049269588835028
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29696556361813126
the lambda is 0.48694692906093795
the regulation term lambda/alpha is 1.6397420735526904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30241168535407953
the lambda is 0.49802139981628146
the regulation term lambda/alpha is 1.646832526438824
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282419343632497
the lambda is 0.569090661562777
the regulation term lambda/alpha is 1.7337536797872737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30126099402629075
the lambda is 0.531948330450552
the regulation term lambda/alpha is 1.7657391464496377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2860876627224785
the lambda is 0.5641888796981394
the regulation term lambda/alpha is 1.9720839211631265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3007718678991971
the lambda is 0.482591809865807
the regulation term lambda/alpha is 1.604511130766879
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3152573646093016
the lambda is 0.46037363298450923
the regulation term lambda/alpha is 1.4603104785674086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090674782849017
the lambda is 0.47225963105495145
the regulation term lambda/alpha is 1.528014638342561
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27843835596482985
the lambda is 0.5044883957819964
the regulation term lambda/alpha is 1.8118494990888376
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2909838021466596
the lambda is 0.5201095187679691
the regulation term lambda/alpha is 1.7874174264374592
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3082216599073281
the lambda is 0.4693553829012963
the regulation term lambda/alpha is 1.5227852028388131
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32189232289085296
the lambda is 0.4982001824346584
the regulation term lambda/alpha is 1.5477230956004744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31091939279102293
the lambda is 0.5791029482673237
the regulation term lambda/alpha is 1.862550106858577
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28256565290441893
the lambda is 0.5207112975938945
the regulation term lambda/alpha is 1.8427975666597773
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3071283438058374
the lambda is 0.49160138532553255
the regulation term lambda/alpha is 1.6006382844180498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29728013712629625
the lambda is 0.4848825046770226
the regulation term lambda/alpha is 1.631062570692456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3491825413880913
the lambda is 0.5675298151147898
the regulation term lambda/alpha is 1.6253098246513455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37233140968999967
the lambda is 0.5238278545190501
the regulation term lambda/alpha is 1.40688601844036
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.325029084188546
the lambda is 0.5105635762111193
the regulation term lambda/alpha is 1.5708242771128342
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2716318156079106
the lambda is 0.5204515540426479
the regulation term lambda/alpha is 1.9160183901060337
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26863954564631826
the lambda is 0.5030777080271219
the regulation term lambda/alpha is 1.8726867141498855
410
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2954073579350481
the lambda is 0.45326733137849234
the regulation term lambda/alpha is 1.5343806415213033
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2632234138754702
the lambda is 0.5446279061563671
the regulation term lambda/alpha is 2.0690709011700155
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38657765025438084
the lambda is 0.5331679406270519
the regulation term lambda/alpha is 1.3792001174310253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3642383536801142
the lambda is 0.5091302263308087
the regulation term lambda/alpha is 1.3977941125275983
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37648798817874146
the lambda is 0.5292440060721701
the regulation term lambda/alpha is 1.4057394198215594
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3293616061339118
the lambda is 0.48032388917569646
the regulation term lambda/alpha is 1.45834815057468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3169923578522924
the lambda is 0.5599748031750711
the regulation term lambda/alpha is 1.766524615826859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3025312125436746
the lambda is 0.43787851809896433
the regulation term lambda/alpha is 1.4473829474231539
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2698176561265023
the lambda is 0.40336386426021004
the regulation term lambda/alpha is 1.4949498489123907
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073059830986944
the lambda is 0.522063850470014
the regulation term lambda/alpha is 1.698840501593319
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3064423985103672
the lambda is 0.47249641304612056
the regulation term lambda/alpha is 1.5418767616457474
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.326561940320128
the lambda is 0.5079541487206286
the regulation term lambda/alpha is 1.555460346122032
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30634398627288745
the lambda is 0.5122628393855603
the regulation term lambda/alpha is 1.672181803266224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3310250374634134
the lambda is 0.5114720256904159
the regulation term lambda/alpha is 1.5451158305418107
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31154324190946675
the lambda is 0.5262702944436569
the regulation term lambda/alpha is 1.689236753197134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33549003104448666
the lambda is 0.47717422983617575
the regulation term lambda/alpha is 1.4223201457002503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159544467610077
the lambda is 0.4807320693600983
the regulation term lambda/alpha is 1.5215233534083814
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3052844213558278
the lambda is 0.4575483118016577
the regulation term lambda/alpha is 1.4987607614224017
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32788779257228445
the lambda is 0.49079923235502054
the regulation term lambda/alpha is 1.4968511895630316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24942400736687678
the lambda is 0.4670029820270552
the regulation term lambda/alpha is 1.8723257113744562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28002596813496256
the lambda is 0.5196748496969269
the regulation term lambda/alpha is 1.8558094920913266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33888689395688065
the lambda is 0.49892505321185077
the regulation term lambda/alpha is 1.4722465285875974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2912281622766756
the lambda is 0.5223566852093363
the regulation term lambda/alpha is 1.7936338337810944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3405525954156776
the lambda is 0.48749747352979866
the regulation term lambda/alpha is 1.4314895264115093
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28361172624333403
the lambda is 0.4962052323517769
the regulation term lambda/alpha is 1.7495934985637416
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2599982521520081
the lambda is 0.5437015908063543
the regulation term lambda/alpha is 2.0911740225410393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2692715896928411
the lambda is 0.4833246385601262
the regulation term lambda/alpha is 1.7949336545732733
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32085468552403384
the lambda is 0.47355232959387283
the regulation term lambda/alpha is 1.4759090359564067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29503772460308175
the lambda is 0.5434971356614834
the regulation term lambda/alpha is 1.8421276004370541
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38906833904989757
the lambda is 0.5256017852052601
the regulation term lambda/alpha is 1.3509240728473983
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2816791509763189
the lambda is 0.43601822257269385
the regulation term lambda/alpha is 1.5479250809349052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33328305137050884
the lambda is 0.5389766268831467
the regulation term lambda/alpha is 1.6171738246718388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.43286191391467305
the lambda is 0.6099366669999825
the regulation term lambda/alpha is 1.4090790790159813
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28851281029669174
the lambda is 0.4099523101736694
the regulation term lambda/alpha is 1.4209154517336529
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31400631218222985
the lambda is 0.4508794574317281
the regulation term lambda/alpha is 1.4358929739287072
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32116160487179324
the lambda is 0.477387887028036
the regulation term lambda/alpha is 1.4864413422600993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2793447915575301
the lambda is 0.4730131104761679
the regulation term lambda/alpha is 1.6932948985331358
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27899411713279987
the lambda is 0.5244642406927353
the regulation term lambda/alpha is 1.8798397832994194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3008001680988874
the lambda is 0.5481572361804455
the regulation term lambda/alpha is 1.822330218912112
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3212012970379741
the lambda is 0.5361813577697223
the regulation term lambda/alpha is 1.6693001015694282
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33603028852959144
the lambda is 0.4669224005190227
the regulation term lambda/alpha is 1.3895247436241291
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3801251122643333
the lambda is 0.49669008504299766
the regulation term lambda/alpha is 1.3066489664003225
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3071921111598487
the lambda is 0.45412693010599103
the regulation term lambda/alpha is 1.4783157301513001
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29045137697807105
the lambda is 0.5115576792165186
the regulation term lambda/alpha is 1.7612506593664419
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30982666092834577
the lambda is 0.45844364488387157
the regulation term lambda/alpha is 1.479677841507309
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3351633886008105
the lambda is 0.5413498817895948
the regulation term lambda/alpha is 1.6151820282326792
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35041494400321593
the lambda is 0.4932989392855293
the regulation term lambda/alpha is 1.407756568969279
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37347130853009475
the lambda is 0.5300322969705419
the regulation term lambda/alpha is 1.419204862233296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30286483228050254
the lambda is 0.5789034267054131
the regulation term lambda/alpha is 1.9114250484164945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33568070741595846
the lambda is 0.5921693694016246
the regulation term lambda/alpha is 1.7640852045388429
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33266363320748615
the lambda is 0.5118258480179013
the regulation term lambda/alpha is 1.5385686829755436
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2940847923361865
the lambda is 0.4907953087351021
the regulation term lambda/alpha is 1.6688904748738032
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26533148916362786
the lambda is 0.45759310639660117
the regulation term lambda/alpha is 1.7246091213636805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3071998205901197
the lambda is 0.46449072765187716
the regulation term lambda/alpha is 1.512014970450202
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2658242628446713
the lambda is 0.519272048664589
the regulation term lambda/alpha is 1.9534411310227706
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29930003496244884
the lambda is 0.4758322579056507
the regulation term lambda/alpha is 1.589816913871561
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36811239615418584
the lambda is 0.5651465720198605
the regulation term lambda/alpha is 1.53525547611047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34194824161041565
the lambda is 0.49835713115718266
the regulation term lambda/alpha is 1.4574051581904752
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2880149450045965
the lambda is 0.45637512287974974
the regulation term lambda/alpha is 1.5845536170786774
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38701543802208715
the lambda is 0.4800295853447766
the regulation term lambda/alpha is 1.240337046496272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27529671190909677
the lambda is 0.45097933167701393
the regulation term lambda/alpha is 1.6381573486643304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3531801710044061
the lambda is 0.5504734049452685
the regulation term lambda/alpha is 1.5586192264978578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3020032326001489
the lambda is 0.4885199978114651
the regulation term lambda/alpha is 1.6175985720598682
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34712089479181835
the lambda is 0.5337232045809006
the regulation term lambda/alpha is 1.5375715279283166
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27546347642787783
the lambda is 0.43741069434593294
the regulation term lambda/alpha is 1.587908132207343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2882394201856503
the lambda is 0.4953673624906433
the regulation term lambda/alpha is 1.7185968601088126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3903659178708614
the lambda is 0.5362408974710002
the regulation term lambda/alpha is 1.3736877963008962
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2707149270310161
the lambda is 0.49815743191409684
the regulation term lambda/alpha is 1.8401550198117538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3330487735686745
the lambda is 0.5466859437034053
the regulation term lambda/alpha is 1.641459110764985
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2726330624419046
the lambda is 0.46692679719168334
the regulation term lambda/alpha is 1.712656539194254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3549552115629214
the lambda is 0.5032882088895531
the regulation term lambda/alpha is 1.417892152290141
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3329721227421065
the lambda is 0.4709138183620033
the regulation term lambda/alpha is 1.4142740073370508
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30350690872427777
the lambda is 0.5231796733647088
the regulation term lambda/alpha is 1.723781760236614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33153228929507134
the lambda is 0.49257744900093275
the regulation term lambda/alpha is 1.4857601051417575
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32758064763623523
the lambda is 0.4821468090583362
the regulation term lambda/alpha is 1.4718415527212105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3158352132107779
the lambda is 0.5122943276653148
the regulation term lambda/alpha is 1.622030433077222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3929751949452522
the lambda is 0.6372558100884542
the regulation term lambda/alpha is 1.6216184081980907
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36316738734219467
the lambda is 0.4890482168951155
the regulation term lambda/alpha is 1.346619310930333
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2577324063593168
the lambda is 0.4854886226483264
the regulation term lambda/alpha is 1.8836925845152896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38586904053698473
the lambda is 0.5450593122855055
the regulation term lambda/alpha is 1.4125499976027818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3495744651893473
the lambda is 0.5778021103791698
the regulation term lambda/alpha is 1.6528727579292808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3342510937650821
the lambda is 0.4835329910837635
the regulation term lambda/alpha is 1.4466160323879134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31055181910549884
the lambda is 0.5013795559405764
the regulation term lambda/alpha is 1.6144795331894375
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2844873673351248
the lambda is 0.41009336996359486
the regulation term lambda/alpha is 1.4415169777310595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4757161117251143
the lambda is 0.6179593098671488
the regulation term lambda/alpha is 1.2990085780912706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34052746659183153
the lambda is 0.4565412553891163
the regulation term lambda/alpha is 1.3406884911763757
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3718540228302262
the lambda is 0.5721922537214408
the regulation term lambda/alpha is 1.5387550452363428
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34240777402201006
the lambda is 0.43782477432670874
the regulation term lambda/alpha is 1.2786648188033407
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32993539743684797
the lambda is 0.5177311095266098
the regulation term lambda/alpha is 1.5691893429704138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38153233085251653
the lambda is 0.5712889934748367
the regulation term lambda/alpha is 1.4973540832000205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37614416184038985
the lambda is 0.5258535100670926
the regulation term lambda/alpha is 1.3980105592871843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3267137226856512
the lambda is 0.6013167930846542
the regulation term lambda/alpha is 1.8405005707801672
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2933627402681009
the lambda is 0.5511811905531379
the regulation term lambda/alpha is 1.8788384307067068
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146315380756454
the lambda is 0.5374627518757192
the regulation term lambda/alpha is 1.7082291087630876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28111967236900787
the lambda is 0.461672764726547
the regulation term lambda/alpha is 1.642264167555441
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3387918850619788
the lambda is 0.5562668763928795
the regulation term lambda/alpha is 1.641913224371108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2917219533103733
the lambda is 0.545069286874677
the regulation term lambda/alpha is 1.868454810100488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2904665551497752
the lambda is 0.5006667895445818
the regulation term lambda/alpha is 1.723664155711213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246869972751849
the lambda is 0.49668070125606967
the regulation term lambda/alpha is 1.529721563919338
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34200762541001556
the lambda is 0.4851237165327396
the regulation term lambda/alpha is 1.418458772523418
420
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3441456688984997
the lambda is 0.5253321039133958
the regulation term lambda/alpha is 1.5264818110157132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33016880570204205
the lambda is 0.5429126364818542
the regulation term lambda/alpha is 1.6443486698492071
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30507570835917436
the lambda is 0.5158154567411882
the regulation term lambda/alpha is 1.6907785267973678
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28539894371649294
the lambda is 0.48485986544537396
the regulation term lambda/alpha is 1.6988845828631367
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32722340545845174
the lambda is 0.4966444303178864
the regulation term lambda/alpha is 1.517753382042063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3338826490926168
the lambda is 0.43993410297883645
the regulation term lambda/alpha is 1.3176309226443261
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3543886282408392
the lambda is 0.5012554489788553
the regulation term lambda/alpha is 1.4144230628027001
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28337771885235474
the lambda is 0.45743038882917275
the regulation term lambda/alpha is 1.6142073225859468
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2953417376611737
the lambda is 0.45352859477976076
the regulation term lambda/alpha is 1.5356061705713415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3206162622614978
the lambda is 0.46146733672945167
the regulation term lambda/alpha is 1.439313569044961
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30781743118184596
the lambda is 0.4635365030153489
the regulation term lambda/alpha is 1.5058812661636125
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3491217976307129
the lambda is 0.5849338321310358
the regulation term lambda/alpha is 1.6754434587030727
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3231247102847574
the lambda is 0.5092615504208324
the regulation term lambda/alpha is 1.5760526329665092
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26491978287478946
the lambda is 0.5110053086280754
the regulation term lambda/alpha is 1.9289058109699369
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2989910725676083
the lambda is 0.5636227182354399
the regulation term lambda/alpha is 1.885082097586685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3099628657408169
the lambda is 0.4853233217464881
the regulation term lambda/alpha is 1.5657466599637881
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3427341647633722
the lambda is 0.5019839001643479
the regulation term lambda/alpha is 1.464645056645939
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3057858719991404
the lambda is 0.5654752590569253
the regulation term lambda/alpha is 1.8492524045012613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33704944595186365
the lambda is 0.534430458029397
the regulation term lambda/alpha is 1.5856144089485396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37522456355606776
the lambda is 0.4970846449382841
the regulation term lambda/alpha is 1.3247657355566687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2788658155743659
the lambda is 0.5266653463921284
the regulation term lambda/alpha is 1.8885977304438775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2766282706084387
the lambda is 0.4861870325273017
the regulation term lambda/alpha is 1.7575464411426296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196272167725927
the lambda is 0.5458989082358826
the regulation term lambda/alpha is 1.7079237298627072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28072467375621013
the lambda is 0.47579877275488924
the regulation term lambda/alpha is 1.694894739349087
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3202375690256806
the lambda is 0.5098856170100625
the regulation term lambda/alpha is 1.5922104909845027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3177391779569484
the lambda is 0.5863720358015009
the regulation term lambda/alpha is 1.8454508492526864
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2868338877502602
the lambda is 0.6088802422777396
the regulation term lambda/alpha is 2.1227625754174415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3385927450853096
the lambda is 0.5573290909789383
the regulation term lambda/alpha is 1.646016044550858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31775803774878325
the lambda is 0.5484086136234955
the regulation term lambda/alpha is 1.725868580725132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3835139044339427
the lambda is 0.4675382448199652
the regulation term lambda/alpha is 1.2190907276492111
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28888668984112004
the lambda is 0.4457336388774808
the regulation term lambda/alpha is 1.542935879540253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34097870470054836
the lambda is 0.5400671598990171
the regulation term lambda/alpha is 1.583873574665933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28600210900205425
the lambda is 0.5743552057973149
the regulation term lambda/alpha is 2.0082201764225087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33104868303662743
the lambda is 0.5224422365280087
the regulation term lambda/alpha is 1.5781432257508947
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29582176703981494
the lambda is 0.5292062180019267
the regulation term lambda/alpha is 1.7889360316433385
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2999723408690772
the lambda is 0.5489365843647528
the regulation term lambda/alpha is 1.8299573313138757
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3142999234160984
the lambda is 0.4820990749758179
the regulation term lambda/alpha is 1.5338822540455153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30443828822606245
the lambda is 0.5039694827369307
the regulation term lambda/alpha is 1.6554076876253658
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3171878180479212
the lambda is 0.497743662549584
the regulation term lambda/alpha is 1.5692395301082598
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3280719274141719
the lambda is 0.5722189661478361
the regulation term lambda/alpha is 1.7441875342947055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.42007471829923076
the lambda is 0.5039050142179842
the regulation term lambda/alpha is 1.199560440719117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28502194605761794
the lambda is 0.46930477339495447
the regulation term lambda/alpha is 1.6465566244505372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2676255646717758
the lambda is 0.5972061598416168
the regulation term lambda/alpha is 2.231498924902966
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2979401376002194
the lambda is 0.4687445961751461
the regulation term lambda/alpha is 1.5732844857718185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211761951108768
the lambda is 0.5356920416639673
the regulation term lambda/alpha is 1.6679070548146793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3296357618357241
the lambda is 0.49630623880108776
the regulation term lambda/alpha is 1.5056201306471866
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3395476883971102
the lambda is 0.5024047651698806
the regulation term lambda/alpha is 1.479629466899226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28675127503621006
the lambda is 0.5528469430242926
the regulation term lambda/alpha is 1.927966817076858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298687852795593
the lambda is 0.4874738925850141
the regulation term lambda/alpha is 1.6320512803666536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3451037949946285
the lambda is 0.5251338164048213
the regulation term lambda/alpha is 1.5216692021975444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2977861798877574
the lambda is 0.4786046670251967
the regulation term lambda/alpha is 1.6072091297372968
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31273122374452766
the lambda is 0.5263013102779324
the regulation term lambda/alpha is 1.6829189742431079
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32533178436385113
the lambda is 0.5559557227372228
the regulation term lambda/alpha is 1.7088884316186022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3932091562310029
the lambda is 0.4578272520476374
the regulation term lambda/alpha is 1.1643351758031613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2689763310678548
the lambda is 0.5033317257209942
the regulation term lambda/alpha is 1.871286308809151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31442765892030233
the lambda is 0.492394981023698
the regulation term lambda/alpha is 1.5660040300351086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32000891040550306
the lambda is 0.5067787699756289
the regulation term lambda/alpha is 1.5836395597030664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26873128052408146
the lambda is 0.47703850011593785
the regulation term lambda/alpha is 1.775150623275468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215568064546841
the lambda is 0.485604634711682
the regulation term lambda/alpha is 1.510167488182579
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26248351769370754
the lambda is 0.46720600816108687
the regulation term lambda/alpha is 1.7799441742710502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32105664045285437
the lambda is 0.5149268421645645
the regulation term lambda/alpha is 1.6038504652582604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2830329748465618
the lambda is 0.4819686015868805
the regulation term lambda/alpha is 1.7028708469328209
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33575681601388657
the lambda is 0.4729057571486159
the regulation term lambda/alpha is 1.4084770125085322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4223010386285211
the lambda is 0.5815638708963202
the regulation term lambda/alpha is 1.3771310456280819
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2965445770783215
the lambda is 0.4913615526744067
the regulation term lambda/alpha is 1.6569567972393957
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37466505919976045
the lambda is 0.5477255626908617
the regulation term lambda/alpha is 1.4619072401913797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27885099399937435
the lambda is 0.5429042277947953
the regulation term lambda/alpha is 1.9469330914273641
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2824315195264771
the lambda is 0.41300334891493046
the regulation term lambda/alpha is 1.4623132347528678
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3058394365931613
the lambda is 0.42191735870513947
the regulation term lambda/alpha is 1.379538765193284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30287582954092274
the lambda is 0.4388269265927551
the regulation term lambda/alpha is 1.4488674360641363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29328762356759663
the lambda is 0.49817120341677146
the regulation term lambda/alpha is 1.6985756076473286
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3694655569288959
the lambda is 0.4511962410347018
the regulation term lambda/alpha is 1.2212132702847185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34094183394387106
the lambda is 0.6027235472754541
the regulation term lambda/alpha is 1.7678192796214027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3685927317415271
the lambda is 0.4866988359953473
the regulation term lambda/alpha is 1.3204243982126083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3255936235791128
the lambda is 0.5423126958481023
the regulation term lambda/alpha is 1.6656121513888646
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33234050493956024
the lambda is 0.5081799192031987
the regulation term lambda/alpha is 1.5290941418519444
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26307343003043376
the lambda is 0.4584577425545724
the regulation term lambda/alpha is 1.7426987685587843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27325689247366747
the lambda is 0.47994075160792926
the regulation term lambda/alpha is 1.7563719885095999
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2875238111538836
the lambda is 0.4771192962975645
the regulation term lambda/alpha is 1.6594079439292382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28151380211869265
the lambda is 0.49965101456686556
the regulation term lambda/alpha is 1.7748721760938786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3424991031625768
the lambda is 0.5067390528791516
the regulation term lambda/alpha is 1.4795339555637133
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3237694415715223
the lambda is 0.4858310751454066
the regulation term lambda/alpha is 1.5005464159534772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2404543260435549
the lambda is 0.4871104413570199
the regulation term lambda/alpha is 2.0257919637876958
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30029052924633437
the lambda is 0.55863930123426
the regulation term lambda/alpha is 1.8603294037821516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.296256092707804
the lambda is 0.590270161711081
the regulation term lambda/alpha is 1.992432143136586
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.332170726013345
the lambda is 0.5355536184588362
the regulation term lambda/alpha is 1.612284215669626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2758872660547723
the lambda is 0.517008017538074
the regulation term lambda/alpha is 1.8739828950112964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27607844342148213
the lambda is 0.47967813052719127
the regulation term lambda/alpha is 1.7374704253706565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4029704676645999
the lambda is 0.6215520871168349
the regulation term lambda/alpha is 1.5424259021238367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3318171219316258
the lambda is 0.510103020401412
the regulation term lambda/alpha is 1.537301684228711
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3585129090081111
the lambda is 0.48581367825016525
the regulation term lambda/alpha is 1.355080015373098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35394196617337176
the lambda is 0.43519560384647105
the regulation term lambda/alpha is 1.229567684644942
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30898090167715636
the lambda is 0.5502611836085611
the regulation term lambda/alpha is 1.7808906007514675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3232226898042531
the lambda is 0.5225956838295849
the regulation term lambda/alpha is 1.616828583866046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32501388881606236
the lambda is 0.5072077190673623
the regulation term lambda/alpha is 1.5605724448114595
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28348017150010035
the lambda is 0.4395376541503715
the regulation term lambda/alpha is 1.5505058143024861
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34851130203276165
the lambda is 0.5712684305503525
the regulation term lambda/alpha is 1.6391675885927242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3093780164135698
the lambda is 0.5229628293792262
the regulation term lambda/alpha is 1.6903684219118558
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3434488099247312
the lambda is 0.5248735927232495
the regulation term lambda/alpha is 1.528244028093382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3482062433354514
the lambda is 0.4991084064878777
the regulation term lambda/alpha is 1.4333700674259642
430
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36442077283737007
the lambda is 0.5493648384161457
the regulation term lambda/alpha is 1.5075014361525174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3173693706607546
the lambda is 0.45203590008109873
the regulation term lambda/alpha is 1.4243211282171686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35131735458379565
the lambda is 0.5317362365559526
the regulation term lambda/alpha is 1.513549585917549
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35020748381100014
the lambda is 0.528181714030544
the regulation term lambda/alpha is 1.5081965361870822
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31493773417647586
the lambda is 0.4879527227969342
the regulation term lambda/alpha is 1.5493625242236266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.307024063764063
the lambda is 0.5774571335435025
the regulation term lambda/alpha is 1.88082043623544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32378873268508257
the lambda is 0.49985099619139567
the regulation term lambda/alpha is 1.543756609583915
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.35171537494326066
the lambda is 0.4919743442027784
the regulation term lambda/alpha is 1.3987854363265881
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2866176289289981
the lambda is 0.5491834078351978
the regulation term lambda/alpha is 1.916083842739636
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2919935338780863
the lambda is 0.4989895049408855
the regulation term lambda/alpha is 1.7089060100530327
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3492597853840105
the lambda is 0.5906935974032744
the regulation term lambda/alpha is 1.6912728637046144
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31291886641713523
the lambda is 0.5140664750047708
the regulation term lambda/alpha is 1.6428107416172744
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36258195239229407
the lambda is 0.5228839589398191
the regulation term lambda/alpha is 1.4421124810263224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3547192218513861
the lambda is 0.5065113143428768
the regulation term lambda/alpha is 1.427921812917953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29802138060006145
the lambda is 0.5531467150415561
the regulation term lambda/alpha is 1.8560638633637752
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28334955109440896
the lambda is 0.4651501284286905
the regulation term lambda/alpha is 1.6416123711228596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31109058697098424
the lambda is 0.5511771721878207
the regulation term lambda/alpha is 1.7717577942634104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2773047359979169
the lambda is 0.49255051121489885
the regulation term lambda/alpha is 1.7762066321817125
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30600347643090947
the lambda is 0.4649594173428128
the regulation term lambda/alpha is 1.5194579576869383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2823078833296913
the lambda is 0.48687544828114265
the regulation term lambda/alpha is 1.7246257615574572
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3528106605564311
the lambda is 0.6106233914513431
the regulation term lambda/alpha is 1.730739628128883
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3107321641116485
the lambda is 0.464330551881391
the regulation term lambda/alpha is 1.4943111962962206
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.265034619663522
the lambda is 0.42481280493891627
the regulation term lambda/alpha is 1.6028577907227466
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2685217235605831
the lambda is 0.47032596538504357
the regulation term lambda/alpha is 1.7515378612521453
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32204902343467645
the lambda is 0.47459392589489113
the regulation term lambda/alpha is 1.4736698184435155
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3554130804343438
the lambda is 0.5607919337818206
the regulation term lambda/alpha is 1.5778595798907769
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3369687036342827
the lambda is 0.49900480369667727
the regulation term lambda/alpha is 1.4808639446773515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3492730092852419
the lambda is 0.6034609505612264
the regulation term lambda/alpha is 1.7277629090096567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29173257379315226
the lambda is 0.47461917652964625
the regulation term lambda/alpha is 1.6268981223405188
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27116538026551884
the lambda is 0.5407011170771914
the regulation term lambda/alpha is 1.9939902230430353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3891051117198009
the lambda is 0.5448429380506024
the regulation term lambda/alpha is 1.4002461587884512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2971875645905766
the lambda is 0.4660964257572628
the regulation term lambda/alpha is 1.5683577689375567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2598148991489964
the lambda is 0.5471212892432081
the regulation term lambda/alpha is 2.1058118338681173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3106796380052413
the lambda is 0.49939368872837847
the regulation term lambda/alpha is 1.6074232992377617
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3228483776457316
the lambda is 0.48839937212837076
the regulation term lambda/alpha is 1.5127824884543846
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.279362158134453
the lambda is 0.44800313017367666
the regulation term lambda/alpha is 1.6036643372366104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3816042132749179
the lambda is 0.6152009623783617
the regulation term lambda/alpha is 1.6121440512900063
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32902684620695793
the lambda is 0.42951119230544405
the regulation term lambda/alpha is 1.3053986240237718
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28339074142717463
the lambda is 0.49422475175724134
the regulation term lambda/alpha is 1.7439692957797162
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31967727310128796
the lambda is 0.5656327032854523
the regulation term lambda/alpha is 1.7693866623613084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38604748709161757
the lambda is 0.49149345019182195
the regulation term lambda/alpha is 1.273142467250874
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2878911241195622
the lambda is 0.5271359244743115
the regulation term lambda/alpha is 1.8310252741775743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30078317139391986
the lambda is 0.5293117559229117
the regulation term lambda/alpha is 1.7597784924931854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31200528739613587
the lambda is 0.4881009279962975
the regulation term lambda/alpha is 1.564399539731462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026778872007337
the lambda is 0.45050434311213566
the regulation term lambda/alpha is 1.4883952946762993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33521335675614916
the lambda is 0.5199071268092339
the regulation term lambda/alpha is 1.5509737793277736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33345220595219854
the lambda is 0.5597095984163359
the regulation term lambda/alpha is 1.6785302014063512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33520045809244975
the lambda is 0.4981358089393303
the regulation term lambda/alpha is 1.4860833179468456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2909237098298723
the lambda is 0.4578934251698487
the regulation term lambda/alpha is 1.5739295550631391
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29691989953040615
the lambda is 0.4952710657414994
the regulation term lambda/alpha is 1.6680292109919062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31913325403953313
the lambda is 0.45521994453160686
the regulation term lambda/alpha is 1.4264259169782907
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2809473608445878
the lambda is 0.4556713852352885
the regulation term lambda/alpha is 1.621910182268461
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2646197079899038
the lambda is 0.48934109844577633
the regulation term lambda/alpha is 1.849223937865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3508657745339292
the lambda is 0.5575771596611216
the regulation term lambda/alpha is 1.58914661996251
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3342230126890407
the lambda is 0.5544965530792968
the regulation term lambda/alpha is 1.659061560776479
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3084048811122365
the lambda is 0.4684464182214763
the regulation term lambda/alpha is 1.5189332170491703
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2983673754588329
the lambda is 0.4950574431058664
the regulation term lambda/alpha is 1.659221093943536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3962167004418402
the lambda is 0.5829683668829201
the regulation term lambda/alpha is 1.4713371905647192
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31435945578188307
the lambda is 0.5498992708492596
the regulation term lambda/alpha is 1.7492690635996164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3296218418217937
the lambda is 0.5845765376227882
the regulation term lambda/alpha is 1.7734763400139995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2973480319573708
the lambda is 0.5219164424740599
the regulation term lambda/alpha is 1.755237588217447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3279675784235926
the lambda is 0.5019854891818618
the regulation term lambda/alpha is 1.5305948581707463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3694632247339894
the lambda is 0.5322434549188887
the regulation term lambda/alpha is 1.4405857451769382
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.294139296047914
the lambda is 0.5384226935135424
the regulation term lambda/alpha is 1.8305024209544438
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3519941896580093
the lambda is 0.521298481723089
the regulation term lambda/alpha is 1.4809860419274887
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2697521075186054
the lambda is 0.45728552044514253
the regulation term lambda/alpha is 1.6952064792064787
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3599788369591268
the lambda is 0.5578630994840709
the regulation term lambda/alpha is 1.5497108224376326
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28214470840098693
the lambda is 0.5147412428424135
the regulation term lambda/alpha is 1.824387371145937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047946959528068
the lambda is 0.49017264669617727
the regulation term lambda/alpha is 1.6082059602903118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30614579802684255
the lambda is 0.5023470762748998
the regulation term lambda/alpha is 1.6408752937737676
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3255209699568203
the lambda is 0.5236099149859503
the regulation term lambda/alpha is 1.608528983725399
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3576599448679719
the lambda is 0.44516271961731024
the regulation term lambda/alpha is 1.2446535487266808
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33168543557164326
the lambda is 0.5775832420169682
the regulation term lambda/alpha is 1.7413584682171297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3261578147404628
the lambda is 0.5144221572261761
the regulation term lambda/alpha is 1.5772185548751085
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282364632072875
the lambda is 0.44263694363965284
the regulation term lambda/alpha is 1.3485306882560433
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35293752035849646
the lambda is 0.4682729933522251
the regulation term lambda/alpha is 1.3267872253326214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37369211531714214
the lambda is 0.564086369647003
the regulation term lambda/alpha is 1.5094949733372847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27951937212511563
the lambda is 0.49126618346192186
the regulation term lambda/alpha is 1.757538948828299
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3114929160808529
the lambda is 0.4842489373909195
the regulation term lambda/alpha is 1.5546065813747914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3268255037097432
the lambda is 0.4952785871638854
the regulation term lambda/alpha is 1.5154220877564895
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31156140292068624
the lambda is 0.5409416958387997
the regulation term lambda/alpha is 1.7362282066001176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2984440332068146
the lambda is 0.47761423169154177
the regulation term lambda/alpha is 1.6003477320672934
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2875265274117064
the lambda is 0.493496829589601
the regulation term lambda/alpha is 1.7163523450584708
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28421634942613105
the lambda is 0.48861655405560916
the regulation term lambda/alpha is 1.7191711702799226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31888303416987734
the lambda is 0.46146520502137706
the regulation term lambda/alpha is 1.4471299993198836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3083794902045428
the lambda is 0.5304524237002767
the regulation term lambda/alpha is 1.7201287392635507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2784626713760743
the lambda is 0.47010940575083177
the regulation term lambda/alpha is 1.6882313289163682
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3174078957253078
the lambda is 0.4924190958379099
the regulation term lambda/alpha is 1.5513763282815776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26681246997696795
the lambda is 0.49077098032678984
the regulation term lambda/alpha is 1.8393854693866245
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2633120625961719
the lambda is 0.501458020354648
the regulation term lambda/alpha is 1.9044247931919027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2682269719588789
the lambda is 0.5056314455378172
the regulation term lambda/alpha is 1.885087997844356
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28153468326373765
the lambda is 0.5261478110113272
the regulation term lambda/alpha is 1.868856102956379
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3487454430299896
the lambda is 0.578459096768398
the regulation term lambda/alpha is 1.6586857501064314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2656010847044581
the lambda is 0.4595254455241781
the regulation term lambda/alpha is 1.7301339188260665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.288735450111872
the lambda is 0.5022036167995328
the regulation term lambda/alpha is 1.7393209479644827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27801676379031226
the lambda is 0.46378196228546364
the regulation term lambda/alpha is 1.6681798462889112
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2768407866753184
the lambda is 0.5323898956247404
the regulation term lambda/alpha is 1.9230905316315707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3043091702774536
the lambda is 0.484139217637012
the regulation term lambda/alpha is 1.5909452127111339
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30786508583123984
the lambda is 0.5065647818667829
the regulation term lambda/alpha is 1.645411594819371
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29579029725681066
the lambda is 0.605201646954922
the regulation term lambda/alpha is 2.046049693203677
440
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32740146003629955
the lambda is 0.4778963225587984
the regulation term lambda/alpha is 1.4596646041401684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2839067494262641
the lambda is 0.5316974895052377
the regulation term lambda/alpha is 1.872789183701071
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32479050192256564
the lambda is 0.5271524319425183
the regulation term lambda/alpha is 1.62305371869587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3275663137584342
the lambda is 0.5550075754912951
the regulation term lambda/alpha is 1.6943365424949919
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27238385786500896
the lambda is 0.480998207416061
the regulation term lambda/alpha is 1.765883673086235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3094615282406649
the lambda is 0.5343250665467526
the regulation term lambda/alpha is 1.7266284102727423
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3754066511991224
the lambda is 0.47526641103034967
the regulation term lambda/alpha is 1.2660042370380375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212406085075432
the lambda is 0.5207843766826087
the regulation term lambda/alpha is 1.621166075802586
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32483114486707276
the lambda is 0.5650554751642625
the regulation term lambda/alpha is 1.7395360146130512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3505917520969452
the lambda is 0.5720115717092036
the regulation term lambda/alpha is 1.63156026429005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28915811143321
the lambda is 0.4901253965751557
the regulation term lambda/alpha is 1.6950082919889498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3057265830073661
the lambda is 0.47555219190402603
the regulation term lambda/alpha is 1.5554819840202387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321658071600893
the lambda is 0.47232292749938226
the regulation term lambda/alpha is 1.468400668911027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3110639207929494
the lambda is 0.5300790507126444
the regulation term lambda/alpha is 1.7040840010033693
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2763851736925947
the lambda is 0.5018269639956854
the regulation term lambda/alpha is 1.8156797533352314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3199915218822999
the lambda is 0.47158977258403206
the regulation term lambda/alpha is 1.4737570852189434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2666597904221731
the lambda is 0.4622041371827106
the regulation term lambda/alpha is 1.7333102094281019
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36716248104182164
the lambda is 0.5094491820858834
the regulation term lambda/alpha is 1.387530612170187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33801823734215575
the lambda is 0.523455810943668
the regulation term lambda/alpha is 1.5486022738288077
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3398116457549705
the lambda is 0.4171705834515119
the regulation term lambda/alpha is 1.2276524029206548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2980183018655505
the lambda is 0.5002646697871987
the regulation term lambda/alpha is 1.6786374080236546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36965595769093507
the lambda is 0.49838462847721454
the regulation term lambda/alpha is 1.348239134546583
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36155456789304846
the lambda is 0.5498776906870732
the regulation term lambda/alpha is 1.520870539380746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30085031949470137
the lambda is 0.55916146211643
the regulation term lambda/alpha is 1.8586035177080078
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32601367826381555
the lambda is 0.539561721875379
the regulation term lambda/alpha is 1.6550278649313508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3144612091585158
the lambda is 0.4809902357477765
the regulation term lambda/alpha is 1.5295693768871683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27110185045285456
the lambda is 0.5241151480219411
the regulation term lambda/alpha is 1.933277648774612
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31773017969916173
the lambda is 0.503895734037921
the regulation term lambda/alpha is 1.5859234225562944
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2927887167612202
the lambda is 0.427841118711398
the regulation term lambda/alpha is 1.4612623172235082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3018438266466975
the lambda is 0.5024174405416054
the regulation term lambda/alpha is 1.6644946697209597
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2937692796298118
the lambda is 0.5169060820746578
the regulation term lambda/alpha is 1.7595647942699384
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298662209065031
the lambda is 0.5706966179785464
the regulation term lambda/alpha is 1.9108430884681578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33583027881201444
the lambda is 0.5832875961996494
the regulation term lambda/alpha is 1.7368523120160722
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36822264125085347
the lambda is 0.5759172397066278
the regulation term lambda/alpha is 1.5640462459077342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3571047676233322
the lambda is 0.5107909305113889
the regulation term lambda/alpha is 1.4303671550253907
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3448462355755448
the lambda is 0.4578865551422374
the regulation term lambda/alpha is 1.3277991983239414
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2993214308943884
the lambda is 0.466699090974177
the regulation term lambda/alpha is 1.5591903646179133
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35458990960268216
the lambda is 0.47009665601585476
the regulation term lambda/alpha is 1.325747414929539
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2876261502415995
the lambda is 0.5412109727077362
the regulation term lambda/alpha is 1.881647312850835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3374707144523453
the lambda is 0.5107103479515754
the regulation term lambda/alpha is 1.5133471619318646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2894563985571941
the lambda is 0.42879206614236887
the regulation term lambda/alpha is 1.4813701416852365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.332350614240967
the lambda is 0.5094866925450643
the regulation term lambda/alpha is 1.5329795424288484
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3295870349270384
the lambda is 0.5148024449184094
the regulation term lambda/alpha is 1.5619620627139434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3401310615160536
the lambda is 0.4918374575704845
the regulation term lambda/alpha is 1.4460233516404988
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31630056401742157
the lambda is 0.47594448308173637
the regulation term lambda/alpha is 1.5047222080056795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33001106561227317
the lambda is 0.5665318367975231
the regulation term lambda/alpha is 1.7167055769673367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40811285698288463
the lambda is 0.4766283671145209
the regulation term lambda/alpha is 1.1678837335293988
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36898843870345255
the lambda is 0.47192671390186935
the regulation term lambda/alpha is 1.2789742561043922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36351477504830343
the lambda is 0.5616847806182035
the regulation term lambda/alpha is 1.5451497963007623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3018000347335485
the lambda is 0.478850985974331
the regulation term lambda/alpha is 1.5866498703258807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3075230009591652
the lambda is 0.5016440790392653
the regulation term lambda/alpha is 1.6312408420659135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.305591378907066
the lambda is 0.5157715313182584
the regulation term lambda/alpha is 1.6877816814168396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3188142215526311
the lambda is 0.4827221003204672
the regulation term lambda/alpha is 1.51411721211683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28655409805738985
the lambda is 0.5231888394310027
the regulation term lambda/alpha is 1.8257943019409222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2610672232273743
the lambda is 0.44093215386894224
the regulation term lambda/alpha is 1.6889602165221487
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3197188908623262
the lambda is 0.4585178494714229
the regulation term lambda/alpha is 1.434128112463848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2866369955813157
the lambda is 0.4947899591080243
the regulation term lambda/alpha is 1.7261901524768735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3420198114786506
the lambda is 0.5336361718688922
the regulation term lambda/alpha is 1.5602493012373424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2962646478396895
the lambda is 0.5183147981102287
the regulation term lambda/alpha is 1.7494993138387942
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36416085766790013
the lambda is 0.5110246881002336
the regulation term lambda/alpha is 1.4032938393567473
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215933009135914
the lambda is 0.4448530415161782
the regulation term lambda/alpha is 1.3832783215708382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3519356856603146
the lambda is 0.5219336181707125
the regulation term lambda/alpha is 1.4830369281576024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3571215933363508
the lambda is 0.5441965633417171
the regulation term lambda/alpha is 1.5238411048115255
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3111875306157908
the lambda is 0.6112634475895881
the regulation term lambda/alpha is 1.9642928698974365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34784221498847623
the lambda is 0.5739554183815341
the regulation term lambda/alpha is 1.650045318393999
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2739149604680083
the lambda is 0.5205609729037475
the regulation term lambda/alpha is 1.900447394382265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35437227137466215
the lambda is 0.4608453440136575
the regulation term lambda/alpha is 1.30045542848477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3424331492051018
the lambda is 0.4989054447626853
the regulation term lambda/alpha is 1.456942605938725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3521353279230672
the lambda is 0.5290656695152888
the regulation term lambda/alpha is 1.5024498468693164
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.23478154263223824
the lambda is 0.4607287536802082
the regulation term lambda/alpha is 1.9623721205456668
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3398510605463478
the lambda is 0.5379580580108677
the regulation term lambda/alpha is 1.5829229932254478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3966462153583744
the lambda is 0.5152184367427028
the regulation term lambda/alpha is 1.2989369790839855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29608970007821744
the lambda is 0.46862804824625376
the regulation term lambda/alpha is 1.582723235973616
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36261608237247395
the lambda is 0.49702096798805695
the regulation term lambda/alpha is 1.370653404935097
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2945148944805468
the lambda is 0.4918299895662158
the regulation term lambda/alpha is 1.6699664389934683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36367263579218356
the lambda is 0.5583644449751518
the regulation term lambda/alpha is 1.5353490750242276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38067426559877526
the lambda is 0.4711287728419561
the regulation term lambda/alpha is 1.2376165541447934
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3336463367593088
the lambda is 0.5755279306724335
the regulation term lambda/alpha is 1.7249640330612024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3398506358619743
the lambda is 0.4811821982306596
the regulation term lambda/alpha is 1.4158637573539372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29675972713756715
the lambda is 0.48355280694352265
the regulation term lambda/alpha is 1.6294421470449896
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3225506722734557
the lambda is 0.526687446017561
the regulation term lambda/alpha is 1.6328828035151015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29503406883654676
the lambda is 0.5209328857825728
the regulation term lambda/alpha is 1.765670276103528
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2774225048375893
the lambda is 0.48865590241066154
the regulation term lambda/alpha is 1.761414066593963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2853296201929175
the lambda is 0.5574480010681546
the regulation term lambda/alpha is 1.953698325085394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30709052695577344
the lambda is 0.5164990850977434
the regulation term lambda/alpha is 1.6819114878529895
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24598670366653747
the lambda is 0.5129719386084443
the regulation term lambda/alpha is 2.085364497195894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3027496264700896
the lambda is 0.5277381675004604
the regulation term lambda/alpha is 1.7431505156707396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2920087360499511
the lambda is 0.5199194152507522
the regulation term lambda/alpha is 1.7804926738966285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2699831514975729
the lambda is 0.4520944795344032
the regulation term lambda/alpha is 1.6745284919694976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35348680185982784
the lambda is 0.5446946168634725
the regulation term lambda/alpha is 1.5409192478973133
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3342755854606211
the lambda is 0.4981774219820831
the regulation term lambda/alpha is 1.49031949580048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3652747639479643
the lambda is 0.5748499644425241
the regulation term lambda/alpha is 1.5737467276124641
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33100516339543645
the lambda is 0.48519700469398946
the regulation term lambda/alpha is 1.465829111899222
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37416242268084915
the lambda is 0.5482269601087559
the regulation term lambda/alpha is 1.465211167334084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3204736324075193
the lambda is 0.5234742425475215
the regulation term lambda/alpha is 1.6334393522954906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33962215819204195
the lambda is 0.5045656295416542
the regulation term lambda/alpha is 1.4856675790168665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36852580362522647
the lambda is 0.49698678057558393
the regulation term lambda/alpha is 1.3485806846811634
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35572838972893467
the lambda is 0.5025047259987534
the regulation term lambda/alpha is 1.4126078786730023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29871155539620853
the lambda is 0.494844152139565
the regulation term lambda/alpha is 1.656595277953703
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33332421563856507
the lambda is 0.5198626221140855
the regulation term lambda/alpha is 1.5596305270475472
450
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.346315034069736
the lambda is 0.5325687944783023
the regulation term lambda/alpha is 1.5378159828055895
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2836421246791474
the lambda is 0.4985329452345532
the regulation term lambda/alpha is 1.7576125048368176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3918145507966512
the lambda is 0.48975385493231316
the regulation term lambda/alpha is 1.2499634174803573
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3056208843250887
the lambda is 0.46083379626086135
the regulation term lambda/alpha is 1.5078609476526244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2740706963843675
the lambda is 0.4846470409848299
the regulation term lambda/alpha is 1.768328564047365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28753302744055254
the lambda is 0.4519602968209065
the regulation term lambda/alpha is 1.5718552433575628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3296792166928507
the lambda is 0.4750306650950063
the regulation term lambda/alpha is 1.4408875083489836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2878783885115757
the lambda is 0.48526030031201817
the regulation term lambda/alpha is 1.6856433816410141
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37177405058280616
the lambda is 0.5348520901304388
the regulation term lambda/alpha is 1.4386482577038007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2951061269616968
the lambda is 0.4381314087770291
the regulation term lambda/alpha is 1.4846571072172154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32369032423028715
the lambda is 0.4744176616267581
the regulation term lambda/alpha is 1.4656528975800867
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235433568212428
the lambda is 0.5047449974529337
the regulation term lambda/alpha is 1.5600536583781706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29076235957199004
the lambda is 0.519409898807456
the regulation term lambda/alpha is 1.7863725537653543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38783962462363475
the lambda is 0.557280645289162
the regulation term lambda/alpha is 1.436884242629812
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4070787206560325
the lambda is 0.4847217785684247
the regulation term lambda/alpha is 1.190732293221482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31063335572610473
the lambda is 0.6581614713832149
the regulation term lambda/alpha is 2.1187726921494443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32767854713595057
the lambda is 0.4719877271288381
the regulation term lambda/alpha is 1.4403986200934145
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32228350106637405
the lambda is 0.4952585035842512
the regulation term lambda/alpha is 1.5367169028061822
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28750418753776125
the lambda is 0.5201368967267436
the regulation term lambda/alpha is 1.8091454638671236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3150663873994719
the lambda is 0.4641384611414833
the regulation term lambda/alpha is 1.4731449615188665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30784450872682645
the lambda is 0.4740616742517077
the regulation term lambda/alpha is 1.539938705459834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3493553153284083
the lambda is 0.5524139237733771
the regulation term lambda/alpha is 1.58123806776515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25140134827137256
the lambda is 0.5063659368315429
the regulation term lambda/alpha is 2.0141735130431817
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31747771749262593
the lambda is 0.5193840343852943
the regulation term lambda/alpha is 1.6359700406292548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159863184590668
the lambda is 0.5263469611887672
the regulation term lambda/alpha is 1.6657270598155687
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2866277132499299
the lambda is 0.5653768849726063
the regulation term lambda/alpha is 1.9725129805561274
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32996625653801737
the lambda is 0.45971359267012235
the regulation term lambda/alpha is 1.3932139531278285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3462307889255156
the lambda is 0.5749848286605101
the regulation term lambda/alpha is 1.6606981442779956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34324189212200157
the lambda is 0.5192178185063661
the regulation term lambda/alpha is 1.5126877878933722
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34382243119084416
the lambda is 0.5022124346704228
the regulation term lambda/alpha is 1.4606738511242208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27800635539093377
the lambda is 0.5058215068240738
the regulation term lambda/alpha is 1.8194602282123562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2729296908484394
the lambda is 0.5349056310736712
the regulation term lambda/alpha is 1.9598660351347033
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31677492713564437
the lambda is 0.5335301394744815
the regulation term lambda/alpha is 1.684256214021704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3037768997776827
the lambda is 0.49520646570961985
the regulation term lambda/alpha is 1.6301649864490477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33706496430489963
the lambda is 0.5320497926485697
the regulation term lambda/alpha is 1.5784784803895908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30072624962852434
the lambda is 0.5166110211122803
the regulation term lambda/alpha is 1.717878042739635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30971626538142366
the lambda is 0.49104247053188144
the regulation term lambda/alpha is 1.5854590973036233
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27643571275400486
the lambda is 0.5567020864422417
the regulation term lambda/alpha is 2.013857330140411
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3053430837164509
the lambda is 0.4588626026417207
the regulation term lambda/alpha is 1.5027771287848517
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3517797320283888
the lambda is 0.47019425170382273
the regulation term lambda/alpha is 1.3366155264052502
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3245890682242231
the lambda is 0.4663352976457472
the regulation term lambda/alpha is 1.4366944031633473
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33920459977031264
the lambda is 0.47975857162404817
the regulation term lambda/alpha is 1.4143634017607944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3938190722068332
the lambda is 0.5451602646680588
the regulation term lambda/alpha is 1.3842911711034183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3187860928510858
the lambda is 0.44652382676399033
the regulation term lambda/alpha is 1.4007004595792532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3623787099280865
the lambda is 0.5065599344773698
the regulation term lambda/alpha is 1.3978744352224661
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35300152773063326
the lambda is 0.5601328950717621
the regulation term lambda/alpha is 1.5867718722712885
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2904612069609523
the lambda is 0.4300097502787223
the regulation term lambda/alpha is 1.480437800206931
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3099640085948831
the lambda is 0.500207698451354
the regulation term lambda/alpha is 1.613760580523127
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3253838665427645
the lambda is 0.49324445569191433
the regulation term lambda/alpha is 1.5158847945741287
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31909384276713537
the lambda is 0.48096267416263944
the regulation term lambda/alpha is 1.5072765741632652
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32242887557447036
the lambda is 0.5216767597293425
the regulation term lambda/alpha is 1.6179591818501766
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29904618498206237
the lambda is 0.4760887819227136
the regulation term lambda/alpha is 1.592024261908811
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2754966611034728
the lambda is 0.5238518609144104
the regulation term lambda/alpha is 1.9014817051363782
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33269214151429904
the lambda is 0.4729604252000086
the regulation term lambda/alpha is 1.4216158609796343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2787542816021868
the lambda is 0.5106803993902411
the regulation term lambda/alpha is 1.8320091675543788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30067146668542405
the lambda is 0.4956511853971569
the regulation term lambda/alpha is 1.64848095118959
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3239212820184561
the lambda is 0.46804750899688097
the regulation term lambda/alpha is 1.4449421355717311
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28525326339416635
the lambda is 0.4628453214613895
the regulation term lambda/alpha is 1.6225767795049706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.288141022208204
the lambda is 0.4485896257249925
the regulation term lambda/alpha is 1.5568405438669268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29485790494324016
the lambda is 0.553663451793943
the regulation term lambda/alpha is 1.8777297217129814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3247521225666602
the lambda is 0.540799342962803
the regulation term lambda/alpha is 1.6652680779685924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.285922553466746
the lambda is 0.4237875043158512
the regulation term lambda/alpha is 1.4821758520883506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29352187786193634
the lambda is 0.455901962815112
the regulation term lambda/alpha is 1.553212885308516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30563209153319754
the lambda is 0.41838869835579257
the regulation term lambda/alpha is 1.3689292124297343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2784482826706689
the lambda is 0.5066215754558245
the regulation term lambda/alpha is 1.8194458611728075
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32951147517348794
the lambda is 0.5639022270627144
the regulation term lambda/alpha is 1.7113280402930418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33509734785322165
the lambda is 0.5683133842958029
the regulation term lambda/alpha is 1.6959650320620676
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2947796371338069
the lambda is 0.44432413099013174
the regulation term lambda/alpha is 1.507309444133834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300996296921228
the lambda is 0.484762405213333
the regulation term lambda/alpha is 1.4685336232138795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2902207211582435
the lambda is 0.4516113992526143
the regulation term lambda/alpha is 1.5560963305799664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052546431172058
the lambda is 0.526027001446289
the regulation term lambda/alpha is 1.7232399680299548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2710882642928354
the lambda is 0.5457562198007113
the regulation term lambda/alpha is 2.0132048918619865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3591628893041212
the lambda is 0.571871289304859
the regulation term lambda/alpha is 1.5922337923410201
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 0.28574996790554025
the lambda is 0.4734116557343152
the regulation term lambda/alpha is 1.6567338894358508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3254393764892571
the lambda is 0.4862825438811642
the regulation term lambda/alpha is 1.4942338850542158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34479541030767863
the lambda is 0.5194353136170469
the regulation term lambda/alpha is 1.506502981444933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3439099945200545
the lambda is 0.5895209260115536
the regulation term lambda/alpha is 1.7141721246986812
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3244537475193073
the lambda is 0.46330005208025854
the regulation term lambda/alpha is 1.427938668061428
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.343303478311308
the lambda is 0.5417816975990314
the regulation term lambda/alpha is 1.578142173985616
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26729381358733084
the lambda is 0.5189012672146986
the regulation term lambda/alpha is 1.9413141675467998
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.293772219326442
the lambda is 0.5321152094404359
the regulation term lambda/alpha is 1.811319023495361
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35642582987211585
the lambda is 0.5565772792654752
the regulation term lambda/alpha is 1.5615514719154133
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3476197618617908
the lambda is 0.556763473794323
the regulation term lambda/alpha is 1.6016450584178386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32549569289922753
the lambda is 0.5255169554589555
the regulation term lambda/alpha is 1.6145127782740092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32730304966866147
the lambda is 0.5122884477836549
the regulation term lambda/alpha is 1.565180795908439
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2988335234434844
the lambda is 0.5154193624471171
the regulation term lambda/alpha is 1.7247708908555353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35699434510429123
the lambda is 0.5468916454721507
the regulation term lambda/alpha is 1.5319336369666683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2824080675597357
the lambda is 0.5022081703048177
the regulation term lambda/alpha is 1.7783067411790185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2734117174333252
the lambda is 0.47784699993641644
the regulation term lambda/alpha is 1.7477195360251716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36086714415820387
the lambda is 0.5676271778502227
the regulation term lambda/alpha is 1.5729533348743308
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2810867406600756
the lambda is 0.5405151334286223
the regulation term lambda/alpha is 1.9229478137578861
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33829620915581765
the lambda is 0.5186641497891352
the regulation term lambda/alpha is 1.5331657161734287
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29538515907113544
the lambda is 0.524408470308228
the regulation term lambda/alpha is 1.7753379078260956
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33143739969629715
the lambda is 0.4676382153702792
the regulation term lambda/alpha is 1.4109397907381171
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2788526308022171
the lambda is 0.49191066652597865
the regulation term lambda/alpha is 1.7640524498937864
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2937717781493702
the lambda is 0.4322686728773087
the regulation term lambda/alpha is 1.4714438384803552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34440851472733874
the lambda is 0.5510712485864082
the regulation term lambda/alpha is 1.6000511747587896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30090959720235144
the lambda is 0.4669487239019454
the regulation term lambda/alpha is 1.551790731313692
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32420599849193527
the lambda is 0.4642380595227193
the regulation term lambda/alpha is 1.4319231034655497
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2888907637737908
the lambda is 0.47323993297845635
the regulation term lambda/alpha is 1.6381275981153065
460
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2670361163501456
the lambda is 0.530171070157091
the regulation term lambda/alpha is 1.9853908804677007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35210116777067746
the lambda is 0.5627951697755993
the regulation term lambda/alpha is 1.5983905232093585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3601040730563192
the lambda is 0.5722834065760016
the regulation term lambda/alpha is 1.5892166998247148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2992532448990914
the lambda is 0.5009688347099077
the regulation term lambda/alpha is 1.6740631663955228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3759411275676972
the lambda is 0.5148045464669789
the regulation term lambda/alpha is 1.369375438643052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29257300521956303
the lambda is 0.5468247919784299
the regulation term lambda/alpha is 1.8690199786821147
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3465172100477322
the lambda is 0.48996177891443327
the regulation term lambda/alpha is 1.413960879019376
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2857351611357399
the lambda is 0.5129312952916459
the regulation term lambda/alpha is 1.7951283743059379
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27888382940017703
the lambda is 0.5603375000863366
the regulation term lambda/alpha is 2.009214737518162
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33092955549453246
the lambda is 0.5822883585629212
the regulation term lambda/alpha is 1.759553805016795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3428630292407952
the lambda is 0.4729742225955451
the regulation term lambda/alpha is 1.3794844653938232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30675837200523715
the lambda is 0.4958149443455873
the regulation term lambda/alpha is 1.6163045236696016
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.341192463613785
the lambda is 0.5503558552576724
the regulation term lambda/alpha is 1.6130363766787392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3133386396723758
the lambda is 0.4995274693358715
the regulation term lambda/alpha is 1.5942096061250957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3401024494271758
the lambda is 0.5520806064095635
the regulation term lambda/alpha is 1.6232773605112694
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34916235486373304
the lambda is 0.5202622855318442
the regulation term lambda/alpha is 1.4900297190826486
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3206836051546839
the lambda is 0.5536876287938105
the regulation term lambda/alpha is 1.726585394119963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30073744406296726
the lambda is 0.4519489198244414
the regulation term lambda/alpha is 1.5028022906579404
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36832058654545546
the lambda is 0.5430628409951933
the regulation term lambda/alpha is 1.4744297789289398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2952715649743986
the lambda is 0.5054642361726792
the regulation term lambda/alpha is 1.711862218146557
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2648654018313104
the lambda is 0.48487039365466705
the regulation term lambda/alpha is 1.8306294076244627
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2893456382430936
the lambda is 0.4739562753121529
the regulation term lambda/alpha is 1.6380280628732296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3109278634077056
the lambda is 0.5759667757637694
the regulation term lambda/alpha is 1.8524128698254692
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3193239518831248
the lambda is 0.5847891142129478
the regulation term lambda/alpha is 1.831334952371457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3095476226320693
the lambda is 0.46474573040743916
the regulation term lambda/alpha is 1.5013706984913255
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3578635126542716
the lambda is 0.5223929607577242
the regulation term lambda/alpha is 1.4597547452746404
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32575574304575133
the lambda is 0.5102960765360529
the regulation term lambda/alpha is 1.56649909458199
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.22995979592071097
the lambda is 0.4743709268945795
the regulation term lambda/alpha is 2.0628428764919424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3327908121318531
the lambda is 0.4632026030009694
the regulation term lambda/alpha is 1.3918731711182177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2980089250997274
the lambda is 0.5350325470036722
the regulation term lambda/alpha is 1.7953574606016445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34044357598082114
the lambda is 0.5468881107532418
the regulation term lambda/alpha is 1.6063986790693643
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.309299387067721
the lambda is 0.4677237351503298
the regulation term lambda/alpha is 1.5122038862880833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35204637911877706
the lambda is 0.4679161946816169
the regulation term lambda/alpha is 1.3291322463048156
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.257378864631292
the lambda is 0.46702552992674806
the regulation term lambda/alpha is 1.8145449922462955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4031410423448563
the lambda is 0.5489657003267532
the regulation term lambda/alpha is 1.3617211910097584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35135261437503557
the lambda is 0.5041386686759315
the regulation term lambda/alpha is 1.4348510529021177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2879620925097434
the lambda is 0.48779298260311704
the regulation term lambda/alpha is 1.6939485970244927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34416798578841346
the lambda is 0.5478341795368691
the regulation term lambda/alpha is 1.5917639122706344
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3092750357303787
the lambda is 0.4623059743743702
the regulation term lambda/alpha is 1.4948053381760873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.304331416009894
the lambda is 0.48029701692599713
the regulation term lambda/alpha is 1.5782038647971275
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3005423917762902
the lambda is 0.5433836232469594
the regulation term lambda/alpha is 1.8080099117978303
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36136204394188026
the lambda is 0.5056881000944599
the regulation term lambda/alpha is 1.3993946198062581
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3118329123792791
the lambda is 0.4529582885254171
the regulation term lambda/alpha is 1.4525672901854845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.357717998862103
the lambda is 0.4846533564066781
the regulation term lambda/alpha is 1.354847555751612
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36290319745168986
the lambda is 0.5516935116780144
the regulation term lambda/alpha is 1.520222239848015
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29749310181636873
the lambda is 0.5025595019398718
the regulation term lambda/alpha is 1.6893148072054551
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3492300603042103
the lambda is 0.5280983555080889
the regulation term lambda/alpha is 1.5121789775143313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31128305258549205
the lambda is 0.5271976546290417
the regulation term lambda/alpha is 1.6936278742134538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2885390083968754
the lambda is 0.46669439998330986
the regulation term lambda/alpha is 1.617439536429639
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.309381896253212
the lambda is 0.5546703716666739
the regulation term lambda/alpha is 1.7928339647020162
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34341578415423984
the lambda is 0.564166924328836
the regulation term lambda/alpha is 1.6428101163674211
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36461624284685196
the lambda is 0.5286304194307954
the regulation term lambda/alpha is 1.449826851660126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33749372232257324
the lambda is 0.4752592685706476
the regulation term lambda/alpha is 1.4082018038735529
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3095392451081786
the lambda is 0.549026045654848
the regulation term lambda/alpha is 1.773688003480699
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3546660265693265
the lambda is 0.4562008174387565
the regulation term lambda/alpha is 1.2862828217621318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3067707187262898
the lambda is 0.5422077551724028
the regulation term lambda/alpha is 1.7674690642693873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.291985032729752
the lambda is 0.4749493929381549
the regulation term lambda/alpha is 1.626622393955879
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3418211332458382
the lambda is 0.5848538485959515
the regulation term lambda/alpha is 1.7109938260468052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.329511878417223
the lambda is 0.5411599891288071
the regulation term lambda/alpha is 1.6423079851573619
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3477196644785268
the lambda is 0.5649610093649843
the regulation term lambda/alpha is 1.624760021013632
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31994141160419154
the lambda is 0.5422258230883823
the regulation term lambda/alpha is 1.6947659897155953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3771951163113951
the lambda is 0.4889553535831264
the regulation term lambda/alpha is 1.2962929063468234
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3320046814621721
the lambda is 0.5538606728921238
the regulation term lambda/alpha is 1.6682315154499696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29520722593997145
the lambda is 0.4656770835164197
the regulation term lambda/alpha is 1.5774582821733238
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36462979712940335
the lambda is 0.5883779644916798
the regulation term lambda/alpha is 1.613631055727655
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29104594095245084
the lambda is 0.48873261246853295
the regulation term lambda/alpha is 1.6792284093334215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37327160873543225
the lambda is 0.5791383471340692
the regulation term lambda/alpha is 1.5515199484259499
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3627829021842749
the lambda is 0.5677812912449738
the regulation term lambda/alpha is 1.5650718041738647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257114136220237
the lambda is 0.5370493725004185
the regulation term lambda/alpha is 1.6488503320416177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39565005764011557
the lambda is 0.5319839057710761
the regulation term lambda/alpha is 1.3445818988227476
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3351376394831571
the lambda is 0.5222447706871451
the regulation term lambda/alpha is 1.5582993646805565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38282939831121204
the lambda is 0.5660470923518038
the regulation term lambda/alpha is 1.4785883603736443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28766231669951137
the lambda is 0.5276437939711413
the regulation term lambda/alpha is 1.8342471826864681
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3552143249978193
the lambda is 0.5200667208464705
the regulation term lambda/alpha is 1.4640927582232595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3419624006446447
the lambda is 0.47314139107112707
the regulation term lambda/alpha is 1.3836064730484767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3092042768314575
the lambda is 0.5325203214067705
the regulation term lambda/alpha is 1.722228187991847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3545069282623978
the lambda is 0.5667454836765883
the regulation term lambda/alpha is 1.598686622161292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30756498273277344
the lambda is 0.4404314572499247
the regulation term lambda/alpha is 1.4319948042739046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3281106664301906
the lambda is 0.5054313583732708
the regulation term lambda/alpha is 1.5404295260264185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32460737195589784
the lambda is 0.5414735670573119
the regulation term lambda/alpha is 1.6680877079121854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27555325142238934
the lambda is 0.49055971564539025
the regulation term lambda/alpha is 1.780271918814786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2616385236639978
the lambda is 0.4864013794108158
the regulation term lambda/alpha is 1.8590587219314216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36906092455173073
the lambda is 0.5267302846977051
the regulation term lambda/alpha is 1.4272177021652535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3197982521384626
the lambda is 0.5268626446103711
the regulation term lambda/alpha is 1.6474844408538425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2873120398636111
the lambda is 0.48565824840742156
the regulation term lambda/alpha is 1.6903511897307426
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27670273914614274
the lambda is 0.5011896947341957
the regulation term lambda/alpha is 1.8112928563005242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2915730448942714
the lambda is 0.4410061182438315
the regulation term lambda/alpha is 1.5125064746768575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3110674421533555
the lambda is 0.47465460254540875
the regulation term lambda/alpha is 1.525889688935704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26824019896345463
the lambda is 0.5008626683018154
the regulation term lambda/alpha is 1.8672170324853268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2816181862060244
the lambda is 0.4817289218646203
the regulation term lambda/alpha is 1.7105746200360803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37486018312273006
the lambda is 0.5204492381005033
the regulation term lambda/alpha is 1.3883822863366286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3714936052190466
the lambda is 0.5530111754921321
the regulation term lambda/alpha is 1.4886155985539935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2883249928162232
the lambda is 0.45224631274835375
the regulation term lambda/alpha is 1.568529693978396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2845745197802647
the lambda is 0.4590074466122842
the regulation term lambda/alpha is 1.6129604539672369
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38368906289135585
the lambda is 0.6104282523861052
the regulation term lambda/alpha is 1.590945146536408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.44397218807823147
the lambda is 0.566723723613077
the regulation term lambda/alpha is 1.276484741231619
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3341358557295025
the lambda is 0.5019902677445268
the regulation term lambda/alpha is 1.5023537855539508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4117798501044398
the lambda is 0.5407129306372848
the regulation term lambda/alpha is 1.313111679700072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3039342457638586
the lambda is 0.509513828344883
the regulation term lambda/alpha is 1.6763949289898359
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3232382910018743
the lambda is 0.535270853353971
the regulation term lambda/alpha is 1.6559636288600077
470
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2748538258925601
the lambda is 0.5582402466132229
the regulation term lambda/alpha is 2.0310441188162254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35021441310038615
the lambda is 0.5517332574819487
the regulation term lambda/alpha is 1.5754156220971944
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32135551341764806
the lambda is 0.40520755603283354
the regulation term lambda/alpha is 1.2609323291933305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31944861476679326
the lambda is 0.46844555816298894
the regulation term lambda/alpha is 1.46641912504447
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31580085760326543
the lambda is 0.48066242942139725
the regulation term lambda/alpha is 1.5220428249287539
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2866105058886991
the lambda is 0.47571842427721445
the regulation term lambda/alpha is 1.6598080478667192
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31320040455902115
the lambda is 0.5370345560717823
the regulation term lambda/alpha is 1.7146675044303163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.322655090161372
the lambda is 0.5136784773099675
the regulation term lambda/alpha is 1.592035870418339
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29431316840954524
the lambda is 0.5313228842498233
the regulation term lambda/alpha is 1.805297694021194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29219698003715816
the lambda is 0.5477766591385768
the regulation term lambda/alpha is 1.87468282207748
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3044940312754045
the lambda is 0.41852174430242745
the regulation term lambda/alpha is 1.3744825885400977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2776417464612621
the lambda is 0.49964926052126446
the regulation term lambda/alpha is 1.7996186340478084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32526766348830977
the lambda is 0.49762888697175595
the regulation term lambda/alpha is 1.529905806298021
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35494806858125255
the lambda is 0.478256836217333
the regulation term lambda/alpha is 1.3473994607970472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30734773314520303
the lambda is 0.5155497875114279
the regulation term lambda/alpha is 1.677415291909318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31986005648285076
the lambda is 0.4571060650727397
the regulation term lambda/alpha is 1.4290814242298095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31285573895047425
the lambda is 0.48489257324340523
the regulation term lambda/alpha is 1.549891892250584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3108003229160838
the lambda is 0.48747858098406355
the regulation term lambda/alpha is 1.5684622731736446
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30141006074320303
the lambda is 0.5284520926811384
the regulation term lambda/alpha is 1.75326626914213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35645684067617445
the lambda is 0.5764135364994695
the regulation term lambda/alpha is 1.6170640333512807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2916509027659386
the lambda is 0.5331431728586874
the regulation term lambda/alpha is 1.828018249909399
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3327223814801524
the lambda is 0.5092721057841597
the regulation term lambda/alpha is 1.530621725892338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3143504523116841
the lambda is 0.49836558027456823
the regulation term lambda/alpha is 1.5853821001677129
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3072478402334295
the lambda is 0.47997413150252355
the regulation term lambda/alpha is 1.5621725156403587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3066445051227414
the lambda is 0.5212827206089802
the regulation term lambda/alpha is 1.6999578074954418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34170828193095
the lambda is 0.5311940993469114
the regulation term lambda/alpha is 1.5545250947539264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3613850316602251
the lambda is 0.5584268644617403
the regulation term lambda/alpha is 1.5452407143048865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29449397733384314
the lambda is 0.5361008714613744
the regulation term lambda/alpha is 1.8204137018858004
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2822609852077801
the lambda is 0.4749040595285483
the regulation term lambda/alpha is 1.6824998296486435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3202994507576125
the lambda is 0.48169477713586667
the regulation term lambda/alpha is 1.5038888639880639
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3391015845302126
the lambda is 0.5008498318352588
the regulation term lambda/alpha is 1.476990538186751
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32697593199104436
the lambda is 0.48715636371315996
the regulation term lambda/alpha is 1.4898844717613737
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28929182583135127
the lambda is 0.41909292551209293
the regulation term lambda/alpha is 1.4486856803082018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2857597490696831
the lambda is 0.4751234950472331
the regulation term lambda/alpha is 1.6626676660867772
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32194820987044026
the lambda is 0.49323922025690703
the regulation term lambda/alpha is 1.5320452331615648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32850016705422497
the lambda is 0.4494410863136183
the regulation term lambda/alpha is 1.368160906412659
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31121621168270064
the lambda is 0.4710576499800604
the regulation term lambda/alpha is 1.5136025447810717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30171164972225273
the lambda is 0.45416109499951607
the regulation term lambda/alpha is 1.5052819319956787
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3727615674752626
the lambda is 0.5319921419323494
the regulation term lambda/alpha is 1.427164676700888
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34975246783160513
the lambda is 0.47439498894723564
the regulation term lambda/alpha is 1.356373528651246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3222530461028691
the lambda is 0.4867572883872161
the regulation term lambda/alpha is 1.5104815742589885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33427707071320206
the lambda is 0.5659176056418459
the regulation term lambda/alpha is 1.6929596889024532
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3247518966143204
the lambda is 0.4987852459751928
the regulation term lambda/alpha is 1.5358963293986754
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3037738520479832
the lambda is 0.5175376692470826
the regulation term lambda/alpha is 1.7036939346752396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3397080393496829
the lambda is 0.5075665129951912
the regulation term lambda/alpha is 1.4941257026676398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.42831201969188387
the lambda is 0.5358027909556269
the regulation term lambda/alpha is 1.2509637047801483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3505172985367696
the lambda is 0.5128172470173783
the regulation term lambda/alpha is 1.4630297824333576
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30232219241105257
the lambda is 0.5716309790411985
the regulation term lambda/alpha is 1.890800587553229
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080474236623719
the lambda is 0.4715371478128207
the regulation term lambda/alpha is 1.5307290747856985
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3406800330276583
the lambda is 0.523120172999873
the regulation term lambda/alpha is 1.5355175598371602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2876509207951891
the lambda is 0.5072844166487269
the regulation term lambda/alpha is 1.7635417792036878
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30328341509248913
the lambda is 0.4751988386057955
the regulation term lambda/alpha is 1.5668474270539294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3791721539224303
the lambda is 0.489541175697443
the regulation term lambda/alpha is 1.2910789218914835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4064324677773773
the lambda is 0.5501470562711333
the regulation term lambda/alpha is 1.3536001670331008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2879890883129583
the lambda is 0.47743911961349894
the regulation term lambda/alpha is 1.6578375327007702
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27568342635591775
the lambda is 0.4772834114537425
the regulation term lambda/alpha is 1.7312735036800926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3330970585506813
the lambda is 0.5347445496632246
the regulation term lambda/alpha is 1.6053715754498694
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27093088900819
the lambda is 0.5207326108848425
the regulation term lambda/alpha is 1.9220127051260705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3302288030726398
the lambda is 0.567841620184522
the regulation term lambda/alpha is 1.719539951999932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2965661238342885
the lambda is 0.5315363027949882
the regulation term lambda/alpha is 1.7923028292064587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3465474219257732
the lambda is 0.53060125746473
the regulation term lambda/alpha is 1.5311072133105614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2968601563193368
the lambda is 0.5454258172019133
the regulation term lambda/alpha is 1.8373156706661258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37812000843083343
the lambda is 0.5807632735118745
the regulation term lambda/alpha is 1.5359231475795045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3399966382692352
the lambda is 0.5035028916762004
the regulation term lambda/alpha is 1.4809055002405305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3535226558179585
the lambda is 0.5512639106804306
the regulation term lambda/alpha is 1.5593453534256547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2979133212468629
the lambda is 0.563214922036571
the regulation term lambda/alpha is 1.8905328559304957
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3340704813578999
the lambda is 0.5189077708701705
the regulation term lambda/alpha is 1.553288302399423
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29168871213160175
the lambda is 0.5306011329030808
the regulation term lambda/alpha is 1.819066391104255
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3071310014881647
the lambda is 0.4731093105531223
the regulation term lambda/alpha is 1.5404153545579264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2915039077295772
the lambda is 0.5256880587820408
the regulation term lambda/alpha is 1.8033653918276527
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.36701008021587855
the lambda is 0.5379855154418851
the regulation term lambda/alpha is 1.4658603249410407
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3572581738376483
the lambda is 0.5368149695857469
the regulation term lambda/alpha is 1.5025967462670178
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33632565047953183
the lambda is 0.5373923642298903
the regulation term lambda/alpha is 1.5978334196742898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33525327302071145
the lambda is 0.5553345268629907
the regulation term lambda/alpha is 1.6564626554106243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2973532139000413
the lambda is 0.5621517618635637
the regulation term lambda/alpha is 1.890518533465515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31861560955607704
the lambda is 0.48971645036974315
the regulation term lambda/alpha is 1.5370133655788512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3400700769574582
the lambda is 0.6207886897971362
the regulation term lambda/alpha is 1.8254728418072346
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3115121633429803
the lambda is 0.43235712611414345
the regulation term lambda/alpha is 1.3879301580853867
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2859791870361365
the lambda is 0.4054639712464763
the regulation term lambda/alpha is 1.4178093708450246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30904753707385846
the lambda is 0.4915472164029289
the regulation term lambda/alpha is 1.5905230019207541
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32719136468636556
the lambda is 0.5918235567823953
the regulation term lambda/alpha is 1.8087994386700794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32071139052230435
the lambda is 0.511367247283652
the regulation term lambda/alpha is 1.594477971146735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3709046169384079
the lambda is 0.5859623809333753
the regulation term lambda/alpha is 1.5798195928919365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3909348921344757
the lambda is 0.523773427352055
the regulation term lambda/alpha is 1.339797081023622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3470073441191741
the lambda is 0.5307820707262795
the regulation term lambda/alpha is 1.5295989543782995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35727862219584605
the lambda is 0.5464088796619022
the regulation term lambda/alpha is 1.529363487531539
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28184443544888393
the lambda is 0.5300109356660881
the regulation term lambda/alpha is 1.8805087807462226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31350276039950065
the lambda is 0.47939560285201255
the regulation term lambda/alpha is 1.529159112478348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3032206743367625
the lambda is 0.5106138290030005
the regulation term lambda/alpha is 1.6839677245618923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.325181364313248
the lambda is 0.4989397646899809
the regulation term lambda/alpha is 1.5343430449764366
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3144988912592418
the lambda is 0.5480817961484672
the regulation term lambda/alpha is 1.7427145576061276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2691008843922549
the lambda is 0.5140071557853397
the regulation term lambda/alpha is 1.9100909197908738
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33806339906210614
the lambda is 0.488289619110466
the regulation term lambda/alpha is 1.4443729207750218
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27047797053213635
the lambda is 0.4924783769267051
the regulation term lambda/alpha is 1.8207707487519476
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3242201968735067
the lambda is 0.47474593184439107
the regulation term lambda/alpha is 1.464270074543232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27056734714407593
the lambda is 0.49059572807540097
the regulation term lambda/alpha is 1.8132111404195455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2621849059138533
the lambda is 0.4783565750520082
the regulation term lambda/alpha is 1.8245008170271362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3393009378989459
the lambda is 0.5102798381326046
the regulation term lambda/alpha is 1.5039152007430683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367314639716696
the lambda is 0.5080750952941606
the regulation term lambda/alpha is 1.5088435434619998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3362653175765119
the lambda is 0.5079944227458397
the regulation term lambda/alpha is 1.5106952641057119
480
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30614339155346476
the lambda is 0.5279240672898797
the regulation term lambda/alpha is 1.7244339804659259
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30926948403236854
the lambda is 0.4666334468476803
the regulation term lambda/alpha is 1.508824733573914
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3082975820253396
the lambda is 0.4717187637476036
the regulation term lambda/alpha is 1.5300761058477328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30629907626189823
the lambda is 0.5280768074216505
the regulation term lambda/alpha is 1.7240561540907922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34917565513168297
the lambda is 0.5197279746564863
the regulation term lambda/alpha is 1.4884427565847447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34591784766046757
the lambda is 0.522361409656039
the regulation term lambda/alpha is 1.5100736003906858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2825952936149451
the lambda is 0.4751524524817253
the regulation term lambda/alpha is 1.6813884138111377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3450277232199392
the lambda is 0.485157984849975
the regulation term lambda/alpha is 1.4061420349712284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31616110364162114
the lambda is 0.5712078639175171
the regulation term lambda/alpha is 1.8066987283957603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3716859352743605
the lambda is 0.4915354659303722
the regulation term lambda/alpha is 1.3224483879583568
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29868270652855866
the lambda is 0.499423316785613
the regulation term lambda/alpha is 1.672086484651767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.365002276870265
the lambda is 0.49169958652050366
the regulation term lambda/alpha is 1.3471137515541347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2790015451138855
the lambda is 0.4355807974017271
the regulation term lambda/alpha is 1.5612128500002667
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27129568623126193
the lambda is 0.48732818346767004
the regulation term lambda/alpha is 1.796299050078719
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2940067386000451
the lambda is 0.5431898183520134
the regulation term lambda/alpha is 1.84754206974469
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34637745721823093
the lambda is 0.4787050943325355
the regulation term lambda/alpha is 1.3820330519688906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3957095917570318
the lambda is 0.5389381865016255
the regulation term lambda/alpha is 1.36195381089609
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3045902933800493
the lambda is 0.49799555065755363
the regulation term lambda/alpha is 1.6349685511356233
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31505024456914255
the lambda is 0.4868594350914862
the regulation term lambda/alpha is 1.5453390165029297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37711005390885516
the lambda is 0.508343960686599
the regulation term lambda/alpha is 1.3479989605619536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4048753050888434
the lambda is 0.5444019818041985
the regulation term lambda/alpha is 1.344616416367351
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37486403749323294
the lambda is 0.5425533404754268
the regulation term lambda/alpha is 1.4473336629023024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27673508049587425
the lambda is 0.5075141588899613
the regulation term lambda/alpha is 1.833935032669368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3449651835895061
the lambda is 0.480853362202879
the regulation term lambda/alpha is 1.3939185317178966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28911305777821733
the lambda is 0.5109438689219911
the regulation term lambda/alpha is 1.7672804986689437
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2920022567933432
the lambda is 0.5424291152629477
the regulation term lambda/alpha is 1.8576195993130198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3092142822940137
the lambda is 0.5196138334346988
the regulation term lambda/alpha is 1.6804328363481882
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2824987797141953
the lambda is 0.4967374079111215
the regulation term lambda/alpha is 1.7583701013281259
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.297690051721145
the lambda is 0.506329171740479
the regulation term lambda/alpha is 1.70086023638698
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2775923751248731
the lambda is 0.4716561459591919
the regulation term lambda/alpha is 1.6990961864389125
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3120909893426808
the lambda is 0.5194766499282563
the regulation term lambda/alpha is 1.664503839160389
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35876022240484173
the lambda is 0.4261067602178014
the regulation term lambda/alpha is 1.187720191947486
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211332118557031
the lambda is 0.5029852796562947
the regulation term lambda/alpha is 1.5662823435475257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2977146923134824
the lambda is 0.5935071387571593
the regulation term lambda/alpha is 1.9935433288331588
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32740246038563176
the lambda is 0.5560995839508318
the regulation term lambda/alpha is 1.6985198684696157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2535285400117825
the lambda is 0.44774603772804844
the regulation term lambda/alpha is 1.7660577294660391
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3415341921938389
the lambda is 0.5313111557443448
the regulation term lambda/alpha is 1.5556602175948386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32233344886261533
the lambda is 0.5054356085565703
the regulation term lambda/alpha is 1.5680519981405858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2691197491543192
the lambda is 0.41668919933419063
the regulation term lambda/alpha is 1.5483412148071374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33394468662231663
the lambda is 0.6019367976393982
the regulation term lambda/alpha is 1.8025044917698427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.290241429142715
the lambda is 0.4944171910308923
the regulation term lambda/alpha is 1.7034687035935927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2897521544564114
the lambda is 0.6029692884281784
the regulation term lambda/alpha is 2.0809829337054526
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30398196148348977
the lambda is 0.5190563581392216
the regulation term lambda/alpha is 1.7075235504308475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29986453782389233
the lambda is 0.46762660274171297
the regulation term lambda/alpha is 1.559459501731231
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2766375978562653
the lambda is 0.5142993403771668
the regulation term lambda/alpha is 1.859108611275555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3844449128956116
the lambda is 0.4978430420231472
the regulation term lambda/alpha is 1.294965872414409
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30757697233674325
the lambda is 0.5337103403775822
the regulation term lambda/alpha is 1.7352090318167979
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.303768743196461
the lambda is 0.5545208298473868
the regulation term lambda/alpha is 1.8254703364551008
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3346541546199975
the lambda is 0.5112598289252209
the regulation term lambda/alpha is 1.5277259279979973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3353419398473067
the lambda is 0.5547312924898982
the regulation term lambda/alpha is 1.6542258112495185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.342759590618308
the lambda is 0.5227286767117285
the regulation term lambda/alpha is 1.5250592281568902
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34002029029729003
the lambda is 0.4748862592497777
the regulation term lambda/alpha is 1.3966409440876904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32486111137757007
the lambda is 0.44966943780771
the regulation term lambda/alpha is 1.3841898031466173
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2943564195565284
the lambda is 0.4638550783380628
the regulation term lambda/alpha is 1.5758279674582865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2691844314931542
the lambda is 0.5067937622008771
the regulation term lambda/alpha is 1.8827008656842241
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.340189591484806
the lambda is 0.5164910057742019
the regulation term lambda/alpha is 1.5182445868490664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37424730725939165
the lambda is 0.5281073470788773
the regulation term lambda/alpha is 1.4111186288719104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32369266434593347
the lambda is 0.5755913704041109
the regulation term lambda/alpha is 1.7782033200139835
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2948905002163544
the lambda is 0.42831350377616495
the regulation term lambda/alpha is 1.4524493107167615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3293295567084703
the lambda is 0.4441054754605979
the regulation term lambda/alpha is 1.3485138713308074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3556494265174646
the lambda is 0.45685270374377795
the regulation term lambda/alpha is 1.2845590901616246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36971144200687256
the lambda is 0.5517017723733836
the regulation term lambda/alpha is 1.4922496565933385
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36548327729836577
the lambda is 0.5009927022877181
the regulation term lambda/alpha is 1.3707677844825932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32815866194925863
the lambda is 0.579874918826436
the regulation term lambda/alpha is 1.7670565676431815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3133346835055795
the lambda is 0.538692587299012
the regulation term lambda/alpha is 1.7192242533515112
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29077034433483845
the lambda is 0.4843085677483649
the regulation term lambda/alpha is 1.6656050975771322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30602046490125084
the lambda is 0.546031821998683
the regulation term lambda/alpha is 1.7842983872823048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28228199199778753
the lambda is 0.49658371286383013
the regulation term lambda/alpha is 1.7591760258930094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29078686423792577
the lambda is 0.5554740237544774
the regulation term lambda/alpha is 1.910244553894226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29821174716031656
the lambda is 0.4938262303051469
the regulation term lambda/alpha is 1.6559583417070063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30903015273060347
the lambda is 0.5343416399473147
the regulation term lambda/alpha is 1.7290922430249909
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26620837003315173
the lambda is 0.47281689550155975
the regulation term lambda/alpha is 1.7761158127472794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27974735289529207
the lambda is 0.4725691325347074
the regulation term lambda/alpha is 1.689271149999362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30314995143873985
the lambda is 0.4509857766443236
the regulation term lambda/alpha is 1.4876656733869154
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3824490452734603
the lambda is 0.5373721620587469
the regulation term lambda/alpha is 1.4050817192510257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32397436796072676
the lambda is 0.4492704563578783
the regulation term lambda/alpha is 1.3867469182387304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2767521404508211
the lambda is 0.49559136937238685
the regulation term lambda/alpha is 1.7907408721937366
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.327465720453217
the lambda is 0.5430421889916482
the regulation term lambda/alpha is 1.658317665250795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25108721829640324
the lambda is 0.44764849859874295
the regulation term lambda/alpha is 1.78284064651313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3127871639071996
the lambda is 0.4653452564362157
the regulation term lambda/alpha is 1.487737701967458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2996870651351786
the lambda is 0.48504218501336294
the regulation term lambda/alpha is 1.6184955623445976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2934120169507598
the lambda is 0.472747418036892
the regulation term lambda/alpha is 1.6112067356676403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3337327943496636
the lambda is 0.46166869582334813
the regulation term lambda/alpha is 1.3833483063089138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35816369981615465
the lambda is 0.5510922553684469
the regulation term lambda/alpha is 1.5386602708519104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2621411219115552
the lambda is 0.4596876378369283
the regulation term lambda/alpha is 1.7535884278088352
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2989647320701878
the lambda is 0.5371992654023747
the regulation term lambda/alpha is 1.7968650070612902
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2865872286399769
the lambda is 0.47653600633258375
the regulation term lambda/alpha is 1.6627956821175331
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34883314388682873
the lambda is 0.575360842500048
the regulation term lambda/alpha is 1.649386970771078
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3609124084424946
the lambda is 0.5279057787455492
the regulation term lambda/alpha is 1.4626977803941652
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2746878810666372
the lambda is 0.45514834411890814
the regulation term lambda/alpha is 1.6569655070020821
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4201405761378455
the lambda is 0.4842152734766963
the regulation term lambda/alpha is 1.1525077580648346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26949579659071915
the lambda is 0.476398200784887
the regulation term lambda/alpha is 1.767738891706681
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34317069471875344
the lambda is 0.5426564737396639
the regulation term lambda/alpha is 1.5813019062842752
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3304430081934709
the lambda is 0.5061074894612773
the regulation term lambda/alpha is 1.5316029600025813
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32197535324792353
the lambda is 0.5499114911488221
the regulation term lambda/alpha is 1.7079303915706427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29908014776580627
the lambda is 0.5139426553865541
the regulation term lambda/alpha is 1.7184111323530415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2890570216515905
the lambda is 0.5040292540528586
the regulation term lambda/alpha is 1.7437018176309202
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2853958877951058
the lambda is 0.5075727619551758
the regulation term lambda/alpha is 1.7784865993569514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3292478095284813
the lambda is 0.506158476481516
the regulation term lambda/alpha is 1.5373176732941367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3814015902160796
the lambda is 0.6034119071209096
the regulation term lambda/alpha is 1.5820906954767864
490
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3623523238239909
the lambda is 0.5504286046310951
the regulation term lambda/alpha is 1.5190425683552686
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31369009922710245
the lambda is 0.49271356451427817
the regulation term lambda/alpha is 1.5707016757247667
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3187282214223104
the lambda is 0.4621928127057354
the regulation term lambda/alpha is 1.4501157463974188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34822669768641756
the lambda is 0.5001762363304094
the regulation term lambda/alpha is 1.436352352227813
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3828792401449119
the lambda is 0.5356711235896134
the regulation term lambda/alpha is 1.3990602451751444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298927640212356
the lambda is 0.631909219289138
the regulation term lambda/alpha is 2.1139203415255756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3431462140664289
the lambda is 0.48903715844249435
the regulation term lambda/alpha is 1.425156794379852
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.336741363370567
the lambda is 0.5727237111790009
the regulation term lambda/alpha is 1.7007821832352301
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28580826645391677
the lambda is 0.4615077907992397
the regulation term lambda/alpha is 1.614746125174278
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.276428631219109
the lambda is 0.47415039651843116
the regulation term lambda/alpha is 1.7152723812556145
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2767740996362041
the lambda is 0.5142359180875187
the regulation term lambda/alpha is 1.857962572232871
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26385619844014474
the lambda is 0.466685848125374
the regulation term lambda/alpha is 1.7687128476962453
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32485211997022756
the lambda is 0.4864322524777427
the regulation term lambda/alpha is 1.4973959613448846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3402494028688789
the lambda is 0.5378431052038036
the regulation term lambda/alpha is 1.5807319591713462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3883385097311063
the lambda is 0.5041304414828166
the regulation term lambda/alpha is 1.298172673711621
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3558939300790028
the lambda is 0.46601115260579434
the regulation term lambda/alpha is 1.3094102293409369
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32070230234543623
the lambda is 0.4682323164376716
the regulation term lambda/alpha is 1.4600216868207176
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30475288672015605
the lambda is 0.45839980516361983
the regulation term lambda/alpha is 1.5041688697260887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31868727200013197
the lambda is 0.4973328004706116
the regulation term lambda/alpha is 1.5605668759510598
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.38917976257293757
the lambda is 0.4812267322106326
the regulation term lambda/alpha is 1.2365153034401273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31407771046063504
the lambda is 0.4910526901063846
the regulation term lambda/alpha is 1.563475132909601
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31360403693630823
the lambda is 0.440188437006386
the regulation term lambda/alpha is 1.4036440388545972
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3051087331244697
the lambda is 0.459127023183198
the regulation term lambda/alpha is 1.5047980386582256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2891960045895249
the lambda is 0.5301873699183394
the regulation term lambda/alpha is 1.8333149888113758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3043920144263461
the lambda is 0.4708362239481134
the regulation term lambda/alpha is 1.5468087257001346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.338177825521784
the lambda is 0.5626013870176235
the regulation term lambda/alpha is 1.6636258931216739
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33177777065876474
the lambda is 0.5073051331005347
the regulation term lambda/alpha is 1.5290510033063693
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3371980474235278
the lambda is 0.5526168125192038
the regulation term lambda/alpha is 1.6388493846321284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.23729372923820616
the lambda is 0.4438445703126634
the regulation term lambda/alpha is 1.870443739653618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2711872505997092
the lambda is 0.5062833314871796
the regulation term lambda/alpha is 1.8669142091583362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29962081221776454
the lambda is 0.4647302539596007
the regulation term lambda/alpha is 1.5510613248783083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30171240456106313
the lambda is 0.5438740346918957
the regulation term lambda/alpha is 1.8026240435262642
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3139568039302837
the lambda is 0.5245097899606397
the regulation term lambda/alpha is 1.67064316936132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29751539085422823
the lambda is 0.507847705266237
the regulation term lambda/alpha is 1.7069628021868086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3663718000647723
the lambda is 0.5658494039528225
the regulation term lambda/alpha is 1.5444676796980108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28766782531856955
the lambda is 0.4996184545163027
the regulation term lambda/alpha is 1.7367894861478321
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32343761973867213
the lambda is 0.5074144092001414
the regulation term lambda/alpha is 1.5688169162576602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3108205890220637
the lambda is 0.5702710639102196
the regulation term lambda/alpha is 1.8347274410117624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32607021761537835
the lambda is 0.47442228653467083
the regulation term lambda/alpha is 1.4549696994844334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35829351098829687
the lambda is 0.5235415763696158
the regulation term lambda/alpha is 1.4612086468591292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.323280026520522
the lambda is 0.5486869161107607
the regulation term lambda/alpha is 1.697249663136642
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3222660278336631
the lambda is 0.5851976906656716
the regulation term lambda/alpha is 1.8158838975348657
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26313850636667113
the lambda is 0.4230571924609028
the regulation term lambda/alpha is 1.607735782582092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3633865366278036
the lambda is 0.5087683624018353
the regulation term lambda/alpha is 1.400074882033778
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33054428232405136
the lambda is 0.5261573760094453
the regulation term lambda/alpha is 1.5917908859594896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3480316782751987
the lambda is 0.4981656398269659
the regulation term lambda/alpha is 1.4313801614146513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246572739328589
the lambda is 0.5050851892773756
the regulation term lambda/alpha is 1.5557488768350536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.335540752231572
the lambda is 0.5417622259946081
the regulation term lambda/alpha is 1.6145944192814865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31894380586520304
the lambda is 0.4421964933397259
the regulation term lambda/alpha is 1.386440135246313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3458849137286135
the lambda is 0.559237557898831
the regulation term lambda/alpha is 1.6168313092071347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3099886250795765
the lambda is 0.5111657903134394
the regulation term lambda/alpha is 1.6489824108294917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38448550694766964
the lambda is 0.5763689511083895
the regulation term lambda/alpha is 1.4990654802154508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2870512762844831
the lambda is 0.4432823323932114
the regulation term lambda/alpha is 1.5442618410583027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2940653978884285
the lambda is 0.5137511593889265
the regulation term lambda/alpha is 1.7470643029679032
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2852594143593819
the lambda is 0.4863596117225244
the regulation term lambda/alpha is 1.7049730429222152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3347026391612365
the lambda is 0.5370798765769509
the regulation term lambda/alpha is 1.6046478686958399
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2848977717585118
the lambda is 0.5151359301634113
the regulation term lambda/alpha is 1.8081430647343095
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3108947063819229
the lambda is 0.5134138534271512
the regulation term lambda/alpha is 1.6514075115722324
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3166631547302483
the lambda is 0.5356319505901863
the regulation term lambda/alpha is 1.6914880768066247
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3240383819827404
the lambda is 0.5215035182227172
the regulation term lambda/alpha is 1.6093881071486609
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34366367027564304
the lambda is 0.4873480366439291
the regulation term lambda/alpha is 1.4180958850059444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3214050302692781
the lambda is 0.5633238896331285
the regulation term lambda/alpha is 1.7526915778547931
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.328635759942611
the lambda is 0.5568585663045706
the regulation term lambda/alpha is 1.6944551816327404
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2770473883102011
the lambda is 0.5066935033462658
the regulation term lambda/alpha is 1.8289055400837684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.254927534235129
the lambda is 0.5069245471124945
the regulation term lambda/alpha is 1.9885044925941167
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3618692078660202
the lambda is 0.5287741540592071
the regulation term lambda/alpha is 1.4612300316388964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3356354130331607
the lambda is 0.5623274086538579
the regulation term lambda/alpha is 1.6754114340083062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.295278870918221
the lambda is 0.5347434670520833
the regulation term lambda/alpha is 1.810977756008093
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.330512387482798
the lambda is 0.5297295079716566
the regulation term lambda/alpha is 1.6027523567455613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3256230701998716
the lambda is 0.47096976296852466
the regulation term lambda/alpha is 1.4463648496386863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3141390649228939
the lambda is 0.4922322281970248
the regulation term lambda/alpha is 1.5669245985622458
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30904414399469216
the lambda is 0.5488531384927914
the regulation term lambda/alpha is 1.775970032624912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3625319913779048
the lambda is 0.6288393692540984
the regulation term lambda/alpha is 1.7345762145404535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2633700837892933
the lambda is 0.4341747658544311
the regulation term lambda/alpha is 1.6485348662522676
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31039696858377325
the lambda is 0.4676176855001216
the regulation term lambda/alpha is 1.506514988318631
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3329646501364897
the lambda is 0.5121381503565704
the regulation term lambda/alpha is 1.538115683291405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29629179762867813
the lambda is 0.5282421521875595
the regulation term lambda/alpha is 1.78284433256424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3517343973080977
the lambda is 0.5316324704200566
the regulation term lambda/alpha is 1.5114599950666163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33928091147050166
the lambda is 0.5088317267044495
the regulation term lambda/alpha is 1.4997357926771817
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3076838278745856
the lambda is 0.4873689848770444
the regulation term lambda/alpha is 1.583992854755109
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27364986195963253
the lambda is 0.44495702618844374
the regulation term lambda/alpha is 1.6260085899626056
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3576863534024473
the lambda is 0.5415986835039837
the regulation term lambda/alpha is 1.5141720626243997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3330983528059687
the lambda is 0.5346119750571252
the regulation term lambda/alpha is 1.6049673333825794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211276792546015
the lambda is 0.5047154665657569
the regulation term lambda/alpha is 1.5716971758314253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28292424903699587
the lambda is 0.4713813080250182
the regulation term lambda/alpha is 1.666104300460224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33610009589609374
the lambda is 0.46839760589646295
the regulation term lambda/alpha is 1.3936253265493543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35375128953834095
the lambda is 0.49026501572265385
the regulation term lambda/alpha is 1.3859031195687472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2998339637412427
the lambda is 0.496599687469985
the regulation term lambda/alpha is 1.6562489494971007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37293310756445053
the lambda is 0.47920208477969994
the regulation term lambda/alpha is 1.2849545268567606
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34356063432785383
the lambda is 0.4860110443651999
the regulation term lambda/alpha is 1.4146296048033493
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2999961179430332
the lambda is 0.4987400738944108
the regulation term lambda/alpha is 1.6624884258972892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30470394655870014
the lambda is 0.48748662175982516
the regulation term lambda/alpha is 1.5998697334427618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3042126197881884
the lambda is 0.46298761666180566
the regulation term lambda/alpha is 1.5219211385253058
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3606506224255395
the lambda is 0.523441577617002
the regulation term lambda/alpha is 1.451381323277967
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3281873404312442
the lambda is 0.5218646401720373
the regulation term lambda/alpha is 1.5901425066740769
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29179042822525003
the lambda is 0.4731543260076013
the regulation term lambda/alpha is 1.6215553364291508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33640044343703823
the lambda is 0.48472446852428397
the regulation term lambda/alpha is 1.4409150700629398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3529287349725912
the lambda is 0.48653937387610885
the regulation term lambda/alpha is 1.3785768220711583
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3024312799343688
the lambda is 0.49579323749969967
the regulation term lambda/alpha is 1.6393583283028552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3155427558379134
the lambda is 0.5813351282728346
the regulation term lambda/alpha is 1.8423339389589797
500
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2858336628046633
the lambda is 0.47675573532691873
the regulation term lambda/alpha is 1.667948171845421
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32201962227247305
the lambda is 0.42787358279907406
the regulation term lambda/alpha is 1.3287189761282123
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3919239594026759
the lambda is 0.5275901244916301
the regulation term lambda/alpha is 1.3461543032370886
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3108996173417314
the lambda is 0.5348071326237928
the regulation term lambda/alpha is 1.7201923154377803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28103145402434454
the lambda is 0.4971302045821366
the regulation term lambda/alpha is 1.7689486264376384
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.255130595389283
the lambda is 0.5086697883904399
the regulation term lambda/alpha is 1.9937624008375086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32279795468096
the lambda is 0.5202564269794424
the regulation term lambda/alpha is 1.6117091804179555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32882715916498184
the lambda is 0.4993471171379336
the regulation term lambda/alpha is 1.5185701765205992
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3046017604865066
the lambda is 0.4468087082698878
the regulation term lambda/alpha is 1.4668618709105614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3198926679697872
the lambda is 0.5310508400058701
the regulation term lambda/alpha is 1.6600906903437564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34079973824033893
the lambda is 0.5218206533420843
the regulation term lambda/alpha is 1.5311650649628308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2969279704941524
the lambda is 0.49533609553249763
the regulation term lambda/alpha is 1.6682028800053803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3022411106639347
the lambda is 0.5163178975594022
the regulation term lambda/alpha is 1.7082980420009832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3460408335378201
the lambda is 0.5954668609429581
the regulation term lambda/alpha is 1.720799406402647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35144135473115645
the lambda is 0.6150076601720343
the regulation term lambda/alpha is 1.749958142070387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2931261021065149
the lambda is 0.49445169959946317
the regulation term lambda/alpha is 1.6868224837233752
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3325314441549202
the lambda is 0.4870427584333035
the regulation term lambda/alpha is 1.4646517404423245
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3663538461161279
the lambda is 0.5351810827107898
the regulation term lambda/alpha is 1.4608310746139854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3341009665019666
the lambda is 0.5634469463874349
the regulation term lambda/alpha is 1.6864570979447266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2960872768172269
the lambda is 0.46233341384856735
the regulation term lambda/alpha is 1.561476801091873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30642737604671805
the lambda is 0.4718570192178472
the regulation term lambda/alpha is 1.5398657434116059
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3004853069789266
the lambda is 0.4867111093758223
the regulation term lambda/alpha is 1.6197501111425587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3206919592889935
the lambda is 0.45964374028731986
the regulation term lambda/alpha is 1.4332873867695233
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3131402161599168
the lambda is 0.488397076262076
the regulation term lambda/alpha is 1.5596753500759473
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4245962995757212
the lambda is 0.5463845282935653
the regulation term lambda/alpha is 1.2868329960471658
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26604687511379504
the lambda is 0.49305381667173914
the regulation term lambda/alpha is 1.853259191489648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2899364890503247
the lambda is 0.42794683526998506
the regulation term lambda/alpha is 1.4760019915799756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34188375545432503
the lambda is 0.535485803665208
the regulation term lambda/alpha is 1.5662803368753442
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35021792354725295
the lambda is 0.5284016320324268
the regulation term lambda/alpha is 1.508779524132872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26691355121713606
the lambda is 0.47077467435506737
the regulation term lambda/alpha is 1.7637720985252219
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33660326651585426
the lambda is 0.5457374752178803
the regulation term lambda/alpha is 1.6213077218969165
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30022236129318314
the lambda is 0.5098878516823734
the regulation term lambda/alpha is 1.6983673350848132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32867749279876984
the lambda is 0.46250377004916243
the regulation term lambda/alpha is 1.4071659306842974
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30499362770516586
the lambda is 0.5311865423988559
the regulation term lambda/alpha is 1.7416316084883856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28233830691478196
the lambda is 0.47128780380720725
the regulation term lambda/alpha is 1.669230820844498
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29329325695543307
the lambda is 0.44778270150328997
the regulation term lambda/alpha is 1.526740526364478
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2964003250701398
the lambda is 0.4638880752715395
the regulation term lambda/alpha is 1.5650727615152433
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29877304359391976
the lambda is 0.4897153027421865
the regulation term lambda/alpha is 1.6390879741071545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3569043216408927
the lambda is 0.5231834696025681
the regulation term lambda/alpha is 1.4658927838060223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31469599879677485
the lambda is 0.49063328810145385
the regulation term lambda/alpha is 1.5590706268187928
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3258062292647933
the lambda is 0.5164170335875843
the regulation term lambda/alpha is 1.5850434620385216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3572949844611748
the lambda is 0.5371949592242269
the regulation term lambda/alpha is 1.5035054579183458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3458406006009435
the lambda is 0.6025058329724217
the regulation term lambda/alpha is 1.7421489319804804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35256339035547696
the lambda is 0.5179839751640842
the regulation term lambda/alpha is 1.4691938792675543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.342830871902866
the lambda is 0.5086449607889368
the regulation term lambda/alpha is 1.4836614858099793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30268639192067703
the lambda is 0.5168670758795789
the regulation term lambda/alpha is 1.7075993162422405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2749519737351609
the lambda is 0.48565179424102234
the regulation term lambda/alpha is 1.7663149954646684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31542935894179525
the lambda is 0.5230822338954634
the regulation term lambda/alpha is 1.658318159255383
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2810198999608993
the lambda is 0.5130698217350018
the regulation term lambda/alpha is 1.825741955663601
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3428080983411204
the lambda is 0.44668903433196194
the regulation term lambda/alpha is 1.3030294106047402
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30396905828513865
the lambda is 0.5914777137625167
the regulation term lambda/alpha is 1.9458484264792506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2722826644154458
the lambda is 0.4718655639735653
the regulation term lambda/alpha is 1.732998922228843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34050732507497417
the lambda is 0.5503773903178163
the regulation term lambda/alpha is 1.6163452289804108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3209551757262699
the lambda is 0.5516473244554118
the regulation term lambda/alpha is 1.7187674983184884
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35989504536179034
the lambda is 0.4727750201900447
the regulation term lambda/alpha is 1.31364692646652
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30182626442298316
the lambda is 0.528042782708975
the regulation term lambda/alpha is 1.7494924893910793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3101576478153089
the lambda is 0.5133113479790279
the regulation term lambda/alpha is 1.6550014213568318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3270491182863613
the lambda is 0.5314122613541783
the regulation term lambda/alpha is 1.6248698792970862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.322499385976468
the lambda is 0.47668671400249485
the regulation term lambda/alpha is 1.4781011522213487
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3457735301724109
the lambda is 0.5761458052833796
the regulation term lambda/alpha is 1.6662519105962204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30654996765367626
the lambda is 0.5005908438293307
the regulation term lambda/alpha is 1.6329828629924092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3430235151869525
the lambda is 0.5307858793103941
the regulation term lambda/alpha is 1.547374613723227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2948043902441058
the lambda is 0.46444147644103323
the regulation term lambda/alpha is 1.5754225235806816
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3165648396015661
the lambda is 0.5177941620994885
the regulation term lambda/alpha is 1.6356654224492935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38510712139090153
the lambda is 0.5457451258307172
the regulation term lambda/alpha is 1.4171255100649274
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367577662014908
the lambda is 0.5193767562302597
the regulation term lambda/alpha is 1.5422859050546833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30217169732189153
the lambda is 0.5059704297247115
the regulation term lambda/alpha is 1.6744467936906786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37338414068928694
the lambda is 0.5331628062718221
the regulation term lambda/alpha is 1.427920332362203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2733248576006655
the lambda is 0.49446396696079786
the regulation term lambda/alpha is 1.80907061034025
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.288029677757673
the lambda is 0.5216710755664642
the regulation term lambda/alpha is 1.8111712641131372
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25872190895251185
the lambda is 0.49127853384045594
the regulation term lambda/alpha is 1.8988671497883454
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367839667733676
the lambda is 0.5825896914942327
the regulation term lambda/alpha is 1.7298617184061955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2864480408885926
the lambda is 0.46207598775154873
the regulation term lambda/alpha is 1.6131232258322987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28318183977651523
the lambda is 0.5701728426802328
the regulation term lambda/alpha is 2.013451297336752
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3117045409224246
the lambda is 0.5408312657221186
the regulation term lambda/alpha is 1.7350766341794097
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29500059306823095
the lambda is 0.45558038646079624
the regulation term lambda/alpha is 1.5443371883507524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33956367459708675
the lambda is 0.5209124997214377
the regulation term lambda/alpha is 1.5340642674441916
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3397704413306905
the lambda is 0.52628622969344
the regulation term lambda/alpha is 1.5489464817253424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30945267990839403
the lambda is 0.5332028502061532
the regulation term lambda/alpha is 1.7230513252106752
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2720348255055369
the lambda is 0.47054480056543496
the regulation term lambda/alpha is 1.729722654777734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3410331753200256
the lambda is 0.46134123296913
the regulation term lambda/alpha is 1.3527752323104851
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27504052873984536
the lambda is 0.4723587178812851
the regulation term lambda/alpha is 1.7174149571537458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36091129833636754
the lambda is 0.5493245600127937
the regulation term lambda/alpha is 1.5220486655444796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3210437771599117
the lambda is 0.5316062912556321
the regulation term lambda/alpha is 1.655868542160963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2600910593954043
the lambda is 0.47432293110993945
the regulation term lambda/alpha is 1.8236802611075087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31309199381819824
the lambda is 0.4812268623069471
the regulation term lambda/alpha is 1.5370142699540859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33396437709318694
the lambda is 0.4588287640705107
the regulation term lambda/alpha is 1.3738853468868104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30597385562897644
the lambda is 0.4460821540721342
the regulation term lambda/alpha is 1.4579093797250864
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3727990941965082
the lambda is 0.5431712625893742
the regulation term lambda/alpha is 1.457007999872071
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28737981094415677
the lambda is 0.5598959856219963
the regulation term lambda/alpha is 1.9482787735941356
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2379193003660332
the lambda is 0.4782363131797745
the regulation term lambda/alpha is 2.010077839183367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29217563807750596
the lambda is 0.5169688078958368
the regulation term lambda/alpha is 1.769376842290662
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2948928350250941
the lambda is 0.5121701834443743
the regulation term lambda/alpha is 1.736801042998521
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25194813181940706
the lambda is 0.5416066885983534
the regulation term lambda/alpha is 2.1496753505859276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4272524227166945
the lambda is 0.555824639010491
the regulation term lambda/alpha is 1.3009279981989734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3630931845999044
the lambda is 0.5390925318009493
the regulation term lambda/alpha is 1.4847222549632269
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3995291794717457
the lambda is 0.5604017586854975
the regulation term lambda/alpha is 1.4026553940977633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3055144279194644
the lambda is 0.5048686782636136
the regulation term lambda/alpha is 1.6525199209141777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3431529039670536
the lambda is 0.5682646586346703
the regulation term lambda/alpha is 1.6560100528516288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3373072411004427
the lambda is 0.5133988714250051
the regulation term lambda/alpha is 1.5220511417130418
510
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37971300258882423
the lambda is 0.5276224434944414
the regulation term lambda/alpha is 1.3895295654802275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3136443276858674
the lambda is 0.4842949188339515
the regulation term lambda/alpha is 1.544089518236084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30201958596989636
the lambda is 0.5182668517211099
the regulation term lambda/alpha is 1.716004112967587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2799306033422941
the lambda is 0.44627577129983975
the regulation term lambda/alpha is 1.5942371643951405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3015261489342206
the lambda is 0.45827258160161344
the regulation term lambda/alpha is 1.5198435798070298
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36319754731861603
the lambda is 0.5134286017062656
the regulation term lambda/alpha is 1.4136345509400121
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3056004784294366
the lambda is 0.5002054586629192
the regulation term lambda/alpha is 1.6367954043580368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38765459495837107
the lambda is 0.49200680287915155
the regulation term lambda/alpha is 1.2691886263646288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3538481423583581
the lambda is 0.5166374761958155
the regulation term lambda/alpha is 1.4600542276482922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32982446453792347
the lambda is 0.5372893552433774
the regulation term lambda/alpha is 1.6290160767670994
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3679253092447081
the lambda is 0.4857788772860954
the regulation term lambda/alpha is 1.3203192742660783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3488750330492548
the lambda is 0.5152173326002791
the regulation term lambda/alpha is 1.4767962272827353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146733667181576
the lambda is 0.5663950512543374
the regulation term lambda/alpha is 1.7999459476392183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38079545514914426
the lambda is 0.5423001131715379
the regulation term lambda/alpha is 1.424124436987143
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3310870339867776
the lambda is 0.5315421924197365
the regulation term lambda/alpha is 1.6054455108651715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3353654072871516
the lambda is 0.5437239840288967
the regulation term lambda/alpha is 1.6212882193998654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3046035603236376
the lambda is 0.49538942061622954
the regulation term lambda/alpha is 1.6263415309062188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39569889108412926
the lambda is 0.597896103293817
the regulation term lambda/alpha is 1.5109875634367111
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33493054950558726
the lambda is 0.5273015568079413
the regulation term lambda/alpha is 1.5743608864175735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24805588795601707
the lambda is 0.48298531761211083
the regulation term lambda/alpha is 1.947082657831324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31538636167517037
the lambda is 0.4833116076003882
the regulation term lambda/alpha is 1.532442953567444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3369375733541371
the lambda is 0.543512080665325
the regulation term lambda/alpha is 1.613094304843433
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24771715319655027
the lambda is 0.5243413517322872
the regulation term lambda/alpha is 2.116693757239534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3464838032736425
the lambda is 0.4935145238710528
the regulation term lambda/alpha is 1.4243509197493134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3310315282030378
the lambda is 0.5060462198498701
the regulation term lambda/alpha is 1.5286949330683912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2515917266675653
the lambda is 0.4334299952311631
the regulation term lambda/alpha is 1.7227513836488966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2621898845441342
the lambda is 0.4694056440349939
the regulation term lambda/alpha is 1.7903270557181974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35438588706422
the lambda is 0.49623428239649764
the regulation term lambda/alpha is 1.4002653618838174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28240374835083465
the lambda is 0.4644697661937697
the regulation term lambda/alpha is 1.6447011376660323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2787386838453474
the lambda is 0.49030811820736186
the regulation term lambda/alpha is 1.7590242999044925
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3031735282138324
the lambda is 0.43224766396455827
the regulation term lambda/alpha is 1.4257434232836057
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3328593095265001
the lambda is 0.48648244571823696
the regulation term lambda/alpha is 1.4615257311272718
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3333908358473704
the lambda is 0.4867227760294598
the regulation term lambda/alpha is 1.459916481484471
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3070376024847667
the lambda is 0.43722469342861636
the regulation term lambda/alpha is 1.4240102511558295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31163746989420943
the lambda is 0.4589617045703096
the regulation term lambda/alpha is 1.4727423654354268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3287903625748981
the lambda is 0.5303428792899535
the regulation term lambda/alpha is 1.6130122401904101
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3303355956880639
the lambda is 0.5740881391445928
the regulation term lambda/alpha is 1.7378936652249384
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2971716536713027
the lambda is 0.5530645638601325
the regulation term lambda/alpha is 1.8610946132563142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33723098560731785
the lambda is 0.5460525642115324
the regulation term lambda/alpha is 1.6192241742796813
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2913227496129485
the lambda is 0.4807447359388832
the regulation term lambda/alpha is 1.650213505734107
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2831573202065063
the lambda is 0.5506503626913413
the regulation term lambda/alpha is 1.9446799478457861
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3164072877154841
the lambda is 0.5140028851989838
the regulation term lambda/alpha is 1.624497617959986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3474423681221417
the lambda is 0.5524645347356824
the regulation term lambda/alpha is 1.5900897110552334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3405232611362343
the lambda is 0.5419210235420838
the regulation term lambda/alpha is 1.5914361378245923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300132512033422
the lambda is 0.5481837594101686
the regulation term lambda/alpha is 1.661096205716896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2982454171425464
the lambda is 0.4942704516574762
the regulation term lambda/alpha is 1.657260843747482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30274013513213943
the lambda is 0.5114850565449484
the regulation term lambda/alpha is 1.6895184918963464
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24435661999804467
the lambda is 0.4906533939096988
the regulation term lambda/alpha is 2.0079398459252915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29359614332712447
the lambda is 0.5312259294844524
the regulation term lambda/alpha is 1.809376388478513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.377820107961519
the lambda is 0.4647480026531103
the regulation term lambda/alpha is 1.2300774703617545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3097133745966934
the lambda is 0.5323389204876657
the regulation term lambda/alpha is 1.718811533989689
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30914176792925957
the lambda is 0.4802476998831359
the regulation term lambda/alpha is 1.5534869425765536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3544666457127039
the lambda is 0.5362693116763014
the regulation term lambda/alpha is 1.51289075618965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2916891861718949
the lambda is 0.4968909947404255
the regulation term lambda/alpha is 1.7034947413086594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3198965636493824
the lambda is 0.5080982469132432
the regulation term lambda/alpha is 1.588320428068544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31508757715615404
the lambda is 0.4625312597166315
the regulation term lambda/alpha is 1.4679450833677457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33588583265912614
the lambda is 0.5499367604253529
the regulation term lambda/alpha is 1.6372728676039647
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2664370730049511
the lambda is 0.43428732592922675
the regulation term lambda/alpha is 1.6299808470015602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2672015519711214
the lambda is 0.49835810576026207
the regulation term lambda/alpha is 1.8651018382337974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3106245725973671
the lambda is 0.4792261195272361
the regulation term lambda/alpha is 1.5427823868538921
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2919160535591096
the lambda is 0.5877556489580154
the regulation term lambda/alpha is 2.0134406511459697
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3251977081627332
the lambda is 0.45836551551994315
the regulation term lambda/alpha is 1.409497988499264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3082371069257847
the lambda is 0.5339626577720893
the regulation term lambda/alpha is 1.7323114114896403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3427896567513211
the lambda is 0.5252631658020408
the regulation term lambda/alpha is 1.5323191801644593
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3200502070949413
the lambda is 0.5171841291610001
the regulation term lambda/alpha is 1.6159468661352248
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27545058183577165
the lambda is 0.5100258247434233
the regulation term lambda/alpha is 1.8516055451554987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3708500909638468
the lambda is 0.554831087317673
the regulation term lambda/alpha is 1.4961061108968747
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2806455569961464
the lambda is 0.4812838012390277
the regulation term lambda/alpha is 1.714916873762004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3113569443118608
the lambda is 0.455379570843786
the regulation term lambda/alpha is 1.4625643627452534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2764424658052654
the lambda is 0.4449371158491214
the regulation term lambda/alpha is 1.6095107332841867
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.25955598002033925
the lambda is 0.43845791042158255
the regulation term lambda/alpha is 1.689261447134542
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27585411046887987
the lambda is 0.4901348077465136
the regulation term lambda/alpha is 1.7767899376718097
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31269750218234493
the lambda is 0.522712943006616
the regulation term lambda/alpha is 1.671624938985933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32268278408478723
the lambda is 0.5477167576694475
the regulation term lambda/alpha is 1.6973845047944391
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3439613252887554
the lambda is 0.5008677151099638
the regulation term lambda/alpha is 1.4561745123219465
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3741242522801836
the lambda is 0.586533707020872
the regulation term lambda/alpha is 1.5677510972520805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29903987551939193
the lambda is 0.6413218953802127
the regulation term lambda/alpha is 2.1446032716082533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2826151063832847
the lambda is 0.4349795166837609
the regulation term lambda/alpha is 1.5391233761363006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3744785535463297
the lambda is 0.557128057909114
the regulation term lambda/alpha is 1.4877435640388077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33987724272944847
the lambda is 0.5116210030283129
the regulation term lambda/alpha is 1.505311149754081
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3515588011464714
the lambda is 0.4959704496949815
the regulation term lambda/alpha is 1.4107752332684262
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3341042933111305
the lambda is 0.49340423537979133
the regulation term lambda/alpha is 1.4767970518724065
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3539739274084078
the lambda is 0.5494054646098309
the regulation term lambda/alpha is 1.5521071527280546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31321002627895317
the lambda is 0.49753774268228673
the regulation term lambda/alpha is 1.5885115447714513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159503481204472
the lambda is 0.4713731754311297
the regulation term lambda/alpha is 1.491921684009134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3404889711916808
the lambda is 0.5122796752064933
the regulation term lambda/alpha is 1.5045411703455782
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.345432738048287
the lambda is 0.5489056436060451
the regulation term lambda/alpha is 1.5890377000958005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30771269582298794
the lambda is 0.5443606766167546
the regulation term lambda/alpha is 1.7690549789011587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32194020257096795
the lambda is 0.5149051352576959
the regulation term lambda/alpha is 1.599381286169723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33144638941090393
the lambda is 0.5187015635630816
the regulation term lambda/alpha is 1.5649636868423746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28079898839172923
the lambda is 0.4338147580078762
the regulation term lambda/alpha is 1.5449299176344682
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36320636326991906
the lambda is 0.548944599291155
the regulation term lambda/alpha is 1.5113848621732529
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36419035992389154
the lambda is 0.5250272879320871
the regulation term lambda/alpha is 1.4416287351532513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.296424953140151
the lambda is 0.48301947139790646
the regulation term lambda/alpha is 1.629483166923308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31307857558985075
the lambda is 0.5446649208947903
the regulation term lambda/alpha is 1.7397067808572433
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33891858951148074
the lambda is 0.4365870450585177
the regulation term lambda/alpha is 1.288176743824577
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2990293539303534
the lambda is 0.47962470056670015
the regulation term lambda/alpha is 1.6039385239698207
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2641693648297898
the lambda is 0.4431168683325983
the regulation term lambda/alpha is 1.677396879907359
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.273291193280849
the lambda is 0.4995517269401133
the regulation term lambda/alpha is 1.8279100798785952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2833406634991679
the lambda is 0.5262805988270111
the regulation term lambda/alpha is 1.8574128835854744
520
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233172719936469
the lambda is 0.45991854095046003
the regulation term lambda/alpha is 1.422499138739168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3298325097214031
the lambda is 0.5393745665251117
the regulation term lambda/alpha is 1.6352983730460675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33915128566175406
the lambda is 0.451761032280754
the regulation term lambda/alpha is 1.3320339664916059
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2938099590374492
the lambda is 0.47280858895981287
the regulation term lambda/alpha is 1.6092326839729363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29481971376868843
the lambda is 0.4751080825622837
the regulation term lambda/alpha is 1.6115207375007734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3111402861137882
the lambda is 0.49089087420538524
the regulation term lambda/alpha is 1.577715571122988
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3256309497711483
the lambda is 0.5359221370737177
the regulation term lambda/alpha is 1.6457960689865656
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3166753712972649
the lambda is 0.5113387918592281
the regulation term lambda/alpha is 1.614709693919429
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33736951610476285
the lambda is 0.5108440516219136
the regulation term lambda/alpha is 1.5141974222214019
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3168233617568637
the lambda is 0.5162830568109495
the regulation term lambda/alpha is 1.6295611975961388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32339885967225707
the lambda is 0.5727673006226673
the regulation term lambda/alpha is 1.7710863334618074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3139479004440468
the lambda is 0.5592428695071116
the regulation term lambda/alpha is 1.7813238079188312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31155539812474564
the lambda is 0.5699988558935389
the regulation term lambda/alpha is 1.829526496168471
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161586420917578
the lambda is 0.5248013296377863
the regulation term lambda/alpha is 1.6599303633315665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31298780206744015
the lambda is 0.5074194385336301
the regulation term lambda/alpha is 1.6212115462068244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33685168550893785
the lambda is 0.4757777525667772
the regulation term lambda/alpha is 1.412425031651365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4238837515215361
the lambda is 0.5658612521178548
the regulation term lambda/alpha is 1.3349444277745692
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38081436612796826
the lambda is 0.550007111265374
the regulation term lambda/alpha is 1.4442919180222065
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2924289609216176
the lambda is 0.48501831148742874
the regulation term lambda/alpha is 1.6585850798048443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2894980204711013
the lambda is 0.5071770851168538
the regulation term lambda/alpha is 1.751919008950467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31026511676204055
the lambda is 0.5667411720278034
the regulation term lambda/alpha is 1.8266351626711181
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3558525601936418
the lambda is 0.5334302591224849
the regulation term lambda/alpha is 1.4990204337217972
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35084517189019643
the lambda is 0.4988655817694205
the regulation term lambda/alpha is 1.421896670493587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32208841447767117
the lambda is 0.4619471810178964
the regulation term lambda/alpha is 1.434224766410904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4122519401412316
the lambda is 0.5587868617033719
the regulation term lambda/alpha is 1.3554499258680008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2945042052324655
the lambda is 0.5176128144000525
the regulation term lambda/alpha is 1.7575735938693209
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3058228424756761
the lambda is 0.48530580576458826
the regulation term lambda/alpha is 1.586885406714469
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37158885962643595
the lambda is 0.4901959302017704
the regulation term lambda/alpha is 1.3191889840146767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3162989350308724
the lambda is 0.4716728592680335
the regulation term lambda/alpha is 1.4912249363786059
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32434718899554205
the lambda is 0.5337440839786626
the regulation term lambda/alpha is 1.6455949121421198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3409365056683275
the lambda is 0.5202118358277847
the regulation term lambda/alpha is 1.5258320161639165
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.327614880115516
the lambda is 0.47187125456871004
the regulation term lambda/alpha is 1.440323023186034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2919102733361171
the lambda is 0.5527060118653682
the regulation term lambda/alpha is 1.8934106208347128
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32021684103966186
the lambda is 0.54442314501428
the regulation term lambda/alpha is 1.7001702447837468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3119564477452905
the lambda is 0.461582580775836
the regulation term lambda/alpha is 1.4796378921224087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31426875625169176
the lambda is 0.5038714712074558
the regulation term lambda/alpha is 1.603313919007319
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31824575736510763
the lambda is 0.4838247006101637
the regulation term lambda/alpha is 1.520286412035638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26904754399734415
the lambda is 0.42103388275770187
the regulation term lambda/alpha is 1.5649051335025679
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3116256770599625
the lambda is 0.5912230425582006
the regulation term lambda/alpha is 1.8972218468519793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32549349589015686
the lambda is 0.4565359716974769
the regulation term lambda/alpha is 1.4025962959688216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3464691185200083
the lambda is 0.5228334900837226
the regulation term lambda/alpha is 1.5090334524389348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3650224907202472
the lambda is 0.5400846806910813
the regulation term lambda/alpha is 1.4795928865243582
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2984349122709761
the lambda is 0.4675400869847113
the regulation term lambda/alpha is 1.5666400536951561
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3896602804929337
the lambda is 0.5023760021301406
the regulation term lambda/alpha is 1.2892666439972214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30489803499286716
the lambda is 0.5197889890287833
the regulation term lambda/alpha is 1.7047961264851819
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321870237227152
the lambda is 0.5708360275227986
the regulation term lambda/alpha is 1.7734973958463425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2586014975933742
the lambda is 0.44883429641279815
the regulation term lambda/alpha is 1.7356214120559603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31275292699947066
the lambda is 0.5665399695913761
the regulation term lambda/alpha is 1.8114617664068575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32596971855488854
the lambda is 0.46975254333695543
the regulation term lambda/alpha is 1.4410925819106597
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2910692779404245
the lambda is 0.4812833478791403
the regulation term lambda/alpha is 1.653501019704486
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3751092189055527
the lambda is 0.5549621344679085
the regulation term lambda/alpha is 1.4794681295413332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27719810878427675
the lambda is 0.4924580814690481
the regulation term lambda/alpha is 1.7765564261201099
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3217666207246745
the lambda is 0.5993115892158217
the regulation term lambda/alpha is 1.862566066878123
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35015437623930173
the lambda is 0.5499534422329209
the regulation term lambda/alpha is 1.5706027956568303
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37290137790295064
the lambda is 0.5548758370888552
the regulation term lambda/alpha is 1.4879962101756146
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.27671674049638617
the lambda is 0.4906837775935754
the regulation term lambda/alpha is 1.7732348852959388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3085310951495928
the lambda is 0.5448585507812285
the regulation term lambda/alpha is 1.7659761344867075
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28967141681720854
the lambda is 0.4739955633897591
the regulation term lambda/alpha is 1.6363214865927374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2756441051590933
the lambda is 0.4795566338280174
the regulation term lambda/alpha is 1.7397674205702023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29182409199937515
the lambda is 0.4865705201583353
the regulation term lambda/alpha is 1.6673418456464422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.41989839074757146
the lambda is 0.549359194202603
the regulation term lambda/alpha is 1.30831459778768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24480352170213132
the lambda is 0.5471566148007266
the regulation term lambda/alpha is 2.2350847365116273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3980596998158206
the lambda is 0.5028106407897956
the regulation term lambda/alpha is 1.2631538460749545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3541610858150305
the lambda is 0.5674351897109292
the regulation term lambda/alpha is 1.602195194328285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215211245430764
the lambda is 0.5006005753395361
the regulation term lambda/alpha is 1.556975691880137
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3338753854034486
the lambda is 0.5033071944122335
the regulation term lambda/alpha is 1.5074702012070964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235329228991852
the lambda is 0.5150201925933319
the regulation term lambda/alpha is 1.5918633194366287
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30209390676825704
the lambda is 0.5497986815317552
the regulation term lambda/alpha is 1.819959519916825
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34706724512983844
the lambda is 0.4645321476820422
the regulation term lambda/alpha is 1.3384499810930297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32534375983846414
the lambda is 0.5388799236777435
the regulation term lambda/alpha is 1.6563401245049294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3513627750536273
the lambda is 0.5602091269673745
the regulation term lambda/alpha is 1.594389522002926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30418302855152723
the lambda is 0.5194989740324718
the regulation term lambda/alpha is 1.7078499629195159
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32646431470595877
the lambda is 0.5478021230397535
the regulation term lambda/alpha is 1.6779846934668807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31850563074607136
the lambda is 0.533385443581919
the regulation term lambda/alpha is 1.6746499656301541
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35088951062440354
the lambda is 0.5635770178193303
the regulation term lambda/alpha is 1.606138116857503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30482853134837884
the lambda is 0.5547149673119686
the regulation term lambda/alpha is 1.8197606531719384
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3421037036646722
the lambda is 0.4991722638466014
the regulation term lambda/alpha is 1.4591255765412199
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36712249500265287
the lambda is 0.5008424736403205
the regulation term lambda/alpha is 1.3642380416833388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2863461193708728
the lambda is 0.4747979971583733
the regulation term lambda/alpha is 1.6581261803077534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32882489172098245
the lambda is 0.5463055474858857
the regulation term lambda/alpha is 1.6613874473634493
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28675590837073117
the lambda is 0.5226566902927803
the regulation term lambda/alpha is 1.8226536055085072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320960292290688
the lambda is 0.4299425242581129
the regulation term lambda/alpha is 1.339550513210281
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2986482366748137
the lambda is 0.5149001074231649
the regulation term lambda/alpha is 1.7241022855387536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29726021776196765
the lambda is 0.496466922774584
the regulation term lambda/alpha is 1.6701424984224829
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3712741599266933
the lambda is 0.5435316207055298
the regulation term lambda/alpha is 1.4639629669160066
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3328759834219053
the lambda is 0.5001527402113163
the regulation term lambda/alpha is 1.5025197524610698
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37676459246504723
the lambda is 0.5239063800989296
the regulation term lambda/alpha is 1.3905403813855806
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3043686370358299
the lambda is 0.4493996741830682
the regulation term lambda/alpha is 1.4764979682521147
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3271050584291324
the lambda is 0.48748132636836156
the regulation term lambda/alpha is 1.4902897824613581
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3209474382714336
the lambda is 0.513171159688141
the regulation term lambda/alpha is 1.598925862913848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.364458421357735
the lambda is 0.4889578663902533
the regulation term lambda/alpha is 1.341601230035279
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37988563062879066
the lambda is 0.6030529873199241
the regulation term lambda/alpha is 1.5874593264339703
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.301066173675119
the lambda is 0.5261267649975251
the regulation term lambda/alpha is 1.747545260814552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105033662035905
the lambda is 0.5006996460613107
the regulation term lambda/alpha is 1.6125417646294131
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28228686592307417
the lambda is 0.5474129967943021
the regulation term lambda/alpha is 1.9392081703988215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29225486948386864
the lambda is 0.49977677275356586
the regulation term lambda/alpha is 1.7100716701014682
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3437738400192797
the lambda is 0.5390084260812238
the regulation term lambda/alpha is 1.5679157729133633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29858904876874265
the lambda is 0.5146193594992666
the regulation term lambda/alpha is 1.7235037976822771
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.308059285713287
the lambda is 0.5190071567653917
the regulation term lambda/alpha is 1.68476387771812
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2998694261317043
the lambda is 0.44033172077761246
the regulation term lambda/alpha is 1.4684115231681416
530
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3481670115667614
the lambda is 0.6037418040186405
the regulation term lambda/alpha is 1.7340580352566584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29725580737764
the lambda is 0.5150004596419189
the regulation term lambda/alpha is 1.7325160580888215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3147909704369711
the lambda is 0.5009277854237547
the regulation term lambda/alpha is 1.5913029040458224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37504793710450923
the lambda is 0.521695105971275
the regulation term lambda/alpha is 1.3910091333895318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3274534007017489
the lambda is 0.5332898814008996
the regulation term lambda/alpha is 1.6285977798918347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3504092159652092
the lambda is 0.5986990175177457
the regulation term lambda/alpha is 1.7085709799858353
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.31566881610017955
the lambda is 0.49028132721646756
the regulation term lambda/alpha is 1.5531509677562625
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3667389475197487
the lambda is 0.5701501239478758
the regulation term lambda/alpha is 1.554648416274831
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2971348076050189
the lambda is 0.49232226013869007
the regulation term lambda/alpha is 1.656898645119806
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3226164800079227
the lambda is 0.5208184115504736
the regulation term lambda/alpha is 1.6143577399941984
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2659069032172523
the lambda is 0.512130982632988
the regulation term lambda/alpha is 1.9259785151744055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32259976323281025
the lambda is 0.465457100590257
the regulation term lambda/alpha is 1.4428315009467352
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282578739541178
the lambda is 0.5456364105789664
the regulation term lambda/alpha is 1.6622188037909262
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27180308475429565
the lambda is 0.5157431978845908
the regulation term lambda/alpha is 1.897488390725263
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3371351686728526
the lambda is 0.4686945975249523
the regulation term lambda/alpha is 1.3902275439551122
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32260905824819064
the lambda is 0.5586143643717123
the regulation term lambda/alpha is 1.731552013465032
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3334937423521033
the lambda is 0.5162450089478847
the regulation term lambda/alpha is 1.5479900921284224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3017926821810488
the lambda is 0.5940189320284525
the regulation term lambda/alpha is 1.9683013111368082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203412103646762
the lambda is 0.5298691010007506
the regulation term lambda/alpha is 1.6540772272089124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3649499913150422
the lambda is 0.5146982569453148
the regulation term lambda/alpha is 1.4103254396326395
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32678416665299986
the lambda is 0.5034999635311469
the regulation term lambda/alpha is 1.5407722127057493
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2842942599101861
the lambda is 0.5032886628933645
the regulation term lambda/alpha is 1.7703089153202138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2812133359517316
the lambda is 0.493941838801072
the regulation term lambda/alpha is 1.756466623922323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2824200912410997
the lambda is 0.4297998033545305
the regulation term lambda/alpha is 1.521845706747591
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33686247539693487
the lambda is 0.4834591800020787
the regulation term lambda/alpha is 1.435182649632924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34531784021585277
the lambda is 0.45665195654345475
the regulation term lambda/alpha is 1.322410554456175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35146602657247467
the lambda is 0.48996586222339616
the regulation term lambda/alpha is 1.3940632242654665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.308379304441105
the lambda is 0.5046304289465839
the regulation term lambda/alpha is 1.6363952498730647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.372056396987563
the lambda is 0.5083487497177974
the regulation term lambda/alpha is 1.366321756147067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33632663008703184
the lambda is 0.5150771422015357
the regulation term lambda/alpha is 1.53147891401953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3456478786598803
the lambda is 0.45252474724589187
the regulation term lambda/alpha is 1.3092073615506812
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3318882035874517
the lambda is 0.46386914153998066
the regulation term lambda/alpha is 1.3976668544585746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3007906602318768
the lambda is 0.5305363399592105
the regulation term lambda/alpha is 1.763805895935149
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3244220949585983
the lambda is 0.4551782052417944
the regulation term lambda/alpha is 1.4030431721978824
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31503373446349753
the lambda is 0.5455305896664181
the regulation term lambda/alpha is 1.7316576924546088
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3295032547955488
the lambda is 0.49372839125004886
the regulation term lambda/alpha is 1.498402167700586
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3779393361003398
the lambda is 0.5072619102877176
the regulation term lambda/alpha is 1.3421781271083244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3557050685940789
the lambda is 0.579246232147376
the regulation term lambda/alpha is 1.6284452578560142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30174144095652494
the lambda is 0.49634318829256996
the regulation term lambda/alpha is 1.6449288063288705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3048162001000327
the lambda is 0.5250708505796007
the regulation term lambda/alpha is 1.7225818391781218
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37324310843528596
the lambda is 0.5534872419699789
the regulation term lambda/alpha is 1.4829134938092077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24392144748630107
the lambda is 0.4890728135826463
the regulation term lambda/alpha is 2.0050422733331525
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3849123460632219
the lambda is 0.5217693753298357
the regulation term lambda/alpha is 1.3555537531241855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29610384804960493
the lambda is 0.5197334006407062
the regulation term lambda/alpha is 1.7552402782473722
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.299850156368917
the lambda is 0.5495414806296647
the regulation term lambda/alpha is 1.8327203403340668
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2958272357701326
the lambda is 0.5269035931448386
the regulation term lambda/alpha is 1.7811192798835462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3072891475962424
the lambda is 0.49270257656654337
the regulation term lambda/alpha is 1.6033842406108074
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2936356767110562
the lambda is 0.48958981843494176
the regulation term lambda/alpha is 1.6673376475185901
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27885061100486735
the lambda is 0.46211799653154895
the regulation term lambda/alpha is 1.657224256623496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3548178310708076
the lambda is 0.5265522345456745
the regulation term lambda/alpha is 1.4840072522753105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3455292859283665
the lambda is 0.4476532075263637
the regulation term lambda/alpha is 1.2955579331679834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159501401012137
the lambda is 0.45254191818823875
the regulation term lambda/alpha is 1.432320675797986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32580748135929716
the lambda is 0.47551646104579093
the regulation term lambda/alpha is 1.4595013566351973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31413863343563736
the lambda is 0.5071396613605074
the regulation term lambda/alpha is 1.614381700888163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3428719901792653
the lambda is 0.5458795265704586
the regulation term lambda/alpha is 1.5920796746478298
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2913975593071135
the lambda is 0.4830008314853878
the regulation term lambda/alpha is 1.657532179177717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29010466253226663
the lambda is 0.49291507662864653
the regulation term lambda/alpha is 1.6990939488048473
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33563904313855086
the lambda is 0.47241916722582905
the regulation term lambda/alpha is 1.4075214933526543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38134124400361236
the lambda is 0.506400859672775
the regulation term lambda/alpha is 1.3279467344161127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3088120811769942
the lambda is 0.5465830699330564
the regulation term lambda/alpha is 1.7699536489953087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29246175895884274
the lambda is 0.4542687561105855
the regulation term lambda/alpha is 1.5532586473109236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35812624510707336
the lambda is 0.5848156440715044
the regulation term lambda/alpha is 1.632987394980379
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36520026104811626
the lambda is 0.5159306914884401
the regulation term lambda/alpha is 1.4127336327956912
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2909996987128449
the lambda is 0.44779847588168187
the regulation term lambda/alpha is 1.5388279708274342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3576915717790076
the lambda is 0.5451841083979946
the regulation term lambda/alpha is 1.5241737614517386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3353252658220422
the lambda is 0.5369159187904676
the regulation term lambda/alpha is 1.6011794323765929
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2880730896518756
the lambda is 0.4754455198241728
the regulation term lambda/alpha is 1.6504336465399425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3547681594896797
the lambda is 0.6167157281114024
the regulation term lambda/alpha is 1.7383626788788604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34312610119013914
the lambda is 0.591588376756242
the regulation term lambda/alpha is 1.7241135976083046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2933573363245797
the lambda is 0.4785687699373182
the regulation term lambda/alpha is 1.6313509521637282
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2856797128744078
the lambda is 0.4297432884043656
the regulation term lambda/alpha is 1.504283535153551
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35551171308812246
the lambda is 0.527298624356867
the regulation term lambda/alpha is 1.4832102711230863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2920526194358854
the lambda is 0.543504542098365
the regulation term lambda/alpha is 1.860981569513644
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35410588801910997
the lambda is 0.5576603907942992
the regulation term lambda/alpha is 1.574840774079995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3466601521679992
the lambda is 0.5154094432117101
the regulation term lambda/alpha is 1.4867859486830526
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3207939246443709
the lambda is 0.5353133670117154
the regulation term lambda/alpha is 1.668714167842046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3143184887984709
the lambda is 0.5801118388991966
the regulation term lambda/alpha is 1.845617930770666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.397201268001195
the lambda is 0.5061736553297107
the regulation term lambda/alpha is 1.2743505524966952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29447646223610136
the lambda is 0.4866644046059466
the regulation term lambda/alpha is 1.6526427983767185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34032272706429717
the lambda is 0.4611537468767229
the regulation term lambda/alpha is 1.3550483414808707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2951460570054091
the lambda is 0.5373480895763424
the regulation term lambda/alpha is 1.8206175445077843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3388081999134406
the lambda is 0.519363192111343
the regulation term lambda/alpha is 1.5329121085145843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3989639917478395
the lambda is 0.5304436094340828
the regulation term lambda/alpha is 1.3295525922282816
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32003516807595844
the lambda is 0.5116981206237504
the regulation term lambda/alpha is 1.598880909557733
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2805508096183173
the lambda is 0.5175124478900683
the regulation term lambda/alpha is 1.8446300283151267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3255620226540558
the lambda is 0.509530459024598
the regulation term lambda/alpha is 1.5650795349862665
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.26509567829237446
the lambda is 0.5061331933895407
the regulation term lambda/alpha is 1.9092472448054227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3639637425602955
the lambda is 0.5695437488491429
the regulation term lambda/alpha is 1.5648364994894797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3661311708396509
the lambda is 0.5209697619473705
the regulation term lambda/alpha is 1.4229046949283977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2962986423959538
the lambda is 0.42911999578630633
the regulation term lambda/alpha is 1.4482685182636068
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367432067110029
the lambda is 0.5255203389907656
the regulation term lambda/alpha is 1.5605967054942655
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3103172388990188
the lambda is 0.46618337833947804
the regulation term lambda/alpha is 1.5022799893214442
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28353735302061545
the lambda is 0.47759377021609756
the regulation term lambda/alpha is 1.6844121775425218
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3129728301797838
the lambda is 0.5083251620912831
the regulation term lambda/alpha is 1.6241830378671571
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.313981468512477
the lambda is 0.5007823193882056
the regulation term lambda/alpha is 1.5949422803859061
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2999903336442093
the lambda is 0.44576491369636784
the regulation term lambda/alpha is 1.4859309241112024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28939778256086673
the lambda is 0.4840397746074122
the regulation term lambda/alpha is 1.6725759621382308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3213596749588116
the lambda is 0.5120267615310706
the regulation term lambda/alpha is 1.5933136651220992
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34973162711019584
the lambda is 0.49590277770215063
the regulation term lambda/alpha is 1.4179523361949138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3179902928804508
the lambda is 0.5046989350612892
the regulation term lambda/alpha is 1.5871520180367014
540
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28595922140957075
the lambda is 0.4701468577605459
the regulation term lambda/alpha is 1.6441045525409679
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32623357564772465
the lambda is 0.5138799284935595
the regulation term lambda/alpha is 1.5751901914855635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35403050922778534
the lambda is 0.5152462668946282
the regulation term lambda/alpha is 1.4553724988800771
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25694688526844883
the lambda is 0.5435564552876929
the regulation term lambda/alpha is 2.1154428656327346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2773911816819
the lambda is 0.48166147592463043
the regulation term lambda/alpha is 1.7363979381182297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2636505715930414
the lambda is 0.48736878712905884
the regulation term lambda/alpha is 1.848540605029821
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2715192815595552
the lambda is 0.5363963323588643
the regulation term lambda/alpha is 1.9755367989997088
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29376614354551894
the lambda is 0.458444825142808
the regulation term lambda/alpha is 1.5605774702617226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3243256933941232
the lambda is 0.4874913870691607
the regulation term lambda/alpha is 1.503092098462755
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.335363864613685
the lambda is 0.5058950820279776
the regulation term lambda/alpha is 1.5084961005286968
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30109074827307175
the lambda is 0.4810142975350037
the regulation term lambda/alpha is 1.5975724936548092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31716076007894395
the lambda is 0.5463617337543106
the regulation term lambda/alpha is 1.7226649779068401
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3223955368244489
the lambda is 0.5074449382183691
the regulation term lambda/alpha is 1.5739825160628185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.316618644249916
the lambda is 0.5439707261059289
the regulation term lambda/alpha is 1.7180628367436175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34075898026514606
the lambda is 0.5332188724709477
the regulation term lambda/alpha is 1.564797711438295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2973167747485788
the lambda is 0.5616197588084415
the regulation term lambda/alpha is 1.888960887872426
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.37797260522126597
the lambda is 0.48866842192577353
the regulation term lambda/alpha is 1.2928673008979208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29783715371717384
the lambda is 0.4650524502741874
the regulation term lambda/alpha is 1.5614319586058132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.271455879443178
the lambda is 0.4903640442347515
the regulation term lambda/alpha is 1.8064226320704762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30357968491636833
the lambda is 0.5066031877711298
the regulation term lambda/alpha is 1.6687651148682474
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.294998276149187
the lambda is 0.4705003072381174
the regulation term lambda/alpha is 1.5949256157692775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38050010517856
the lambda is 0.5802443093294644
the regulation term lambda/alpha is 1.524951771188523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35686255853978216
the lambda is 0.5606883799893965
the regulation term lambda/alpha is 1.571160567484673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33630629094587633
the lambda is 0.5005359831114943
the regulation term lambda/alpha is 1.488333690409759
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161946906314618
the lambda is 0.5100987721007547
the regulation term lambda/alpha is 1.6132426862767795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3356303849258256
the lambda is 0.5218853794322459
the regulation term lambda/alpha is 1.5549408005701948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3129713217673407
the lambda is 0.49675912659579274
the regulation term lambda/alpha is 1.5872352897722615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3357035667532471
the lambda is 0.49400088957534477
the regulation term lambda/alpha is 1.4715389960049228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33419772825908245
the lambda is 0.5159127883320997
the regulation term lambda/alpha is 1.5437351744418355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3276421114634447
the lambda is 0.5323511459273211
the regulation term lambda/alpha is 1.6247946381175609
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3339867117574583
the lambda is 0.552361009054582
the regulation term lambda/alpha is 1.6538412745465976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3453879228685077
the lambda is 0.5883598102180144
the regulation term lambda/alpha is 1.7034753425411702
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32991055571629907
the lambda is 0.5373511851675518
the regulation term lambda/alpha is 1.6287783941949336
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2792446996247758
the lambda is 0.48628132216911474
the regulation term lambda/alpha is 1.741416481038087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27121935773815736
the lambda is 0.4598040990340573
the regulation term lambda/alpha is 1.695321834210539
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3545571619603687
the lambda is 0.5129634172858365
the regulation term lambda/alpha is 1.4467721211711808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2933735030898228
the lambda is 0.55048387047243
the regulation term lambda/alpha is 1.8763926008133296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3075777004889801
the lambda is 0.480831644636495
the regulation term lambda/alpha is 1.5632851272120174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3037509982525141
the lambda is 0.5316695544982082
the regulation term lambda/alpha is 1.7503466904040295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33211763870582023
the lambda is 0.531345156954395
the regulation term lambda/alpha is 1.5998703321657797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40246458643993793
the lambda is 0.5520221054423342
the regulation term lambda/alpha is 1.3716041710037898
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32514650877315104
the lambda is 0.566160912286793
the regulation term lambda/alpha is 1.7412486279586457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.314336603250066
the lambda is 0.5065069859910738
the regulation term lambda/alpha is 1.6113522280067694
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33463868595678953
the lambda is 0.49936841685005456
the regulation term lambda/alpha is 1.4922614682826476
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31457526796350055
the lambda is 0.5422255093263555
the regulation term lambda/alpha is 1.7236749501530066
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33621287109688164
the lambda is 0.4985917757585002
the regulation term lambda/alpha is 1.4829645698329859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2875016200193151
the lambda is 0.561819270518016
the regulation term lambda/alpha is 1.9541429731083653
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28672944556243884
the lambda is 0.5382468773881839
the regulation term lambda/alpha is 1.877194287919669
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.353665557681856
the lambda is 0.5294211365969845
the regulation term lambda/alpha is 1.4969541848155639
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3209142864242398
the lambda is 0.5504665411878382
the regulation term lambda/alpha is 1.7153070600918547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3171614715507492
the lambda is 0.5515422542072964
the regulation term lambda/alpha is 1.738995129233545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31265385051706407
the lambda is 0.5090643802117647
the regulation term lambda/alpha is 1.628204416385337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29784893420148517
the lambda is 0.5030086002685613
the regulation term lambda/alpha is 1.6888044324116744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3566012033922848
the lambda is 0.527232888601453
the regulation term lambda/alpha is 1.4784944178145751
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3262751851512196
the lambda is 0.5033535339683163
the regulation term lambda/alpha is 1.54272698898332
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2989514284300908
the lambda is 0.531182051179727
the regulation term lambda/alpha is 1.7768172373992952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38857733449878384
the lambda is 0.48101827771841243
the regulation term lambda/alpha is 1.2378958704291536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3445414819965657
the lambda is 0.47913378685108965
the regulation term lambda/alpha is 1.3906418004432497
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32647585147601227
the lambda is 0.5571855184057439
the regulation term lambda/alpha is 1.706666866436469
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3074501065354138
the lambda is 0.5113694242581321
the regulation term lambda/alpha is 1.6632598700993775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052580961701589
the lambda is 0.5435761625683321
the regulation term lambda/alpha is 1.7807100594158471
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3732470578619271
the lambda is 0.5278441412938422
the regulation term lambda/alpha is 1.4141950490313153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34519885638019876
the lambda is 0.5481751624681374
the regulation term lambda/alpha is 1.587998199693867
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3563364590273402
the lambda is 0.5644588788038413
the regulation term lambda/alpha is 1.584061536516904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30701146580035765
the lambda is 0.5260633613362835
the regulation term lambda/alpha is 1.7134974420739393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34713622581465914
the lambda is 0.4956170797419261
the regulation term lambda/alpha is 1.4277307952484999
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3504912353094198
the lambda is 0.5193561722324647
the regulation term lambda/alpha is 1.4817950348286684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205128404450477
the lambda is 0.5362274817853453
the regulation term lambda/alpha is 1.673029639126992
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3093169679415432
the lambda is 0.5247790242171795
the regulation term lambda/alpha is 1.696573672338453
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29031934429405054
the lambda is 0.4772380283194485
the regulation term lambda/alpha is 1.6438381998964458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32395417338952065
the lambda is 0.4759281327052031
the regulation term lambda/alpha is 1.469121782644701
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2977000669911886
the lambda is 0.5318563495595405
the regulation term lambda/alpha is 1.7865509905151702
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2524922996858045
the lambda is 0.4308309687582331
the regulation term lambda/alpha is 1.7063132986405887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3708237622678622
the lambda is 0.53185760722647
the regulation term lambda/alpha is 1.4342597787524902
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26914912291621695
the lambda is 0.49062160020192785
the regulation term lambda/alpha is 1.822861597638023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3061783142732016
the lambda is 0.5483291324065603
the regulation term lambda/alpha is 1.7908816753014345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31019358267261854
the lambda is 0.5036130769947771
the regulation term lambda/alpha is 1.6235444739238705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33980567530379724
the lambda is 0.46142693766322107
the regulation term lambda/alpha is 1.357914158586935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3467326794293206
the lambda is 0.5445974542909939
the regulation term lambda/alpha is 1.5706551086771932
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29756605619515236
the lambda is 0.547416449230712
the regulation term lambda/alpha is 1.8396468207102914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39142376620940506
the lambda is 0.4948693372431175
the regulation term lambda/alpha is 1.2642802506232358
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33024614784545203
the lambda is 0.5534043900295175
the regulation term lambda/alpha is 1.6757330665019554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38765239131958146
the lambda is 0.6168142640813168
the regulation term lambda/alpha is 1.5911529965845452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215627003291455
the lambda is 0.4685360475975246
the regulation term lambda/alpha is 1.4570596873267325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36843783149063175
the lambda is 0.4645856609116804
the regulation term lambda/alpha is 1.2609607950194806
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30160422395096476
the lambda is 0.5131756079427241
the regulation term lambda/alpha is 1.7014868068497506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30445913736881997
the lambda is 0.579798935222426
the regulation term lambda/alpha is 1.9043571502998153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30513724430102435
the lambda is 0.43469012931884643
the regulation term lambda/alpha is 1.424572507740207
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3403848362463357
the lambda is 0.5567441671659541
the regulation term lambda/alpha is 1.6356315202097889
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29949256923074286
the lambda is 0.47618538096481616
the regulation term lambda/alpha is 1.589973942218049
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3992359590788481
the lambda is 0.5887813838286304
the regulation term lambda/alpha is 1.4747704219507631
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37813724218127975
the lambda is 0.5038291209725804
the regulation term lambda/alpha is 1.3323975127819958
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3046060881622119
the lambda is 0.5060005583535261
the regulation term lambda/alpha is 1.6611636405772217
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3605252471955759
the lambda is 0.44464818049069166
the regulation term lambda/alpha is 1.2333343751914305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29460875504073974
the lambda is 0.5256580331201711
the regulation term lambda/alpha is 1.784258017204821
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3060936647080218
the lambda is 0.4733597959854547
the regulation term lambda/alpha is 1.546454077829365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30793431433020746
the lambda is 0.4411903172345965
the regulation term lambda/alpha is 1.4327416487968747
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30692464399322733
the lambda is 0.4275047420686744
the regulation term lambda/alpha is 1.3928654815939374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35288012227601917
the lambda is 0.609545778350752
the regulation term lambda/alpha is 1.7273451800551451
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31860569897813257
the lambda is 0.550198578312391
the regulation term lambda/alpha is 1.7268949679087624
550
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32810511237109613
the lambda is 0.4648235003434214
the regulation term lambda/alpha is 1.416690818940038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29552304027970705
the lambda is 0.5132942324710932
the regulation term lambda/alpha is 1.7369008926859637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282505385716222
the lambda is 0.5421384577882734
the regulation term lambda/alpha is 1.6515995987314496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31498802514693425
the lambda is 0.474804659809601
the regulation term lambda/alpha is 1.507373683771363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30391138901714154
the lambda is 0.4721590210010549
the regulation term lambda/alpha is 1.553607525298842
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33193597265957875
the lambda is 0.47840497595670856
the regulation term lambda/alpha is 1.4412567945666528
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31280275605253577
the lambda is 0.5229060173007503
the regulation term lambda/alpha is 1.6716796996920553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36972100775179445
the lambda is 0.5841954198776883
the regulation term lambda/alpha is 1.5800979863981042
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27838482321187813
the lambda is 0.5014146245444556
the regulation term lambda/alpha is 1.8011564666469981
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2894555344523288
the lambda is 0.526783037398455
the regulation term lambda/alpha is 1.8199100542166773
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24436071462370754
the lambda is 0.4289344190758295
the regulation term lambda/alpha is 1.7553329705077516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2979143991527404
the lambda is 0.5186996272019923
the regulation term lambda/alpha is 1.7411029096853272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29648909818369557
the lambda is 0.4816426474964998
the regulation term lambda/alpha is 1.6244868713455656
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37965055211991217
the lambda is 0.4953860946750605
the regulation term lambda/alpha is 1.3048475549657397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3299755540852583
the lambda is 0.5121906408678766
the regulation term lambda/alpha is 1.552207836388807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37994334048110806
the lambda is 0.5197988091689582
the regulation term lambda/alpha is 1.3680955915973059
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.338592650999434
the lambda is 0.4845751475120689
the regulation term lambda/alpha is 1.4311449054837253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33404817621651733
the lambda is 0.5201301501448999
the regulation term lambda/alpha is 1.5570513092930982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2925005574537684
the lambda is 0.4885717053312621
the regulation term lambda/alpha is 1.6703274331656068
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38072367869731094
the lambda is 0.5082415262814804
the regulation term lambda/alpha is 1.3349354261875337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2933387453818051
the lambda is 0.5148959830337622
the regulation term lambda/alpha is 1.7552948294081698
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3432049829937677
the lambda is 0.5796030281063818
the regulation term lambda/alpha is 1.688795491984179
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2644831830498967
the lambda is 0.47306429971849256
the regulation term lambda/alpha is 1.788636594067478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3177374049904203
the lambda is 0.5439691386820862
the regulation term lambda/alpha is 1.712008501795647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2869515428257314
the lambda is 0.45480194628946236
the regulation term lambda/alpha is 1.5849433734031821
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190773571210577
the lambda is 0.49793465281112376
the regulation term lambda/alpha is 1.5605452461554885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34898428814397603
the lambda is 0.5384708961689564
the regulation term lambda/alpha is 1.5429660144092396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3165625429517678
the lambda is 0.5472891570425965
the regulation term lambda/alpha is 1.728850014721997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31525502547095
the lambda is 0.45494350684728624
the regulation term lambda/alpha is 1.4430967632241858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4100561074807617
the lambda is 0.5092537659635298
the regulation term lambda/alpha is 1.2419124033835347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2985564570414382
the lambda is 0.53818559993862
the regulation term lambda/alpha is 1.8026258928438532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3122237199270421
the lambda is 0.48725375852395825
the regulation term lambda/alpha is 1.5605917405564693
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3464842016647674
the lambda is 0.5252500233133478
the regulation term lambda/alpha is 1.515942201086389
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3108003466110722
the lambda is 0.51728432637164
the regulation term lambda/alpha is 1.6643621283310752
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28389097300495814
the lambda is 0.42706420462607103
the regulation term lambda/alpha is 1.504324706437962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33581020373471476
the lambda is 0.5538604343624769
the regulation term lambda/alpha is 1.6493258042868129
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30548387742593713
the lambda is 0.5184030646043449
the regulation term lambda/alpha is 1.6969899327339424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2914762746717175
the lambda is 0.5055835684277546
the regulation term lambda/alpha is 1.7345616517062354
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3348906255023981
the lambda is 0.47498582357667224
the regulation term lambda/alpha is 1.41833120250561
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3050860496282812
the lambda is 0.49347720132904044
the regulation term lambda/alpha is 1.617501691507351
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3461605836250688
the lambda is 0.5326645849860199
the regulation term lambda/alpha is 1.5387788505780775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2743193739674632
the lambda is 0.4938992766111649
the regulation term lambda/alpha is 1.8004534986644651
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2936908667669599
the lambda is 0.48421640432946106
the regulation term lambda/alpha is 1.648728166659949
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3391438944917169
the lambda is 0.5615605462071825
the regulation term lambda/alpha is 1.6558179443236236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3501702079186189
the lambda is 0.585177430672757
the regulation term lambda/alpha is 1.671122835237756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33734132701702413
the lambda is 0.521214723149315
the regulation term lambda/alpha is 1.5450663212782454
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29319990174772104
the lambda is 0.557964868792855
the regulation term lambda/alpha is 1.903018607669748
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3375470753677686
the lambda is 0.50094464531507
the regulation term lambda/alpha is 1.4840734281856074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28728565658661054
the lambda is 0.4840136475803895
the regulation term lambda/alpha is 1.684781806830198
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3105857148619529
the lambda is 0.45664972762454864
the regulation term lambda/alpha is 1.4702856756548424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3154431492215671
the lambda is 0.5237112191451302
the regulation term lambda/alpha is 1.6602396356919318
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28950939311426943
the lambda is 0.4385960910512078
the regulation term lambda/alpha is 1.514963249838646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2949647490650742
the lambda is 0.5017519967094906
the regulation term lambda/alpha is 1.7010574934796552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30675468889714513
the lambda is 0.5215745640955233
the regulation term lambda/alpha is 1.7002985870263494
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2727913890691454
the lambda is 0.4963523786407271
the regulation term lambda/alpha is 1.8195309622288514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3702717691464223
the lambda is 0.5511541006119504
the regulation term lambda/alpha is 1.4885123483286649
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2963601533257673
the lambda is 0.49787214386013734
the regulation term lambda/alpha is 1.6799564255619157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.313714417305288
the lambda is 0.5485228858149652
the regulation term lambda/alpha is 1.7484784107998956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29095661240841975
the lambda is 0.550283916710362
the regulation term lambda/alpha is 1.8912920113941973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35818038217237635
the lambda is 0.49417163548768844
the regulation term lambda/alpha is 1.3796725339632518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31013883219863375
the lambda is 0.48665883549923905
the regulation term lambda/alpha is 1.5691644675683503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3491702678298933
the lambda is 0.518340353038353
the regulation term lambda/alpha is 1.4844916672311717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32218434749051506
the lambda is 0.47159754735364795
the regulation term lambda/alpha is 1.4637506478105102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3278731166720545
the lambda is 0.5051365001642274
the regulation term lambda/alpha is 1.5406462880867278
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26965686875775774
the lambda is 0.5270449882382844
the regulation term lambda/alpha is 1.954502366901499
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33220850141000796
the lambda is 0.5788918544459353
the regulation term lambda/alpha is 1.7425558105494523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.306785427988795
the lambda is 0.511467427980567
the regulation term lambda/alpha is 1.667182927603875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2961838613046043
the lambda is 0.5513085629318981
the regulation term lambda/alpha is 1.8613727314632988
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32345385793337117
the lambda is 0.5689800908764837
the regulation term lambda/alpha is 1.7590765326215059
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3034907424242248
the lambda is 0.49414332558591384
the regulation term lambda/alpha is 1.6281990074517378
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2706728713263452
the lambda is 0.4609194904775821
the regulation term lambda/alpha is 1.7028654856284435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3218938567241753
the lambda is 0.5802398355239027
the regulation term lambda/alpha is 1.8025812652308524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28276997574596113
the lambda is 0.5153210323796413
the regulation term lambda/alpha is 1.8224036375156134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2873324695513266
the lambda is 0.5423194236153472
the regulation term lambda/alpha is 1.8874282619788363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2884756205165814
the lambda is 0.5470220018341135
the regulation term lambda/alpha is 1.896250368937749
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3365011300597321
the lambda is 0.48561326931580967
the regulation term lambda/alpha is 1.4431252258487477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.41626272313249163
the lambda is 0.5455985833735645
the regulation term lambda/alpha is 1.310707284254965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3288397493523104
the lambda is 0.5179351519539152
the regulation term lambda/alpha is 1.5750381545237488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3174925989425491
the lambda is 0.5322981855610669
the regulation term lambda/alpha is 1.676568799820708
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128778029166888
the lambda is 0.478625050716289
the regulation term lambda/alpha is 1.5297507405590367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30804790041281616
the lambda is 0.535638655061223
the regulation term lambda/alpha is 1.7388161202962644
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3293530917144568
the lambda is 0.558754153977109
the regulation term lambda/alpha is 1.696520142162621
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36112190122623344
the lambda is 0.4989047403945003
the regulation term lambda/alpha is 1.381541077127719
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3523899503153562
the lambda is 0.5077797841126416
the regulation term lambda/alpha is 1.4409598901961476
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3311071980347642
the lambda is 0.49974903974833446
the regulation term lambda/alpha is 1.5093270176985518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2993736950554593
the lambda is 0.5096429007736389
the regulation term lambda/alpha is 1.7023636651818292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40430481338111146
the lambda is 0.5192185736852192
the regulation term lambda/alpha is 1.2842255558203957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3244478937542015
the lambda is 0.4828254930326686
the regulation term lambda/alpha is 1.4881449450815432
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32515966690725245
the lambda is 0.5104302159814228
the regulation term lambda/alpha is 1.5697833031887574
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34538842878231774
the lambda is 0.5670746617556842
the regulation term lambda/alpha is 1.641846149145561
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.41079109995713553
the lambda is 0.5540244100099296
the regulation term lambda/alpha is 1.348676760688681
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3356796253785276
the lambda is 0.47025423996367716
the regulation term lambda/alpha is 1.400901944624721
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31759258245537014
the lambda is 0.5512520644371671
the regulation term lambda/alpha is 1.7357208413853056
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2945147859569838
the lambda is 0.48648011301443533
the regulation term lambda/alpha is 1.6518020018373187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2919990295177813
the lambda is 0.5801883562599445
the regulation term lambda/alpha is 1.986953029323729
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29479547104807746
the lambda is 0.5844126691662759
the regulation term lambda/alpha is 1.9824343538539826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31144129855387326
the lambda is 0.5993416201726152
the regulation term lambda/alpha is 1.9244127961049482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3151250530655724
the lambda is 0.521949500755826
the regulation term lambda/alpha is 1.6563249912320261
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31526807645559146
the lambda is 0.4811753033491661
the regulation term lambda/alpha is 1.5262417583118164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27177473376439937
the lambda is 0.4334851223403443
the regulation term lambda/alpha is 1.5950162707771471
560
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2995072023375181
the lambda is 0.4533189925694676
the regulation term lambda/alpha is 1.5135495541727149
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29050328191975805
the lambda is 0.5148815330544109
the regulation term lambda/alpha is 1.7723776807334999
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3040965378011104
the lambda is 0.5041255253851611
the regulation term lambda/alpha is 1.6577812066866626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34620406262455283
the lambda is 0.5377696006584625
the regulation term lambda/alpha is 1.553331282659315
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33787143104286205
the lambda is 0.5090959564976654
the regulation term lambda/alpha is 1.506774203803819
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3507697943274053
the lambda is 0.552219927897752
the regulation term lambda/alpha is 1.5743086686144787
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2988492162951689
the lambda is 0.4793721662484527
the regulation term lambda/alpha is 1.604060309045562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3074357730544963
the lambda is 0.5651641387862981
the regulation term lambda/alpha is 1.8383161242791244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33482434509630965
the lambda is 0.4915141802714222
the regulation term lambda/alpha is 1.4679762313282265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2903522804330593
the lambda is 0.5001719583879813
the regulation term lambda/alpha is 1.7226382986969375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3171657397697141
the lambda is 0.5458022450189983
the regulation term lambda/alpha is 1.7208739046508976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2640161125385479
the lambda is 0.46966122321203807
the regulation term lambda/alpha is 1.7789112137747456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28684742314022355
the lambda is 0.46250911242253256
the regulation term lambda/alpha is 1.6123871965077334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2869391581555197
the lambda is 0.5399604291324669
the regulation term lambda/alpha is 1.8817941496845505
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35192387125838204
the lambda is 0.5426648184363464
the regulation term lambda/alpha is 1.5419949107059083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3201255958275265
the lambda is 0.5007034427761224
the regulation term lambda/alpha is 1.564084375951886
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28560314410540816
the lambda is 0.5379283531926569
the regulation term lambda/alpha is 1.883481902405537
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2878881786085043
the lambda is 0.4602323666080997
the regulation term lambda/alpha is 1.5986497564179742
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30023084858562443
the lambda is 0.5034553295835645
the regulation term lambda/alpha is 1.6768940698643144
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34692478435338586
the lambda is 0.45515027606759567
the regulation term lambda/alpha is 1.311956644769342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29585263688722313
the lambda is 0.5649171655729472
the regulation term lambda/alpha is 1.9094545565544159
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31993418901772014
the lambda is 0.4915880846141061
the regulation term lambda/alpha is 1.5365287658796558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3067760960104316
the lambda is 0.5226903875649024
the regulation term lambda/alpha is 1.7038171955455383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3694591739933113
the lambda is 0.5278477350186284
the regulation term lambda/alpha is 1.428703824872906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2759519884983074
the lambda is 0.503442370336349
the regulation term lambda/alpha is 1.8243839193767468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047922594928341
the lambda is 0.4726821598096137
the regulation term lambda/alpha is 1.5508338715561338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2587546638962847
the lambda is 0.5345116328965223
the regulation term lambda/alpha is 2.065708207334063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2987764051778614
the lambda is 0.5122574795080012
the regulation term lambda/alpha is 1.7145178489012698
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27930195326862334
the lambda is 0.47095607819575463
the regulation term lambda/alpha is 1.6861897050279657
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3017037920242068
the lambda is 0.4747296368864827
the regulation term lambda/alpha is 1.5734957578802768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30143065186175066
the lambda is 0.5407666184301915
the regulation term lambda/alpha is 1.794000096175391
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28261819477073047
the lambda is 0.4708410341596544
the regulation term lambda/alpha is 1.6659968921732613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30587161154285464
the lambda is 0.559904410176964
the regulation term lambda/alpha is 1.8305210063553665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28097295727357174
the lambda is 0.46864741100748514
the regulation term lambda/alpha is 1.667944899591111
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34888095225046406
the lambda is 0.47063446388087954
the regulation term lambda/alpha is 1.3489829721142466
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28132580827808945
the lambda is 0.48895554814922876
the regulation term lambda/alpha is 1.7380401433554156
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30900869532564595
the lambda is 0.5440595415070295
the regulation term lambda/alpha is 1.7606609449409745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2807336395177255
the lambda is 0.4693546130597639
the regulation term lambda/alpha is 1.6718858981989897
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3643579094125137
the lambda is 0.592541095028885
the regulation term lambda/alpha is 1.6262611013008914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3464845073024589
the lambda is 0.5355268913757689
the regulation term lambda/alpha is 1.5456012609195484
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3022612307257276
the lambda is 0.4712315907323937
the regulation term lambda/alpha is 1.5590209488691924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35199532672391526
the lambda is 0.5584960799211242
the regulation term lambda/alpha is 1.5866576557113672
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3274852568076929
the lambda is 0.5216404378647094
the regulation term lambda/alpha is 1.592866936819171
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3098916674366564
the lambda is 0.5081929233562185
the regulation term lambda/alpha is 1.6399050918660016
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3739176623953098
the lambda is 0.5317933033076837
the regulation term lambda/alpha is 1.4222203356242265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32765755365262994
the lambda is 0.48001366119859046
the regulation term lambda/alpha is 1.4649857933917272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2786569312881723
the lambda is 0.48884857357642664
the regulation term lambda/alpha is 1.7543025802967922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30072664488125084
the lambda is 0.5251041131439071
the regulation term lambda/alpha is 1.7461176855521305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3475461925218644
the lambda is 0.5299487578795065
the regulation term lambda/alpha is 1.52482970402896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3484445726890031
the lambda is 0.49437675308576307
the regulation term lambda/alpha is 1.4188103125572533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137468055111315
the lambda is 0.517981293474179
the regulation term lambda/alpha is 1.6509532029507832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2900845117106994
the lambda is 0.5265647542214292
the regulation term lambda/alpha is 1.8152115434090155
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2901690308277994
the lambda is 0.4985703898374553
the regulation term lambda/alpha is 1.7182067583681304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3029728819309981
the lambda is 0.5033878809602487
the regulation term lambda/alpha is 1.661494843208096
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28220077046652714
the lambda is 0.5026741986655057
the regulation term lambda/alpha is 1.7812644445814143
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3100349011654777
the lambda is 0.5191609564186109
the regulation term lambda/alpha is 1.6745242373261535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3675507322625922
the lambda is 0.5551065887818005
the regulation term lambda/alpha is 1.5102856287746729
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33125984865697616
the lambda is 0.5244500136086374
the regulation term lambda/alpha is 1.583198252776213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3036481090436877
the lambda is 0.47336333295629923
the regulation term lambda/alpha is 1.5589207337635471
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2891080436350078
the lambda is 0.5361988452153343
the regulation term lambda/alpha is 1.85466595281684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27888685216077314
the lambda is 0.49732019241440784
the regulation term lambda/alpha is 1.78323283640389
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29615100210353085
the lambda is 0.4756595211475015
the regulation term lambda/alpha is 1.6061384826285903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24478694731065292
the lambda is 0.47707806611991826
the regulation term lambda/alpha is 1.9489522270747164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31192549945161707
the lambda is 0.48445059822925157
the regulation term lambda/alpha is 1.5530971308243267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28094603273582525
the lambda is 0.4998320499312481
the regulation term lambda/alpha is 1.7791034280282658
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3124230427221006
the lambda is 0.511667183942837
the regulation term lambda/alpha is 1.63773830343866
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29408567744946335
the lambda is 0.5151673633315265
the regulation term lambda/alpha is 1.7517594457487802
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2670300406123492
the lambda is 0.5184506043412124
the regulation term lambda/alpha is 1.9415441167304974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34700313259005144
the lambda is 0.5063709739076617
the regulation term lambda/alpha is 1.4592691718028004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3452404164268583
the lambda is 0.5081226515561077
the regulation term lambda/alpha is 1.4717936469172264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28850594123592194
the lambda is 0.46624139358024974
the regulation term lambda/alpha is 1.6160547390564375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33843153693888034
the lambda is 0.48203092322476115
the regulation term lambda/alpha is 1.4243085251000542
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3326092005444677
the lambda is 0.5235232438794429
the regulation term lambda/alpha is 1.5739890629076307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36043314796506337
the lambda is 0.5247124816028964
the regulation term lambda/alpha is 1.4557830892228496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32537968671525686
the lambda is 0.5371090011686009
the regulation term lambda/alpha is 1.6507146054222819
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3151614920604501
the lambda is 0.5217297574272702
the regulation term lambda/alpha is 1.655436246402841
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25882253545940453
the lambda is 0.49855987926479656
the regulation term lambda/alpha is 1.9262614763427122
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.275482287491624
the lambda is 0.4578373208047999
the regulation term lambda/alpha is 1.6619483051835786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29795295133561156
the lambda is 0.5352011825936008
the regulation term lambda/alpha is 1.7962607189977284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2606454680943041
the lambda is 0.503879200727073
the regulation term lambda/alpha is 1.933197628223348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28780176963944626
the lambda is 0.4508178297297926
the regulation term lambda/alpha is 1.5664178517545964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27199310636601776
the lambda is 0.47763270863892215
the regulation term lambda/alpha is 1.7560471109741205
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.30828389278593865
the lambda is 0.4790561103629539
the regulation term lambda/alpha is 1.5539446645549964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28147375679732206
the lambda is 0.4530875718119929
the regulation term lambda/alpha is 1.6096973905039504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3240863456604728
the lambda is 0.5477802501175104
the regulation term lambda/alpha is 1.690229339965434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2594276371707544
the lambda is 0.4989265066028887
the regulation term lambda/alpha is 1.9231817860426987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3452411844110478
the lambda is 0.5348625068644499
the regulation term lambda/alpha is 1.549243053886749
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30110203163319726
the lambda is 0.4908973565636307
the regulation term lambda/alpha is 1.6303355839247284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2956736407129967
the lambda is 0.45753414203199455
the regulation term lambda/alpha is 1.5474295947676715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3290677757341484
the lambda is 0.5427409451033623
the regulation term lambda/alpha is 1.6493287557327978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3397714737934567
the lambda is 0.5062849627645166
the regulation term lambda/alpha is 1.4900749527674642
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089316654070589
the lambda is 0.5446083731255169
the regulation term lambda/alpha is 1.762876500238078
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3400415952076547
the lambda is 0.5286050015362085
the regulation term lambda/alpha is 1.5545304132966526
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30560736552573425
the lambda is 0.5106056533477107
the regulation term lambda/alpha is 1.6707897483731102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3780327683700754
the lambda is 0.47619432061569883
the regulation term lambda/alpha is 1.25966413617755
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29579114125965666
the lambda is 0.5037418479250885
the regulation term lambda/alpha is 1.7030322334193397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28663398801592754
the lambda is 0.5314707335132618
the regulation term lambda/alpha is 1.8541790427300244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30866463369308506
the lambda is 0.5234929069156106
the regulation term lambda/alpha is 1.6959925102275761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2978113698463357
the lambda is 0.49194979370049124
the regulation term lambda/alpha is 1.651883855053374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34276284750920005
the lambda is 0.6027395537112414
the regulation term lambda/alpha is 1.758473994749572
570
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35958382650526155
the lambda is 0.5718959178497454
the regulation term lambda/alpha is 1.590438378188228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29502269054890745
the lambda is 0.45137417909750494
the regulation term lambda/alpha is 1.5299642826038098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3385410381122434
the lambda is 0.518650130170121
the regulation term lambda/alpha is 1.5320155366161616
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3420077870515065
the lambda is 0.5439142086757149
the regulation term lambda/alpha is 1.5903562119590022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3312177287800589
the lambda is 0.5610357837787728
the regulation term lambda/alpha is 1.6938579521246637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30986100833758123
the lambda is 0.47884945362524456
the regulation term lambda/alpha is 1.5453685386047578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28183261747806615
the lambda is 0.5424455963186056
the regulation term lambda/alpha is 1.9247083647471068
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24122206312316452
the lambda is 0.48889654151591055
the regulation term lambda/alpha is 2.026748860307554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2835551120516202
the lambda is 0.4978675262214543
the regulation term lambda/alpha is 1.7558051506079682
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3119114709438554
the lambda is 0.5108403978937323
the regulation term lambda/alpha is 1.6377736809355254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3551689913240657
the lambda is 0.5064577816281591
the regulation term lambda/alpha is 1.4259628345934443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3272283286354795
the lambda is 0.5324603606181182
the regulation term lambda/alpha is 1.6271829607126091
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2645700598693465
the lambda is 0.4760588371955039
the regulation term lambda/alpha is 1.799367764555814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3107400427849418
the lambda is 0.4713980632434463
the regulation term lambda/alpha is 1.5170174368859612
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2991024336921826
the lambda is 0.5528649280383907
the regulation term lambda/alpha is 1.8484133385800683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.353164008073619
the lambda is 0.6169745815119169
the regulation term lambda/alpha is 1.7469916735776345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33279457372900445
the lambda is 0.5168555731548511
the regulation term lambda/alpha is 1.5530769247930347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2891436868714985
the lambda is 0.48813735111339474
the regulation term lambda/alpha is 1.6882172195941223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3194900534357349
the lambda is 0.5020197989755779
the regulation term lambda/alpha is 1.5713158941161174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105197354065407
the lambda is 0.46729190074006305
the regulation term lambda/alpha is 1.5048702142176955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2954456962883693
the lambda is 0.49923182882965056
the regulation term lambda/alpha is 1.689758338339023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.360245266386174
the lambda is 0.5393155492693842
the regulation term lambda/alpha is 1.4970787948987268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33054624963453044
the lambda is 0.531979354308358
the regulation term lambda/alpha is 1.60939461541779
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36319573880950284
the lambda is 0.503049131892507
the regulation term lambda/alpha is 1.385063419360098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33290527594963837
the lambda is 0.5114516620742201
the regulation term lambda/alpha is 1.5363278957212805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28682195153695134
the lambda is 0.48567425491878846
the regulation term lambda/alpha is 1.6932952736576683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3998011114445819
the lambda is 0.5196379831738153
the regulation term lambda/alpha is 1.2997412170672378
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33863992200685517
the lambda is 0.49166837363951077
the regulation term lambda/alpha is 1.4518913503339332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3290985629949188
the lambda is 0.5002279912894465
the regulation term lambda/alpha is 1.5199944561811105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32695038388811176
the lambda is 0.5080265304939715
the regulation term lambda/alpha is 1.5538337176806227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34777012210949115
the lambda is 0.5385577672419176
the regulation term lambda/alpha is 1.548602749353952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.300074763316744
the lambda is 0.5471623920307302
the regulation term lambda/alpha is 1.8234202236233137
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30452050294881616
the lambda is 0.44502658043673665
the regulation term lambda/alpha is 1.4614010423841208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3129146271458864
the lambda is 0.522991001237061
the regulation term lambda/alpha is 1.6713536404715053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31552682522895714
the lambda is 0.47560158581207257
the regulation term lambda/alpha is 1.5073253612175752
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3303515213401479
the lambda is 0.5838267851147055
the regulation term lambda/alpha is 1.7672895306983185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30572506943528716
the lambda is 0.5453753921325333
the regulation term lambda/alpha is 1.783875274408836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3049332201865329
the lambda is 0.5094842525873405
the regulation term lambda/alpha is 1.6708059957379529
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28030481889594727
the lambda is 0.4522001178557512
the regulation term lambda/alpha is 1.6132441805205413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3116328996738213
the lambda is 0.5098202156856778
the regulation term lambda/alpha is 1.6359640340262356
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29148802752336234
the lambda is 0.4735483968373096
the regulation term lambda/alpha is 1.62458952726405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.360590998147482
the lambda is 0.5284920441818575
the regulation term lambda/alpha is 1.465627391967516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3124838445636046
the lambda is 0.560295187238802
the regulation term lambda/alpha is 1.7930372945240585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3523829843929802
the lambda is 0.5265078470463492
the regulation term lambda/alpha is 1.494135274304799
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2741835037149143
the lambda is 0.5242825585157771
the regulation term lambda/alpha is 1.9121593801679126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31997145158455964
the lambda is 0.4867788075334266
the regulation term lambda/alpha is 1.5213194962325707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30680714313775614
the lambda is 0.5433485112260975
the regulation term lambda/alpha is 1.7709773823034312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2676751829205181
the lambda is 0.47118978306624415
the regulation term lambda/alpha is 1.7603043282729594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31599157072508605
the lambda is 0.5138603839274604
the regulation term lambda/alpha is 1.6261838337913166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2828552327439679
the lambda is 0.5358676564697535
the regulation term lambda/alpha is 1.8944944071612948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3568089820394492
the lambda is 0.5382571687868098
the regulation term lambda/alpha is 1.5085303226119444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24810302389703484
the lambda is 0.5332022911648135
the regulation term lambda/alpha is 2.149116454888908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32821363614204196
the lambda is 0.5356495906592958
the regulation term lambda/alpha is 1.632015040433851
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33241149706407186
the lambda is 0.5326036328352911
the regulation term lambda/alpha is 1.6022419126274459
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3405128395228806
the lambda is 0.5202340311373712
the regulation term lambda/alpha is 1.527795638679329
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3467091557670575
the lambda is 0.49912325123968143
the regulation term lambda/alpha is 1.4396021649195383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33659346098847
the lambda is 0.5650275112805582
the regulation term lambda/alpha is 1.6786645516560204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3341569693451886
the lambda is 0.5477312892011118
the regulation term lambda/alpha is 1.6391436942776976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27218696904845724
the lambda is 0.5064821744292929
the regulation term lambda/alpha is 1.860787737928498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.251750684759198
the lambda is 0.5112550628096513
the regulation term lambda/alpha is 2.030799095139192
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28682226252799736
the lambda is 0.47538298410283314
the regulation term lambda/alpha is 1.657413130741307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3468145850089932
the lambda is 0.5083663323139198
the regulation term lambda/alpha is 1.4658158978542883
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29187555416464134
the lambda is 0.5428377358254007
the regulation term lambda/alpha is 1.8598259706230706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2879960654550166
the lambda is 0.4457118079373576
the regulation term lambda/alpha is 1.5476315873731106
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32913396769566183
the lambda is 0.5470341937570852
the regulation term lambda/alpha is 1.6620411365833494
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29329085865248317
the lambda is 0.47255133732977717
the regulation term lambda/alpha is 1.6112037705535773
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2979017354283758
the lambda is 0.45828710353258184
the regulation term lambda/alpha is 1.538383463505426
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3499747004871708
the lambda is 0.4969756210011834
the regulation term lambda/alpha is 1.420032991840224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28000721718609756
the lambda is 0.5107933831738664
the regulation term lambda/alpha is 1.8242150624081392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27564276985817415
the lambda is 0.533431491006907
the regulation term lambda/alpha is 1.9352275819945224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2945914244513012
the lambda is 0.5387860945870886
the regulation term lambda/alpha is 1.828926607726679
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3260114937077501
the lambda is 0.5557431836999971
the regulation term lambda/alpha is 1.704673591042737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35689478212930914
the lambda is 0.5479914528695634
the regulation term lambda/alpha is 1.5354426018787146
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3247363387840016
the lambda is 0.4818916323591271
the regulation term lambda/alpha is 1.4839473591517496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34762453088132766
the lambda is 0.5677935543275321
the regulation term lambda/alpha is 1.6333529537976303
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3264184635250029
the lambda is 0.547447096399183
the regulation term lambda/alpha is 1.6771327531147753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2747897528588647
the lambda is 0.44552071180604386
the regulation term lambda/alpha is 1.621314867715859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35345282900881647
the lambda is 0.5984165994405238
the regulation term lambda/alpha is 1.6930593004974845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3485963213323884
the lambda is 0.5598614052296859
the regulation term lambda/alpha is 1.606045075547011
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3413431002396262
the lambda is 0.5414079746433679
the regulation term lambda/alpha is 1.5861107907653447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3081386395890967
the lambda is 0.43776894190607424
the regulation term lambda/alpha is 1.4206882411431416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27340167779045305
the lambda is 0.5218788823749537
the regulation term lambda/alpha is 1.908835697690723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3339731473841346
the lambda is 0.5299623922975603
the regulation term lambda/alpha is 1.5868413267609196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32435115770400486
the lambda is 0.5519434289226542
the regulation term lambda/alpha is 1.7016847814871827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27822300042437786
the lambda is 0.4417860702839819
the regulation term lambda/alpha is 1.587884788856848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31509970096737105
the lambda is 0.4999873804365772
the regulation term lambda/alpha is 1.58675929841124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27395811913253904
the lambda is 0.4855765920133141
the regulation term lambda/alpha is 1.7724482616205857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32308810668887894
the lambda is 0.5169224688763719
the regulation term lambda/alpha is 1.5999427344261479
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35586210267247137
the lambda is 0.5570930169766448
the regulation term lambda/alpha is 1.5654744149291517
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2860546555830081
the lambda is 0.43751403058632277
the regulation term lambda/alpha is 1.529477049393324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3649043010590404
the lambda is 0.5732392960750722
the regulation term lambda/alpha is 1.570930499891049
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3439749529625294
the lambda is 0.5753810373356253
the regulation term lambda/alpha is 1.6727410887917293
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3519702804978661
the lambda is 0.5258699727068676
the regulation term lambda/alpha is 1.4940749314488098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34235200702718926
the lambda is 0.5259335983340634
the regulation term lambda/alpha is 1.5362363518794684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3006034668493114
the lambda is 0.46580412400342963
the regulation term lambda/alpha is 1.5495633795764943
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29529707091555446
the lambda is 0.5575168324362537
the regulation term lambda/alpha is 1.8879863274894648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32792082307490705
the lambda is 0.5298385480727041
the regulation term lambda/alpha is 1.615751458246593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.334462164184661
the lambda is 0.5024792190789028
the regulation term lambda/alpha is 1.5023499602827342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2704781386408745
the lambda is 0.5218833459800096
the regulation term lambda/alpha is 1.9294843886549244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31367239970432187
the lambda is 0.5487908391360633
the regulation term lambda/alpha is 1.7495668718490118
580
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37769594910922677
the lambda is 0.5363158545878082
the regulation term lambda/alpha is 1.4199671875027438
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3135692701681319
the lambda is 0.5082055887136339
the regulation term lambda/alpha is 1.620712349909608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29258183503330254
the lambda is 0.5341734644405043
the regulation term lambda/alpha is 1.8257232694562295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32519614437953026
the lambda is 0.479575692945759
the regulation term lambda/alpha is 1.4747274875007599
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2712101612551022
the lambda is 0.4748013163339274
the regulation term lambda/alpha is 1.7506767229393219
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31449613941009874
the lambda is 0.5044365545717658
the regulation term lambda/alpha is 1.6039515000659113
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3278087313037726
the lambda is 0.530810921662565
the regulation term lambda/alpha is 1.6192702358823845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3097464940804422
the lambda is 0.5196816766435371
the regulation term lambda/alpha is 1.6777645157416183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2990153696704209
the lambda is 0.4890162035016208
the regulation term lambda/alpha is 1.6354216308031977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31555329895926687
the lambda is 0.4997479003082713
the regulation term lambda/alpha is 1.5837194602512497
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28535389203175565
the lambda is 0.5353002792765159
the regulation term lambda/alpha is 1.8759172179678731
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2585184982919855
the lambda is 0.4601295434387792
the regulation term lambda/alpha is 1.7798708660263172
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2820020816223927
the lambda is 0.5183078166315854
the regulation term lambda/alpha is 1.8379574138236736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30572752671830694
the lambda is 0.5137779027205752
the regulation term lambda/alpha is 1.680509139086985
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3228082885982998
the lambda is 0.4991679588798621
the regulation term lambda/alpha is 1.546329436110059
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3624860975173144
the lambda is 0.4976720506808146
the regulation term lambda/alpha is 1.37294107026282
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246252186286523
the lambda is 0.48844861345415885
the regulation term lambda/alpha is 1.5046539376009127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35367206975939197
the lambda is 0.5141714759065193
the regulation term lambda/alpha is 1.4538085415009372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2898571448335578
the lambda is 0.45773580836363675
the regulation term lambda/alpha is 1.5791772482492314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34340281992416866
the lambda is 0.5606450260737937
the regulation term lambda/alpha is 1.6326162557360397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3351246257131285
the lambda is 0.5442207978304864
the regulation term lambda/alpha is 1.623935563292049
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29457152133031833
the lambda is 0.4858413141890038
the regulation term lambda/alpha is 1.6493152902048691
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3188280708651677
the lambda is 0.5272512934028398
the regulation term lambda/alpha is 1.653716662940304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3100816148107676
the lambda is 0.5143959988475768
the regulation term lambda/alpha is 1.6589051858540385
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3064976194412804
the lambda is 0.5110444112598899
the regulation term lambda/alpha is 1.6673682888352648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34955991097584654
the lambda is 0.5285441376480603
the regulation term lambda/alpha is 1.5120273265105075
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3330969562056996
the lambda is 0.48395158718369746
the regulation term lambda/alpha is 1.4528850479343305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.326162101285994
the lambda is 0.5227676546332785
the regulation term lambda/alpha is 1.6027847888277236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30068107108755204
the lambda is 0.4628048173195581
the regulation term lambda/alpha is 1.5391884020021964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2785634702270974
the lambda is 0.5838516665098867
the regulation term lambda/alpha is 2.0959376548328637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3356141489595832
the lambda is 0.4840807369021612
the regulation term lambda/alpha is 1.4423728510935256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25501825916673987
the lambda is 0.4428108612293175
the regulation term lambda/alpha is 1.7363888479051701
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2890702240577379
the lambda is 0.4947686832707037
the regulation term lambda/alpha is 1.7115864661725944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.281028510606663
the lambda is 0.5018497296152462
the regulation term lambda/alpha is 1.7857609127696372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212060474481709
the lambda is 0.503460895068594
the regulation term lambda/alpha is 1.5674078961724138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34449220348263443
the lambda is 0.525219631923294
the regulation term lambda/alpha is 1.524619792882395
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3222116208030285
the lambda is 0.5720482754923976
the regulation term lambda/alpha is 1.7753806460074788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30472884375927417
the lambda is 0.5161110454204856
the regulation term lambda/alpha is 1.6936730998401859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35603999633854866
the lambda is 0.5172098552865543
the regulation term lambda/alpha is 1.4526734653562732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.327477103261891
the lambda is 0.4928020681329347
the regulation term lambda/alpha is 1.504844348579783
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34718938081841794
the lambda is 0.46452081302818177
the regulation term lambda/alpha is 1.33794648883898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38115273317276455
the lambda is 0.5336552747242342
the regulation term lambda/alpha is 1.4001087445497737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27255632356866905
the lambda is 0.47116198403099485
the regulation term lambda/alpha is 1.7286774999820844
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25986565320848953
the lambda is 0.5030475011148231
the regulation term lambda/alpha is 1.9357983438897537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34695257713334077
the lambda is 0.6041616754545328
the regulation term lambda/alpha is 1.7413379097695576
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33039191695586423
the lambda is 0.49186592455077804
the regulation term lambda/alpha is 1.488734739889186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3652886627133233
the lambda is 0.5149609485279794
the regulation term lambda/alpha is 1.4097370137438898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.296263872085914
the lambda is 0.5278735113118407
the regulation term lambda/alpha is 1.781768082605637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29442818879843574
the lambda is 0.45019035799199847
the regulation term lambda/alpha is 1.5290328002533644
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3923217379080638
the lambda is 0.49913201566069554
the regulation term lambda/alpha is 1.272251745014602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35353937206169983
the lambda is 0.5054559929388096
the regulation term lambda/alpha is 1.4297021290477294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3427701937542514
the lambda is 0.4920702207947052
the regulation term lambda/alpha is 1.435568873142728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3112070407992458
the lambda is 0.5366484098667706
the regulation term lambda/alpha is 1.7244096036148266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30248688482794145
the lambda is 0.4728538910651642
the regulation term lambda/alpha is 1.5632211338158668
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3225959604085224
the lambda is 0.4622443262962839
the regulation term lambda/alpha is 1.4328893818475485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31486619559922746
the lambda is 0.48267266788819513
the regulation term lambda/alpha is 1.5329453419717292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3065441045067623
the lambda is 0.4951304270793458
the regulation term lambda/alpha is 1.6152012705513419
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3150206153655402
the lambda is 0.5082636041599612
the regulation term lambda/alpha is 1.6134296594214566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3328619466112396
the lambda is 0.46108155582309307
the regulation term lambda/alpha is 1.3852035671761704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3093339625024142
the lambda is 0.48987192328244294
the regulation term lambda/alpha is 1.583634461989022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31569419277937794
the lambda is 0.5299695620236602
the regulation term lambda/alpha is 1.6787434616956292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3360364899249779
the lambda is 0.46982912770127905
the regulation term lambda/alpha is 1.3981491349530852
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3318825629055144
the lambda is 0.4718473447299367
the regulation term lambda/alpha is 1.4217298450363893
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3419711283534074
the lambda is 0.5169213538981275
the regulation term lambda/alpha is 1.5115935558276696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3245801263695216
the lambda is 0.49909285746221477
the regulation term lambda/alpha is 1.537656858553371
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24729507430024983
the lambda is 0.501775588788147
the regulation term lambda/alpha is 2.029056139544952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3284744005036927
the lambda is 0.4865460262177458
the regulation term lambda/alpha is 1.4812296649956929
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29612185794449347
the lambda is 0.5566671599565991
the regulation term lambda/alpha is 1.8798583928273997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2911806273599561
the lambda is 0.5240148538077511
the regulation term lambda/alpha is 1.7996212816725836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2961298708516922
the lambda is 0.4999122028173923
the regulation term lambda/alpha is 1.6881518955842127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3378144326433482
the lambda is 0.5217964702123226
the regulation term lambda/alpha is 1.544624562453836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33740651962761764
the lambda is 0.5020028640636648
the regulation term lambda/alpha is 1.4878279904540839
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3221972681672482
the lambda is 0.4885425179684644
the regulation term lambda/alpha is 1.5162838615840424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30395132340678654
the lambda is 0.4584620830276335
the regulation term lambda/alpha is 1.5083404733660624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31311683711693794
the lambda is 0.5016123370745263
the regulation term lambda/alpha is 1.6019973301122483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34208701172892647
the lambda is 0.5920484941880362
the regulation term lambda/alpha is 1.7306956238875912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3038009851559753
the lambda is 0.5074858197156614
the regulation term lambda/alpha is 1.6704548191478434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.41891063738158646
the lambda is 0.53757156685548
the regulation term lambda/alpha is 1.2832607217032903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3284100595929766
the lambda is 0.4948546240743381
the regulation term lambda/alpha is 1.5068193242547103
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3451785144124524
the lambda is 0.455325964836797
the regulation term lambda/alpha is 1.319102857870029
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34637340626863256
the lambda is 0.5408428827964442
the regulation term lambda/alpha is 1.5614445942105306
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29684938462192284
the lambda is 0.4809362843170127
the regulation term lambda/alpha is 1.6201356958497624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3040707403630901
the lambda is 0.5768013413328867
the regulation term lambda/alpha is 1.8969314201166798
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3100384635064109
the lambda is 0.5208953334233751
the regulation term lambda/alpha is 1.6800990674907152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3466135698248532
the lambda is 0.5367931160799922
the regulation term lambda/alpha is 1.5486788828009197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26545401833664045
the lambda is 0.5134228484643943
the regulation term lambda/alpha is 1.93413100951174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30897465488372894
the lambda is 0.5108878886271435
the regulation term lambda/alpha is 1.6534944874989732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29651843612016393
the lambda is 0.5271953191697487
the regulation term lambda/alpha is 1.7779512332113578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33305905743393505
the lambda is 0.5210592894887699
the regulation term lambda/alpha is 1.5644651537276575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320009600738833
the lambda is 0.5530857974181904
the regulation term lambda/alpha is 1.7283412627034778
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28510441565701117
the lambda is 0.46469719392227915
the regulation term lambda/alpha is 1.6299193151793316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3327790911830308
the lambda is 0.49571206039587634
the regulation term lambda/alpha is 1.489613000124552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33696126130641296
the lambda is 0.5568134515908871
the regulation term lambda/alpha is 1.6524553874000174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2716245570051695
the lambda is 0.4423164954546315
the regulation term lambda/alpha is 1.6284112906853756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2892334049043861
the lambda is 0.5281044718164011
the regulation term lambda/alpha is 1.8258764819747575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34109424636839464
the lambda is 0.4824172543365551
the regulation term lambda/alpha is 1.4143224621136712
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3021812440126678
the lambda is 0.4972206470487951
the regulation term lambda/alpha is 1.6454384807150737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.369070251448376
the lambda is 0.4924905511656202
the regulation term lambda/alpha is 1.3344086911174624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3097428716108184
the lambda is 0.5091563346903532
the regulation term lambda/alpha is 1.6438032360276271
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26720860552677544
the lambda is 0.4785981238486976
the regulation term lambda/alpha is 1.7911029583242222
590
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2787547366904673
the lambda is 0.5361823093477256
the regulation term lambda/alpha is 1.9234912945824094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3018986993056546
the lambda is 0.5056841586069666
the regulation term lambda/alpha is 1.6750127104555401
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.34421384178818537
the lambda is 0.535929778409172
the regulation term lambda/alpha is 1.5569675397858072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35248916202384617
the lambda is 0.5638352348914271
the regulation term lambda/alpha is 1.5995817620437451
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367509300602368
the lambda is 0.4958511933645487
the regulation term lambda/alpha is 1.4724567895799205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3466235197920298
the lambda is 0.5175925196683712
the regulation term lambda/alpha is 1.4932411971897372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28168853667619215
the lambda is 0.5227749434033127
the regulation term lambda/alpha is 1.8558616178416065
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32278949776248306
the lambda is 0.5594371258462759
the regulation term lambda/alpha is 1.7331329851937263
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36095546376171916
the lambda is 0.47522854681334226
the regulation term lambda/alpha is 1.3165849932307971
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31800443110227544
the lambda is 0.5429468207323336
the regulation term lambda/alpha is 1.7073561486245863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28588959697732075
the lambda is 0.49022811196138527
the regulation term lambda/alpha is 1.7147462417118817
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3401725322558538
the lambda is 0.4574305570113787
the regulation term lambda/alpha is 1.3447016253132738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.301321278743986
the lambda is 0.5033528881869992
the regulation term lambda/alpha is 1.6704857031177904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3481352000388319
the lambda is 0.5442513848194838
the regulation term lambda/alpha is 1.5633333967917538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30328777840701787
the lambda is 0.5469529200906826
the regulation term lambda/alpha is 1.8034123332086978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32255962776171687
the lambda is 0.4984875006650927
the regulation term lambda/alpha is 1.545411941736671
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3403369427669972
the lambda is 0.4990634694018822
the regulation term lambda/alpha is 1.4663805384875686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28882524467081205
the lambda is 0.48358442535227225
the regulation term lambda/alpha is 1.6743149509089366
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3129136235729849
the lambda is 0.5508622720571714
the regulation term lambda/alpha is 1.7604291745664011
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2808456564923851
the lambda is 0.507877046531228
the regulation term lambda/alpha is 1.8083849074767469
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28574704553462155
the lambda is 0.5115518993267598
the regulation term lambda/alpha is 1.790226381412505
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3456243733002168
the lambda is 0.5484726402509413
the regulation term lambda/alpha is 1.586903825716383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2562666871589754
the lambda is 0.5027322837103159
the regulation term lambda/alpha is 1.961754332112801
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3077525841947597
the lambda is 0.48192544154156225
the regulation term lambda/alpha is 1.5659509173660686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3115669100617785
the lambda is 0.5491047126896184
the regulation term lambda/alpha is 1.7623974015107704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2803352810702052
the lambda is 0.48817378524278815
the regulation term lambda/alpha is 1.7413926045239139
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36232520055967243
the lambda is 0.5893360486072731
the regulation term lambda/alpha is 1.6265389426320445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32785052223096284
the lambda is 0.5393443194973044
the regulation term lambda/alpha is 1.645092146955158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29619750962660896
the lambda is 0.4717481242525541
the regulation term lambda/alpha is 1.5926809271531246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3061719114615313
the lambda is 0.4769099705372295
the regulation term lambda/alpha is 1.5576542219717973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3678677363303936
the lambda is 0.5489118343809269
the regulation term lambda/alpha is 1.4921445404712848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090266709769721
the lambda is 0.528674129126686
the regulation term lambda/alpha is 1.7107718484469627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3194276399933729
the lambda is 0.5500357258985393
the regulation term lambda/alpha is 1.7219415511755676
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37686319208543434
the lambda is 0.576678349384523
the regulation term lambda/alpha is 1.5302060840523553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3312416018594688
the lambda is 0.5937303987839979
the regulation term lambda/alpha is 1.792439100194581
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31217034171560637
the lambda is 0.5433159935513253
the regulation term lambda/alpha is 1.7404471884337347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28238656815235924
the lambda is 0.48028627191337586
the regulation term lambda/alpha is 1.7008113206512059
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3160780007803682
the lambda is 0.5643418880689942
the regulation term lambda/alpha is 1.7854513337710465
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3528654771397654
the lambda is 0.5147119716411028
the regulation term lambda/alpha is 1.4586634425481984
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.338272611850057
the lambda is 0.5465845034477624
the regulation term lambda/alpha is 1.6158106932110776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.262655028703823
the lambda is 0.47246103694624264
the regulation term lambda/alpha is 1.798789230412956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2685059297377794
the lambda is 0.5054925323982659
the regulation term lambda/alpha is 1.8826121750529885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30174070493238936
the lambda is 0.5206173165448564
the regulation term lambda/alpha is 1.7253797980670538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3131294011657173
the lambda is 0.4528727338270716
the regulation term lambda/alpha is 1.4462798195925333
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3777834056906261
the lambda is 0.5822188657212877
the regulation term lambda/alpha is 1.5411446266596411
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30917219544393937
the lambda is 0.4968486505129347
the regulation term lambda/alpha is 1.6070288914548454
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33165129175070457
the lambda is 0.54290454210345
the regulation term lambda/alpha is 1.6369740013301082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29433458334602
the lambda is 0.4492421761906291
the regulation term lambda/alpha is 1.526297627290707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3580222026021403
the lambda is 0.5343178801272922
the regulation term lambda/alpha is 1.4924154877653333
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35764831565676103
the lambda is 0.5406572897699681
the regulation term lambda/alpha is 1.5117009254668006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3478914294326404
the lambda is 0.49047434375329035
the regulation term lambda/alpha is 1.4098488846166222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33001182320781486
the lambda is 0.5084584977607766
the regulation term lambda/alpha is 1.540728125490796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3451352562122505
the lambda is 0.4850852454333775
the regulation term lambda/alpha is 1.4054931702922313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3154652234469101
the lambda is 0.47690181599479464
the regulation term lambda/alpha is 1.511741328517794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2646728491835189
the lambda is 0.48930815042964493
the regulation term lambda/alpha is 1.8487281636144264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3336211162525512
the lambda is 0.5567155905384241
the regulation term lambda/alpha is 1.6687060962801599
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3004843322030386
the lambda is 0.5694772966482882
the regulation term lambda/alpha is 1.895197970799655
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31400246119324576
the lambda is 0.4769799490231206
the regulation term lambda/alpha is 1.5190325171673542
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3289935475293359
the lambda is 0.49701329076524015
the regulation term lambda/alpha is 1.5107083239099761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2969034623615312
the lambda is 0.5293875669508696
the regulation term lambda/alpha is 1.7830292807641595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2551436911935132
the lambda is 0.45438883404814395
the regulation term lambda/alpha is 1.7809134606566215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29577005377840454
the lambda is 0.5479002479693769
the regulation term lambda/alpha is 1.852453421061593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30895376224787024
the lambda is 0.5173707129312948
the regulation term lambda/alpha is 1.6745894569046027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235789330990033
the lambda is 0.48619377769802347
the regulation term lambda/alpha is 1.502550778079443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32017951485922447
the lambda is 0.48047433923051086
the regulation term lambda/alpha is 1.500640474896604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31420050700466384
the lambda is 0.5534339467167807
the regulation term lambda/alpha is 1.7614037354451684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35080046111198754
the lambda is 0.4701991866584903
the regulation term lambda/alpha is 1.340360799891841
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3311767397053193
the lambda is 0.540062839263505
the regulation term lambda/alpha is 1.630739042071772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.274753299941491
the lambda is 0.4496469496520894
the regulation term lambda/alpha is 1.6365479495527158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3173032548549836
the lambda is 0.5406671574592443
the regulation term lambda/alpha is 1.7039445678120895
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30195655941427235
the lambda is 0.5799798642258684
the regulation term lambda/alpha is 1.9207394114931586
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31097200476591996
the lambda is 0.5330176913967052
the regulation term lambda/alpha is 1.714037544305402
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3084933213361431
the lambda is 0.49440947671804925
the regulation term lambda/alpha is 1.602658607248507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35274788875911955
the lambda is 0.5259451200614677
the regulation term lambda/alpha is 1.4909943810340394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2793761957304944
the lambda is 0.48394508277390963
the regulation term lambda/alpha is 1.7322344930230082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3681813533700548
the lambda is 0.5725898940603074
the regulation term lambda/alpha is 1.5551843916571295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3812567789389521
the lambda is 0.5129452201164375
the regulation term lambda/alpha is 1.3454061631218148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3297983008782439
the lambda is 0.4847740464625232
the regulation term lambda/alpha is 1.4699106853236754
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30657995303571517
the lambda is 0.5335449216553654
the regulation term lambda/alpha is 1.7403124906644167
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235441770851717
the lambda is 0.5385359927378116
the regulation term lambda/alpha is 1.6644898313099425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3511769664139659
the lambda is 0.4852216714394081
the regulation term lambda/alpha is 1.381701301182239
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34330572801788417
the lambda is 0.5686693170026088
the regulation term lambda/alpha is 1.656451584090623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3627833364144607
the lambda is 0.5537465838690669
the regulation term lambda/alpha is 1.5263837345506985
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3774407503205847
the lambda is 0.5628076294819403
the regulation term lambda/alpha is 1.491115172391724
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33505492888170363
the lambda is 0.5040534172514083
the regulation term lambda/alpha is 1.504390396326246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29564338884494634
the lambda is 0.5315477982978252
the regulation term lambda/alpha is 1.7979356831706514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34222592793188694
the lambda is 0.5182937225419503
the regulation term lambda/alpha is 1.514478244456995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31838253351814366
the lambda is 0.5259477487150528
the regulation term lambda/alpha is 1.6519365648086992
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3501396260420482
the lambda is 0.5981175141891204
the regulation term lambda/alpha is 1.7082257182661542
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31104751554753296
the lambda is 0.5544219875044673
the regulation term lambda/alpha is 1.7824350293508222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2901317600603984
the lambda is 0.5018646059954532
the regulation term lambda/alpha is 1.7297816891572888
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3225399258678573
the lambda is 0.5588994486734324
the regulation term lambda/alpha is 1.7328070227882741
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36714141947373596
the lambda is 0.6342821644739007
the regulation term lambda/alpha is 1.7276235554764887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.310066310877228
the lambda is 0.5055614840457873
the regulation term lambda/alpha is 1.6304947242268004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31383507489571044
the lambda is 0.46769196687644915
the regulation term lambda/alpha is 1.490247599099197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3615054482925014
the lambda is 0.5672148995743022
the regulation term lambda/alpha is 1.5690355491277603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29669969964823484
the lambda is 0.5370366552727175
the regulation term lambda/alpha is 1.81003437451883
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36947735922135694
the lambda is 0.5557179384555859
the regulation term lambda/alpha is 1.5040649300588151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314095902174759
the lambda is 0.5720822607167257
the regulation term lambda/alpha is 1.7262091309467444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3452100543947896
the lambda is 0.5481740830567929
the regulation term lambda/alpha is 1.5879435609656067
600
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026586939816799
the lambda is 0.5086262226095489
the regulation term lambda/alpha is 1.6805273819107156
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3140271809407752
the lambda is 0.5056331855757831
the regulation term lambda/alpha is 1.6101573884814269
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29563101055464275
the lambda is 0.46085770970998347
the regulation term lambda/alpha is 1.558895018642847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3261337836524318
the lambda is 0.5441298912817183
the regulation term lambda/alpha is 1.6684254087016326
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32631779828739
the lambda is 0.5013425724627328
the regulation term lambda/alpha is 1.5363629415677704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.42310068339790724
the lambda is 0.585785078330446
the regulation term lambda/alpha is 1.3845051575573595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37148155354037876
the lambda is 0.5732657918059318
the regulation term lambda/alpha is 1.5431877743119748
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3585529509480877
the lambda is 0.5183019046062913
the regulation term lambda/alpha is 1.4455379693174872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3396161657225706
the lambda is 0.5455838482225388
the regulation term lambda/alpha is 1.606471962433677
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2977046911914249
the lambda is 0.5431664889975313
the regulation term lambda/alpha is 1.8245143763901046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31378200724638294
the lambda is 0.503371385892315
the regulation term lambda/alpha is 1.6042072976385344
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2797607669057873
the lambda is 0.5323135869427852
the regulation term lambda/alpha is 1.9027456667004636
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36637794945302626
the lambda is 0.5603271342146521
the regulation term lambda/alpha is 1.529369152950326
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32840696043687667
the lambda is 0.5236745114555
the regulation term lambda/alpha is 1.5945901717760818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32567853196428337
the lambda is 0.49702042800500035
the regulation term lambda/alpha is 1.5261074317895407
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29855209570680946
the lambda is 0.479432149106316
the regulation term lambda/alpha is 1.6058575906870813
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30101986754897736
the lambda is 0.46738145734015657
the regulation term lambda/alpha is 1.5526598332055654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3133038908597788
the lambda is 0.4718000416447254
the regulation term lambda/alpha is 1.505886314881045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2748086820653683
the lambda is 0.4946195348421439
the regulation term lambda/alpha is 1.7998686618077429
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30644687195991144
the lambda is 0.5029858708636309
the regulation term lambda/alpha is 1.6413477078318168
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3436618534286719
the lambda is 0.5299790279779681
the regulation term lambda/alpha is 1.5421526209279057
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3760623123487937
the lambda is 0.5096868576663294
the regulation term lambda/alpha is 1.3553255429477877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28660901601636796
the lambda is 0.5225645477417088
the regulation term lambda/alpha is 1.8232662566060576
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3238781172472503
the lambda is 0.5051393711768426
the regulation term lambda/alpha is 1.5596588478103832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29851908479870254
the lambda is 0.43635449862783937
the regulation term lambda/alpha is 1.4617306592711887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2809772420021957
the lambda is 0.5378399808951141
the regulation term lambda/alpha is 1.9141763121545308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3258991587450615
the lambda is 0.5094133707203407
the regulation term lambda/alpha is 1.5631012141361045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34496565964535947
the lambda is 0.5471086691492861
the regulation term lambda/alpha is 1.5859800935308719
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3427300993321049
the lambda is 0.5012642444884932
the regulation term lambda/alpha is 1.4625626563448368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3091495623779089
the lambda is 0.5274308666177224
the regulation term lambda/alpha is 1.7060702352636141
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29809461697740636
the lambda is 0.5105693190730598
the regulation term lambda/alpha is 1.7127760449017355
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.28735965559917603
the lambda is 0.5186751641043121
the regulation term lambda/alpha is 1.8049686307662716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3460869095653106
the lambda is 0.5529058746470462
the regulation term lambda/alpha is 1.597592568125454
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3938184998087415
the lambda is 0.5628431784248341
the regulation term lambda/alpha is 1.4291943590719574
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3393109082706425
the lambda is 0.5346992084203401
the regulation term lambda/alpha is 1.5758385462628608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2878298819241588
the lambda is 0.5363490861158462
the regulation term lambda/alpha is 1.8634239173859317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34348184227222966
the lambda is 0.5257426730105325
the regulation term lambda/alpha is 1.5306272655712914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073431430026932
the lambda is 0.5002140618688115
the regulation term lambda/alpha is 1.6275426124097003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31923941051472154
the lambda is 0.5562465690461953
the regulation term lambda/alpha is 1.7424119664590858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31211222982648373
the lambda is 0.4997375720980759
the regulation term lambda/alpha is 1.6011470373202004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2934972334752819
the lambda is 0.5009411506599452
the regulation term lambda/alpha is 1.706800247240266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35338365680801775
the lambda is 0.5523593309640571
the regulation term lambda/alpha is 1.5630585068741212
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34564327819751295
the lambda is 0.49720123732469557
the regulation term lambda/alpha is 1.4384808520435828
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32779670106799225
the lambda is 0.5420332645599739
the regulation term lambda/alpha is 1.6535653433789266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2978318311244243
the lambda is 0.5211740275456708
the regulation term lambda/alpha is 1.7498936415830633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2904717936195434
the lambda is 0.48463625625751594
the regulation term lambda/alpha is 1.6684451533779108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31160000508881863
the lambda is 0.473156204592233
the regulation term lambda/alpha is 1.5184730323010243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35730662483504483
the lambda is 0.5337823056760704
the regulation term lambda/alpha is 1.493905426249787
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34330105742452005
the lambda is 0.5813293252466335
the regulation term lambda/alpha is 1.6933513971900527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2892550839014047
the lambda is 0.4353329456728824
the regulation term lambda/alpha is 1.5050139821268265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3162084027664319
the lambda is 0.5098063251612225
the regulation term lambda/alpha is 1.6122478741900863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30226077097931425
the lambda is 0.49976830255119264
the regulation term lambda/alpha is 1.6534342214901423
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30665426492300313
the lambda is 0.551835355436338
the regulation term lambda/alpha is 1.7995358896276776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3096739693271906
the lambda is 0.4898286881003828
the regulation term lambda/alpha is 1.5817560938835227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3336261762681636
the lambda is 0.49822275917011205
the regulation term lambda/alpha is 1.4933563209669982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3529251558734454
the lambda is 0.5757020046913349
the regulation term lambda/alpha is 1.6312297242358504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29927768927849235
the lambda is 0.45073079264657906
the regulation term lambda/alpha is 1.5060621248888095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34911583079875935
the lambda is 0.5649921434992764
the regulation term lambda/alpha is 1.6183515431156559
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3051384627167297
the lambda is 0.5308400337656503
the regulation term lambda/alpha is 1.739669358754183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30861815777970614
the lambda is 0.47592261207379644
the regulation term lambda/alpha is 1.5421082657538039
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31425691772408854
the lambda is 0.48479494502772014
the regulation term lambda/alpha is 1.5426707184004163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3018356701518374
the lambda is 0.4667249030579619
the regulation term lambda/alpha is 1.54628809385974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29184842003804046
the lambda is 0.5528275595897828
the regulation term lambda/alpha is 1.894228378956876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3223577721679219
the lambda is 0.528923991298537
the regulation term lambda/alpha is 1.6407980106743356
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087389515247989
the lambda is 0.5524789197721459
the regulation term lambda/alpha is 1.789469443500941
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29553007188342284
the lambda is 0.47558098104764307
the regulation term lambda/alpha is 1.6092473365459896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2902378549040977
the lambda is 0.5708019091443762
the regulation term lambda/alpha is 1.9666694040754413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35243451504161216
the lambda is 0.4979015017659034
the regulation term lambda/alpha is 1.4127489803520403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32795856919587735
the lambda is 0.49330405298746904
the regulation term lambda/alpha is 1.5041657676364513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35757672030705573
the lambda is 0.5542021358267076
the regulation term lambda/alpha is 1.5498831561260675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32283466980129144
the lambda is 0.5060220015455189
the regulation term lambda/alpha is 1.5674338876211202
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28840948162846647
the lambda is 0.48209068592338883
the regulation term lambda/alpha is 1.6715493651641642
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3483215250550047
the lambda is 0.47786004755682454
the regulation term lambda/alpha is 1.3718935327966424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3193104391814964
the lambda is 0.4800816446796403
the regulation term lambda/alpha is 1.5034949872301588
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298372796275096
the lambda is 0.4688541018927829
the regulation term lambda/alpha is 1.571370137445457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3214330166403174
the lambda is 0.4595653361121303
the regulation term lambda/alpha is 1.4297390508156245
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3334114343587056
the lambda is 0.5788479501412714
the regulation term lambda/alpha is 1.736137068168182
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36080128955232527
the lambda is 0.5304370103536579
the regulation term lambda/alpha is 1.4701638428504873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3311703350320014
the lambda is 0.516950344624928
the regulation term lambda/alpha is 1.5609802266104977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2956059808408667
the lambda is 0.4894342563138115
the regulation term lambda/alpha is 1.6556980847328937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2844255609407003
the lambda is 0.48077009430825124
the regulation term lambda/alpha is 1.6903195785855782
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3603758206778526
the lambda is 0.5128844622156579
the regulation term lambda/alpha is 1.4231933242661579
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3673834747005766
the lambda is 0.5581240775850596
the regulation term lambda/alpha is 1.5191866701134003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3517840313888092
the lambda is 0.4948458934421275
the regulation term lambda/alpha is 1.4066752589323737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3214947245994036
the lambda is 0.559455556265392
the regulation term lambda/alpha is 1.7401702530655767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40078953697195074
the lambda is 0.5750318611243203
the regulation term lambda/alpha is 1.4347476869501308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35068711207195286
the lambda is 0.5246126333695397
the regulation term lambda/alpha is 1.495956410459422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33646975040547095
the lambda is 0.49203257475323253
the regulation term lambda/alpha is 1.4623382166161947
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35057194133324615
the lambda is 0.6049577133698774
the regulation term lambda/alpha is 1.7256307252348457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3171713356639829
the lambda is 0.4839595602094927
the regulation term lambda/alpha is 1.525861595267891
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27766191008595337
the lambda is 0.47217166733137156
the regulation term lambda/alpha is 1.7005273326298358
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.334752915728567
the lambda is 0.5679903904658522
the regulation term lambda/alpha is 1.6967451627110093
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2821195945807082
the lambda is 0.4908005065930236
the regulation term lambda/alpha is 1.7396895360014295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2921013501174004
the lambda is 0.49851168667910983
the regulation term lambda/alpha is 1.7066394471602053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30851280892193766
the lambda is 0.5750100577456677
the regulation term lambda/alpha is 1.8638125909746628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.313536422255971
the lambda is 0.46881992112276344
the regulation term lambda/alpha is 1.4952646258750093
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3350319344595455
the lambda is 0.47794363874259804
the regulation term lambda/alpha is 1.4265614396239261
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3468921199598986
the lambda is 0.5263933137174122
the regulation term lambda/alpha is 1.5174553800134296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32373943193901833
the lambda is 0.47616591174664424
the regulation term lambda/alpha is 1.4708307508130118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3572548617111928
the lambda is 0.5145464555741478
the regulation term lambda/alpha is 1.4402783858827106
610
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26214992922834435
the lambda is 0.4696839751945488
the regulation term lambda/alpha is 1.7916616517009738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33115374355078675
the lambda is 0.49826177579775116
the regulation term lambda/alpha is 1.5046237148194468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30383689620751875
the lambda is 0.519163295424283
the regulation term lambda/alpha is 1.7086907544951275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3361658474571164
the lambda is 0.49282369867780745
the regulation term lambda/alpha is 1.4660135834907362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30313115324007245
the lambda is 0.5314259313634078
the regulation term lambda/alpha is 1.7531221244770294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31602647282559443
the lambda is 0.501334301593964
the regulation term lambda/alpha is 1.5863680568008471
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137217778444604
the lambda is 0.547757249941792
the regulation term lambda/alpha is 1.7459968947816036
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30696624760393443
the lambda is 0.5735303496339075
the regulation term lambda/alpha is 1.868382449571164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29710615863998785
the lambda is 0.49397421183189866
the regulation term lambda/alpha is 1.6626185538969642
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33454163764595685
the lambda is 0.5379970307288275
the regulation term lambda/alpha is 1.6081616462288804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3596009817738201
the lambda is 0.5441050150821855
the regulation term lambda/alpha is 1.5130798931589506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3278975339341082
the lambda is 0.5140830399031361
the regulation term lambda/alpha is 1.567816121503501
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3226506151098704
the lambda is 0.5748579416868624
the regulation term lambda/alpha is 1.7816731621326967
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3304604438356504
the lambda is 0.5367963911167651
the regulation term lambda/alpha is 1.624389245763202
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3083477071759411
the lambda is 0.45393507973130004
the regulation term lambda/alpha is 1.4721532515637865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26879045532585677
the lambda is 0.4594468269392042
the regulation term lambda/alpha is 1.7093122833629386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29423189970710656
the lambda is 0.5043922885023663
the regulation term lambda/alpha is 1.7142678581230115
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31700675100930836
the lambda is 0.5392578843374368
the regulation term lambda/alpha is 1.7010927452507232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3424575675193447
the lambda is 0.5016199598142694
the regulation term lambda/alpha is 1.4647652947132903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3238871882038483
the lambda is 0.48596450885974984
the regulation term lambda/alpha is 1.50041288003616
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3278778515875915
the lambda is 0.43633760887991396
the regulation term lambda/alpha is 1.3307931803479804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29419044503112896
the lambda is 0.5333537786102126
the regulation term lambda/alpha is 1.8129541173703898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3009264419693602
the lambda is 0.4961401562532411
the regulation term lambda/alpha is 1.6487090765648211
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32488742750056615
the lambda is 0.530358191749182
the regulation term lambda/alpha is 1.6324367976604996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30993543350701497
the lambda is 0.5579888532631537
the regulation term lambda/alpha is 1.800339015611535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30517914057369006
the lambda is 0.5026822745823486
the regulation term lambda/alpha is 1.6471711455684124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2776044746473644
the lambda is 0.5179611480627019
the regulation term lambda/alpha is 1.8658242044572875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30920240623813783
the lambda is 0.4967143632238717
the regulation term lambda/alpha is 1.6064375735851102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3470060045380522
the lambda is 0.5046246989877494
the regulation term lambda/alpha is 1.4542246888768549
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34848652156134086
the lambda is 0.5209433443756587
the regulation term lambda/alpha is 1.4948737243599874
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.366590318015042
the lambda is 0.5284470186240543
the regulation term lambda/alpha is 1.4415193000333713
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30511290584094186
the lambda is 0.47680591126257554
the regulation term lambda/alpha is 1.5627195773591394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3311023282250531
the lambda is 0.4944539892575572
the regulation term lambda/alpha is 1.4933570292549334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161448394373879
the lambda is 0.5075191301589587
the regulation term lambda/alpha is 1.6053373860605817
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29740576466547797
the lambda is 0.46867867946448244
the regulation term lambda/alpha is 1.5758896939729876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3712712857665108
the lambda is 0.4559376607613192
the regulation term lambda/alpha is 1.228044500721379
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.363504185319951
the lambda is 0.5100141586813133
the regulation term lambda/alpha is 1.403048931148912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27667899630389076
the lambda is 0.520313892555272
the regulation term lambda/alpha is 1.8805688162313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28781793641799236
the lambda is 0.5036078717485597
the regulation term lambda/alpha is 1.7497445712249837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2727428123149658
the lambda is 0.46143131994107417
the regulation term lambda/alpha is 1.6918184425267613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3125425733296733
the lambda is 0.5216298593978747
the regulation term lambda/alpha is 1.6689881760449123
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3525439747633938
the lambda is 0.5436501193899813
the regulation term lambda/alpha is 1.5420774663780497
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3396138203020484
the lambda is 0.4974220816959079
the regulation term lambda/alpha is 1.464669727673352
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26976794910085616
the lambda is 0.5264357591672642
the regulation term lambda/alpha is 1.9514392310943116
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3217997446527669
the lambda is 0.5218591992256438
the regulation term lambda/alpha is 1.6216892893707795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2786278370501761
the lambda is 0.501984475959412
the regulation term lambda/alpha is 1.8016307389595578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282865190086387
the lambda is 0.5692094083107614
the regulation term lambda/alpha is 1.73387993521532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3409424508616202
the lambda is 0.4768482452068271
the regulation term lambda/alpha is 1.3986179896394526
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3234036589136852
the lambda is 0.5516327585513967
the regulation term lambda/alpha is 1.7057097016290241
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3217239213336234
the lambda is 0.554818222148727
the regulation term lambda/alpha is 1.7245165353228056
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314547963542208
the lambda is 0.5354375923475269
the regulation term lambda/alpha is 1.6154166367087737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3297034857244417
the lambda is 0.6255315673791735
the regulation term lambda/alpha is 1.8972549410714385
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3014780786529276
the lambda is 0.4917656924047372
the regulation term lambda/alpha is 1.6311822557781244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31271347603030203
the lambda is 0.4924873670546388
the regulation term lambda/alpha is 1.5748837348055849
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24877347862190055
the lambda is 0.43784935488543264
the regulation term lambda/alpha is 1.7600322884534645
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3395919793267665
the lambda is 0.5701459976841755
the regulation term lambda/alpha is 1.6789147930244914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3808314910272171
the lambda is 0.5061352985657014
the regulation term lambda/alpha is 1.3290269068886669
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.344654962625346
the lambda is 0.5850662788099906
the regulation term lambda/alpha is 1.6975420123167688
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2932536419808837
the lambda is 0.505275205875105
the regulation term lambda/alpha is 1.72299720631617
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30235133493527994
the lambda is 0.5096782256452366
the regulation term lambda/alpha is 1.6857151490809068
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31067346692801445
the lambda is 0.574080167831348
the regulation term lambda/alpha is 1.8478570877260239
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3315992645110915
the lambda is 0.4982816135107374
the regulation term lambda/alpha is 1.5026619984981018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3893548999379483
the lambda is 0.5660680184248925
the regulation term lambda/alpha is 1.4538612934243464
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2801030180566983
the lambda is 0.4946572157056129
the regulation term lambda/alpha is 1.7659831698260553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31333581150227335
the lambda is 0.48312896065197103
the regulation term lambda/alpha is 1.5418887433761008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28602242770039327
the lambda is 0.5179575847128634
the regulation term lambda/alpha is 1.810898497985692
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28604430210367165
the lambda is 0.459156406244175
the regulation term lambda/alpha is 1.6051933314782894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33433728938873253
the lambda is 0.5649915855067098
the regulation term lambda/alpha is 1.6898850455469132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3085590104666785
the lambda is 0.5267233789219483
the regulation term lambda/alpha is 1.7070426111534005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3721304379344044
the lambda is 0.44920002235353207
the regulation term lambda/alpha is 1.2071036834474496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30104275484567283
the lambda is 0.570892976284855
the regulation term lambda/alpha is 1.8963850386551198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29159162542834755
the lambda is 0.5019876127963707
the regulation term lambda/alpha is 1.7215433127030033
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30919156763618105
the lambda is 0.42929239205934205
the regulation term lambda/alpha is 1.3884349930412108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.300287027392506
the lambda is 0.5575984124134947
the regulation term lambda/alpha is 1.8568847853845392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3049623693997969
the lambda is 0.45614125187055365
the regulation term lambda/alpha is 1.4957296297516813
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33999141318769177
the lambda is 0.47722731049756534
the regulation term lambda/alpha is 1.4036451862803743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3098204847369559
the lambda is 0.47987569923320816
the regulation term lambda/alpha is 1.5488830560723985
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33154043514938153
the lambda is 0.4808556588494129
the regulation term lambda/alpha is 1.4503680633487577
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32773653515864426
the lambda is 0.4485616437081462
the regulation term lambda/alpha is 1.3686653625327896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2828377943240923
the lambda is 0.5102751274524161
the regulation term lambda/alpha is 1.8041263851312341
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29329930545477795
the lambda is 0.49220130314983745
the regulation term lambda/alpha is 1.6781536607686478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2942479564105923
the lambda is 0.4932919491920886
the regulation term lambda/alpha is 1.6764498731258854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2976360059250849
the lambda is 0.5170345028225884
the regulation term lambda/alpha is 1.7371369475799452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2885635416940649
the lambda is 0.47416690354237073
the regulation term lambda/alpha is 1.6431975458808394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3642860198294711
the lambda is 0.5011299637135581
the regulation term lambda/alpha is 1.3756497269594539
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35784203875162673
the lambda is 0.5888642734987575
the regulation term lambda/alpha is 1.6455983638844627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32280964759990766
the lambda is 0.5319510802579005
the regulation term lambda/alpha is 1.6478785073896058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34112253435351847
the lambda is 0.4884089489979484
the regulation term lambda/alpha is 1.43176981820788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3565818664315367
the lambda is 0.5334422447153147
the regulation term lambda/alpha is 1.495988144472105
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.29696822389056216
the lambda is 0.4329911606109981
the regulation term lambda/alpha is 1.4580386916095196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29139778788614085
the lambda is 0.44959066467724396
the regulation term lambda/alpha is 1.5428760387601657
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3148568550801581
the lambda is 0.5329373405378313
the regulation term lambda/alpha is 1.6926337538439586
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3522728527244862
the lambda is 0.5319020408340287
the regulation term lambda/alpha is 1.5099149330420618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090661764514831
the lambda is 0.5667684678546853
the regulation term lambda/alpha is 1.833809426712392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27687641866046364
the lambda is 0.5016942827369488
the regulation term lambda/alpha is 1.8119790958152402
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236991230758332
the lambda is 0.5264095430624662
the regulation term lambda/alpha is 1.6262309828350814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3508441902954481
the lambda is 0.508299213477743
the regulation term lambda/alpha is 1.4487890281144487
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27016517658833183
the lambda is 0.4258978421363863
the regulation term lambda/alpha is 1.5764350073338815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3480658156977927
the lambda is 0.576315371736394
the regulation term lambda/alpha is 1.6557655068223605
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3331575688499392
the lambda is 0.5859032805837504
the regulation term lambda/alpha is 1.7586371596067594
620
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3926518584742054
the lambda is 0.5923385857663299
the regulation term lambda/alpha is 1.5085592312438847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37400899606187205
the lambda is 0.5201816165919482
the regulation term lambda/alpha is 1.3908264829701982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30305959792240345
the lambda is 0.5043560837313519
the regulation term lambda/alpha is 1.664214191495394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3237204370652284
the lambda is 0.5416377500135806
the regulation term lambda/alpha is 1.6731651387967288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3165454952086265
the lambda is 0.49868863658129176
the regulation term lambda/alpha is 1.575409045870704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35064852561105636
the lambda is 0.5324130893915993
the regulation term lambda/alpha is 1.5183668274771485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3199058581820803
the lambda is 0.552137813316055
the regulation term lambda/alpha is 1.7259384259284045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3344968110993676
the lambda is 0.5107246840927618
the regulation term lambda/alpha is 1.5268447026869951
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3413133856950085
the lambda is 0.4769587853272099
the regulation term lambda/alpha is 1.3974218572060684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.308483500630943
the lambda is 0.47511240434317786
the regulation term lambda/alpha is 1.5401549949071114
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3570838749523996
the lambda is 0.527988314997961
the regulation term lambda/alpha is 1.4786114748764374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32079332226112833
the lambda is 0.49352095948913377
the regulation term lambda/alpha is 1.538439004934784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.341280150297526
the lambda is 0.5321811553252475
the regulation term lambda/alpha is 1.5593674430267774
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31946262778364276
the lambda is 0.5837372297365492
the regulation term lambda/alpha is 1.827247317742241
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30463730092496477
the lambda is 0.4848682582373616
the regulation term lambda/alpha is 1.5916247181982142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3227448173174192
the lambda is 0.4693249485566991
the regulation term lambda/alpha is 1.4541672658220208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3183844674251024
the lambda is 0.511000863564213
the regulation term lambda/alpha is 1.6049805057918607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3109127687360312
the lambda is 0.5099149571421449
the regulation term lambda/alpha is 1.6400579468483296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27979082287354506
the lambda is 0.4602853055888421
the regulation term lambda/alpha is 1.6451050855119498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3241217717526796
the lambda is 0.46832159962974945
the regulation term lambda/alpha is 1.4448939887540206
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137404319883847
the lambda is 0.5025331908404009
the regulation term lambda/alpha is 1.6017482593987304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33190492509981573
the lambda is 0.552476558006961
the regulation term lambda/alpha is 1.664562699215179
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205727517571744
the lambda is 0.4746534438873614
the regulation term lambda/alpha is 1.4806418863912025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3443894881008449
the lambda is 0.473275019859348
the regulation term lambda/alpha is 1.3742435126845758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3174658055039086
the lambda is 0.5112567657517578
the regulation term lambda/alpha is 1.6104309720546053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32530353539760565
the lambda is 0.5189151518223414
the regulation term lambda/alpha is 1.5951721864568484
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31202669548052603
the lambda is 0.5264134047929308
the regulation term lambda/alpha is 1.6870781007447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28474595588555895
the lambda is 0.5854228997148707
the regulation term lambda/alpha is 2.055948074465913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2864256523945891
the lambda is 0.5005832370731846
the regulation term lambda/alpha is 1.7476899603376488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3401360292855212
the lambda is 0.52354697582916
the regulation term lambda/alpha is 1.5392282226875698
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28224160746487537
the lambda is 0.4579512858564623
the regulation term lambda/alpha is 1.6225505869592731
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300843307474604
the lambda is 0.5164244292811729
the regulation term lambda/alpha is 1.5645227027643334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33190397035552666
the lambda is 0.5783995202492682
the regulation term lambda/alpha is 1.7426712902219943
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28648456369650943
the lambda is 0.44718579950441656
the regulation term lambda/alpha is 1.5609420407661048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31278842475641105
the lambda is 0.5284784917141275
the regulation term lambda/alpha is 1.6895717676435391
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3181864998087299
the lambda is 0.5197444754404831
the regulation term lambda/alpha is 1.6334586029040041
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28490172220459875
the lambda is 0.48452457779569214
the regulation term lambda/alpha is 1.700672688274368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.372600200852542
the lambda is 0.5847618973361636
the regulation term lambda/alpha is 1.5694084329481761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35511155395365535
the lambda is 0.5060414477247359
the regulation term lambda/alpha is 1.425021073211203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28131733104466894
the lambda is 0.4680324329311676
the regulation term lambda/alpha is 1.6637170244475663
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27193529207182704
the lambda is 0.5385945834866441
the regulation term lambda/alpha is 1.9805983231642608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2816043395213553
the lambda is 0.5072359644604564
the regulation term lambda/alpha is 1.8012363208699433
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2961911820087737
the lambda is 0.48654796638910897
the regulation term lambda/alpha is 1.6426821456646086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3133990194502066
the lambda is 0.5466442836835519
the regulation term lambda/alpha is 1.7442437587792252
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.308067501153499
the lambda is 0.4894356347271138
the regulation term lambda/alpha is 1.5887285510302678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2980901099151958
the lambda is 0.5757325766606526
the regulation term lambda/alpha is 1.9314044898183431
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3025929718884579
the lambda is 0.47314132838088685
the regulation term lambda/alpha is 1.5636229930525176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2871476675463359
the lambda is 0.48253596762200196
the regulation term lambda/alpha is 1.6804453671703148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32344801401553247
the lambda is 0.5211718041099419
the regulation term lambda/alpha is 1.6113000591338131
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3059291235794915
the lambda is 0.4857467505724045
the regulation term lambda/alpha is 1.5877754457927242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196210741918744
the lambda is 0.44881887073482596
the regulation term lambda/alpha is 1.4042217706376636
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31622343439324735
the lambda is 0.4866818842297026
the regulation term lambda/alpha is 1.5390443316243207
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3436470629701178
the lambda is 0.4836280301746545
the regulation term lambda/alpha is 1.4073393381997532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3768940203509053
the lambda is 0.5511987625261422
the regulation term lambda/alpha is 1.4624768045217362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32683826751907774
the lambda is 0.5213070735454959
the regulation term lambda/alpha is 1.5950001127547493
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3644905544590538
the lambda is 0.5031104428663136
the regulation term lambda/alpha is 1.3803113323827767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2935530619596126
the lambda is 0.5434576132277837
the regulation term lambda/alpha is 1.85130963921798
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29098931946763046
the lambda is 0.5075910996542775
the regulation term lambda/alpha is 1.7443633346506442
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3434475306897102
the lambda is 0.5580957833686084
the regulation term lambda/alpha is 1.6249812081858395
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37249351286581395
the lambda is 0.5696759118633206
the regulation term lambda/alpha is 1.5293579409758449
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3239839396355266
the lambda is 0.5728990274559185
the regulation term lambda/alpha is 1.768294527501625
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29900624041879864
the lambda is 0.5343518788282838
the regulation term lambda/alpha is 1.787092731174613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32175176500492114
the lambda is 0.5256850501942487
the regulation term lambda/alpha is 1.6338218072749606
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3783217762923107
the lambda is 0.5330633316299447
the regulation term lambda/alpha is 1.4090210107759507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29354411722771195
the lambda is 0.485632340798791
the regulation term lambda/alpha is 1.6543759942634781
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2970943356546679
the lambda is 0.5016794494144311
the regulation term lambda/alpha is 1.6886200415398218
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3009369155614261
the lambda is 0.5065770681182514
the regulation term lambda/alpha is 1.683333090502321
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089627990713593
the lambda is 0.46485786366101056
the regulation term lambda/alpha is 1.5045755186650969
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30778170220639317
the lambda is 0.5127819333798733
the regulation term lambda/alpha is 1.6660572402579361
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32703739752198563
the lambda is 0.4931085446489428
the regulation term lambda/alpha is 1.5078047598999524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2934909506328198
the lambda is 0.5319692419182087
the regulation term lambda/alpha is 1.8125575618981995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3175723555116705
the lambda is 0.5526906440678974
the regulation term lambda/alpha is 1.740361320737146
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31905066033952756
the lambda is 0.5211148340949712
the regulation term lambda/alpha is 1.6333294328255294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2743024485007342
the lambda is 0.4529423197855702
the regulation term lambda/alpha is 1.6512514644372847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2979951319707242
the lambda is 0.47079333728179285
the regulation term lambda/alpha is 1.579869221917507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3379428806851793
the lambda is 0.5379141076041595
the regulation term lambda/alpha is 1.5917308466849145
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3427758890225609
the lambda is 0.5057457824347782
the regulation term lambda/alpha is 1.475441530840843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3685710760224286
the lambda is 0.5538924379627655
the regulation term lambda/alpha is 1.5028103776897013
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3336946633393855
the lambda is 0.45525122264279033
the regulation term lambda/alpha is 1.3642748076548508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2969597409479391
the lambda is 0.5109387773656375
the regulation term lambda/alpha is 1.7205658104854413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31861237088935
the lambda is 0.5013717082417012
the regulation term lambda/alpha is 1.5736102990672045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3112237940873992
the lambda is 0.48681056384008664
the regulation term lambda/alpha is 1.5641817016837036
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31278691360465627
the lambda is 0.4781663953645341
the regulation term lambda/alpha is 1.5287289031820157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2641822580219911
the lambda is 0.4273322097121429
the regulation term lambda/alpha is 1.6175658914860622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26050130679443273
the lambda is 0.5128464353583762
the regulation term lambda/alpha is 1.9686904517645067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32276143940496793
the lambda is 0.48565873746853777
the regulation term lambda/alpha is 1.5046987594425214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3431707924112534
the lambda is 0.5041544981905699
the regulation term lambda/alpha is 1.4691066644925737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.336765396823164
the lambda is 0.5438903755689113
the regulation term lambda/alpha is 1.615042343125618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3370857652628557
the lambda is 0.46481900939364756
the regulation term lambda/alpha is 1.378933960712304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2962795929135826
the lambda is 0.5179768259661874
the regulation term lambda/alpha is 1.7482703444825796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2977996087148795
the lambda is 0.48487099562773894
the regulation term lambda/alpha is 1.6281787532231653
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3378760954812377
the lambda is 0.46839786134957595
the regulation term lambda/alpha is 1.3863006812673024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32852855680422505
the lambda is 0.4899344906009733
the regulation term lambda/alpha is 1.4912995551036143
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3184727924746658
the lambda is 0.5090684728801399
the regulation term lambda/alpha is 1.598467702451021
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3776629700247348
the lambda is 0.5221832838799895
the regulation term lambda/alpha is 1.3826700665034473
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28548237447935776
the lambda is 0.552372561052179
the regulation term lambda/alpha is 1.9348744806384506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29306447715789546
the lambda is 0.5276493602714001
the regulation term lambda/alpha is 1.8004548534454976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28730693758310866
the lambda is 0.48432080646089914
the regulation term lambda/alpha is 1.6857261106714512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3086645984779136
the lambda is 0.5438297336029527
the regulation term lambda/alpha is 1.7618791927700328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3263365858693036
the lambda is 0.5260983097034886
the regulation term lambda/alpha is 1.6121340128078336
630
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3124816228348718
the lambda is 0.5349391261170883
the regulation term lambda/alpha is 1.7119058755009482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3036045622376649
the lambda is 0.4715493430070206
the regulation term lambda/alpha is 1.5531694897189547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3598452774523898
the lambda is 0.5108349488801299
the regulation term lambda/alpha is 1.4195960900104272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2633380036128159
the lambda is 0.4733888097487526
the regulation term lambda/alpha is 1.7976471426614633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3133306640767119
the lambda is 0.49953508493971027
the regulation term lambda/alpha is 1.5942744908535682
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2800439923603387
the lambda is 0.48587419610283117
the regulation term lambda/alpha is 1.7349923917583856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.365796042013028
the lambda is 0.5459496694535468
the regulation term lambda/alpha is 1.4924974760500622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3219015828149294
the lambda is 0.536282727991366
the regulation term lambda/alpha is 1.6659835074488918
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3151855167364362
the lambda is 0.5419882486883267
the regulation term lambda/alpha is 1.7195848790905803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3187165629130454
the lambda is 0.5674589939458313
the regulation term lambda/alpha is 1.7804502808366744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3698597775693148
the lambda is 0.5678481186075306
the regulation term lambda/alpha is 1.5353064946379877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35419686035001535
the lambda is 0.5242021810642999
the regulation term lambda/alpha is 1.47997410407954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156446724708237
the lambda is 0.5129225544492264
the regulation term lambda/alpha is 1.6249998786107753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3242637019816451
the lambda is 0.5213365430103195
the regulation term lambda/alpha is 1.6077548607023233
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30762245222394274
the lambda is 0.48412356293388037
the regulation term lambda/alpha is 1.5737588704398224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34669505619563085
the lambda is 0.5155712365441105
the regulation term lambda/alpha is 1.4871029376697755
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3612121382202013
the lambda is 0.5426264739064676
the regulation term lambda/alpha is 1.5022376506508008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33426656448118813
the lambda is 0.47873302664866274
the regulation term lambda/alpha is 1.4321893887044899
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32957256911766564
the lambda is 0.5764447778264019
the regulation term lambda/alpha is 1.7490678285807115
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32616695260813144
the lambda is 0.5290631590869227
the regulation term lambda/alpha is 1.6220624280184448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29282474450939855
the lambda is 0.4535604142450928
the regulation term lambda/alpha is 1.5489142319751439
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3045313096109033
the lambda is 0.5016023578271362
the regulation term lambda/alpha is 1.6471290208813956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3252946200133647
the lambda is 0.510451529145863
the regulation term lambda/alpha is 1.5691975758003351
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176569690220403
the lambda is 0.520292986426682
the regulation term lambda/alpha is 1.637908300984204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2738343730778641
the lambda is 0.5324806630808558
the regulation term lambda/alpha is 1.944535512820541
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224409965251132
the lambda is 0.49086772136328904
the regulation term lambda/alpha is 1.5223489774975247
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32142142421458597
the lambda is 0.5767870111967756
the regulation term lambda/alpha is 1.7944883811220484
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30761531620706306
the lambda is 0.5689685701146585
the regulation term lambda/alpha is 1.8496106667578036
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137529798352818
the lambda is 0.5218140629985023
the regulation term lambda/alpha is 1.663136596415598
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32679603013495007
the lambda is 0.44901899358644404
the regulation term lambda/alpha is 1.3740038194497715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3482142552377562
the lambda is 0.5027070843938907
the regulation term lambda/alpha is 1.443671753330859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29537415716154203
the lambda is 0.5355607276970316
the regulation term lambda/alpha is 1.8131604093046296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3457310393724096
the lambda is 0.4538356772471366
the regulation term lambda/alpha is 1.3126842127654044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3099126016721121
the lambda is 0.4952896790454488
the regulation term lambda/alpha is 1.598159211252293
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3505340844997792
the lambda is 0.5290995437249049
the regulation term lambda/alpha is 1.509409689730866
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3835385134451643
the lambda is 0.5861441902890483
the regulation term lambda/alpha is 1.5282537991399165
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29619211319487326
the lambda is 0.4686990383857889
the regulation term lambda/alpha is 1.5824156603299508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33690018771842184
the lambda is 0.4970392796023516
the regulation term lambda/alpha is 1.4753309666237782
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3122046175647811
the lambda is 0.49318099710077007
the regulation term lambda/alpha is 1.579672334597797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35825403586704885
the lambda is 0.5201736161370312
the regulation term lambda/alpha is 1.4519686146119846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28934004440420547
the lambda is 0.4435055298084508
the regulation term lambda/alpha is 1.5328176600017298
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3310416587638638
the lambda is 0.532164468085256
the regulation term lambda/alpha is 1.607545316418486
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3072135138025542
the lambda is 0.52594529649179
the regulation term lambda/alpha is 1.7119862013290683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3074480529920185
the lambda is 0.5606531087332405
the regulation term lambda/alpha is 1.8235702040623927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2820701539261933
the lambda is 0.531928126213143
the regulation term lambda/alpha is 1.885800815184182
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39751290289255864
the lambda is 0.5497939506393976
the regulation term lambda/alpha is 1.3830845404985461
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3032776093001418
the lambda is 0.45930655111216206
the regulation term lambda/alpha is 1.5144756389107665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30995688630660784
the lambda is 0.5637403266373444
the regulation term lambda/alpha is 1.8187701307584283
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3514252408414191
the lambda is 0.5411918540522707
the regulation term lambda/alpha is 1.539991415404575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3121287791631474
the lambda is 0.4811000092068117
the regulation term lambda/alpha is 1.5413510106203447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32417679373055364
the lambda is 0.49184733271227105
the regulation term lambda/alpha is 1.5172194377401373
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30266455255798896
the lambda is 0.5005390400870213
the regulation term lambda/alpha is 1.6537748998245199
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3106872286792029
the lambda is 0.5380781281801046
the regulation term lambda/alpha is 1.731896513633948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2927908462306565
the lambda is 0.5246070488920689
the regulation term lambda/alpha is 1.7917467559036695
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3722335503562615
the lambda is 0.5541434364013291
the regulation term lambda/alpha is 1.4886982537467761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2995332517883299
the lambda is 0.5005600401798007
the regulation term lambda/alpha is 1.671133462449537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3380635204338467
the lambda is 0.5966032703409277
the regulation term lambda/alpha is 1.7647667798503948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.316050482836969
the lambda is 0.5318576486906651
the regulation term lambda/alpha is 1.682824983896695
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34504159122987316
the lambda is 0.4957408832618907
the regulation term lambda/alpha is 1.436756889205333
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31721653269781014
the lambda is 0.48289814041856527
the regulation term lambda/alpha is 1.5222981485602087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33004806096008527
the lambda is 0.5275589321497982
the regulation term lambda/alpha is 1.5984306364811491
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3568593036581886
the lambda is 0.48248797500201496
the regulation term lambda/alpha is 1.352039781661844
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233051129973214
the lambda is 0.523692177800691
the regulation term lambda/alpha is 1.619807905125923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28553781294370784
the lambda is 0.5062370523972396
the regulation term lambda/alpha is 1.7729247386826534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146095084874401
the lambda is 0.4996602010731958
the regulation term lambda/alpha is 1.5881916712416952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3543212211186647
the lambda is 0.47376612314085925
the regulation term lambda/alpha is 1.3371090832354962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215219045206948
the lambda is 0.5035286773751757
the regulation term lambda/alpha is 1.5660789212038462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211043999890013
the lambda is 0.46179233232455813
the regulation term lambda/alpha is 1.4381376659440848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3653851965747662
the lambda is 0.5702012132497937
the regulation term lambda/alpha is 1.560548206646126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3002312964630761
the lambda is 0.44694586094523314
the regulation term lambda/alpha is 1.4886717880865585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205039423886476
the lambda is 0.5281781666517066
the regulation term lambda/alpha is 1.647961528071409
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30539505344701273
the lambda is 0.5104117384638678
the regulation term lambda/alpha is 1.671316325208346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.338618946863893
the lambda is 0.582296993764553
the regulation term lambda/alpha is 1.7196231904843937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3049937951683465
the lambda is 0.5108425909883759
the regulation term lambda/alpha is 1.6749278151918063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35350589311300895
the lambda is 0.5350650313632531
the regulation term lambda/alpha is 1.5135957894546421
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31392510639535653
the lambda is 0.5178870061996229
the regulation term lambda/alpha is 1.6497151570521322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40518718991503855
the lambda is 0.5254981143169324
the regulation term lambda/alpha is 1.2969267721102467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30053300924614634
the lambda is 0.5487727099004777
the regulation term lambda/alpha is 1.82599812006346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34181825685648143
the lambda is 0.45384180473907093
the regulation term lambda/alpha is 1.3277283926049175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300384543643067
the lambda is 0.48647753199424454
the regulation term lambda/alpha is 1.474002576249056
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33064579319044823
the lambda is 0.5667557552641216
the regulation term lambda/alpha is 1.7140873010825717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27876283120733236
the lambda is 0.5046746459304352
the regulation term lambda/alpha is 1.8104086679873004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3311838800208253
the lambda is 0.5668415302044324
the regulation term lambda/alpha is 1.7115613542808563
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26535537144754756
the lambda is 0.5247210150883719
the regulation term lambda/alpha is 1.9774275237993166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2993720580020049
the lambda is 0.5260191081074801
the regulation term lambda/alpha is 1.757074830624164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31933413833770563
the lambda is 0.5136871304225181
the regulation term lambda/alpha is 1.608619526545196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3129866133723237
the lambda is 0.5202631313233803
the regulation term lambda/alpha is 1.6622536207466607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2750092330392905
the lambda is 0.46809332203749754
the regulation term lambda/alpha is 1.7021003871918046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161861815495484
the lambda is 0.5034105668552215
the regulation term lambda/alpha is 1.5921333575937244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3183294276597456
the lambda is 0.5008526010850396
the regulation term lambda/alpha is 1.5733782602731547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40346527524840503
the lambda is 0.51146928493905
the regulation term lambda/alpha is 1.2676909670210135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40146604960003474
the lambda is 0.49480112225306544
the regulation term lambda/alpha is 1.232485593105611
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300277767829564
the lambda is 0.48463001149430807
the regulation term lambda/alpha is 1.468452189747126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3369148902499976
the lambda is 0.49191782408313905
the regulation term lambda/alpha is 1.460065548655704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33393446646243374
the lambda is 0.5675583413629816
the regulation term lambda/alpha is 1.69960994854908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28727098070724344
the lambda is 0.505039532119737
the regulation term lambda/alpha is 1.7580596928947043
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3237699176774353
the lambda is 0.527563567337704
the regulation term lambda/alpha is 1.6294397302942263
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3365136895636498
the lambda is 0.5157597022653881
the regulation term lambda/alpha is 1.5326559312762666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3217330938867316
the lambda is 0.5057554020380275
the regulation term lambda/alpha is 1.5719719595152442
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33958605444845374
the lambda is 0.48736306797477796
the regulation term lambda/alpha is 1.4351680865291703
640
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3123851390262573
the lambda is 0.5164721247077859
the regulation term lambda/alpha is 1.653318484732317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28751209483020906
the lambda is 0.5328911279182827
the regulation term lambda/alpha is 1.8534563849669796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30153346385787233
the lambda is 0.4908067201842445
the regulation term lambda/alpha is 1.62770232499165
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089227325048146
the lambda is 0.4484810789580249
the regulation term lambda/alpha is 1.4517580992555648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3772892364430061
the lambda is 0.5080983020727671
the regulation term lambda/alpha is 1.346707652895158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3058837261295811
the lambda is 0.5485846158513596
the regulation term lambda/alpha is 1.7934416544244773
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4073906080788441
the lambda is 0.5539776833637228
the regulation term lambda/alpha is 1.3598194763893747
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3303983348978902
the lambda is 0.4759746409319681
the regulation term lambda/alpha is 1.4406084736446034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29575797203626053
the lambda is 0.4801302644162184
the regulation term lambda/alpha is 1.6233890877414912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28244828250745757
the lambda is 0.49540105108686283
the regulation term lambda/alpha is 1.7539531367969377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32128358085664244
the lambda is 0.4682067105484118
the regulation term lambda/alpha is 1.457300461168997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2983740381859383
the lambda is 0.5162964670433573
the regulation term lambda/alpha is 1.7303665901441998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3309851921446765
the lambda is 0.4633737199965298
the regulation term lambda/alpha is 1.3999832348813515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31868709617678
the lambda is 0.5085198422906159
the regulation term lambda/alpha is 1.5956712662395753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2936169519390565
the lambda is 0.5737917908871366
the regulation term lambda/alpha is 1.954218879726786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32257421178076373
the lambda is 0.47564392073988226
the regulation term lambda/alpha is 1.4745255614641375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27672862410841764
the lambda is 0.44846146493259814
the regulation term lambda/alpha is 1.620582136659988
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2967028770505167
the lambda is 0.5321061808194657
the regulation term lambda/alpha is 1.7933974422798376
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29047004478276855
the lambda is 0.46452574726470086
the regulation term lambda/alpha is 1.5992208339834213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32095694305792366
the lambda is 0.4786029138146658
the regulation term lambda/alpha is 1.4911748263015188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30175812120163353
the lambda is 0.5181118997396922
the regulation term lambda/alpha is 1.7169774840740473
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3220106784510529
the lambda is 0.5006475729923665
the regulation term lambda/alpha is 1.5547545671485152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3456033101396154
the lambda is 0.5583958421812426
the regulation term lambda/alpha is 1.6157132347941463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32254127002412125
the lambda is 0.4825194121258961
the regulation term lambda/alpha is 1.4959927828454662
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3623584551952778
the lambda is 0.5729789358358023
the regulation term lambda/alpha is 1.5812489749329002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31844293579547495
the lambda is 0.5129110959834289
the regulation term lambda/alpha is 1.6106844848109747
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32873499538188045
the lambda is 0.5185873619231204
the regulation term lambda/alpha is 1.5775240519211982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3437790977412075
the lambda is 0.5756652323436735
the regulation term lambda/alpha is 1.674520749301131
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39369065422558347
the lambda is 0.5448073170125957
the regulation term lambda/alpha is 1.383846203015078
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3003724870647833
the lambda is 0.4723502151479669
the regulation term lambda/alpha is 1.5725482042770849
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3488515094599807
the lambda is 0.5399522641958748
the regulation term lambda/alpha is 1.5477997071926577
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29625794093880575
the lambda is 0.48243865438880296
the regulation term lambda/alpha is 1.6284412591946495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073495123148852
the lambda is 0.520147465364373
the regulation term lambda/alpha is 1.6923647005220308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35225871256215086
the lambda is 0.5255833183218038
the regulation term lambda/alpha is 1.4920378107867875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34040188336684457
the lambda is 0.52119476520355
the regulation term lambda/alpha is 1.531115985753429
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3032532482693078
the lambda is 0.5299484274651164
the regulation term lambda/alpha is 1.747544108726213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2786482122777144
the lambda is 0.4843695077929825
the regulation term lambda/alpha is 1.7382832060312527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.280787103413132
the lambda is 0.5114268019298465
the regulation term lambda/alpha is 1.8214041731730324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3473321835267726
the lambda is 0.42911548339553557
the regulation term lambda/alpha is 1.2354613357113768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3116562830156769
the lambda is 0.5205101770951385
the regulation term lambda/alpha is 1.6701417730408978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40101666562389493
the lambda is 0.46410699202276545
the regulation term lambda/alpha is 1.1573259462938172
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28992471661544544
the lambda is 0.5852351680255324
the regulation term lambda/alpha is 2.018576321665549
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31701928746010194
the lambda is 0.5001030902893959
the regulation term lambda/alpha is 1.577516290242548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33310825658052207
the lambda is 0.5734036996059458
the regulation term lambda/alpha is 1.7213734222385968
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3169706228866698
the lambda is 0.5238592280795416
the regulation term lambda/alpha is 1.6527059299966833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3103026770418863
the lambda is 0.5185287979591058
the regulation term lambda/alpha is 1.6710419739276436
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178297411901257
the lambda is 0.44823494433153394
the regulation term lambda/alpha is 1.4102989312866094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.294896802872394
the lambda is 0.49140140310891467
the regulation term lambda/alpha is 1.6663503921456584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34369395879344694
the lambda is 0.5775193050798968
the regulation term lambda/alpha is 1.6803301027091202
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31615135495014557
the lambda is 0.48863453686921576
the regulation term lambda/alpha is 1.5455715410306223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30053340950595864
the lambda is 0.513275402814934
the regulation term lambda/alpha is 1.7078813422397796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30754242903548024
the lambda is 0.5446758636436019
the regulation term lambda/alpha is 1.7710592497816433
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32055898255632115
the lambda is 0.6097004205101418
the regulation term lambda/alpha is 1.9019913765886112
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3387305951611161
the lambda is 0.547626578304728
the regulation term lambda/alpha is 1.6167024358819766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2932483221618335
the lambda is 0.4773993555679414
the regulation term lambda/alpha is 1.6279696062659188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37651824445519844
the lambda is 0.4641189463990457
the regulation term lambda/alpha is 1.232659912856549
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30668399290379644
the lambda is 0.48961401567823737
the regulation term lambda/alpha is 1.5964772437008936
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32906021555656106
the lambda is 0.4640560649591165
the regulation term lambda/alpha is 1.4102466449012323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3066492365911946
the lambda is 0.5729119104075149
the regulation term lambda/alpha is 1.8682972009849967
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.292386599569667
the lambda is 0.4834120646267551
the regulation term lambda/alpha is 1.653331805692321
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3518869529099747
the lambda is 0.5370677657558985
the regulation term lambda/alpha is 1.5262508635644123
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35529362613676074
the lambda is 0.5149984647000954
the regulation term lambda/alpha is 1.4495009952749913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32970751550144406
the lambda is 0.5302821718879086
the regulation term lambda/alpha is 1.6083411719669642
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2875016322469548
the lambda is 0.4816310898452949
the regulation term lambda/alpha is 1.6752290624617707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32822290712952823
the lambda is 0.4698107024943898
the regulation term lambda/alpha is 1.431376946243993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28954830674919424
the lambda is 0.5060203063274521
the regulation term lambda/alpha is 1.7476196355924996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30543966820088214
the lambda is 0.48857010488005126
the regulation term lambda/alpha is 1.5995633696102876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36963323409330795
the lambda is 0.5555927961842031
the regulation term lambda/alpha is 1.5030921057383944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28287126425832554
the lambda is 0.5160598475639614
the regulation term lambda/alpha is 1.8243629267788821
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27436805634563105
the lambda is 0.47809915838597633
the regulation term lambda/alpha is 1.742546726298553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3360058686815091
the lambda is 0.5168517453453321
the regulation term lambda/alpha is 1.5382223750241752
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3076705661579806
the lambda is 0.5557861142219023
the regulation term lambda/alpha is 1.8064325137183288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3003339593366846
the lambda is 0.4865232832881203
the regulation term lambda/alpha is 1.6199409629289077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3016772813293368
the lambda is 0.5110980424083944
the regulation term lambda/alpha is 1.694188041460225
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3404191200064228
the lambda is 0.5138206151848518
the regulation term lambda/alpha is 1.5093764861831418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2991205237805893
the lambda is 0.470741486654686
the regulation term lambda/alpha is 1.5737518800280788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29792362109662923
the lambda is 0.5260806165247516
the regulation term lambda/alpha is 1.7658237859364678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.316610306971141
the lambda is 0.5016348448798825
the regulation term lambda/alpha is 1.5843920233639346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35095675508785956
the lambda is 0.4873766428472115
the regulation term lambda/alpha is 1.3887085396752092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3382864561610449
the lambda is 0.5842063642224603
the regulation term lambda/alpha is 1.7269575934318298
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176817932302676
the lambda is 0.4504343250867952
the regulation term lambda/alpha is 1.4178789426572636
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.286541921043062
the lambda is 0.4928765286707996
the regulation term lambda/alpha is 1.7200852387554466
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2933434647967083
the lambda is 0.5057233480911408
the regulation term lambda/alpha is 1.7239973232115984
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3007220720104369
the lambda is 0.5273652901568334
the regulation term lambda/alpha is 1.7536633963420238
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30028317018301465
the lambda is 0.5095024455081646
the regulation term lambda/alpha is 1.6967399311710887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33296774621632214
the lambda is 0.5160191447941058
the regulation term lambda/alpha is 1.54975714812587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32258896851978053
the lambda is 0.4976415206783968
the regulation term lambda/alpha is 1.5426489100413314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28562359697546097
the lambda is 0.5328518077293372
the regulation term lambda/alpha is 1.8655734798239254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3621121356801981
the lambda is 0.5596892650006837
the regulation term lambda/alpha is 1.545624158520269
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2678786359054084
the lambda is 0.468197571023073
the regulation term lambda/alpha is 1.7477973539793594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3977629576889952
the lambda is 0.49937135717372727
the regulation term lambda/alpha is 1.2554496277759934
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3132817209265091
the lambda is 0.5145084701503317
the regulation term lambda/alpha is 1.642318832483135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29486468247277553
the lambda is 0.5183825548080032
the regulation term lambda/alpha is 1.7580354163163125
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3191301443097341
the lambda is 0.56958093770205
the regulation term lambda/alpha is 1.784792028763159
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3298803586135086
the lambda is 0.4868383761546409
the regulation term lambda/alpha is 1.4758028583478835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32383854912776144
the lambda is 0.5157199066607203
the regulation term lambda/alpha is 1.592521668744438
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3276303767773391
the lambda is 0.4669248687288676
the regulation term lambda/alpha is 1.4251574390679729
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28157339231938033
the lambda is 0.49056926189226585
the regulation term lambda/alpha is 1.7422429649738627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3438816905944992
the lambda is 0.4888069840283098
the regulation term lambda/alpha is 1.4214394002287973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2929321671465866
the lambda is 0.4688665302410363
the regulation term lambda/alpha is 1.600597622337632
650
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3435468116999493
the lambda is 0.551967422975942
the regulation term lambda/alpha is 1.6066731058998314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30959764956281743
the lambda is 0.5007773287480854
the regulation term lambda/alpha is 1.6175101117700108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33435017936454375
the lambda is 0.5512868163536261
the regulation term lambda/alpha is 1.6488306284189402
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2816521882028181
the lambda is 0.5784112434620032
the regulation term lambda/alpha is 2.0536366046106784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31817346743109337
the lambda is 0.5118130347671637
the regulation term lambda/alpha is 1.6085974701143384
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35225388455376
the lambda is 0.5451841874774034
the regulation term lambda/alpha is 1.5477024140359732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2931488800045355
the lambda is 0.4691323251588878
the regulation term lambda/alpha is 1.6003210558117418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29725454748079705
the lambda is 0.5129098896485689
the regulation term lambda/alpha is 1.72549047271246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2716676438528169
the lambda is 0.5147260027041523
the regulation term lambda/alpha is 1.8946901272608623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33348380659782484
the lambda is 0.5170643862707406
the regulation term lambda/alpha is 1.5504932354760794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33280153977520555
the lambda is 0.5416344784579755
the regulation term lambda/alpha is 1.6274999172895308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2969355343174391
the lambda is 0.5023648347466175
the regulation term lambda/alpha is 1.6918313124813285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2747122088409248
the lambda is 0.5283296523334814
the regulation term lambda/alpha is 1.923211402080119
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2733092113288013
the lambda is 0.4186681860851134
the regulation term lambda/alpha is 1.5318480634062486
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3343631608021479
the lambda is 0.45011610092427967
the regulation term lambda/alpha is 1.346189274692932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30372905493471436
the lambda is 0.49872645014669403
the regulation term lambda/alpha is 1.6420110030431359
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33082062064100365
the lambda is 0.5188940908394621
the regulation term lambda/alpha is 1.5685058864651307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3098619020158
the lambda is 0.545813895639472
the regulation term lambda/alpha is 1.7614746830400618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36360416353339686
the lambda is 0.5152522654343549
the regulation term lambda/alpha is 1.4170692118244383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29753799227379457
the lambda is 0.4840506126063844
the regulation term lambda/alpha is 1.626853125233704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3576866779274985
the lambda is 0.5362313599849385
the regulation term lambda/alpha is 1.499165032066501
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3018008432999682
the lambda is 0.49999430693645
the regulation term lambda/alpha is 1.6567028159013188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2968377272817013
the lambda is 0.5345391153143741
the regulation term lambda/alpha is 1.8007788976469705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38847747725648163
the lambda is 0.5236881143676371
the regulation term lambda/alpha is 1.3480527058249154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3674133740521339
the lambda is 0.5311972798468139
the regulation term lambda/alpha is 1.4457755687778526
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36890737923364486
the lambda is 0.5601206932423946
the regulation term lambda/alpha is 1.5183233645419874
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2913166789406155
the lambda is 0.4974610820531744
the regulation term lambda/alpha is 1.70762993681725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2659149041233918
the lambda is 0.478842581533284
the regulation term lambda/alpha is 1.8007361532134654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.395581206087751
the lambda is 0.5668529700296963
the regulation term lambda/alpha is 1.4329623382157148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30030586071776844
the lambda is 0.48580087345567885
the regulation term lambda/alpha is 1.6176869552081141
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31528620407170765
the lambda is 0.47356582278382797
the regulation term lambda/alpha is 1.5020188535624024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3514520271085191
the lambda is 0.5522172542592211
the regulation term lambda/alpha is 1.5712450396216124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3092034876799858
the lambda is 0.4582278601136105
the regulation term lambda/alpha is 1.4819621329364159
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34698748766720094
the lambda is 0.5705986033823247
the regulation term lambda/alpha is 1.6444356746649935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28589360683015896
the lambda is 0.513325492673334
the regulation term lambda/alpha is 1.7955123179032322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35032824336132645
the lambda is 0.4497836934551628
the regulation term lambda/alpha is 1.2838921839118138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31571808987268746
the lambda is 0.5116361659442898
the regulation term lambda/alpha is 1.620547514875077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3038740771240546
the lambda is 0.5181408712955856
the regulation term lambda/alpha is 1.7051170544042753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3206623092175891
the lambda is 0.4986222330578727
the regulation term lambda/alpha is 1.554976118878776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33559992032544317
the lambda is 0.5542017068189289
the regulation term lambda/alpha is 1.6513761573051025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29596344781391276
the lambda is 0.4956848848813053
the regulation term lambda/alpha is 1.6748179160048424
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.32189540956083657
the lambda is 0.48699242213226895
the regulation term lambda/alpha is 1.512890235982784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35462078228976757
the lambda is 0.536082608489373
the regulation term lambda/alpha is 1.5117066885587358
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3122625588082285
the lambda is 0.4775288994400321
the regulation term lambda/alpha is 1.5292544237854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31939755920201424
the lambda is 0.5241293336141348
the regulation term lambda/alpha is 1.6409935471129595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33173542035992637
the lambda is 0.5272728373396468
the regulation term lambda/alpha is 1.5894378621600498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3451727994167752
the lambda is 0.5267811012762421
the regulation term lambda/alpha is 1.526137349658847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27444138359653647
the lambda is 0.519492665419798
the regulation term lambda/alpha is 1.8929093659705414
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27473023850037076
the lambda is 0.552240935818852
the regulation term lambda/alpha is 2.0101206872359145
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4133714637363165
the lambda is 0.5373980714225135
the regulation term lambda/alpha is 1.3000366947567328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3737185923825231
the lambda is 0.4989167019481677
the regulation term lambda/alpha is 1.3350063714183558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3395738212786157
the lambda is 0.5134016250198197
the regulation term lambda/alpha is 1.5118998958361418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3094745725594883
the lambda is 0.5477949014845951
the regulation term lambda/alpha is 1.770080484978442
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2968825754730839
the lambda is 0.49075358387333756
the regulation term lambda/alpha is 1.6530225227644946
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31770472252216975
the lambda is 0.5187117942066708
the regulation term lambda/alpha is 1.6326851867002845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2897255803335445
the lambda is 0.5191669698863114
the regulation term lambda/alpha is 1.791926585455879
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32187589299199104
the lambda is 0.5144306811748444
the regulation term lambda/alpha is 1.598226808453917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2731251314160818
the lambda is 0.47882027030095387
the regulation term lambda/alpha is 1.7531168509408013
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29369331772243534
the lambda is 0.49018895317236966
the regulation term lambda/alpha is 1.6690504127698236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3001367682184808
the lambda is 0.4983619666784223
the regulation term lambda/alpha is 1.660449566497784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29045043103127777
the lambda is 0.49063915953565435
the regulation term lambda/alpha is 1.6892354326815195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3175178402376511
the lambda is 0.5282634171320796
the regulation term lambda/alpha is 1.6637283018072078
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.371005649778555
the lambda is 0.49579339533257627
the regulation term lambda/alpha is 1.3363499871996674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31731872496959035
the lambda is 0.5171505429330879
the regulation term lambda/alpha is 1.629751105872016
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34492906776627913
the lambda is 0.46397301567076893
the regulation term lambda/alpha is 1.3451258795769365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36371760023605926
the lambda is 0.5314190401494561
the regulation term lambda/alpha is 1.4610759550941597
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3841097099573969
the lambda is 0.5194138164482328
the regulation term lambda/alpha is 1.3522538040130332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3301578730797124
the lambda is 0.5425990298970061
the regulation term lambda/alpha is 1.6434532511239026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29668946765078197
the lambda is 0.5112016956548744
the regulation term lambda/alpha is 1.7230193565771732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3028448056769516
the lambda is 0.5227656245263675
the regulation term lambda/alpha is 1.7261832289242176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31518163812431327
the lambda is 0.5134455868409792
the regulation term lambda/alpha is 1.6290466344948276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2606929061179619
the lambda is 0.498476205480936
the regulation term lambda/alpha is 1.912120329255828
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28231042820830327
the lambda is 0.5158050817762386
the regulation term lambda/alpha is 1.8270847628612958
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28842205384506686
the lambda is 0.42543020325354075
the regulation term lambda/alpha is 1.4750266062596977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30392744016621376
the lambda is 0.520416832278194
the regulation term lambda/alpha is 1.712306174110456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3142489194870971
the lambda is 0.4564805249857083
the regulation term lambda/alpha is 1.4526080972076378
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31184418032395006
the lambda is 0.5225557583235088
the regulation term lambda/alpha is 1.6756950788072018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3600366040877172
the lambda is 0.5330349711756354
the regulation term lambda/alpha is 1.4805021631794135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3710168907702062
the lambda is 0.4934596257991977
the regulation term lambda/alpha is 1.3300193012097337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2637422432184698
the lambda is 0.5690063271539029
the regulation term lambda/alpha is 2.1574334100228643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3359091101393127
the lambda is 0.5337492147650471
the regulation term lambda/alpha is 1.588969154613531
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28658781412462647
the lambda is 0.5578999419427748
the regulation term lambda/alpha is 1.946698060581755
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3168435570755175
the lambda is 0.5485909747603225
the regulation term lambda/alpha is 1.7314253754245337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3580875393578926
the lambda is 0.5034981061659735
the regulation term lambda/alpha is 1.4060754726869997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34375809305981514
the lambda is 0.6157012948833086
the regulation term lambda/alpha is 1.791088871255096
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32165657199242975
the lambda is 0.5480800918435297
the regulation term lambda/alpha is 1.7039294065983792
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.330031278412824
the lambda is 0.47664689306163655
the regulation term lambda/alpha is 1.4442476342057995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3259595221690273
the lambda is 0.5423753893766107
the regulation term lambda/alpha is 1.6639347909442581
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320762414588166
the lambda is 0.4800631497513458
the regulation term lambda/alpha is 1.4966315500764313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161707064738678
the lambda is 0.4536299132143515
the regulation term lambda/alpha is 1.434762626409999
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3248518982665291
the lambda is 0.516555892141561
the regulation term lambda/alpha is 1.5901273623395782
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2806483847666578
the lambda is 0.4505763943746986
the regulation term lambda/alpha is 1.6054836543931141
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32976250555965986
the lambda is 0.5171486644562975
the regulation term lambda/alpha is 1.5682458003483848
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2785878616138802
the lambda is 0.44850012335186157
the regulation term lambda/alpha is 1.609905473819523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2886719279153165
the lambda is 0.5235765891335534
the regulation term lambda/alpha is 1.813742655597421
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28928280950915813
the lambda is 0.4214733907000373
the regulation term lambda/alpha is 1.4569596838995518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2925611152981597
the lambda is 0.5104603088146983
the regulation term lambda/alpha is 1.744798888582543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35542240424635907
the lambda is 0.5031149087460453
the regulation term lambda/alpha is 1.415540783966207
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2966218489317137
the lambda is 0.4958587962787782
the regulation term lambda/alpha is 1.671686688167504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33809069323299656
the lambda is 0.5808294555861733
the regulation term lambda/alpha is 1.7179693709755337
660
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3423706333601451
the lambda is 0.47822022779871215
the regulation term lambda/alpha is 1.396791024701189
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26798862273502316
the lambda is 0.47055813638201033
the regulation term lambda/alpha is 1.755888483546856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30733465468795873
the lambda is 0.5165383710645539
the regulation term lambda/alpha is 1.6807033088702694
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3285558590845542
the lambda is 0.5504673805655463
the regulation term lambda/alpha is 1.675414896265426
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3050582053833144
the lambda is 0.5066511747240202
the regulation term lambda/alpha is 1.6608344433397504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3259028532832653
the lambda is 0.4664941352125019
the regulation term lambda/alpha is 1.4313901535775715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32197286815397647
the lambda is 0.5304447660148877
the regulation term lambda/alpha is 1.6474828113815294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29567127907953217
the lambda is 0.43585829224432193
the regulation term lambda/alpha is 1.4741313177296502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300793452567257
the lambda is 0.5273746242099928
the regulation term lambda/alpha is 1.597720765592942
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3427858545469396
the lambda is 0.5531610706885578
the regulation term lambda/alpha is 1.6137219880898275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29553925874640835
the lambda is 0.5467496217897785
the regulation term lambda/alpha is 1.850006743973479
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.267635537297004
the lambda is 0.47815674241638256
the regulation term lambda/alpha is 1.7865966053893516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224494773448903
the lambda is 0.4682666441590287
the regulation term lambda/alpha is 1.4522170977445037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3387787714393991
the lambda is 0.5396037734934724
the regulation term lambda/alpha is 1.5927909862852696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3085877768158096
the lambda is 0.5002425580340495
the regulation term lambda/alpha is 1.621070553071955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34519907220610785
the lambda is 0.5404551144091807
the regulation term lambda/alpha is 1.5656331604694795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28243935093387806
the lambda is 0.5105375780328241
the regulation term lambda/alpha is 1.8076007339088742
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3088197294162426
the lambda is 0.5097650191841717
the regulation term lambda/alpha is 1.6506879924665858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3378321983152691
the lambda is 0.5358621447621914
the regulation term lambda/alpha is 1.5861784265516288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31942450790879123
the lambda is 0.5375782010733745
the regulation term lambda/alpha is 1.6829585324958067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32955881438872414
the lambda is 0.5490321530825347
the regulation term lambda/alpha is 1.665961064039196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3182280320302076
the lambda is 0.5020849211774406
the regulation term lambda/alpha is 1.577752022580401
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36095505808519723
the lambda is 0.603404669052356
the regulation term lambda/alpha is 1.6716891910403227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3046443204466051
the lambda is 0.48555006233363673
the regulation term lambda/alpha is 1.5938260776430226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30629070408281023
the lambda is 0.5077770424890788
the regulation term lambda/alpha is 1.657827141733279
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26903210091716795
the lambda is 0.48528142144235004
the regulation term lambda/alpha is 1.80380489832982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3003761229988788
the lambda is 0.47510010387335594
the regulation term lambda/alpha is 1.5816839871627524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2957552934687992
the lambda is 0.44300619756761134
the regulation term lambda/alpha is 1.49788087432608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34152836064157716
the lambda is 0.4837668632648306
the regulation term lambda/alpha is 1.416476401421105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3124243619205307
the lambda is 0.5344416521361522
the regulation term lambda/alpha is 1.7106273302467194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36622553845742545
the lambda is 0.48887194395216643
the regulation term lambda/alpha is 1.33489309896666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28426371877438317
the lambda is 0.5107259499425348
the regulation term lambda/alpha is 1.796662451840687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34484108374794203
the lambda is 0.5328941124154079
the regulation term lambda/alpha is 1.5453324372594803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29614752597719207
the lambda is 0.5158555030569989
the regulation term lambda/alpha is 1.7418869239404948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2901134659832003
the lambda is 0.5307456569393539
the regulation term lambda/alpha is 1.8294416467041485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3251162520553353
the lambda is 0.49940094839296206
the regulation term lambda/alpha is 1.5360688530204982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3366051792317081
the lambda is 0.4791534702603233
the regulation term lambda/alpha is 1.4234881095827987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235865810879417
the lambda is 0.5073436289340302
the regulation term lambda/alpha is 1.567875983077767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35131801442125743
the lambda is 0.5352155402135811
the regulation term lambda/alpha is 1.5234503163615638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3517082064648005
the lambda is 0.5331362591991726
the regulation term lambda/alpha is 1.5158482213366544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30980925630053824
the lambda is 0.46980530441988627
the regulation term lambda/alpha is 1.516434047290504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30464838154013035
the lambda is 0.5240029504036443
the regulation term lambda/alpha is 1.720025387151512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3174715045353005
the lambda is 0.5394568603124951
the regulation term lambda/alpha is 1.6992292303591974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33700015843481346
the lambda is 0.5034170164830978
the regulation term lambda/alpha is 1.493818337715929
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34536046469083453
the lambda is 0.5835767821074379
the regulation term lambda/alpha is 1.689761399382682
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27791325422913615
the lambda is 0.48987373834964987
the regulation term lambda/alpha is 1.7626857693723195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27989238559809554
the lambda is 0.4889590539356821
the regulation term lambda/alpha is 1.7469537547112504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3162913986519748
the lambda is 0.5430604831272179
the regulation term lambda/alpha is 1.716962539739388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31925845123594654
the lambda is 0.491455326453351
the regulation term lambda/alpha is 1.5393651273780788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33347601860191217
the lambda is 0.4973449286390468
the regulation term lambda/alpha is 1.4913963850358714
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3369086598718459
the lambda is 0.4989335371609369
the regulation term lambda/alpha is 1.480916333081858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3191751280544027
the lambda is 0.5143212801418131
the regulation term lambda/alpha is 1.611407766253479
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34958417239164674
the lambda is 0.501942027594476
the regulation term lambda/alpha is 1.4358259533333204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3400328757657574
the lambda is 0.501492755443375
the regulation term lambda/alpha is 1.4748360855226377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2633264404657107
the lambda is 0.5347928831427436
the regulation term lambda/alpha is 2.0309122099433923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32433474884835095
the lambda is 0.4953201272184497
the regulation term lambda/alpha is 1.527187971616468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30096679528736037
the lambda is 0.5007390074284412
the regulation term lambda/alpha is 1.6637682803192297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29957224270275484
the lambda is 0.5460619377311267
the regulation term lambda/alpha is 1.8228055203129976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3695919429117545
the lambda is 0.543387932668701
the regulation term lambda/alpha is 1.470237495946828
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33582704286418874
the lambda is 0.5075496159433296
the regulation term lambda/alpha is 1.5113423017234109
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33177817095987755
the lambda is 0.5486939330760048
the regulation term lambda/alpha is 1.6537975704928436
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24622351160050018
the lambda is 0.4784087135983062
the regulation term lambda/alpha is 1.9429855032468573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31174372492351354
the lambda is 0.49586294972738576
the regulation term lambda/alpha is 1.5906108450107406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32699001436477687
the lambda is 0.5159905882031119
the regulation term lambda/alpha is 1.578001056715737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2917814396669142
the lambda is 0.5399807741015242
the regulation term lambda/alpha is 1.8506344156706618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3279722134998426
the lambda is 0.5498575751445508
the regulation term lambda/alpha is 1.6765370739092038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.336449415621776
the lambda is 0.4814687140404107
the regulation term lambda/alpha is 1.4310285341130151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205089455582201
the lambda is 0.516984342276431
the regulation term lambda/alpha is 1.613010648972733
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2929742587963698
the lambda is 0.502315036299169
the regulation term lambda/alpha is 1.714536418191949
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2981689985592307
the lambda is 0.4895585369918498
the regulation term lambda/alpha is 1.641882755609819
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3017651408858724
the lambda is 0.529708856153895
the regulation term lambda/alpha is 1.7553679480633944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31554502002502843
the lambda is 0.5193208734207296
the regulation term lambda/alpha is 1.645790110645822
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321509752233605
the lambda is 0.5055293514916978
the regulation term lambda/alpha is 1.572360863020996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2994403244290481
the lambda is 0.4937064705854418
the regulation term lambda/alpha is 1.64876414533282
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31103116514855156
the lambda is 0.49699950515066804
the regulation term lambda/alpha is 1.5979090227607775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2735178242027215
the lambda is 0.5110416651804276
the regulation term lambda/alpha is 1.8684035187471437
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3121157395573533
the lambda is 0.5027635734869681
the regulation term lambda/alpha is 1.610824158371488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32075481828724056
the lambda is 0.5642524008785774
the regulation term lambda/alpha is 1.7591392824324816
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2938040283138982
the lambda is 0.5631964056632892
the regulation term lambda/alpha is 1.9169117894516208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32963959512452123
the lambda is 0.5014379934117192
the regulation term lambda/alpha is 1.5211703958752323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37087459875225604
the lambda is 0.537453575027267
the regulation term lambda/alpha is 1.449151753275736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2815112982364469
the lambda is 0.5199862597499386
the regulation term lambda/alpha is 1.8471239449622086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3532851112940279
the lambda is 0.5735740229048838
the regulation term lambda/alpha is 1.6235442835503942
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37845150421790574
the lambda is 0.5506185732836222
the regulation term lambda/alpha is 1.4549250489082102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31556782971361863
the lambda is 0.47701548940083366
the regulation term lambda/alpha is 1.5116100073753735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3193077178971756
the lambda is 0.5120201190836171
the regulation term lambda/alpha is 1.6035319235487422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2616654649583326
the lambda is 0.5229997485237712
the regulation term lambda/alpha is 1.998734332813286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3302597164229661
the lambda is 0.4579438995011678
the regulation term lambda/alpha is 1.386617491412957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32826229193455336
the lambda is 0.5159048796220882
the regulation term lambda/alpha is 1.5716239491953152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3100379294357245
the lambda is 0.47625452222610826
the regulation term lambda/alpha is 1.5361169618598003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2835422231575044
the lambda is 0.47011103368288504
the regulation term lambda/alpha is 1.6579930440262645
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29064929440533027
the lambda is 0.5175819884819449
the regulation term lambda/alpha is 1.780778410423875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28967643252928993
the lambda is 0.4690256960906131
the regulation term lambda/alpha is 1.6191365379480387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.346535679527779
the lambda is 0.4882166466690213
the regulation term lambda/alpha is 1.4088495803211656
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35051389812673944
the lambda is 0.5229779954048678
the regulation term lambda/alpha is 1.4920321225487283
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29263484635273207
the lambda is 0.511184171046022
the regulation term lambda/alpha is 1.7468328786444591
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35614413343029383
the lambda is 0.5506280483365233
the regulation term lambda/alpha is 1.5460820399679414
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2998519073529917
the lambda is 0.4807039563164559
the regulation term lambda/alpha is 1.6031378975040553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35295874342677946
the lambda is 0.5043795388510263
the regulation term lambda/alpha is 1.429004234189367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.283583351629862
the lambda is 0.49948793926794044
the regulation term lambda/alpha is 1.761344368056842
670
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31979913536858656
the lambda is 0.4691821109774
the regulation term lambda/alpha is 1.4671150077896273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29576783362361114
the lambda is 0.47255410549760757
the regulation term lambda/alpha is 1.5977197374984715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3252456415985127
the lambda is 0.49526897810277265
the regulation term lambda/alpha is 1.5227536199059628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3013295367812597
the lambda is 0.4610172540031336
the regulation term lambda/alpha is 1.5299437915301146
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35792742136504724
the lambda is 0.5181946830452532
the regulation term lambda/alpha is 1.4477646922635488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3252709249660739
the lambda is 0.5269758587308442
the regulation term lambda/alpha is 1.6201136292332563
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3097924654771203
the lambda is 0.49276152600595347
the regulation term lambda/alpha is 1.5906181748062762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33725881488883774
the lambda is 0.503257698750824
the regulation term lambda/alpha is 1.4922002821978142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3101246571752511
the lambda is 0.4511724041651175
the regulation term lambda/alpha is 1.4548098441271649
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28716527432498246
the lambda is 0.5154365087049552
the regulation term lambda/alpha is 1.79491238944734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38825012546740134
the lambda is 0.512184116400858
the regulation term lambda/alpha is 1.3192117215268293
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32675032748696037
the lambda is 0.5897415288938739
the regulation term lambda/alpha is 1.8048689757393088
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30272034488322824
the lambda is 0.5332526002518612
the regulation term lambda/alpha is 1.7615353882394615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3476557282323538
the lambda is 0.5058258292104809
the regulation term lambda/alpha is 1.4549618721438555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2851028561251956
the lambda is 0.4456583026244983
the regulation term lambda/alpha is 1.56314920405006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3015001755291011
the lambda is 0.48368065330920557
the regulation term lambda/alpha is 1.6042466723622861
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3391267790781333
the lambda is 0.5612504231355037
the regulation term lambda/alpha is 1.654987036591982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30523147534183065
the lambda is 0.4697608723500757
the regulation term lambda/alpha is 1.5390315557200893
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2922884260502823
the lambda is 0.5630170808516072
the regulation term lambda/alpha is 1.9262380261158594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35219373558462197
the lambda is 0.562605871788898
the regulation term lambda/alpha is 1.5974329323461804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2972361194177407
the lambda is 0.5175533672627326
the regulation term lambda/alpha is 1.741219634668135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3042604306362333
the lambda is 0.4821942999168356
the regulation term lambda/alpha is 1.584807787553998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31892195305555193
the lambda is 0.4585981096518373
the regulation term lambda/alpha is 1.4379634429617194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3034529327839798
the lambda is 0.5009497447843614
the regulation term lambda/alpha is 1.650831778715991
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35321432789346574
the lambda is 0.4845047163698369
the regulation term lambda/alpha is 1.371701763230766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3305518254107241
the lambda is 0.4924506695606304
the regulation term lambda/alpha is 1.4897835428642403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31459836752112214
the lambda is 0.5293447281563214
the regulation term lambda/alpha is 1.6826048155535365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3453122652417601
the lambda is 0.5477225785082066
the regulation term lambda/alpha is 1.5861660115800837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2971039971553533
the lambda is 0.5192111127283783
the regulation term lambda/alpha is 1.7475736365030692
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2887958717947159
the lambda is 0.4601202413565696
the regulation term lambda/alpha is 1.5932369063905312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3433908557905944
the lambda is 0.5175971787086883
the regulation term lambda/alpha is 1.5073120614030788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29976458954533863
the lambda is 0.5008963501292435
the regulation term lambda/alpha is 1.6709657097556687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32898796111064
the lambda is 0.5123849234221085
the regulation term lambda/alpha is 1.5574579741226195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35921693214335393
the lambda is 0.5944514567691858
the regulation term lambda/alpha is 1.6548536652274397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2940520830374659
the lambda is 0.5288316057605517
the regulation term lambda/alpha is 1.7984283610504876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27221856554700113
the lambda is 0.4790274555708188
the regulation term lambda/alpha is 1.7597163316478874
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.307481906480784
the lambda is 0.5630656028885205
the regulation term lambda/alpha is 1.8312154016896898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33250136982857936
the lambda is 0.5238455390017163
the regulation term lambda/alpha is 1.575468814675212
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33143720187523396
the lambda is 0.5186021201940338
the regulation term lambda/alpha is 1.5647070312561235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3387211092241524
the lambda is 0.5309280163411428
the regulation term lambda/alpha is 1.5674488594975504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3768998975190153
the lambda is 0.5716717726703242
the regulation term lambda/alpha is 1.516773489283006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2921256180915777
the lambda is 0.5116002709013264
the regulation term lambda/alpha is 1.751302313859191
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3287015085852795
the lambda is 0.5367117093309443
the regulation term lambda/alpha is 1.6328239917149567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3216624876274028
the lambda is 0.49885334710100326
the regulation term lambda/alpha is 1.5508595695462295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32078691735084275
the lambda is 0.48218990900056946
the regulation term lambda/alpha is 1.5031470515775467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2804883820616239
the lambda is 0.5327152181720363
the regulation term lambda/alpha is 1.8992416522086022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3544856734675162
the lambda is 0.5503929823922902
the regulation term lambda/alpha is 1.5526522609741695
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31635491508272406
the lambda is 0.5097089728071652
the regulation term lambda/alpha is 1.6111934681776028
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36603950060415835
the lambda is 0.504376022312554
the regulation term lambda/alpha is 1.3779278506283266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.289248385581478
the lambda is 0.4548317290969746
the regulation term lambda/alpha is 1.5724607353732445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31333616165947986
the lambda is 0.5102488638018389
the regulation term lambda/alpha is 1.6284391214198737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211257038892089
the lambda is 0.4964494350648794
the regulation term lambda/alpha is 1.5459660471033445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3171559119184891
the lambda is 0.5005240164071125
the regulation term lambda/alpha is 1.578163917485953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31879044121990197
the lambda is 0.5353675193942373
the regulation term lambda/alpha is 1.6793713053175903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3387766313496382
the lambda is 0.5355475634995929
the regulation term lambda/alpha is 1.5808279377655037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30504474532475223
the lambda is 0.48836064131590506
the regulation term lambda/alpha is 1.6009475619584719
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28867665771936873
the lambda is 0.4422401839079291
the regulation term lambda/alpha is 1.5319568523543183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2966499123218957
the lambda is 0.49089430412212176
the regulation term lambda/alpha is 1.6547933565186794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012833870564011
the lambda is 0.4951027332637569
the regulation term lambda/alpha is 1.6433124245615052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.323248110507468
the lambda is 0.5451849144769327
the regulation term lambda/alpha is 1.6865834532521957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31736945385471504
the lambda is 0.5042249290565216
the regulation term lambda/alpha is 1.5887632629173727
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30318964669424653
the lambda is 0.47229362630167476
the regulation term lambda/alpha is 1.557749848819746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3496503069711685
the lambda is 0.5326157654518491
the regulation term lambda/alpha is 1.5232812751277451
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.322594057712222
the lambda is 0.5152045489599544
the regulation term lambda/alpha is 1.5970676974451754
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.342065368016431
the lambda is 0.46233048109126
the regulation term lambda/alpha is 1.3515851773367835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27294595243668535
the lambda is 0.5528611916084534
the regulation term lambda/alpha is 2.0255335778855317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27632401009683943
the lambda is 0.5254155639607554
the regulation term lambda/alpha is 1.9014473761314492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31695746330256125
the lambda is 0.5223337012323942
the regulation term lambda/alpha is 1.6479615144249968
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29620542891107454
the lambda is 0.5416273147299231
the regulation term lambda/alpha is 1.8285529631279243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33929678654785345
the lambda is 0.5173196631073732
the regulation term lambda/alpha is 1.524681882109166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31013312214237876
the lambda is 0.4933919207783192
the regulation term lambda/alpha is 1.590903665400203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33768464945856713
the lambda is 0.528840031594435
the regulation term lambda/alpha is 1.5660766115438187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3519126092972243
the lambda is 0.49379881177757806
the regulation term lambda/alpha is 1.4031859010784042
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3031654187094177
the lambda is 0.4849820804044226
the regulation term lambda/alpha is 1.5997275760177485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246862603711964
the lambda is 0.49957312737278387
the regulation term lambda/alpha is 1.5386334081449848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30708270121160774
the lambda is 0.500519464072051
the regulation term lambda/alpha is 1.6299174850853868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32772209713182665
the lambda is 0.5273668320980827
the regulation term lambda/alpha is 1.609189116979038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3268240934308774
the lambda is 0.4856694556226496
the regulation term lambda/alpha is 1.4860270873064247
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3241905712110631
the lambda is 0.5957480790874481
the regulation term lambda/alpha is 1.8376477664416355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28056011953555515
the lambda is 0.48859489750631646
the regulation term lambda/alpha is 1.741498037266117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34130588295047076
the lambda is 0.5422816621813672
the regulation term lambda/alpha is 1.588843583630996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2976989271077131
the lambda is 0.5054369063726325
the regulation term lambda/alpha is 1.6978123209350897
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3112771228992298
the lambda is 0.5179766874988342
the regulation term lambda/alpha is 1.664037121245558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29823287828477557
the lambda is 0.5200437678809684
the regulation term lambda/alpha is 1.743750624920673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28883254594571023
the lambda is 0.48698374976536185
the regulation term lambda/alpha is 1.6860418141967168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31202071125767417
the lambda is 0.5310082469984896
the regulation term lambda/alpha is 1.7018365378956215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3953205679172981
the lambda is 0.5892524535018134
the regulation term lambda/alpha is 1.4905686709047892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29869472769860705
the lambda is 0.47372261014220823
the regulation term lambda/alpha is 1.5859758014216112
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4012161699354443
the lambda is 0.5942294140559123
the regulation term lambda/alpha is 1.4810704517505462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3515002291661748
the lambda is 0.5186471420943782
the regulation term lambda/alpha is 1.4755243355735717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29717862597433353
the lambda is 0.49144550074567867
the regulation term lambda/alpha is 1.653704061435843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27426997087214855
the lambda is 0.5064639400828654
the regulation term lambda/alpha is 1.8465891051519983
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2733541794783138
the lambda is 0.4638795235948981
the regulation term lambda/alpha is 1.6969907849230428
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31258728495835414
the lambda is 0.5478053658376987
the regulation term lambda/alpha is 1.7524876800752869
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34862319565920413
the lambda is 0.4925926834810614
the regulation term lambda/alpha is 1.4129658887143997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224031226820195
the lambda is 0.5337385339820928
the regulation term lambda/alpha is 1.6555005098648183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34108732522165985
the lambda is 0.5256631954377706
the regulation term lambda/alpha is 1.5411396336588052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3064562343391775
the lambda is 0.47945579387310616
the regulation term lambda/alpha is 1.5645163653040826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3117078325222555
the lambda is 0.546147880208873
the regulation term lambda/alpha is 1.752114715211331
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34720037196063785
the lambda is 0.5930015602290841
the regulation term lambda/alpha is 1.707951972748211
680
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3340027791473434
the lambda is 0.4959600326441574
the regulation term lambda/alpha is 1.4848979218384513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32123497247302824
the lambda is 0.524733597021074
the regulation term lambda/alpha is 1.6334883869630106
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36171865926182917
the lambda is 0.5153969403679792
the regulation term lambda/alpha is 1.424855829720718
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31822328535217803
the lambda is 0.5295452568604786
the regulation term lambda/alpha is 1.6640682226457135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3507025895349377
the lambda is 0.5321805956446418
the regulation term lambda/alpha is 1.5174698206544748
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32479784097751513
the lambda is 0.5335217825351667
the regulation term lambda/alpha is 1.642627244471434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27908183973675244
the lambda is 0.4892475448969934
the regulation term lambda/alpha is 1.7530612001070456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36101456163707435
the lambda is 0.4941738509457932
the regulation term lambda/alpha is 1.3688474190760844
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3850294548519185
the lambda is 0.5884088717551312
the regulation term lambda/alpha is 1.5282178138330536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31396071309825213
the lambda is 0.5174563336943259
the regulation term lambda/alpha is 1.6481563205406244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28814416698344714
the lambda is 0.505944367056417
the regulation term lambda/alpha is 1.7558723202801523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34320581923988347
the lambda is 0.5199046299251765
the regulation term lambda/alpha is 1.5148479448181777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2832723580256897
the lambda is 0.49658712616142137
the regulation term lambda/alpha is 1.7530377112064934
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2800483754857717
the lambda is 0.5159593855476449
the regulation term lambda/alpha is 1.842393781619558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3721772968148773
the lambda is 0.5564781049237174
the regulation term lambda/alpha is 1.4951962671718586
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2901962831564392
the lambda is 0.468693261794209
the regulation term lambda/alpha is 1.6150905059715928
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2965265145746988
the lambda is 0.5079542270755715
the regulation term lambda/alpha is 1.7130145268935515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2800081905193236
the lambda is 0.4732482721789189
the regulation term lambda/alpha is 1.690122961407658
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3075699877306861
the lambda is 0.4859683935318482
the regulation term lambda/alpha is 1.580025402079773
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3321914259753724
the lambda is 0.5103715121174304
the regulation term lambda/alpha is 1.5363777394882783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2896093483698981
the lambda is 0.48861610638137437
the regulation term lambda/alpha is 1.6871558502224129
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3141837010849038
the lambda is 0.5051299523860882
the regulation term lambda/alpha is 1.6077535233108218
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33509744828813115
the lambda is 0.5254919910057589
the regulation term lambda/alpha is 1.5681766414225822
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24824442267794275
the lambda is 0.4694327168076699
the regulation term lambda/alpha is 1.8910101251969855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3481718171149465
the lambda is 0.5500109061529116
the regulation term lambda/alpha is 1.5797111630414629
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.311149489210665
the lambda is 0.509397305779673
the regulation term lambda/alpha is 1.6371465274519013
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31349711236497396
the lambda is 0.5681462653745306
the regulation term lambda/alpha is 1.8122854819571468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33595674593397407
the lambda is 0.5178037019402398
the regulation term lambda/alpha is 1.5412808589413005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35871814204679847
the lambda is 0.5397282575708412
the regulation term lambda/alpha is 1.5046026233611236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33468516319954883
the lambda is 0.48135094759259717
the regulation term lambda/alpha is 1.4382201558949956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30187847781835886
the lambda is 0.5634780949729439
the regulation term lambda/alpha is 1.8665725991635291
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29168757846325805
the lambda is 0.4532246395906882
the regulation term lambda/alpha is 1.5538016461944673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35727587376015335
the lambda is 0.5258820740208798
the regulation term lambda/alpha is 1.471921595170222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3543816076545756
the lambda is 0.5440858173175782
the regulation term lambda/alpha is 1.53531053972731
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31058425407163226
the lambda is 0.4848326547682809
the regulation term lambda/alpha is 1.5610342392195469
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29575009414632714
the lambda is 0.4530145359195884
the regulation term lambda/alpha is 1.5317477319058845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2952261651169506
the lambda is 0.5454850629199711
the regulation term lambda/alpha is 1.8476853591343545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3371646970391285
the lambda is 0.4800714596248045
the regulation term lambda/alpha is 1.4238485340862703
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29674783063690335
the lambda is 0.48742946796767556
the regulation term lambda/alpha is 1.6425712933486873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2802948875674759
the lambda is 0.45466417223122724
the regulation term lambda/alpha is 1.6220922763772319
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3301383016563492
the lambda is 0.4687674966578265
the regulation term lambda/alpha is 1.4199124860882715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3334123680936873
the lambda is 0.49029785023786704
the regulation term lambda/alpha is 1.4705448782274797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3167700098353386
the lambda is 0.5399436013389349
the regulation term lambda/alpha is 1.7045287892613479
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31200735237293226
the lambda is 0.5060938496593058
the regulation term lambda/alpha is 1.6220574477180534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32530150765892196
the lambda is 0.5007005864759105
the regulation term lambda/alpha is 1.53918925884873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30622135167639547
the lambda is 0.524851486223244
the regulation term lambda/alpha is 1.7139611047693681
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28347481448800493
the lambda is 0.42702316328686085
the regulation term lambda/alpha is 1.5063883684274537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2926994794111521
the lambda is 0.4870408903244703
the regulation term lambda/alpha is 1.6639622704635177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3162148096448818
the lambda is 0.49570561135257635
the regulation term lambda/alpha is 1.567623008894706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35201153108632255
the lambda is 0.5260927618900418
the regulation term lambda/alpha is 1.4945327508632948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28087171678850753
the lambda is 0.46170483813722085
the regulation term lambda/alpha is 1.6438281626087619
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3034273791092357
the lambda is 0.5346914886142646
the regulation term lambda/alpha is 1.7621728473677798
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2995862455598702
the lambda is 0.45487412090178264
the regulation term lambda/alpha is 1.5183411376303633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3115131855070548
the lambda is 0.5395181682190963
the regulation term lambda/alpha is 1.731927229150555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38919992430548833
the lambda is 0.5191051719157188
the regulation term lambda/alpha is 1.3337751101623188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3715724902351007
the lambda is 0.4503068488565824
the regulation term lambda/alpha is 1.2118950156177197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30730752174028464
the lambda is 0.5158271095771398
the regulation term lambda/alpha is 1.678537208123014
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3158214344059532
the lambda is 0.5228125271964177
the regulation term lambda/alpha is 1.655405460936513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3886909099205281
the lambda is 0.5652841724031072
the regulation term lambda/alpha is 1.4543282540841653
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31943578125048194
the lambda is 0.5092472599088359
the regulation term lambda/alpha is 1.594208569607659
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3251849043985008
the lambda is 0.4487408152825685
the regulation term lambda/alpha is 1.379955862688678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30207659160338635
the lambda is 0.5278774256273302
the regulation term lambda/alpha is 1.7474953051655544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30181496728230256
the lambda is 0.6156678901209854
the regulation term lambda/alpha is 2.0398852173064057
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30381715103452683
the lambda is 0.47041565220667725
the regulation term lambda/alpha is 1.548351205996325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3230359380772824
the lambda is 0.5188299798561588
the regulation term lambda/alpha is 1.6061060665393674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34510392196700995
the lambda is 0.5025360108818204
the regulation term lambda/alpha is 1.4561874812012716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3429807413720915
the lambda is 0.5624332656098665
the regulation term lambda/alpha is 1.6398392030988593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317577291483552
the lambda is 0.5392478580523362
the regulation term lambda/alpha is 1.6980050920305332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3285854160622293
the lambda is 0.4772348893183467
the regulation term lambda/alpha is 1.4523921817271566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2891713907620755
the lambda is 0.5063758398543288
the regulation term lambda/alpha is 1.7511270341088645
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34613496127373305
the lambda is 0.5931061517707282
the regulation term lambda/alpha is 1.713511254650996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31470517397158243
the lambda is 0.5194485637068418
the regulation term lambda/alpha is 1.6505879364847922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33083369088168807
the lambda is 0.5124596547265783
the regulation term lambda/alpha is 1.548994763383524
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3145549298538788
the lambda is 0.5194382100983354
the regulation term lambda/alpha is 1.6513434087319236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30588819121118527
the lambda is 0.49612331178175134
the regulation term lambda/alpha is 1.6219106393657012
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33947845209892913
the lambda is 0.5067505320998468
the regulation term lambda/alpha is 1.492732540067586
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3313706197199282
the lambda is 0.5496827911364851
the regulation term lambda/alpha is 1.6588157139612214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30472107272398935
the lambda is 0.5118707330663186
the regulation term lambda/alpha is 1.6798009028078
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30331940193137125
the lambda is 0.47793315321139024
the regulation term lambda/alpha is 1.5756761689762495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3032224011184323
the lambda is 0.46145744973759695
the regulation term lambda/alpha is 1.5218448506294935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3035149330042758
the lambda is 0.48328269458501155
the regulation term lambda/alpha is 1.5922863820944297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33893281531107183
the lambda is 0.5317610196642627
the regulation term lambda/alpha is 1.568927514959605
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34069413733464654
the lambda is 0.502695159370657
the regulation term lambda/alpha is 1.475502816994133
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31292724106423553
the lambda is 0.511922541503973
the regulation term lambda/alpha is 1.6359155558428646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2699639140940394
the lambda is 0.4886526659701226
the regulation term lambda/alpha is 1.810066606901784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3202190901410374
the lambda is 0.4956384267577959
the regulation term lambda/alpha is 1.5478103648957868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31793247411366776
the lambda is 0.4757056131895978
the regulation term lambda/alpha is 1.4962473226925626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3372827407314146
the lambda is 0.518290884316693
the regulation term lambda/alpha is 1.5366658939996547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105961597276163
the lambda is 0.4857575234523528
the regulation term lambda/alpha is 1.5639521231632352
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32054537424153917
the lambda is 0.4609783531210151
the regulation term lambda/alpha is 1.4381063966739887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32421266500937107
the lambda is 0.49366542213691644
the regulation term lambda/alpha is 1.5226592771218468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37187038725068156
the lambda is 0.5355963555219883
the regulation term lambda/alpha is 1.440276972527359
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3692430101011877
the lambda is 0.5227631519362771
the regulation term lambda/alpha is 1.4157699337166019
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35003464253848543
the lambda is 0.5645657449836361
the regulation term lambda/alpha is 1.6128853444029143
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31469794668321993
the lambda is 0.49453251283362404
the regulation term lambda/alpha is 1.5714513489706003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27366174393014664
the lambda is 0.5215210148631924
the regulation term lambda/alpha is 1.9057139933900038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32477572318786624
the lambda is 0.5122355713472804
the regulation term lambda/alpha is 1.5771978469307515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35471811231046624
the lambda is 0.4859764239852907
the regulation term lambda/alpha is 1.3700355496928809
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30082757044072606
the lambda is 0.5040426746579123
the regulation term lambda/alpha is 1.6755202121915451
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3811938647700425
the lambda is 0.4823610559159708
the regulation term lambda/alpha is 1.265395643780778
690
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31825842722935627
the lambda is 0.5024950283318483
the regulation term lambda/alpha is 1.5788899376723182
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33560430032158495
the lambda is 0.5188965292021941
the regulation term lambda/alpha is 1.5461557813918763
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28527031718347223
the lambda is 0.529860669564382
the regulation term lambda/alpha is 1.8573985362227539
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3195681042167514
the lambda is 0.4915760242176667
the regulation term lambda/alpha is 1.5382512138453235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34597438028149335
the lambda is 0.4832163000740333
the regulation term lambda/alpha is 1.3966823198899194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32314238429272196
the lambda is 0.5181351138190343
the regulation term lambda/alpha is 1.6034266595918787
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3170540750203884
the lambda is 0.4893915794361037
the regulation term lambda/alpha is 1.5435587112533815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31673694873076563
the lambda is 0.4863516421533791
the regulation term lambda/alpha is 1.5355064955392692
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32405523366990663
the lambda is 0.47285483042236937
the regulation term lambda/alpha is 1.4591797363286374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30441855975431553
the lambda is 0.45894713585578745
the regulation term lambda/alpha is 1.507618774053021
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31604358720339604
the lambda is 0.5935442773240354
the regulation term lambda/alpha is 1.8780456283773552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30243784918172356
the lambda is 0.5127654245527141
the regulation term lambda/alpha is 1.695440653145938
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27727681424588824
the lambda is 0.4684846659858171
the regulation term lambda/alpha is 1.6895919237241608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32295680038254626
the lambda is 0.4632537343806647
the regulation term lambda/alpha is 1.4344139334794468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33881354833058114
the lambda is 0.4540602733887326
the regulation term lambda/alpha is 1.3401479239127267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.350212750604326
the lambda is 0.5593133357689539
the regulation term lambda/alpha is 1.5970673106670292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29295296338089455
the lambda is 0.4987120352218774
the regulation term lambda/alpha is 1.702362145329989
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35930703057860963
the lambda is 0.5427913732045666
the regulation term lambda/alpha is 1.5106617099322637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3117018937051459
the lambda is 0.5025955438635465
the regulation term lambda/alpha is 1.6124237741685854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3487883609322019
the lambda is 0.5396523652872187
the regulation term lambda/alpha is 1.5472201074740488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3142657587769528
the lambda is 0.4603414231253094
the regulation term lambda/alpha is 1.4648157181261114
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3383313127634234
the lambda is 0.5623858411309293
the regulation term lambda/alpha is 1.6622340880525446
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3063856267184522
the lambda is 0.4927537748535859
the regulation term lambda/alpha is 1.608279670724872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2945529829419509
the lambda is 0.5076772999572072
the regulation term lambda/alpha is 1.7235517185621503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3501745831499356
the lambda is 0.5222528753874681
the regulation term lambda/alpha is 1.491407145229193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33556953269926704
the lambda is 0.5022833534960917
the regulation term lambda/alpha is 1.4968085733403913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29439865985723473
the lambda is 0.4864939698395531
the regulation term lambda/alpha is 1.6525006264480715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3188602699946611
the lambda is 0.533337566470282
the regulation term lambda/alpha is 1.672637254177863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159452651762174
the lambda is 0.46879063853004677
the regulation term lambda/alpha is 1.4837716851638223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31663166045608054
the lambda is 0.516279412082425
the regulation term lambda/alpha is 1.6305362873023157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320326493776543
the lambda is 0.4757310523735994
the regulation term lambda/alpha is 1.4851442563020258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3463237749005373
the lambda is 0.5313436600336288
the regulation term lambda/alpha is 1.5342396293359541
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30571045231202
the lambda is 0.5694220871603676
the regulation term lambda/alpha is 1.8626189678957827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3023718988405889
the lambda is 0.5150953273799126
the regulation term lambda/alpha is 1.7035158669009514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30181141731838873
the lambda is 0.524614580383167
the regulation term lambda/alpha is 1.7382197964689234
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29619216726453856
the lambda is 0.45129642195242176
the regulation term lambda/alpha is 1.5236608925898931
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29968924299815963
the lambda is 0.5410438442007445
the regulation term lambda/alpha is 1.8053495640618205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37270690171870824
the lambda is 0.4867497426371917
the regulation term lambda/alpha is 1.3059853208850813
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34362476960216287
the lambda is 0.4901665193560992
the regulation term lambda/alpha is 1.4264586337114096
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.272271500787931
the lambda is 0.49621502837466047
the regulation term lambda/alpha is 1.8225008013642838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.381265107223064
the lambda is 0.5150258274325883
the regulation term lambda/alpha is 1.3508338887441538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29338402233168326
the lambda is 0.5160854612896735
the regulation term lambda/alpha is 1.7590782796829223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2934876070542251
the lambda is 0.521593087886626
the regulation term lambda/alpha is 1.777223553396092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2902823509716928
the lambda is 0.5017763405804673
the regulation term lambda/alpha is 1.728580256087972
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3102925165834368
the lambda is 0.5359559366801196
the regulation term lambda/alpha is 1.7272602722792463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33466425683269696
the lambda is 0.4937614125535212
the regulation term lambda/alpha is 1.4753933306966778
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3317221765789339
the lambda is 0.5313514659716877
the regulation term lambda/alpha is 1.6017966343147145
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3311576054811404
the lambda is 0.5697127902203387
the regulation term lambda/alpha is 1.7203675252833175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3048403189610714
the lambda is 0.500845044268941
the regulation term lambda/alpha is 1.6429750696229255
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2937115519447838
the lambda is 0.51384745045436
the regulation term lambda/alpha is 1.7494969028353387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29928817981258915
the lambda is 0.47806012533609477
the regulation term lambda/alpha is 1.5973237754843863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3346449818463066
the lambda is 0.4999879929791695
the regulation term lambda/alpha is 1.4940848364754518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32344244026896773
the lambda is 0.48890161036534985
the regulation term lambda/alpha is 1.51155677022097
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2906395004299535
the lambda is 0.5055833269228026
the regulation term lambda/alpha is 1.7395547617404892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32911390245762234
the lambda is 0.5219399675704173
the regulation term lambda/alpha is 1.5858946208983795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32998855270908944
the lambda is 0.5640083332320671
the regulation term lambda/alpha is 1.7091754504868668
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3058971469979449
the lambda is 0.5438431303023473
the regulation term lambda/alpha is 1.777862708559361
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34920847218459294
the lambda is 0.5383890616606791
the regulation term lambda/alpha is 1.5417411218364845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3334753449533145
the lambda is 0.5844036571520661
the regulation term lambda/alpha is 1.7524643605477963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27185339757752025
the lambda is 0.5289256150431629
the regulation term lambda/alpha is 1.9456281207312753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34374163635093247
the lambda is 0.5389176310031997
the regulation term lambda/alpha is 1.5677985266033012
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3442211378054124
the lambda is 0.5389346048034986
the regulation term lambda/alpha is 1.5656638875796098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3218330164949529
the lambda is 0.49861691985082685
the regulation term lambda/alpha is 1.5493031923237943
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2949183510854492
the lambda is 0.5111215252977037
the regulation term lambda/alpha is 1.7330950190671996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27997844752140055
the lambda is 0.493245844261064
the regulation term lambda/alpha is 1.7617279066573939
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3133235610117484
the lambda is 0.5178028091706046
the regulation term lambda/alpha is 1.6526136990738116
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3509562410201686
the lambda is 0.5467392947956353
the regulation term lambda/alpha is 1.557856025601253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28427377000749915
the lambda is 0.5095767084980011
the regulation term lambda/alpha is 1.7925561985003344
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34275683076703173
the lambda is 0.5457867023607856
the regulation term lambda/alpha is 1.5923437649350634
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3066289595683932
the lambda is 0.5031906396221637
the regulation term lambda/alpha is 1.641040821227219
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212495285416682
the lambda is 0.4776350839852301
the regulation term lambda/alpha is 1.4868039998486025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33846342135845875
the lambda is 0.5597699488366379
the regulation term lambda/alpha is 1.653856557349512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3615676131485387
the lambda is 0.49775101149103335
the regulation term lambda/alpha is 1.3766471149243888
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.327293255787607
the lambda is 0.5147553831884527
the regulation term lambda/alpha is 1.5727650175672945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32387190742945293
the lambda is 0.5628040443827741
the regulation term lambda/alpha is 1.7377365293881388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31729328149445735
the lambda is 0.5467781375247023
the regulation term lambda/alpha is 1.7232578482259913
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.308593807673884
the lambda is 0.516554185275083
the regulation term lambda/alpha is 1.6738967938752922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.343981226882858
the lambda is 0.5031492084699675
the regulation term lambda/alpha is 1.462722873075029
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30642788987882724
the lambda is 0.4924171836059616
the regulation term lambda/alpha is 1.6069594180891345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31851019542292863
the lambda is 0.5005223310218606
the regulation term lambda/alpha is 1.5714483812904327
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2927454005739563
the lambda is 0.5218224825553494
the regulation term lambda/alpha is 1.7825130011684718
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31589604449303493
the lambda is 0.5415163038732109
the regulation term lambda/alpha is 1.7142231228069416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32633266780897796
the lambda is 0.5141288439669515
the regulation term lambda/alpha is 1.5754746449960133
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29637213564985065
the lambda is 0.46214239646247046
the regulation term lambda/alpha is 1.559331464981139
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31301447716604974
the lambda is 0.5582804691802699
the regulation term lambda/alpha is 1.7835611765781363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32479491821856493
the lambda is 0.5427384797149227
the regulation term lambda/alpha is 1.6710190008259198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30908944207982364
the lambda is 0.477056651971315
the regulation term lambda/alpha is 1.5434259053342663
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2860798393186844
the lambda is 0.4875330146320418
the regulation term lambda/alpha is 1.7041851526242804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3001743339641492
the lambda is 0.5153853460134923
the regulation term lambda/alpha is 1.7169534090647685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3613621504331293
the lambda is 0.49968857450975296
the regulation term lambda/alpha is 1.3827916784057914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30715079612075985
the lambda is 0.4890331410009318
the regulation term lambda/alpha is 1.5921597703059926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3140703701024155
the lambda is 0.47115222919714445
the regulation term lambda/alpha is 1.5001486101458916
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2953392830154753
the lambda is 0.47828342948587915
the regulation term lambda/alpha is 1.6194372269157906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3386054251034762
the lambda is 0.49865954170208976
the regulation term lambda/alpha is 1.472686214491991
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205812341594206
the lambda is 0.4670419048874544
the regulation term lambda/alpha is 1.4568597756885575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32878840560122474
the lambda is 0.5416806461189443
the regulation term lambda/alpha is 1.6475053161574336
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28951269304770855
the lambda is 0.48966196984002497
the regulation term lambda/alpha is 1.6913316120455346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3858961160119074
the lambda is 0.5533349921273727
the regulation term lambda/alpha is 1.433896246082712
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33209232539822026
the lambda is 0.5321742617327505
the regulation term lambda/alpha is 1.6024888894815832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34073073196435666
the lambda is 0.5775291452897331
the regulation term lambda/alpha is 1.6949722790198671
700
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33153752414551513
the lambda is 0.4667612985763029
the regulation term lambda/alpha is 1.40786868629518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32510302541872915
the lambda is 0.5152495103745872
the regulation term lambda/alpha is 1.5848806996211477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3181749920617998
the lambda is 0.5637159583390421
the regulation term lambda/alpha is 1.7717167357689456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37214642347799104
the lambda is 0.5175743023743661
the regulation term lambda/alpha is 1.3907813422932862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29182807329400123
the lambda is 0.45355019770809635
the regulation term lambda/alpha is 1.554169181150604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28295321064566276
the lambda is 0.5415630283296061
the regulation term lambda/alpha is 1.913966719422724
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2950801346247264
the lambda is 0.5391388033979542
the regulation term lambda/alpha is 1.827092847451808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33545272648401225
the lambda is 0.507507662901024
the regulation term lambda/alpha is 1.5129036756397087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30987829332190503
the lambda is 0.5322469126626418
the regulation term lambda/alpha is 1.717599858179604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37709511451897565
the lambda is 0.5662530673647295
the regulation term lambda/alpha is 1.5016186780543275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33776851419286796
the lambda is 0.48126344030815765
the regulation term lambda/alpha is 1.4248321560053794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30026435965880666
the lambda is 0.47934875451695846
the regulation term lambda/alpha is 1.5964224161057514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3271906531258947
the lambda is 0.4913223835638375
the regulation term lambda/alpha is 1.5016394229782264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35369095284514274
the lambda is 0.49382913061123834
the regulation term lambda/alpha is 1.3962164614016932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2755530025685685
the lambda is 0.47990084891344703
the regulation term lambda/alpha is 1.7415917970047474
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33002381536797243
the lambda is 0.47575053209612966
the regulation term lambda/alpha is 1.441564244585421
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3003589269153037
the lambda is 0.4829889430589266
the regulation term lambda/alpha is 1.6080392483061494
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32561993364806435
the lambda is 0.510981023934979
the regulation term lambda/alpha is 1.5692559672567716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.280216795981114
the lambda is 0.46330922234074684
the regulation term lambda/alpha is 1.653395617199095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34325892147588
the lambda is 0.5805129302597046
the regulation term lambda/alpha is 1.6911808956449685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2888311441182373
the lambda is 0.536431115310057
the regulation term lambda/alpha is 1.8572481750460437
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.325828468939826
the lambda is 0.5032306592843879
the regulation term lambda/alpha is 1.5444649785262459
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3193953583800619
the lambda is 0.5486967929057672
the regulation term lambda/alpha is 1.7179235029860702
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27092852212063195
the lambda is 0.4910579757801802
the regulation term lambda/alpha is 1.8125001086505568
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3288386169851658
the lambda is 0.48033283544722744
the regulation term lambda/alpha is 1.4606947318139818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3175235112935249
the lambda is 0.5244401499975839
the regulation term lambda/alpha is 1.6516576925630595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3468308005118315
the lambda is 0.5393549083539
the regulation term lambda/alpha is 1.555095186350097
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29468204765987654
the lambda is 0.5429641993199225
the regulation term lambda/alpha is 1.8425425085501455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29741832181468597
the lambda is 0.4791662519289014
the regulation term lambda/alpha is 1.611085184682933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35923950766309265
the lambda is 0.5599558146293173
the regulation term lambda/alpha is 1.5587255930504822
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3017541481526655
the lambda is 0.490457671119217
the regulation term lambda/alpha is 1.6253551910447355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3145803927373537
the lambda is 0.5517978126361751
the regulation term lambda/alpha is 1.7540756683360001
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30007274336768563
the lambda is 0.5270800062697514
the regulation term lambda/alpha is 1.756507440010667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2991753706226549
the lambda is 0.5011039621675534
the regulation term lambda/alpha is 1.6749505854196391
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31931982172755824
the lambda is 0.47068257628264115
the regulation term lambda/alpha is 1.4740161563920222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31590704272969955
the lambda is 0.5349811562713865
the regulation term lambda/alpha is 1.6934765102059912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2723430582014253
the lambda is 0.4953816421390022
the regulation term lambda/alpha is 1.8189618836277344
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2934551745446177
the lambda is 0.5292733942312446
the regulation term lambda/alpha is 1.8035919627335537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3270641354447318
the lambda is 0.5493456617328759
the regulation term lambda/alpha is 1.6796267220980756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33207957393571
the lambda is 0.5892397504249569
the regulation term lambda/alpha is 1.774393237866032
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3192705027347356
the lambda is 0.5411558927895713
the regulation term lambda/alpha is 1.6949761664615417
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3058962992403323
the lambda is 0.4656145790405442
the regulation term lambda/alpha is 1.5221321088122308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.284707288193143
the lambda is 0.4827876028536224
the regulation term lambda/alpha is 1.6957332069634388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3127756414657304
the lambda is 0.5063102594214555
the regulation term lambda/alpha is 1.6187649941305609
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.315432222208971
the lambda is 0.5489106532096483
the regulation term lambda/alpha is 1.740185734246262
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282979618148328
the lambda is 0.48159696058257906
the regulation term lambda/alpha is 1.4669508087114176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3249352367026299
the lambda is 0.5185699761040772
the regulation term lambda/alpha is 1.595917947731398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3251582027498711
the lambda is 0.5234851110413693
the regulation term lambda/alpha is 1.6099397358401004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34114209230624637
the lambda is 0.5352833566759947
the regulation term lambda/alpha is 1.5690920843490224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32401522082739675
the lambda is 0.5398129769198908
the regulation term lambda/alpha is 1.6660111692945738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3123135044223636
the lambda is 0.5353152640567893
the regulation term lambda/alpha is 1.714031754876807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3069209112437901
the lambda is 0.5578515508563482
the regulation term lambda/alpha is 1.8175742688748944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.377191506926144
the lambda is 0.5663560720839179
the regulation term lambda/alpha is 1.5015080182990792
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37968214690712254
the lambda is 0.529466498354049
the regulation term lambda/alpha is 1.3944993270478072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29803717142900266
the lambda is 0.4938499006757957
the regulation term lambda/alpha is 1.6570077427185583
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39446660722788757
the lambda is 0.5925382681258209
the regulation term lambda/alpha is 1.5021252934180693
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2663682678933463
the lambda is 0.45929104761461187
the regulation term lambda/alpha is 1.724270879737491
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3116195376871113
the lambda is 0.5612721306321847
the regulation term lambda/alpha is 1.801145508391527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3134996241350047
the lambda is 0.5463280201587949
the regulation term lambda/alpha is 1.7426751999023946
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3549191116591709
the lambda is 0.47744990432848883
the regulation term lambda/alpha is 1.345235825978806
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.336098855149644
the lambda is 0.5534578883280903
the regulation term lambda/alpha is 1.6467116143007086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31591457028068287
the lambda is 0.5131702320025628
the regulation term lambda/alpha is 1.6243955812060926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30305618761874337
the lambda is 0.5054478326651743
the regulation term lambda/alpha is 1.6678353827279304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32523761373362803
the lambda is 0.4752952682808612
the regulation term lambda/alpha is 1.461378537447183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215861054299208
the lambda is 0.5468401841890079
the regulation term lambda/alpha is 1.7004471740405276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2909388526225377
the lambda is 0.4691826230203394
the regulation term lambda/alpha is 1.6126502830099976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2810365689919702
the lambda is 0.47051426047648653
the regulation term lambda/alpha is 1.6742100935979263
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33327578720375445
the lambda is 0.5809934757538833
the regulation term lambda/alpha is 1.7432813845509934
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2955510968508362
the lambda is 0.5075096777414251
the regulation term lambda/alpha is 1.7171639122610456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30442882332874466
the lambda is 0.514178308521191
the regulation term lambda/alpha is 1.6889935154594193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32306307153172503
the lambda is 0.5662654878079373
the regulation term lambda/alpha is 1.7528016592027282
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3354931546455638
the lambda is 0.50656044531617
the regulation term lambda/alpha is 1.509898006268809
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2866558127406053
the lambda is 0.4853929499116858
the regulation term lambda/alpha is 1.6932953330722011
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27827272826248184
the lambda is 0.5043795563974608
the regulation term lambda/alpha is 1.8125367855728314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3578836468408598
the lambda is 0.501257277935024
the regulation term lambda/alpha is 1.4006152065336421
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31165086502505335
the lambda is 0.5095225261599838
the regulation term lambda/alpha is 1.6349145256472295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2913459992185825
the lambda is 0.4614964100319474
the regulation term lambda/alpha is 1.5840149213297054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2802606757786275
the lambda is 0.5233116252331109
the regulation term lambda/alpha is 1.8672317255327846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37828960205118695
the lambda is 0.6237916507600942
the regulation term lambda/alpha is 1.6489791085394094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30117255055544545
the lambda is 0.5079195931931766
the regulation term lambda/alpha is 1.6864737249674062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3506756838928234
the lambda is 0.5231004190701221
the regulation term lambda/alpha is 1.4916928749185718
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29641404245243863
the lambda is 0.5194671937324621
the regulation term lambda/alpha is 1.7525053450050823
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3359794811121587
the lambda is 0.5096063229979241
the regulation term lambda/alpha is 1.5167781118984591
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105152378993148
the lambda is 0.48835293701089405
the regulation term lambda/alpha is 1.5727181065724172
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3117446208849136
the lambda is 0.5124894903434277
the regulation term lambda/alpha is 1.643940122811687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3136506755645187
the lambda is 0.46507529327046054
the regulation term lambda/alpha is 1.4827810985371
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161165264408454
the lambda is 0.5063697775865925
the regulation term lambda/alpha is 1.6018453172562903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30824206502443036
the lambda is 0.5354038463529962
the regulation term lambda/alpha is 1.7369590562227828
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32260587280618747
the lambda is 0.5262456333384696
the regulation term lambda/alpha is 1.6312338915622382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33825174799039787
the lambda is 0.4585271414288031
the regulation term lambda/alpha is 1.3555795177792238
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2689387314005011
the lambda is 0.48171883735206783
the regulation term lambda/alpha is 1.791184314893999
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31554715659996024
the lambda is 0.48802398042692086
the regulation term lambda/alpha is 1.5465960323820023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2970718138635364
the lambda is 0.52726878436842
the regulation term lambda/alpha is 1.7748866091033035
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2828430381014839
the lambda is 0.46545254552061716
the regulation term lambda/alpha is 1.6456213617448594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3316643486160334
the lambda is 0.5679634387437943
the regulation term lambda/alpha is 1.7124645477085132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3077255485980775
the lambda is 0.5132449286173252
the regulation term lambda/alpha is 1.6678658335505252
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33505116105749805
the lambda is 0.5631843056030381
the regulation term lambda/alpha is 1.680890476026108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2898384661487374
the lambda is 0.5491983837202482
the regulation term lambda/alpha is 1.8948429827751512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3206574262680767
the lambda is 0.537150055936303
the regulation term lambda/alpha is 1.6751523960877603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3309747257852713
the lambda is 0.5595244193667932
the regulation term lambda/alpha is 1.6905351852449289
710
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29635754370455086
the lambda is 0.5143305490473324
the regulation term lambda/alpha is 1.735506856407497
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257642636619978
the lambda is 0.5170220937627026
the regulation term lambda/alpha is 1.5871050063955068
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28544153164865094
the lambda is 0.49824116389316875
the regulation term lambda/alpha is 1.7455104063358664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29906348639498037
the lambda is 0.47627791898142324
the regulation term lambda/alpha is 1.5925645912934736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3102508412699312
the lambda is 0.4977152724591577
the regulation term lambda/alpha is 1.6042350454937997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32011808942586634
the lambda is 0.498691331068763
the regulation term lambda/alpha is 1.5578355223947788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2638993525261629
the lambda is 0.47661168570783496
the regulation term lambda/alpha is 1.8060358282257771
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3557058762316378
the lambda is 0.5397184298822334
the regulation term lambda/alpha is 1.5173165976340675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3829564301521522
the lambda is 0.5599179938246667
the regulation term lambda/alpha is 1.4620932036634193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28541901457611357
the lambda is 0.5352714199856518
the regulation term lambda/alpha is 1.8753880878630433
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32777011763274333
the lambda is 0.5285580434631465
the regulation term lambda/alpha is 1.6125876491748405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32719572585200035
the lambda is 0.49969610937064585
the regulation term lambda/alpha is 1.5272085479401163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31317215097917095
the lambda is 0.5137364371648604
the regulation term lambda/alpha is 1.6404282295172183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2987665523399849
the lambda is 0.45741156948086314
the regulation term lambda/alpha is 1.530999925856313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3197736280764736
the lambda is 0.5156865768486979
the regulation term lambda/alpha is 1.6126613690775398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2876509997408653
the lambda is 0.5121437181062299
the regulation term lambda/alpha is 1.7804343408074448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.24855257504658512
the lambda is 0.4981610364037905
the regulation term lambda/alpha is 2.0042481407019115
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3491083595073468
the lambda is 0.5657890660158302
the regulation term lambda/alpha is 1.6206689144145903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3419697629758014
the lambda is 0.5389666168358607
the regulation term lambda/alpha is 1.5760651238454648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3431571371894002
the lambda is 0.5420741106953312
the regulation term lambda/alpha is 1.5796673067479923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29107273135143
the lambda is 0.4837199687457926
the regulation term lambda/alpha is 1.6618525771889217
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3327960734655427
the lambda is 0.5106080977666705
the regulation term lambda/alpha is 1.5342972423006616
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31146428073038485
the lambda is 0.5576280640873167
the regulation term lambda/alpha is 1.7903435436631028
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3617057071235954
the lambda is 0.4866365561652905
the regulation term lambda/alpha is 1.3453936351604374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30213387503002415
the lambda is 0.4917876868358828
the regulation term lambda/alpha is 1.627714491753075
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3411687156756065
the lambda is 0.5272528493592025
the regulation term lambda/alpha is 1.5454314101311983
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28465617747231053
the lambda is 0.5058118776168833
the regulation term lambda/alpha is 1.7769221877016363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31963081524397896
the lambda is 0.5018280042302992
the regulation term lambda/alpha is 1.5700238534486932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3517194160310213
the lambda is 0.5691105080607721
the regulation term lambda/alpha is 1.6180810103772523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3292008568244198
the lambda is 0.5134303814432468
the regulation term lambda/alpha is 1.5596265040011312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3531416084235519
the lambda is 0.5172377344781205
the regulation term lambda/alpha is 1.4646751392086161
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2989179268792528
the lambda is 0.5321810448611548
the regulation term lambda/alpha is 1.7803584094711327
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2885061729369022
the lambda is 0.49740925198750696
the regulation term lambda/alpha is 1.724085300928008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34137229664781094
the lambda is 0.5481098464719841
the regulation term lambda/alpha is 1.605607285225788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33070975597884616
the lambda is 0.5226243891167855
the regulation term lambda/alpha is 1.5803113747579167
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3298486203658343
the lambda is 0.45219902707033693
the regulation term lambda/alpha is 1.3709289630158348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38012235651203735
the lambda is 0.4834506160504631
the regulation term lambda/alpha is 1.271828946043992
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3503839303615889
the lambda is 0.512735253601163
the regulation term lambda/alpha is 1.4633526516813455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4075911521140789
the lambda is 0.4989632505577183
the regulation term lambda/alpha is 1.2241758634104638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3631199868300312
the lambda is 0.5494484347483234
the regulation term lambda/alpha is 1.513131897654283
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36183929964121875
the lambda is 0.5850172282018719
the regulation term lambda/alpha is 1.6167874213274922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2944764629148089
the lambda is 0.5203275358363453
the regulation term lambda/alpha is 1.7669579792082548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2920752152663255
the lambda is 0.4801631319096435
the regulation term lambda/alpha is 1.643970822624618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.337923205622938
the lambda is 0.5219024830939087
the regulation term lambda/alpha is 1.5444410872340588
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3033533538751649
the lambda is 0.45200532462538784
the regulation term lambda/alpha is 1.490029099237834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3305688960334872
the lambda is 0.4676510978087061
the regulation term lambda/alpha is 1.4146857233698487
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29550827839340277
the lambda is 0.5054438670357831
the regulation term lambda/alpha is 1.7104220219607464
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27406724175067043
the lambda is 0.469369901461942
the regulation term lambda/alpha is 1.7126085498716623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31399519112597757
the lambda is 0.5002193990591544
the regulation term lambda/alpha is 1.5930798088511555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3166164926780584
the lambda is 0.5127256482092577
the regulation term lambda/alpha is 1.619390208868894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33575800845504805
the lambda is 0.502343001265526
the regulation term lambda/alpha is 1.4961459998437556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30549321349623515
the lambda is 0.571475834750288
the regulation term lambda/alpha is 1.8706662194226804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32611254386483185
the lambda is 0.4992903354027623
the regulation term lambda/alpha is 1.5310368913920396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300699455028499
the lambda is 0.5076079154306591
the regulation term lambda/alpha is 1.5378798413691872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32268211354460813
the lambda is 0.513574360175379
the regulation term lambda/alpha is 1.5915798819273002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33958178396249317
the lambda is 0.528110931948883
the regulation term lambda/alpha is 1.5551803921473388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26973581208018177
the lambda is 0.5303776663695363
the regulation term lambda/alpha is 1.966285686276897
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34968962469450177
the lambda is 0.5188492770783084
the regulation term lambda/alpha is 1.4837422686806594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32109882552332414
the lambda is 0.4818980268594177
the regulation term lambda/alpha is 1.5007779180569234
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.330518794816016
the lambda is 0.512704849096118
the regulation term lambda/alpha is 1.5512123883348792
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2887866388973527
the lambda is 0.45425929711546087
the regulation term lambda/alpha is 1.5729927771240289
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3443871704859491
the lambda is 0.5278793560253466
the regulation term lambda/alpha is 1.5328078432204082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29766169221833205
the lambda is 0.5185076737545733
the regulation term lambda/alpha is 1.7419361890016158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30848242913134666
the lambda is 0.48271898271483615
the regulation term lambda/alpha is 1.5648184049708143
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29973164212034314
the lambda is 0.4670834618652402
the regulation term lambda/alpha is 1.5583388479141778
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3107125319789997
the lambda is 0.49745621925495703
the regulation term lambda/alpha is 1.6010175582122286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.40017749191572793
the lambda is 0.5884410349097526
the regulation term lambda/alpha is 1.4704501047591914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161886813659303
the lambda is 0.50220139116065
the regulation term lambda/alpha is 1.5882965480963696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26691057696241305
the lambda is 0.42950778636601167
the regulation term lambda/alpha is 1.6091823383473332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28905256892822073
the lambda is 0.5448322033318058
the regulation term lambda/alpha is 1.8848896771683832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32696472464207504
the lambda is 0.5003832003244565
the regulation term lambda/alpha is 1.5303889460008901
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29583610530000726
the lambda is 0.5178566376406535
the regulation term lambda/alpha is 1.7504849082416607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31539131964622896
the lambda is 0.5585248990334016
the regulation term lambda/alpha is 1.77089496204237
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30884876966531344
the lambda is 0.549116291241577
the regulation term lambda/alpha is 1.7779455357281542
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30004352150689995
the lambda is 0.5146942996438844
the regulation term lambda/alpha is 1.715398809675843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33221013950584594
the lambda is 0.5577662865874341
the regulation term lambda/alpha is 1.6789562396171807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29831349084725345
the lambda is 0.494674360195978
the regulation term lambda/alpha is 1.6582366382124767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35935846391841264
the lambda is 0.4990759224453363
the regulation term lambda/alpha is 1.3887969049162134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090945952011308
the lambda is 0.5009475459703933
the regulation term lambda/alpha is 1.6206933209052778
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2978899097323038
the lambda is 0.48500166176371823
the regulation term lambda/alpha is 1.6281238333972468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33984497216906107
the lambda is 0.5917682362946142
the regulation term lambda/alpha is 1.7412887779908952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35749601379854273
the lambda is 0.5662576493785485
the regulation term lambda/alpha is 1.5839551422177474
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2902971956330281
the lambda is 0.4819584843787904
the regulation term lambda/alpha is 1.6602243894496527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3100455298430428
the lambda is 0.5330689507550842
the regulation term lambda/alpha is 1.7193247424819982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28768544789233724
the lambda is 0.4845311265653831
the regulation term lambda/alpha is 1.6842392624138325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3115968953289363
the lambda is 0.48390308128703813
the regulation term lambda/alpha is 1.552977865123487
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156441762516912
the lambda is 0.52947241915642
the regulation term lambda/alpha is 1.6774344625773308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156944087167855
the lambda is 0.5073752026484624
the regulation term lambda/alpha is 1.6071719632628552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3459786916304811
the lambda is 0.5323264760261667
the regulation term lambda/alpha is 1.5386105818178892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26450447818702183
the lambda is 0.5169610554507148
the regulation term lambda/alpha is 1.9544510512415212
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4304026268103243
the lambda is 0.4947394308615723
the regulation term lambda/alpha is 1.1494805097451248
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2912245752339753
the lambda is 0.5412196394563571
the regulation term lambda/alpha is 1.8584270885159022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190564028113871
the lambda is 0.49779889058195603
the regulation term lambda/alpha is 1.5602222246460733
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28884855594308845
the lambda is 0.49270701020111485
the regulation term lambda/alpha is 1.7057624144681285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3573750961259403
the lambda is 0.5155689389943495
the regulation term lambda/alpha is 1.4426549151949333
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3221119486785364
the lambda is 0.5305662207029099
the regulation term lambda/alpha is 1.6471485236097474
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2671800091265729
the lambda is 0.5021052593811666
the regulation term lambda/alpha is 1.8792770500404503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34885212178948943
the lambda is 0.5117176021681423
the regulation term lambda/alpha is 1.4668610858469484
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30270470301010016
the lambda is 0.47546124090873504
the regulation term lambda/alpha is 1.5707097913601646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27771040249320167
the lambda is 0.4631495391411606
the regulation term lambda/alpha is 1.6677428536458891
720
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3195858901736014
the lambda is 0.5402524446811298
the regulation term lambda/alpha is 1.690476523815431
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34375654854452387
the lambda is 0.500774190354399
the regulation term lambda/alpha is 1.4567698927473318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3168457280989813
the lambda is 0.4868569675867392
the regulation term lambda/alpha is 1.5365741886683952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3164611260005074
the lambda is 0.5164665079630651
the regulation term lambda/alpha is 1.6320061629378044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.288881924311754
the lambda is 0.5184392811787226
the regulation term lambda/alpha is 1.794640777244464
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3117870625824942
the lambda is 0.5186470493342222
the regulation term lambda/alpha is 1.6634655878224451
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29593244430347543
the lambda is 0.5819372319935059
the regulation term lambda/alpha is 1.9664529631524137
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30599866451981
the lambda is 0.562859986356677
the regulation term lambda/alpha is 1.8394197479258543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32555203757734374
the lambda is 0.4497137597200627
the regulation term lambda/alpha is 1.3813882507592077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3033507596783703
the lambda is 0.47077095050665463
the regulation term lambda/alpha is 1.5519029884935602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3612869485393868
the lambda is 0.5322826442999307
the regulation term lambda/alpha is 1.4732960779564452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2826313692579701
the lambda is 0.4633500046821888
the regulation term lambda/alpha is 1.6394146406985306
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3406919376794458
the lambda is 0.5021067990741336
the regulation term lambda/alpha is 1.473785386569851
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3184988467477106
the lambda is 0.5262418514311312
the regulation term lambda/alpha is 1.6522566935634089
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2745886694746522
the lambda is 0.5054755377547827
the regulation term lambda/alpha is 1.8408463055735957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3050683340741124
the lambda is 0.5361373122532717
the regulation term lambda/alpha is 1.7574335070877074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33501026848505794
the lambda is 0.4907465613334829
the regulation term lambda/alpha is 1.4648702069720918
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2974919082635656
the lambda is 0.43730840304449514
the regulation term lambda/alpha is 1.469984194182041
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3217817517020602
the lambda is 0.4672545741733082
the regulation term lambda/alpha is 1.4520853706021908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2935608433354415
the lambda is 0.4966590761846123
the regulation term lambda/alpha is 1.6918437436735991
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3272757364890743
the lambda is 0.5456276312006904
the regulation term lambda/alpha is 1.667180210345063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31362035546252515
the lambda is 0.5026718787187203
the regulation term lambda/alpha is 1.6028037401379234
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37587432893416295
the lambda is 0.5399622316376789
the regulation term lambda/alpha is 1.4365499053069333
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28772667606089275
the lambda is 0.5096679790316446
the regulation term lambda/alpha is 1.7713615783187984
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2831140491332958
the lambda is 0.49102051126061247
the regulation term lambda/alpha is 1.7343558638781296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2968483184612256
the lambda is 0.5457335399790778
the regulation term lambda/alpha is 1.8384255730603427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2963564206816726
the lambda is 0.48416434152140614
the regulation term lambda/alpha is 1.6337231378613017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33621410143152397
the lambda is 0.5061817590329302
the regulation term lambda/alpha is 1.5055339941951338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27336286416267513
the lambda is 0.5024102390259243
the regulation term lambda/alpha is 1.8378876756535067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30110123475387424
the lambda is 0.4537883563094166
the regulation term lambda/alpha is 1.5070956340659036
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2964494471038506
the lambda is 0.479234560072842
the regulation term lambda/alpha is 1.6165810554032136
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3493954056604166
the lambda is 0.49107245344135
the regulation term lambda/alpha is 1.4054920170262104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2720603167612691
the lambda is 0.47598684325952095
the regulation term lambda/alpha is 1.74956365899256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2593124219421176
the lambda is 0.4915165334580201
the regulation term lambda/alpha is 1.8954608104648911
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3197715474837394
the lambda is 0.48332172493780345
the regulation term lambda/alpha is 1.5114594426584518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32411907390260236
the lambda is 0.5119386527106481
the regulation term lambda/alpha is 1.5794770932379174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28488171600683265
the lambda is 0.5079768391619505
the regulation term lambda/alpha is 1.7831149232117343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30805324193637135
the lambda is 0.447330091975188
the regulation term lambda/alpha is 1.4521194101491859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3079010251421102
the lambda is 0.5030288365738955
the regulation term lambda/alpha is 1.6337355042638297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2971895807684189
the lambda is 0.5015822128031011
the regulation term lambda/alpha is 1.687751675231012
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3201214736981283
the lambda is 0.49028417100627747
the regulation term lambda/alpha is 1.5315566473638411
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33949595688165135
the lambda is 0.5407052564498833
the regulation term lambda/alpha is 1.5926706798407433
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3378811096439443
the lambda is 0.5945364448255014
the regulation term lambda/alpha is 1.7596024987961532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31831338178167684
the lambda is 0.5325042457805198
the regulation term lambda/alpha is 1.6728930552651133
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33904979961465753
the lambda is 0.5373854747493388
the regulation term lambda/alpha is 1.584975054874231
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28378875817083266
the lambda is 0.5498499147557249
the regulation term lambda/alpha is 1.9375324036786936
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3441216431174408
the lambda is 0.5437050888710395
the regulation term lambda/alpha is 1.5799793466797014
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29781815065239015
the lambda is 0.4749275206789637
the regulation term lambda/alpha is 1.5946896441288212
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3210385486917934
the lambda is 0.5190714958902295
the regulation term lambda/alpha is 1.616850991899274
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29404844325048185
the lambda is 0.5182227910049609
the regulation term lambda/alpha is 1.7623721631592475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30683185368202626
the lambda is 0.4609975019834138
the regulation term lambda/alpha is 1.5024434277320873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2990106472008087
the lambda is 0.49969536584435953
the regulation term lambda/alpha is 1.6711624503082512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31274706335474867
the lambda is 0.48131391248144423
the regulation term lambda/alpha is 1.538987791982847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012307795686325
the lambda is 0.4707566187132723
the regulation term lambda/alpha is 1.562777281217423
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3449332510609231
the lambda is 0.48931302620956635
the regulation term lambda/alpha is 1.418573085385562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.291439165739077
the lambda is 0.5542750831882182
the regulation term lambda/alpha is 1.9018551668668167
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3009296179671753
the lambda is 0.5078701951377466
the regulation term lambda/alpha is 1.6876710194512785
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2805271151251682
the lambda is 0.4916997836104187
the regulation term lambda/alpha is 1.7527709697190146
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3082761238111277
the lambda is 0.48835194531596626
the regulation term lambda/alpha is 1.5841380749135348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33558639508472815
the lambda is 0.5261801838937477
the regulation term lambda/alpha is 1.5679425376016771
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31267585005652543
the lambda is 0.4838211764339705
the regulation term lambda/alpha is 1.5473570355577684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29154877622490893
the lambda is 0.4568342740210843
the regulation term lambda/alpha is 1.566922282907027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3680386917748217
the lambda is 0.5191483223817464
the regulation term lambda/alpha is 1.4105808274619631
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29924740336907923
the lambda is 0.4996620567954911
the regulation term lambda/alpha is 1.6697289639610633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3172003074950027
the lambda is 0.5110214183558462
the regulation term lambda/alpha is 1.6110369576608845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25842887068503284
the lambda is 0.5122330901500103
the regulation term lambda/alpha is 1.9821047423695481
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29116489299469495
the lambda is 0.5051989190400878
the regulation term lambda/alpha is 1.7350955805282906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31127587227617737
the lambda is 0.5366696750014611
the regulation term lambda/alpha is 1.7240966062583374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33516040883863907
the lambda is 0.5046529665550409
the regulation term lambda/alpha is 1.5057057851901683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2758178025937142
the lambda is 0.5133190530581924
the regulation term lambda/alpha is 1.8610802066838406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3600737405363139
the lambda is 0.5238310172668047
the regulation term lambda/alpha is 1.4547881677974672
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3030873106953114
the lambda is 0.5134365506364277
the regulation term lambda/alpha is 1.6940219287259335
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3513628718831911
the lambda is 0.5352550672127951
the regulation term lambda/alpha is 1.5233683181834252
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32141180948527054
the lambda is 0.4574997688477963
the regulation term lambda/alpha is 1.4234068423947015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3554152023387495
the lambda is 0.5211766413456569
the regulation term lambda/alpha is 1.466388150861703
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38110037798006396
the lambda is 0.5508338793493472
the regulation term lambda/alpha is 1.4453774154434513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27637942211892147
the lambda is 0.45248519532109976
the regulation term lambda/alpha is 1.6371884413536508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29687106900314064
the lambda is 0.5124466091090166
the regulation term lambda/alpha is 1.7261588029771786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2866204052086237
the lambda is 0.5081396686551307
the regulation term lambda/alpha is 1.7728663396636704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3170742836084006
the lambda is 0.4932420239443087
the regulation term lambda/alpha is 1.5556040002079836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30813476990567384
the lambda is 0.5314350105912451
the regulation term lambda/alpha is 1.724683685498809
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3177749678015415
the lambda is 0.5109926997634395
the regulation term lambda/alpha is 1.6080332044359371
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33856827955175406
the lambda is 0.5080868677715181
the regulation term lambda/alpha is 1.5006924701989135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3304484678413673
the lambda is 0.5014115145990852
the regulation term lambda/alpha is 1.5173667406434737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.353317927967895
the lambda is 0.5571942967103856
the regulation term lambda/alpha is 1.5770337495045432
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3199901224954304
the lambda is 0.5608258875543575
the regulation term lambda/alpha is 1.752634997545483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3171834893802482
the lambda is 0.45421775568305994
the regulation term lambda/alpha is 1.4320346767436287
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2965088104468902
the lambda is 0.5466288227223958
the regulation term lambda/alpha is 1.8435500176150965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28621058966681556
the lambda is 0.5122239542239447
the regulation term lambda/alpha is 1.789675059962794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33123426408066525
the lambda is 0.5089918658332004
the regulation term lambda/alpha is 1.536652215754002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33566684457222384
the lambda is 0.4847729940800506
the regulation term lambda/alpha is 1.444208750190531
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.331499914911142
the lambda is 0.5193928001673649
the regulation term lambda/alpha is 1.5667961794397058
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2875951300400024
the lambda is 0.5348948606072419
the regulation term lambda/alpha is 1.8598884498942727
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3351583108185507
the lambda is 0.5361734372217202
the regulation term lambda/alpha is 1.5997617242795923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31171170832423867
the lambda is 0.5268057005495457
the regulation term lambda/alpha is 1.6900414276436768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.342491382318038
the lambda is 0.5316000846754262
the regulation term lambda/alpha is 1.5521560895268938
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28672666772388017
the lambda is 0.536732649000152
the regulation term lambda/alpha is 1.8719313876902075
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33391826521923257
the lambda is 0.5549055549657421
the regulation term lambda/alpha is 1.6618005445177468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39269774974486443
the lambda is 0.612956025754599
the regulation term lambda/alpha is 1.5608849965471823
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3172293801745383
the lambda is 0.507028298937091
the regulation term lambda/alpha is 1.598301830234407
730
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34499802121023565
the lambda is 0.5294427858156905
the regulation term lambda/alpha is 1.5346255725132334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2891881919799164
the lambda is 0.5002321345111216
the regulation term lambda/alpha is 1.7297806355311416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3330951924926989
the lambda is 0.49808565104959834
the regulation term lambda/alpha is 1.495325247182953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32035592561556336
the lambda is 0.49180591000911866
the regulation term lambda/alpha is 1.5351859312860046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3029720818003191
the lambda is 0.5600832902937765
the regulation term lambda/alpha is 1.8486300353671286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3392375015936644
the lambda is 0.5381356775038036
the regulation term lambda/alpha is 1.5863095175968418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3422350857072738
the lambda is 0.5819320950731971
the regulation term lambda/alpha is 1.700387012835221
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34449835817046415
the lambda is 0.5242311574520013
the regulation term lambda/alpha is 1.5217232390773894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190040997989245
the lambda is 0.47770274899684895
the regulation term lambda/alpha is 1.4974815348704162
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32024260895541135
the lambda is 0.47092608407805936
the regulation term lambda/alpha is 1.4705291266960303
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3305047054953777
the lambda is 0.579289198516283
the regulation term lambda/alpha is 1.7527411528014833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3335921061538695
the lambda is 0.469035225686053
the regulation term lambda/alpha is 1.406014162306677
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34943800062435265
the lambda is 0.555578588815882
the regulation term lambda/alpha is 1.5899203516023186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3343137518995083
the lambda is 0.5374522288586697
the regulation term lambda/alpha is 1.6076282408514952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3100596742798741
the lambda is 0.4937803388334999
the regulation term lambda/alpha is 1.5925332437387234
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3016131925444579
the lambda is 0.5252834499959262
the regulation term lambda/alpha is 1.741579821375019
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31907222379552397
the lambda is 0.5344406960008163
the regulation term lambda/alpha is 1.6749834556056822
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31352018854934394
the lambda is 0.5260649576339522
the regulation term lambda/alpha is 1.6779300882282946
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3217496639474132
the lambda is 0.5636625220370529
the regulation term lambda/alpha is 1.7518667000975576
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3014990228606685
the lambda is 0.49697282320257297
the regulation term lambda/alpha is 1.6483397474632568
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35842655872640156
the lambda is 0.56789355715543
the regulation term lambda/alpha is 1.584407023780069
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26646923845741616
the lambda is 0.44839518397552214
the regulation term lambda/alpha is 1.682727757137262
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3398477985850621
the lambda is 0.5353658572018369
the regulation term lambda/alpha is 1.575310652094272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32948033343486266
the lambda is 0.5107771648528333
the regulation term lambda/alpha is 1.5502508435873381
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31376135869575966
the lambda is 0.4975098802850107
the regulation term lambda/alpha is 1.585631456827747
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31840154460476827
the lambda is 0.5263301003030717
the regulation term lambda/alpha is 1.6530387783024265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32551974525609984
the lambda is 0.5105351433997167
the regulation term lambda/alpha is 1.5683692029128913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3343463714764464
the lambda is 0.6044096969293558
the regulation term lambda/alpha is 1.807735176728049
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33176637434508405
the lambda is 0.5761388208244845
the regulation term lambda/alpha is 1.7365799109743971
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30186495332303404
the lambda is 0.5490255538853624
the regulation term lambda/alpha is 1.8187787215491524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2845385365498978
the lambda is 0.5064827112228791
the regulation term lambda/alpha is 1.7800144661039976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31166273282618545
the lambda is 0.46810764692332785
the regulation term lambda/alpha is 1.5019686270427202
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29743836244410904
the lambda is 0.5014093186088381
the regulation term lambda/alpha is 1.6857587383438368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3104445616582651
the lambda is 0.5396959178881175
the regulation term lambda/alpha is 1.7384614985854077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3240311371750587
the lambda is 0.47404655926810346
the regulation term lambda/alpha is 1.4629660698687685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31365959957954764
the lambda is 0.48086335956415044
the regulation term lambda/alpha is 1.5330739445205408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2769561092874949
the lambda is 0.4653030233302218
the regulation term lambda/alpha is 1.6800605140188942
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3626175902404014
the lambda is 0.5155811753719725
the regulation term lambda/alpha is 1.421831674051339
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.281018206928833
the lambda is 0.5216921923958812
the regulation term lambda/alpha is 1.8564355601628264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3277266463824481
the lambda is 0.5316650802067482
the regulation term lambda/alpha is 1.6222821246774957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2813196966500931
the lambda is 0.5083162536599698
the regulation term lambda/alpha is 1.80689891149789
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30696321217636674
the lambda is 0.46056068170583003
the regulation term lambda/alpha is 1.500377450576108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33059701970325217
the lambda is 0.5280068605259085
the regulation term lambda/alpha is 1.5971313383280157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3307225436728293
the lambda is 0.48584285188505577
the regulation term lambda/alpha is 1.4690345765049533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28291469958539317
the lambda is 0.5078596293574701
the regulation term lambda/alpha is 1.795098063486026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29066599666595755
the lambda is 0.4872793198814501
the regulation term lambda/alpha is 1.6764235427284835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.330414897126801
the lambda is 0.5427753405025479
the regulation term lambda/alpha is 1.6427084408795614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.274721978540502
the lambda is 0.49197046581037296
the regulation term lambda/alpha is 1.7907939816975444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32391710112196603
the lambda is 0.5395245898314346
the regulation term lambda/alpha is 1.6656255195006973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3565166036481119
the lambda is 0.5125586512314051
the regulation term lambda/alpha is 1.437685218546818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2829910283662786
the lambda is 0.49412083638848314
the regulation term lambda/alpha is 1.746065376139546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.286979704819066
the lambda is 0.5004118932135252
the regulation term lambda/alpha is 1.7437187536624696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3154428385966667
the lambda is 0.47452300394794034
the regulation term lambda/alpha is 1.5043074239979104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2989815266246931
the lambda is 0.49318817610602134
the regulation term lambda/alpha is 1.6495606991970206
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2971500636222265
the lambda is 0.5005007594441694
the regulation term lambda/alpha is 1.6843367063197643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34639231780610974
the lambda is 0.4910557193645086
the regulation term lambda/alpha is 1.4176287813616382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34463359297062024
the lambda is 0.5201615643170864
the regulation term lambda/alpha is 1.5093176490239295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3237005849628963
the lambda is 0.49284641790186934
the regulation term lambda/alpha is 1.522537927938441
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3007308659395946
the lambda is 0.52612777974865
the regulation term lambda/alpha is 1.7494971063406877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3274743042868816
the lambda is 0.5968249211838653
the regulation term lambda/alpha is 1.8225091659741979
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32735864460671577
the lambda is 0.4978006619716747
the regulation term lambda/alpha is 1.520658367124307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30886938936339636
the lambda is 0.4956945261614742
the regulation term lambda/alpha is 1.604867763630248
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3533574017228779
the lambda is 0.5152660920513317
the regulation term lambda/alpha is 1.4582009306697115
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27372143559262685
the lambda is 0.46054946130529706
the regulation term lambda/alpha is 1.68254802663947
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2874807649220816
the lambda is 0.5350386471799791
the regulation term lambda/alpha is 1.861128508284703
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34352322180001926
the lambda is 0.5521014522839207
the regulation term lambda/alpha is 1.6071735977293682
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29883122562166686
the lambda is 0.46585332506302196
the regulation term lambda/alpha is 1.5589178275927973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3658320152601504
the lambda is 0.5017735031444919
the regulation term lambda/alpha is 1.3715953831642393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31088226456583284
the lambda is 0.4985703941256957
the regulation term lambda/alpha is 1.6037273622603767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32353980807397703
the lambda is 0.5612058552274375
the regulation term lambda/alpha is 1.7345805407015584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28886126986980837
the lambda is 0.5436771056536277
the regulation term lambda/alpha is 1.882139152468126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34511634321695495
the lambda is 0.5073547585940498
the regulation term lambda/alpha is 1.4700977469360377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2772423252413702
the lambda is 0.4950616613614025
the regulation term lambda/alpha is 1.785664078998026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31426428566157544
the lambda is 0.4853773921420569
the regulation term lambda/alpha is 1.5444879176145059
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3226281737671067
the lambda is 0.5648316146787626
the regulation term lambda/alpha is 1.7507200567254044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30421596850864063
the lambda is 0.5460285695192646
the regulation term lambda/alpha is 1.794871492762405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37903209430394746
the lambda is 0.5274706111960237
the regulation term lambda/alpha is 1.3916251924910683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31833895773824117
the lambda is 0.468431901034783
the regulation term lambda/alpha is 1.4714878265699354
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31776623772635887
the lambda is 0.514382333474423
the regulation term lambda/alpha is 1.618744449236857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33176930840784363
the lambda is 0.5590784625179847
the regulation term lambda/alpha is 1.6851422007689456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31542659318688787
the lambda is 0.5567764774230842
the regulation term lambda/alpha is 1.7651538882557007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2825231542531905
the lambda is 0.5043469694354573
the regulation term lambda/alpha is 1.7851526922408405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28244901853359133
the lambda is 0.4908398712352994
the regulation term lambda/alpha is 1.7377998825544665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2616083851709233
the lambda is 0.5203528651348706
the regulation term lambda/alpha is 1.9890527010244536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31881250318379184
the lambda is 0.4838138360756928
the regulation term lambda/alpha is 1.5175497549315986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3238895652224492
the lambda is 0.49281480744516415
the regulation term lambda/alpha is 1.5215519743795887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27217751556736225
the lambda is 0.5055066848632
the regulation term lambda/alpha is 1.857268348597628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33506592619397096
the lambda is 0.49216724223473907
the regulation term lambda/alpha is 1.4688668818858697
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3227711268722321
the lambda is 0.5134146396692775
the regulation term lambda/alpha is 1.5906461170937107
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3202833421521303
the lambda is 0.4551482544267906
the regulation term lambda/alpha is 1.4210800079967982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3515257747862357
the lambda is 0.5637493358945915
the regulation term lambda/alpha is 1.6037211957996818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35634471108961324
the lambda is 0.5214653814114123
the regulation term lambda/alpha is 1.4633734279846646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190998020695168
the lambda is 0.5120764406547434
the regulation term lambda/alpha is 1.6047532381207372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35400622964598844
the lambda is 0.5231937019257514
the regulation term lambda/alpha is 1.4779223022401413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2981472463958139
the lambda is 0.5048618986271147
the regulation term lambda/alpha is 1.6933307442218362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35826984246219507
the lambda is 0.5001172334352084
the regulation term lambda/alpha is 1.3959233353222613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2917291616836357
the lambda is 0.48625354197661197
the regulation term lambda/alpha is 1.66679785856968
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33184219727632575
the lambda is 0.5280274640249822
the regulation term lambda/alpha is 1.5912004813097733
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35341329489149204
the lambda is 0.5764780551347473
the regulation term lambda/alpha is 1.6311725208632644
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2837159842752233
the lambda is 0.4880464207149586
the regulation term lambda/alpha is 1.7201936012231203
740
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30340936519372674
the lambda is 0.4664354957029383
the regulation term lambda/alpha is 1.5373141017091527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26068218509127455
the lambda is 0.5449791775268548
the regulation term lambda/alpha is 2.0905884970084827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28875901063449133
the lambda is 0.48151234534406856
the regulation term lambda/alpha is 1.6675231858082613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31050273995661143
the lambda is 0.5777599912557618
the regulation term lambda/alpha is 1.8607242929208805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3065065829760357
the lambda is 0.4924194168049027
the regulation term lambda/alpha is 1.6065541301714965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.323008406001967
the lambda is 0.4609018704826195
the regulation term lambda/alpha is 1.426903640643373
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25712760495342313
the lambda is 0.4801530559851126
the regulation term lambda/alpha is 1.867372645858421
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3241187758182894
the lambda is 0.5054184007431148
the regulation term lambda/alpha is 1.559361686058161
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32277416573609163
the lambda is 0.542029585028285
the regulation term lambda/alpha is 1.6792842877997312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3091958766614218
the lambda is 0.5219584078561587
the regulation term lambda/alpha is 1.6881156808818567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34931271201577163
the lambda is 0.5053952092306176
the regulation term lambda/alpha is 1.4468274180866307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3482211751146414
the lambda is 0.5127564752747871
the regulation term lambda/alpha is 1.4725022827976424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37135741144207735
the lambda is 0.5048519892828849
the regulation term lambda/alpha is 1.3594773491187733
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.286699893101925
the lambda is 0.5331538416988235
the regulation term lambda/alpha is 1.8596234408405634
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2938419620567876
the lambda is 0.5100528023418845
the regulation term lambda/alpha is 1.735806549791933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.337672943966813
the lambda is 0.4931997491193224
the regulation term lambda/alpha is 1.460584147860525
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3101260044037746
the lambda is 0.49235968995090656
the regulation term lambda/alpha is 1.587611754446329
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3071687424484756
the lambda is 0.5360031229403095
the regulation term lambda/alpha is 1.7449793838649403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2878185451991044
the lambda is 0.5158348708484141
the regulation term lambda/alpha is 1.7922224938340048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2856894957581665
the lambda is 0.44954136474795586
the regulation term lambda/alpha is 1.5735313038197543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31255306425537904
the lambda is 0.4580619192027047
the regulation term lambda/alpha is 1.465549282948108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36960275060212977
the lambda is 0.5160731439894631
the regulation term lambda/alpha is 1.39629140516058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31297575266161076
the lambda is 0.5128871934541057
the regulation term lambda/alpha is 1.6387441809546157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31222169812384
the lambda is 0.49238812626183487
the regulation term lambda/alpha is 1.577046468008554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29962287068086757
the lambda is 0.49832304316171927
the regulation term lambda/alpha is 1.6631675747225918
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31231832314811153
the lambda is 0.4266000814944317
the regulation term lambda/alpha is 1.3659143568471455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3482255072043272
the lambda is 0.533840757701874
the regulation term lambda/alpha is 1.5330317471219417
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3421521694614044
the lambda is 0.504957511986603
the regulation term lambda/alpha is 1.4758272986591816
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203104290018984
the lambda is 0.47730249709376854
the regulation term lambda/alpha is 1.4901247473616905
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3348727699424407
the lambda is 0.447108403068163
the regulation term lambda/alpha is 1.3351590311299837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3516705335465342
the lambda is 0.5301245873705374
the regulation term lambda/alpha is 1.5074467059390106
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.33585779649599956
the lambda is 0.47474290363420335
the regulation term lambda/alpha is 1.413523546534249
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34373899958281406
the lambda is 0.5128715130642867
the regulation term lambda/alpha is 1.4920376032011025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31710702974415667
the lambda is 0.519810034142779
the regulation term lambda/alpha is 1.6392258303518659
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33208998586803884
the lambda is 0.48315555581500974
the regulation term lambda/alpha is 1.4548934818136887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33996382169185035
the lambda is 0.48829588810988117
the regulation term lambda/alpha is 1.4363172106956774
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3230078428409288
the lambda is 0.5588787706829216
the regulation term lambda/alpha is 1.730232819635131
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32668031070233183
the lambda is 0.5345121021161443
the regulation term lambda/alpha is 1.6361931974626622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33519140242305717
the lambda is 0.5016238901919414
the regulation term lambda/alpha is 1.4965297038222471
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3446982191995584
the lambda is 0.5644291150019092
the regulation term lambda/alpha is 1.6374587496059576
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31488996718091977
the lambda is 0.5444468511071122
the regulation term lambda/alpha is 1.72900666217257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33731835273058647
the lambda is 0.5139353194059268
the regulation term lambda/alpha is 1.5235913351456538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.333198370011751
the lambda is 0.5250191667391759
the regulation term lambda/alpha is 1.5756954835062966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30613547664517765
the lambda is 0.5005981706050682
the regulation term lambda/alpha is 1.6352177672804644
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3056390823293213
the lambda is 0.5221921355012957
the regulation term lambda/alpha is 1.708525400356496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30781586714624576
the lambda is 0.47323124076846446
the regulation term lambda/alpha is 1.5373841678656173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3139792190977784
the lambda is 0.4943008728394733
the regulation term lambda/alpha is 1.5743107912041139
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28322101704327685
the lambda is 0.44665447349793563
the regulation term lambda/alpha is 1.57705271367515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38593992423229123
the lambda is 0.562750713813033
the regulation term lambda/alpha is 1.458130342261046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3177365843478291
the lambda is 0.4443629750255309
the regulation term lambda/alpha is 1.3985263168155757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3301930324427154
the lambda is 0.5484597581978753
the regulation term lambda/alpha is 1.6610276544615659
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34589786428247704
the lambda is 0.5324882157176652
the regulation term lambda/alpha is 1.5394377089382936
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29398522400816945
the lambda is 0.5167057817039661
the regulation term lambda/alpha is 1.7575909927010738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34520397909787004
the lambda is 0.5041794364544742
the regulation term lambda/alpha is 1.460526143910793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3573553898052121
the lambda is 0.5370019946988572
the regulation term lambda/alpha is 1.5027113344829282
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3058761169836665
the lambda is 0.5563268616929531
the regulation term lambda/alpha is 1.818797973437921
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31872209416232605
the lambda is 0.5511545615070017
the regulation term lambda/alpha is 1.7292637429342979
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3335044312231509
the lambda is 0.4623377182527518
the regulation term lambda/alpha is 1.3863015749358885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28918927461051186
the lambda is 0.4641532212849651
the regulation term lambda/alpha is 1.6050153378271015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105866003314444
the lambda is 0.5387427772901606
the regulation term lambda/alpha is 1.7345976185554621
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3632844212821986
the lambda is 0.5335904018958516
the regulation term lambda/alpha is 1.4687951660920786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35374147838121506
the lambda is 0.5414784687890418
the regulation term lambda/alpha is 1.5307180579075577
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32757820142301486
the lambda is 0.5374705264834675
the regulation term lambda/alpha is 1.6407395978995876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3684244833652584
the lambda is 0.5714653122065979
the regulation term lambda/alpha is 1.5511056892493313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3293108354081295
the lambda is 0.5380988747542806
the regulation term lambda/alpha is 1.634015091205216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2853497634216794
the lambda is 0.5479523078817722
the regulation term lambda/alpha is 1.920283028488194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30327567430640906
the lambda is 0.5378161293908568
the regulation term lambda/alpha is 1.7733572948797867
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3141475476402665
the lambda is 0.5244311697589038
the regulation term lambda/alpha is 1.6693785251490654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3307186939571732
the lambda is 0.49919391303658006
the regulation term lambda/alpha is 1.5094215179176529
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31197059944026356
the lambda is 0.48078466177814666
the regulation term lambda/alpha is 1.5411217039066138
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.2909034543429652
the lambda is 0.5140458431186186
the regulation term lambda/alpha is 1.7670668238699432
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2791186658695683
the lambda is 0.5560011304426371
the regulation term lambda/alpha is 1.9919883491505923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3735352899016696
the lambda is 0.592442345304665
the regulation term lambda/alpha is 1.5860411621633421
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3451505132670312
the lambda is 0.5421236317170721
the regulation term lambda/alpha is 1.5706876011441695
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2723196933077363
the lambda is 0.5333932682046281
the regulation term lambda/alpha is 1.9587025151422457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30832849642505156
the lambda is 0.5143485767229999
the regulation term lambda/alpha is 1.668183715377173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3418016099890905
the lambda is 0.549750954385
the regulation term lambda/alpha is 1.6083919394134707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3266634612170197
the lambda is 0.5198477914456581
the regulation term lambda/alpha is 1.5913864057795428
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3162846369463927
the lambda is 0.5407190677721561
the regulation term lambda/alpha is 1.7095963717763596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2903368274220111
the lambda is 0.47510296539730307
the regulation term lambda/alpha is 1.6363854686154926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3234180793177747
the lambda is 0.5621061938625566
the regulation term lambda/alpha is 1.7380172284996431
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36002608025379873
the lambda is 0.484016479739209
the regulation term lambda/alpha is 1.344392826758561
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3419540403493694
the lambda is 0.49292157270294057
the regulation term lambda/alpha is 1.4414848621157683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30975474873105274
the lambda is 0.5275857621649497
the regulation term lambda/alpha is 1.7032370426160297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29720605990990806
the lambda is 0.48254445201683005
the regulation term lambda/alpha is 1.6236023322105329
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3240192429835683
the lambda is 0.5423703677228934
the regulation term lambda/alpha is 1.673883201283814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32984552848804577
the lambda is 0.5156749311079485
the regulation term lambda/alpha is 1.5633831189760619
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3136921346979028
the lambda is 0.5124331704473711
the regulation term lambda/alpha is 1.633554411368533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29892932218172585
the lambda is 0.49489200366497155
the regulation term lambda/alpha is 1.655548542555205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35561057929248596
the lambda is 0.5305858263807387
the regulation term lambda/alpha is 1.4920417368807732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36012324348610175
the lambda is 0.5259550731982471
the regulation term lambda/alpha is 1.4604863271441275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2879597803056942
the lambda is 0.4537608553632504
the regulation term lambda/alpha is 1.575778585750913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3124635550704136
the lambda is 0.4609031158518109
the regulation term lambda/alpha is 1.4750619980238862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29703444190915856
the lambda is 0.5165105915366205
the regulation term lambda/alpha is 1.738891248492267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2898878958703523
the lambda is 0.4844552069468133
the regulation term lambda/alpha is 1.671181218147439
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3471422817308571
the lambda is 0.596888743209972
the regulation term lambda/alpha is 1.7194354436857273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156808211773471
the lambda is 0.500582363725438
the regulation term lambda/alpha is 1.5857230789583336
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2928983944557741
the lambda is 0.5116338437486448
the regulation term lambda/alpha is 1.7467963410973852
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3447763912584909
the lambda is 0.510006208022019
the regulation term lambda/alpha is 1.4792376187952194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2923700542345401
the lambda is 0.5048456612314761
the regulation term lambda/alpha is 1.7267351902821328
750
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3112287107888283
the lambda is 0.5026589524428814
the regulation term lambda/alpha is 1.615078991809147
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27540995137499463
the lambda is 0.5170548772496857
the regulation term lambda/alpha is 1.877400851596936
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34803428048518487
the lambda is 0.5430693798557543
the regulation term lambda/alpha is 1.5603904853817172
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3142153810402096
the lambda is 0.5135399608907122
the regulation term lambda/alpha is 1.6343565333773251
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105128130738693
the lambda is 0.5358259096824168
the regulation term lambda/alpha is 1.7256161005985502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30822731474171516
the lambda is 0.4868419461577233
the regulation term lambda/alpha is 1.5794899506738447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29447085000117007
the lambda is 0.5294324569855519
the regulation term lambda/alpha is 1.7979112600905935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31884613527417094
the lambda is 0.49391598944202053
the regulation term lambda/alpha is 1.549073157237141
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3053718763041848
the lambda is 0.4563622019541451
the regulation term lambda/alpha is 1.494447384865124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31569833885451615
the lambda is 0.5008156047507815
the regulation term lambda/alpha is 1.5863738991087097
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3077613913393079
the lambda is 0.47561763515615163
the regulation term lambda/alpha is 1.5454103358656242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32948609816219354
the lambda is 0.5484473976947704
the regulation term lambda/alpha is 1.6645539849902573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.369363678569278
the lambda is 0.5400771141958371
the regulation term lambda/alpha is 1.4621825196451743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3009330981224179
the lambda is 0.5223772814636058
the regulation term lambda/alpha is 1.735858517134947
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.256719421840623
the lambda is 0.4770263492521236
the regulation term lambda/alpha is 1.858162291859133
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32429016360027796
the lambda is 0.48275366249005164
the regulation term lambda/alpha is 1.4886472569211096
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3010972799579845
the lambda is 0.5296216278043422
the regulation term lambda/alpha is 1.758971810965035
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3113425248113449
the lambda is 0.49092219238049306
the regulation term lambda/alpha is 1.5767913254958115
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36483949410217
the lambda is 0.580828753699477
the regulation term lambda/alpha is 1.5920117286886193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32014687980270023
the lambda is 0.531941829054195
the regulation term lambda/alpha is 1.6615555628154786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3398636835734664
the lambda is 0.5873657871785793
the regulation term lambda/alpha is 1.728239337027052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3408685312335623
the lambda is 0.5182672733688449
the regulation term lambda/alpha is 1.520431561967008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3426421019411469
the lambda is 0.5089914870136291
the regulation term lambda/alpha is 1.4854902072164347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35256580232297596
the lambda is 0.5044358351988667
the regulation term lambda/alpha is 1.4307565619673082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3672162215829443
the lambda is 0.5455369284553641
the regulation term lambda/alpha is 1.485601387933626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3475196062759368
the lambda is 0.5402922865969094
the regulation term lambda/alpha is 1.5547102288321184
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32078483894609167
the lambda is 0.47446016871164554
the regulation term lambda/alpha is 1.4790604514553733
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3169831779836508
the lambda is 0.46803828265265796
the regulation term lambda/alpha is 1.4765398139733403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28331525778607985
the lambda is 0.4753667203572923
the regulation term lambda/alpha is 1.6778719369792041
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33246122186989546
the lambda is 0.4719900566716684
the regulation term lambda/alpha is 1.4196845394990931
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31867481477951565
the lambda is 0.5172834497070278
the regulation term lambda/alpha is 1.6232329186883665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3148474562547192
the lambda is 0.5645054536229952
the regulation term lambda/alpha is 1.7929490691717598
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32089576034424117
the lambda is 0.4784364394974023
the regulation term lambda/alpha is 1.4909403570310784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3083050419136783
the lambda is 0.5118222892843164
the regulation term lambda/alpha is 1.6601165070392214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30178491144592345
the lambda is 0.5230717684892827
the regulation term lambda/alpha is 1.7332601752126082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3207440822833256
the lambda is 0.5031469248383715
the regulation term lambda/alpha is 1.5686865405483068
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28230025231575445
the lambda is 0.48901794611255706
the regulation term lambda/alpha is 1.732261810257214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2916560178704101
the lambda is 0.5366862426403507
the regulation term lambda/alpha is 1.840134301219231
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26201078577023396
the lambda is 0.44206602647457766
the regulation term lambda/alpha is 1.6872054529168894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30311475344450167
the lambda is 0.48909329432579
the regulation term lambda/alpha is 1.6135581946041428
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212171557507496
the lambda is 0.4853683704925611
the regulation term lambda/alpha is 1.5110287909690154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32050244072976486
the lambda is 0.48836091233998696
the regulation term lambda/alpha is 1.523735392554323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3126651713675003
the lambda is 0.5365685578404625
the regulation term lambda/alpha is 1.7161123367008815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33060758471803753
the lambda is 0.509301937716375
the regulation term lambda/alpha is 1.5405028839575443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.345569118119231
the lambda is 0.5245389395106357
the regulation term lambda/alpha is 1.5178987704846214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36564336069628206
the lambda is 0.556086481055488
the regulation term lambda/alpha is 1.5208439174078032
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012893811568908
the lambda is 0.48941464219242453
the regulation term lambda/alpha is 1.624400569024937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29014800268336877
the lambda is 0.562215855433325
the regulation term lambda/alpha is 1.937686457372781
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3906442909900664
the lambda is 0.5448245952150604
the regulation term lambda/alpha is 1.3946820874669192
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2945378788930427
the lambda is 0.5131133177757075
the regulation term lambda/alpha is 1.742096193888995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32924668290287307
the lambda is 0.5077766375993809
the regulation term lambda/alpha is 1.5422376715308432
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3749530619786146
the lambda is 0.5346658404164543
the regulation term lambda/alpha is 1.4259540583427717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33290496763393507
the lambda is 0.5210468985640588
the regulation term lambda/alpha is 1.5651520680730908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3221275010799823
the lambda is 0.5749463891325844
the regulation term lambda/alpha is 1.7848410558086092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3403491312513991
the lambda is 0.5254025939544297
the regulation term lambda/alpha is 1.5437165713413874
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34684304977184166
the lambda is 0.5508927794674349
the regulation term lambda/alpha is 1.5883056611046986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3328214843023887
the lambda is 0.5088057692840593
the regulation term lambda/alpha is 1.528764798193671
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3453280934885646
the lambda is 0.5520499687102924
the regulation term lambda/alpha is 1.598624551896104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3115285443827725
the lambda is 0.5304675128654993
the regulation term lambda/alpha is 1.702789431114596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2896479978440641
the lambda is 0.4665893350306015
the regulation term lambda/alpha is 1.610884033390751
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3118660297075151
the lambda is 0.4824639974925386
the regulation term lambda/alpha is 1.5470232456706476
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31367208028003607
the lambda is 0.44996169334710573
the regulation term lambda/alpha is 1.4344971122243166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33350303853380353
the lambda is 0.49683234290042555
the regulation term lambda/alpha is 1.4897385795484053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31898901037631394
the lambda is 0.5345718013404654
the regulation term lambda/alpha is 1.675831404692678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2977465444612485
the lambda is 0.5710445663097962
the regulation term lambda/alpha is 1.9178881398709808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30765176586482595
the lambda is 0.4821680989255182
the regulation term lambda/alpha is 1.5672528242121975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3256377766278324
the lambda is 0.571871065400912
the regulation term lambda/alpha is 1.7561570138543747
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3291860133234234
the lambda is 0.5057984185335035
the regulation term lambda/alpha is 1.5365124824928675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33700585507402075
the lambda is 0.5087344451191973
the regulation term lambda/alpha is 1.5095715325404588
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3366190602063506
the lambda is 0.5443082314221563
the regulation term lambda/alpha is 1.6169857734392414
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27771753397731386
the lambda is 0.4740609277258274
the regulation term lambda/alpha is 1.7069895477487296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31792555920744575
the lambda is 0.4776906521738945
the regulation term lambda/alpha is 1.5025235887442518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.330010379145251
the lambda is 0.5119790093774951
the regulation term lambda/alpha is 1.5514027489182463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35549180234835065
the lambda is 0.5741117411664921
the regulation term lambda/alpha is 1.614978847258799
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3240023463157943
the lambda is 0.5329594713018629
the regulation term lambda/alpha is 1.6449247277438082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28033624647209404
the lambda is 0.46994469725539434
the regulation term lambda/alpha is 1.6763608101679237
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3474237901931721
the lambda is 0.5010547052357462
the regulation term lambda/alpha is 1.4422003310629747
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33912778284068285
the lambda is 0.5169682577834551
the regulation term lambda/alpha is 1.5244055012334954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2723884597355815
the lambda is 0.5040777525485838
the regulation term lambda/alpha is 1.8505840997739493
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2635911227575544
the lambda is 0.4666487933384726
the regulation term lambda/alpha is 1.770350945269452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33313443443908874
the lambda is 0.5761819813238477
the regulation term lambda/alpha is 1.729577977413195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32644946501082994
the lambda is 0.462088422974416
the regulation term lambda/alpha is 1.4154975654779713
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.42426572644075644
the lambda is 0.5566059907621975
the regulation term lambda/alpha is 1.3119277756222922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3054123335317552
the lambda is 0.5300340503825381
the regulation term lambda/alpha is 1.7354703533196638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33780224162120176
the lambda is 0.4716859772038378
the regulation term lambda/alpha is 1.3963376173588808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3002786264074621
the lambda is 0.4740484488382593
the regulation term lambda/alpha is 1.5786952754839128
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3033940760427988
the lambda is 0.5212623340830363
the regulation term lambda/alpha is 1.7181032038657986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35703903201033177
the lambda is 0.5300789519731954
the regulation term lambda/alpha is 1.4846526694533957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.326293672746104
the lambda is 0.5163728848576319
the regulation term lambda/alpha is 1.5825402941828803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3072300762228178
the lambda is 0.5079728637524311
the regulation term lambda/alpha is 1.6533956245352268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2865337321398472
the lambda is 0.5929773885863469
the regulation term lambda/alpha is 2.0694854464706975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3279912559059176
the lambda is 0.5196857385225623
the regulation term lambda/alpha is 1.584449978970266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.355489138814046
the lambda is 0.5143723940270267
the regulation term lambda/alpha is 1.4469426428695802
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32412271233733003
the lambda is 0.48384626105335016
the regulation term lambda/alpha is 1.4927872766589345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3492422412926725
the lambda is 0.542467183891625
the regulation term lambda/alpha is 1.5532691059470833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3002784927278688
the lambda is 0.5362393471745497
the regulation term lambda/alpha is 1.785806709974808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3515578661215276
the lambda is 0.5479201583123023
the regulation term lambda/alpha is 1.5585489932485128
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29049021124003643
the lambda is 0.4950620454970498
the regulation term lambda/alpha is 1.704229699802079
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3103111958985384
the lambda is 0.4815874353413871
the regulation term lambda/alpha is 1.5519499190059853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3719390357944484
the lambda is 0.5537122127377037
the regulation term lambda/alpha is 1.488717664589828
760
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3163220456419851
the lambda is 0.536524013797718
the regulation term lambda/alpha is 1.69613222091058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.290131251648974
the lambda is 0.5226589332366983
the regulation term lambda/alpha is 1.8014568588049125
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3077160130615573
the lambda is 0.4818975907618094
the regulation term lambda/alpha is 1.5660465179152303
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30864714532988996
the lambda is 0.5389299731145423
the regulation term lambda/alpha is 1.7461038641343019
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29962170014490164
the lambda is 0.5453853961105597
the regulation term lambda/alpha is 1.8202466505156434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3099304659746461
the lambda is 0.5006310217416869
the regulation term lambda/alpha is 1.6153010971907524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29958297919510574
the lambda is 0.48228958966492363
the regulation term lambda/alpha is 1.6098697962103807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29244677829824595
the lambda is 0.5209066173580824
the regulation term lambda/alpha is 1.7812014219792371
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32983119347947637
the lambda is 0.5301423393876158
the regulation term lambda/alpha is 1.6073141348306212
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34627218860799625
the lambda is 0.49931341456556094
the regulation term lambda/alpha is 1.441967997986745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3289373649711277
the lambda is 0.5129283813384975
the regulation term lambda/alpha is 1.5593496998540117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32365639361964416
the lambda is 0.49595229199427426
the regulation term lambda/alpha is 1.5323420200285292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29556888655026387
the lambda is 0.501248643920168
the regulation term lambda/alpha is 1.6958775660405196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31430351628680137
the lambda is 0.4686455753929603
the regulation term lambda/alpha is 1.4910605548724505
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2827996923573906
the lambda is 0.46293259785432567
the regulation term lambda/alpha is 1.636962876428064
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2838979200445493
the lambda is 0.4896446991048785
the regulation term lambda/alpha is 1.7247209807949402
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30323203660792714
the lambda is 0.5199907380893787
the regulation term lambda/alpha is 1.7148278391234635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3142402883662465
the lambda is 0.514855185263245
the regulation term lambda/alpha is 1.6384124007141383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33968578635986735
the lambda is 0.5269682915245048
the regulation term lambda/alpha is 1.5513404230762484
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3158142665528929
the lambda is 0.5465311580140025
the regulation term lambda/alpha is 1.7305461339013604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3100599991306275
the lambda is 0.44921597232638727
the regulation term lambda/alpha is 1.4488033722051767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2837941629085068
the lambda is 0.4843951312973199
the regulation term lambda/alpha is 1.7068537503834618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29769928847316823
the lambda is 0.523624713833063
the regulation term lambda/alpha is 1.7589048214344574
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3372999831676809
the lambda is 0.5482087341780896
the regulation term lambda/alpha is 1.6252853884832845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2908244309327905
the lambda is 0.5098512079036506
the regulation term lambda/alpha is 1.7531237188992461
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36863003988006254
the lambda is 0.5061712242553974
the regulation term lambda/alpha is 1.3731144223082992
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3446353312184874
the lambda is 0.5233536448186237
the regulation term lambda/alpha is 1.5185722339269818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2803608928650659
the lambda is 0.4955824910679744
the regulation term lambda/alpha is 1.767659126790169
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3079639253045689
the lambda is 0.4953155727605365
the regulation term lambda/alpha is 1.608355823724098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2942099599941758
the lambda is 0.5517872330562476
the regulation term lambda/alpha is 1.875487944280237
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3059393877022827
the lambda is 0.5306691601888938
the regulation term lambda/alpha is 1.7345565217163252
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32603278264436525
the lambda is 0.5262030481608324
the regulation term lambda/alpha is 1.6139574796526268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27649572335169964
the lambda is 0.5222800598883323
the regulation term lambda/alpha is 1.8889263586330323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32024642581932866
the lambda is 0.5384585396792166
the regulation term lambda/alpha is 1.6813881319724557
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3332829957601276
the lambda is 0.5582651224011983
the regulation term lambda/alpha is 1.67504832080601
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.307297672053903
the lambda is 0.5120123873552759
the regulation term lambda/alpha is 1.6661772408918993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32768756342322075
the lambda is 0.5668929588479403
the regulation term lambda/alpha is 1.7299800850720015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3690463602999241
the lambda is 0.523882055844846
the regulation term lambda/alpha is 1.4195562189506135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3649911433677172
the lambda is 0.5193286783016918
the regulation term lambda/alpha is 1.422852821879254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30836486834540994
the lambda is 0.5123688561996219
the regulation term lambda/alpha is 1.661566892975954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.360868745287133
the lambda is 0.4988684286115538
the regulation term lambda/alpha is 1.3824096298908302
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3659139688314015
the lambda is 0.5437034749282537
the regulation term lambda/alpha is 1.4858778872658192
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3507048859776525
the lambda is 0.5627304198442672
the regulation term lambda/alpha is 1.604569660543952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3198326709932138
the lambda is 0.5198461652333067
the regulation term lambda/alpha is 1.62536917701049
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3098241268093931
the lambda is 0.44722038152797805
the regulation term lambda/alpha is 1.4434653173511969
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35531375845826896
the lambda is 0.4959564833708358
the regulation term lambda/alpha is 1.3958268475806437
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3132927754867963
the lambda is 0.5470308164901667
the regulation term lambda/alpha is 1.7460690424162726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27794277754417485
the lambda is 0.4737264124789348
the regulation term lambda/alpha is 1.7044026711708424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3491301445750545
the lambda is 0.5725300886921665
the regulation term lambda/alpha is 1.6398758388194303
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3251634160503598
the lambda is 0.5028452484769761
the regulation term lambda/alpha is 1.546438571057138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28326165793817754
the lambda is 0.4819252362457199
the regulation term lambda/alpha is 1.7013429906242417
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2730623867415416
the lambda is 0.4508277998537957
the regulation term lambda/alpha is 1.6510065894960195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30214650253810404
the lambda is 0.49901860810873655
the regulation term lambda/alpha is 1.6515783036270781
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3125202697837854
the lambda is 0.4736484833818224
the regulation term lambda/alpha is 1.5155768414941926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34204205916485675
the lambda is 0.5178366837300155
the regulation term lambda/alpha is 1.5139561637372483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3589961050970519
the lambda is 0.5689500154914824
the regulation term lambda/alpha is 1.5848361790378507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35400520356155746
the lambda is 0.5274155144133577
the regulation term lambda/alpha is 1.4898524346737354
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29633703695290264
the lambda is 0.4917607793761121
the regulation term lambda/alpha is 1.6594644545030952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35501486940097216
the lambda is 0.4984220421774102
the regulation term lambda/alpha is 1.403946947400861
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3202674670495766
the lambda is 0.5266753188621794
the regulation term lambda/alpha is 1.644485853384076
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33022757048532325
the lambda is 0.507520822128785
the regulation term lambda/alpha is 1.536882039809397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31657056611231205
the lambda is 0.4523420030478636
the regulation term lambda/alpha is 1.4288820612822954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29793151798785433
the lambda is 0.5007381660443974
the regulation term lambda/alpha is 1.6807156538060897
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34273119816628667
the lambda is 0.5535935146648849
the regulation term lambda/alpha is 1.6152410916390865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31582477650720214
the lambda is 0.5097727733516972
the regulation term lambda/alpha is 1.6141000050389405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3227136569668255
the lambda is 0.540922996375386
the regulation term lambda/alpha is 1.6761701424708904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3411665812844567
the lambda is 0.577328010884662
the regulation term lambda/alpha is 1.6922173581922417
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3482278669681383
the lambda is 0.5750887322135052
the regulation term lambda/alpha is 1.6514724603189899
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2779108362515172
the lambda is 0.4674461757218701
the regulation term lambda/alpha is 1.682000536671474
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2896545130393023
the lambda is 0.45771502691254234
the regulation term lambda/alpha is 1.5802102377408374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33281947560186587
the lambda is 0.5302970252566719
the regulation term lambda/alpha is 1.5933473373145923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3101301898575001
the lambda is 0.4920840104316315
the regulation term lambda/alpha is 1.5867014129057744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2959739088913385
the lambda is 0.4836439796564752
the regulation term lambda/alpha is 1.6340764004101334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2868513160409572
the lambda is 0.5549412710341758
the regulation term lambda/alpha is 1.9345955204017267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3112768364217594
the lambda is 0.514787643715386
the regulation term lambda/alpha is 1.653793612249011
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090584131525398
the lambda is 0.5012027537637934
the regulation term lambda/alpha is 1.6217088176027692
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3122114036688379
the lambda is 0.48644317134154846
the regulation term lambda/alpha is 1.558057026826342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33761447188586785
the lambda is 0.5240017183881812
the regulation term lambda/alpha is 1.5520712588568255
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026616870471572
the lambda is 0.5535379127026763
the regulation term lambda/alpha is 1.8288998455771857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38018843544887515
the lambda is 0.610526704626019
the regulation term lambda/alpha is 1.6058529079275952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3023742559492235
the lambda is 0.4948720202067482
the regulation term lambda/alpha is 1.6366208778364058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3425699200349542
the lambda is 0.5120670980031387
the regulation term lambda/alpha is 1.4947812637808067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3076310499050762
the lambda is 0.4839303503609658
the regulation term lambda/alpha is 1.5730868210809317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27801317178636414
the lambda is 0.5732671191745299
the regulation term lambda/alpha is 2.0620142401563983
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3307887652330039
the lambda is 0.48703515653361357
the regulation term lambda/alpha is 1.472344915313407
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33420465786296205
the lambda is 0.5221022550009023
the regulation term lambda/alpha is 1.5622231549357586
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3561765751112994
the lambda is 0.5292617866233542
the regulation term lambda/alpha is 1.4859533826949975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3602723655634911
the lambda is 0.5071012312304963
the regulation term lambda/alpha is 1.4075496199586517
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36880883920922075
the lambda is 0.5123770223527566
the regulation term lambda/alpha is 1.3892753315006405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3430033701147394
the lambda is 0.49877952295342387
the regulation term lambda/alpha is 1.4541534177538114
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3027734713336928
the lambda is 0.476519100618832
the regulation term lambda/alpha is 1.5738469375133946
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3329670951443464
the lambda is 0.5515841784204443
the regulation term lambda/alpha is 1.656572635747457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2829065959039929
the lambda is 0.5320222184421091
the regulation term lambda/alpha is 1.8805578453980476
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3269758711163949
the lambda is 0.47204344140029597
the regulation term lambda/alpha is 1.4436644508005936
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3064828500996065
the lambda is 0.43376858631502824
the regulation term lambda/alpha is 1.4153111215653797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4396432323448148
the lambda is 0.6018513795108672
the regulation term lambda/alpha is 1.3689540409866507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32241464249003177
the lambda is 0.5336835924639469
the regulation term lambda/alpha is 1.6552709527776706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3056113316621415
the lambda is 0.5066718684926547
the regulation term lambda/alpha is 1.6578962099899783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3431849105939324
the lambda is 0.5582706930955791
the regulation term lambda/alpha is 1.6267343809767416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32563490026511266
the lambda is 0.5324556298609114
the regulation term lambda/alpha is 1.6351307228660612
770
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30159959601818764
the lambda is 0.48861537006237493
the regulation term lambda/alpha is 1.6200796569797444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2879548619507709
the lambda is 0.5015452581060452
the regulation term lambda/alpha is 1.741749573902975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29691643950411517
the lambda is 0.5163768566846483
the regulation term lambda/alpha is 1.7391319172055861
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33191781523446123
the lambda is 0.5039809711750718
the regulation term lambda/alpha is 1.5183908426821502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33199684077616476
the lambda is 0.5224839751139092
the regulation term lambda/alpha is 1.5737618884939106
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2840465564834339
the lambda is 0.489810903782962
the regulation term lambda/alpha is 1.7244035972375136
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28403958656186534
the lambda is 0.5210205105269825
the regulation term lambda/alpha is 1.8343235773352369
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35612099486291626
the lambda is 0.4750114336682773
the regulation term lambda/alpha is 1.3338484406153202
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.289149532019443
the lambda is 0.5094118255759688
the regulation term lambda/alpha is 1.7617591217187751
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32836146090046664
the lambda is 0.5178071977527556
the regulation term lambda/alpha is 1.5769426665747295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3386136041926414
the lambda is 0.5349717466123685
the regulation term lambda/alpha is 1.5798885218681777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34156627764988323
the lambda is 0.5191549473249462
the regulation term lambda/alpha is 1.519924481119583
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.319793993233716
the lambda is 0.4999762336833173
the regulation term lambda/alpha is 1.5634322228120094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073264702645756
the lambda is 0.5258645203398066
the regulation term lambda/alpha is 1.7110941335026977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2664620374005324
the lambda is 0.4773162249547122
the regulation term lambda/alpha is 1.791310423095033
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37234856911189573
the lambda is 0.5448256864687195
the regulation term lambda/alpha is 1.463214126935431
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178509716720646
the lambda is 0.5132339175578899
the regulation term lambda/alpha is 1.6146998540165143
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047456104616953
the lambda is 0.5419563525364314
the regulation term lambda/alpha is 1.7783893645436184
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2885062911115292
the lambda is 0.4792386860263237
the regulation term lambda/alpha is 1.6611030705083036
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3035903276031994
the lambda is 0.5167191602763387
the regulation term lambda/alpha is 1.7020277436233224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3868554488381761
the lambda is 0.5128503194574218
the regulation term lambda/alpha is 1.3256897918786976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32681793699646616
the lambda is 0.545140902105974
the regulation term lambda/alpha is 1.6680262629277551
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28956032831451045
the lambda is 0.47344682683306416
the regulation term lambda/alpha is 1.635054185733698
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31189625443236646
the lambda is 0.4810815175075655
the regulation term lambda/alpha is 1.5424408298301198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33795063361808625
the lambda is 0.5312848875981656
the regulation term lambda/alpha is 1.5720783888174743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3289699782165931
the lambda is 0.4605278003157328
the regulation term lambda/alpha is 1.399908291973447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33612224392563406
the lambda is 0.5454922157618101
the regulation term lambda/alpha is 1.622898292570302
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35826624917159533
the lambda is 0.5267944739990406
the regulation term lambda/alpha is 1.4703993893288199
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3019900657826109
the lambda is 0.47399222072924313
the regulation term lambda/alpha is 1.569562295040688
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35607250834061277
the lambda is 0.476218628092853
the regulation term lambda/alpha is 1.3374203762940062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087807940513032
the lambda is 0.4395303744997368
the regulation term lambda/alpha is 1.423438189703955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3584494117045671
the lambda is 0.49843518394952296
the regulation term lambda/alpha is 1.390531460434734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3095792652312859
the lambda is 0.5285027893925975
the regulation term lambda/alpha is 1.7071646868783488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3151447200724488
the lambda is 0.5310522571299874
the regulation term lambda/alpha is 1.6851059951374197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3439515927362616
the lambda is 0.5355139854193578
the regulation term lambda/alpha is 1.5569457933284938
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3195002243895644
the lambda is 0.5275995208431696
the regulation term lambda/alpha is 1.65132754398279
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3316901965072972
the lambda is 0.6282972639135537
the regulation term lambda/alpha is 1.8942292251309607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3301885652336632
the lambda is 0.5179337687991244
the regulation term lambda/alpha is 1.5685999557028887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3072544212417107
the lambda is 0.46447923386197437
the regulation term lambda/alpha is 1.5117088697531813
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3244008626093945
the lambda is 0.5020070732802713
the regulation term lambda/alpha is 1.547489945748786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32054062939507005
the lambda is 0.5547916345780093
the regulation term lambda/alpha is 1.7307997292730781
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233443458392962
the lambda is 0.5805570069826141
the regulation term lambda/alpha is 1.7954759823484092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33761290336400185
the lambda is 0.45233465295482284
the regulation term lambda/alpha is 1.3398026214274523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3077159132239304
the lambda is 0.5522659287816156
the regulation term lambda/alpha is 1.794726580746319
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27141543018769204
the lambda is 0.5315707136709407
the regulation term lambda/alpha is 1.9585132403980987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34181822238729925
the lambda is 0.5375135651501164
the regulation term lambda/alpha is 1.5725129028992588
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30391030354797977
the lambda is 0.5060847761984257
the regulation term lambda/alpha is 1.66524389035243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052002611997652
the lambda is 0.5080336817352116
the regulation term lambda/alpha is 1.6645912416263766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33172845976564813
the lambda is 0.533662853385958
the regulation term lambda/alpha is 1.6087340042002058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29577899990481066
the lambda is 0.4458915462998341
the regulation term lambda/alpha is 1.5075159035744037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3136664489689522
the lambda is 0.44826561288123773
the regulation term lambda/alpha is 1.4291155919121228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36594395645767464
the lambda is 0.5952841646071109
the regulation term lambda/alpha is 1.6267085549641038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3540460583879746
the lambda is 0.4991565513540157
the regulation term lambda/alpha is 1.4098633201192838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33032056413867295
the lambda is 0.541368714030055
the regulation term lambda/alpha is 1.6389191979061324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29703363523322196
the lambda is 0.4673194005026628
the regulation term lambda/alpha is 1.5732878202017004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3672798828756705
the lambda is 0.5243247659725911
the regulation term lambda/alpha is 1.427589123224815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2798698222644863
the lambda is 0.4968539268998469
the regulation term lambda/alpha is 1.7753036854052218
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3082548417531238
the lambda is 0.46452021705625557
the regulation term lambda/alpha is 1.5069356718435007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28362905293728086
the lambda is 0.4806637896466343
the regulation term lambda/alpha is 1.6946916568272854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27888278838543235
the lambda is 0.4847760860771524
the regulation term lambda/alpha is 1.7382789697554353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3569554899074839
the lambda is 0.533834114005525
the regulation term lambda/alpha is 1.4955201113278431
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2743264083449028
the lambda is 0.46439616306000997
the regulation term lambda/alpha is 1.6928598521077776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36384133793001217
the lambda is 0.5317528970103014
the regulation term lambda/alpha is 1.4614966513579288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2740887404559217
the lambda is 0.5245927237477556
the regulation term lambda/alpha is 1.9139521122799255
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3112118639548609
the lambda is 0.46014591407710137
the regulation term lambda/alpha is 1.4785616082548907
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3421616090366878
the lambda is 0.5534057485612961
the regulation term lambda/alpha is 1.6173811846376895
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30353570827614385
the lambda is 0.5801963814266693
the regulation term lambda/alpha is 1.9114600543104185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29426946358591094
the lambda is 0.4593182741311549
the regulation term lambda/alpha is 1.5608764447863226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3254237936163294
the lambda is 0.5661962374736069
the regulation term lambda/alpha is 1.739873508269482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3419079936545455
the lambda is 0.55055695939193
the regulation term lambda/alpha is 1.6102488669750075
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3153583510249094
the lambda is 0.5411973382400495
the regulation term lambda/alpha is 1.716134475212618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2862876960896812
the lambda is 0.5061187928512956
the regulation term lambda/alpha is 1.7678677769398483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34753985374972013
the lambda is 0.5679307285927521
the regulation term lambda/alpha is 1.6341456165822807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.290047298094234
the lambda is 0.45973681083605616
the regulation term lambda/alpha is 1.5850408325013647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30942083453743613
the lambda is 0.5114158521492908
the regulation term lambda/alpha is 1.652816472148115
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3324033040830988
the lambda is 0.508498300411712
the regulation term lambda/alpha is 1.5297630744506392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37502018122668945
the lambda is 0.5688634049911264
the regulation term lambda/alpha is 1.5168874462445636
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2942118096812065
the lambda is 0.5173729628336887
the regulation term lambda/alpha is 1.7585050831042053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3528185556607903
the lambda is 0.5435844326611177
the regulation term lambda/alpha is 1.5406911681361086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29722960346573507
the lambda is 0.4867970772761453
the regulation term lambda/alpha is 1.6377812694295228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2982720253870255
the lambda is 0.4947812916951742
the regulation term lambda/alpha is 1.658825667788209
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30008150424515856
the lambda is 0.5213460652329115
the regulation term lambda/alpha is 1.737348213260707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3266148265523888
the lambda is 0.5378599886388977
the regulation term lambda/alpha is 1.6467715024340002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.41220861258470737
the lambda is 0.5316920302251912
the regulation term lambda/alpha is 1.289861526403528
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3592949121116305
the lambda is 0.5049154848869514
the regulation term lambda/alpha is 1.4052953934679642
using Bay_non_info_prior option for model regressor
Convergence after  4  iterations
the alpha is 0.3583083370395294
the lambda is 0.4609456756320324
the regulation term lambda/alpha is 1.286449764023157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3388310410841696
the lambda is 0.5306290658984346
the regulation term lambda/alpha is 1.5660580099171615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2960632574530273
the lambda is 0.4545216879997544
the regulation term lambda/alpha is 1.5352181554371627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38764299946237785
the lambda is 0.5974118675321989
the regulation term lambda/alpha is 1.541139317260339
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28923424788340574
the lambda is 0.5050717868635767
the regulation term lambda/alpha is 1.7462378351099626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.331439571880225
the lambda is 0.5555058373590963
the regulation term lambda/alpha is 1.6760395694689225
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3074253676438296
the lambda is 0.5000556721548823
the regulation term lambda/alpha is 1.6265920928627668
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.316686692322092
the lambda is 0.4870682766534816
the regulation term lambda/alpha is 1.5380130850528442
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3001221242177028
the lambda is 0.48896317636704567
the regulation term lambda/alpha is 1.6292140329260139
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35285707316265663
the lambda is 0.5574751850602397
the regulation term lambda/alpha is 1.5798895004812905
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29627688914131506
the lambda is 0.5000828417754454
the regulation term lambda/alpha is 1.6878901463587364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29530109068411936
the lambda is 0.5304666290564247
the regulation term lambda/alpha is 1.7963585160742248
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34620893951241755
the lambda is 0.5074455718171358
the regulation term lambda/alpha is 1.4657205921135237
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32386789280954387
the lambda is 0.46389295184254176
the regulation term lambda/alpha is 1.4323523947319534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161314841261383
the lambda is 0.5017910982250663
the regulation term lambda/alpha is 1.5872860610898494
780
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30700499247721613
the lambda is 0.4968146166541441
the regulation term lambda/alpha is 1.6182623371866318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3289220556194808
the lambda is 0.5455931624089269
the regulation term lambda/alpha is 1.6587308545830863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31434955030151834
the lambda is 0.5059353947383495
the regulation term lambda/alpha is 1.6094675314568305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3389831553450427
the lambda is 0.49018455001437633
the regulation term lambda/alpha is 1.446043976773505
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33291340585093965
the lambda is 0.49185905088265236
the regulation term lambda/alpha is 1.4774384036156232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3428647145577461
the lambda is 0.5761155093613494
the regulation term lambda/alpha is 1.6802997943502833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3351491071651014
the lambda is 0.5609945295429302
the regulation term lambda/alpha is 1.6738655050827054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.318965237114247
the lambda is 0.5788547787111165
the regulation term lambda/alpha is 1.8147895486923618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31082262067325045
the lambda is 0.49633489972796274
the regulation term lambda/alpha is 1.596842915270734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32656993291768704
the lambda is 0.5078492766854488
the regulation term lambda/alpha is 1.5551011452528722
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33590787489520996
the lambda is 0.4947247018686347
the regulation term lambda/alpha is 1.4727987607404838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37727751929965403
the lambda is 0.49448472265535426
the regulation term lambda/alpha is 1.3106657496404073
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3492604920861664
the lambda is 0.5477890521075744
the regulation term lambda/alpha is 1.568425471875098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105193330452233
the lambda is 0.4675043311803729
the regulation term lambda/alpha is 1.5055562775934686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30745958045619187
the lambda is 0.5536759024922814
the regulation term lambda/alpha is 1.800808749139536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3433277659591505
the lambda is 0.5759203615417071
the regulation term lambda/alpha is 1.6774651474306648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105076617109497
the lambda is 0.5394845379701438
the regulation term lambda/alpha is 1.7374274599135264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3336805197944773
the lambda is 0.5395864349910098
the regulation term lambda/alpha is 1.6170750253067077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27622099528670224
the lambda is 0.4459224982632551
the regulation term lambda/alpha is 1.6143685884572676
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31995521684557005
the lambda is 0.5167794876705383
the regulation term lambda/alpha is 1.6151619366155472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3423327406222732
the lambda is 0.5236441807515859
the regulation term lambda/alpha is 1.5296351140698228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3264709748596708
the lambda is 0.5104041346966685
the regulation term lambda/alpha is 1.5633982007621317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2759533721616161
the lambda is 0.4862031015816456
the regulation term lambda/alpha is 1.7619030989659141
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3309721965721197
the lambda is 0.5022751811383039
the regulation term lambda/alpha is 1.5175751508446025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29143384357136065
the lambda is 0.5604047179252715
the regulation term lambda/alpha is 1.9229225784412045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30092408812863153
the lambda is 0.5205761515510529
the regulation term lambda/alpha is 1.7299251608217217
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2996188882906915
the lambda is 0.48736782591690936
the regulation term lambda/alpha is 1.6266258402376257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3335140177580736
the lambda is 0.5323817365369939
the regulation term lambda/alpha is 1.5962799408424753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27973647014170794
the lambda is 0.4683679171441911
the regulation term lambda/alpha is 1.6743183929750987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27986780595134353
the lambda is 0.5080585567344602
the regulation term lambda/alpha is 1.8153519123338853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2803972195102714
the lambda is 0.44929880429597596
the regulation term lambda/alpha is 1.6023654053371146
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246544837151437
the lambda is 0.4975835968819936
the regulation term lambda/alpha is 1.5326558598173567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2891915670322745
the lambda is 0.5066155563177459
the regulation term lambda/alpha is 1.7518337810355527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2946875031874833
the lambda is 0.5166928288749075
the regulation term lambda/alpha is 1.7533584671426736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30425324152878563
the lambda is 0.4816229454082797
the regulation term lambda/alpha is 1.5829673432179785
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3768267280914132
the lambda is 0.5742288467917753
the regulation term lambda/alpha is 1.5238538139271134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30212556571600013
the lambda is 0.4371255835293752
the regulation term lambda/alpha is 1.4468341416041433
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3121246669374495
the lambda is 0.5042993983007654
the regulation term lambda/alpha is 1.615698634936239
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35282420385328817
the lambda is 0.48092152209949807
the regulation term lambda/alpha is 1.3630627288242263
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.309395602741
the lambda is 0.5176882043387904
the regulation term lambda/alpha is 1.6732241820907696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3014712992807978
the lambda is 0.5653355243161219
the regulation term lambda/alpha is 1.8752548772132183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31136343274668243
the lambda is 0.5304675693711632
the regulation term lambda/alpha is 1.703692577807422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34080627419756615
the lambda is 0.5514890904701075
the regulation term lambda/alpha is 1.6181893709809112
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3228182950081942
the lambda is 0.5058192301743262
the regulation term lambda/alpha is 1.5668852664050121
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3117393840159557
the lambda is 0.4679923503327153
the regulation term lambda/alpha is 1.5012294702832998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33354095832321157
the lambda is 0.5224571038448323
the regulation term lambda/alpha is 1.5663956428959922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2969754146962623
the lambda is 0.524464962840208
the regulation term lambda/alpha is 1.766021484898389
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31321253307332964
the lambda is 0.4696907123506039
the regulation term lambda/alpha is 1.4995910532119079
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3152932760872626
the lambda is 0.514418223813005
the regulation term lambda/alpha is 1.631554691545757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27916825273744017
the lambda is 0.53086110351364
the regulation term lambda/alpha is 1.901581208852279
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3220226603877887
the lambda is 0.5319527752976511
the regulation term lambda/alpha is 1.6519110010986762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27880610842859194
the lambda is 0.47909431127873453
the regulation term lambda/alpha is 1.718378101466312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2708612433866258
the lambda is 0.5113429535683329
the regulation term lambda/alpha is 1.8878409741272761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3632306872387937
the lambda is 0.5127630665509394
the regulation term lambda/alpha is 1.411673310008195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3199367701798952
the lambda is 0.5208815330013064
the regulation term lambda/alpha is 1.628076487452265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3658279591076656
the lambda is 0.5528645708644393
the regulation term lambda/alpha is 1.511269319635921
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29757504879637175
the lambda is 0.48887305436813505
the regulation term lambda/alpha is 1.6428563360588306
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3139149538867385
the lambda is 0.4715291710941265
the regulation term lambda/alpha is 1.5020920961422426
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27545006138240374
the lambda is 0.46294103650353485
the regulation term lambda/alpha is 1.6806713862402805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3336261747911651
the lambda is 0.5183475877606576
the regulation term lambda/alpha is 1.553677819449028
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31790940395565115
the lambda is 0.5260697502795763
the regulation term lambda/alpha is 1.6547788260864527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2852470735081507
the lambda is 0.5078319607160062
the regulation term lambda/alpha is 1.7803231229346699
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3265389110552579
the lambda is 0.48013687722930903
the regulation term lambda/alpha is 1.47038181660396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29711425207403985
the lambda is 0.5255676251954922
the regulation term lambda/alpha is 1.7689074876977713
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.329310853339731
the lambda is 0.5003265068075694
the regulation term lambda/alpha is 1.519313747887354
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28396161876033005
the lambda is 0.4815097931471928
the regulation term lambda/alpha is 1.6956861819892561
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31561680242754425
the lambda is 0.5459999698157871
the regulation term lambda/alpha is 1.7299458254955602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.347034576127623
the lambda is 0.5014174817528283
the regulation term lambda/alpha is 1.4448631814958706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.303510008207348
the lambda is 0.48538064926811353
the regulation term lambda/alpha is 1.5992245268449845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35757651455595324
the lambda is 0.5040722700728085
the regulation term lambda/alpha is 1.4096906523594737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2902790229515055
the lambda is 0.46910971065562945
the regulation term lambda/alpha is 1.6160647982269105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3390704228905614
the lambda is 0.5341415963476083
the regulation term lambda/alpha is 1.575311676536317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33587797473137665
the lambda is 0.5039878115051116
the regulation term lambda/alpha is 1.5005086651132253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2861834110770764
the lambda is 0.5653355222247451
the regulation term lambda/alpha is 1.9754307913832436
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3421078564693233
the lambda is 0.4936867679632748
the regulation term lambda/alpha is 1.4430734595174184
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3288689797167576
the lambda is 0.513257430227742
the regulation term lambda/alpha is 1.5606744992178683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3420541912693601
the lambda is 0.5243583521489612
the regulation term lambda/alpha is 1.5329686509703973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3668221309688724
the lambda is 0.5644948760462795
the regulation term lambda/alpha is 1.538879005351455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3380710618535837
the lambda is 0.5379262214367113
the regulation term lambda/alpha is 1.5911631669606892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3487506277169837
the lambda is 0.5016440965244636
the regulation term lambda/alpha is 1.4384034225496944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30873188841301225
the lambda is 0.5340185101006251
the regulation term lambda/alpha is 1.7297160745061462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3506381962651302
the lambda is 0.5658677703570691
the regulation term lambda/alpha is 1.613822385537245
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2806747504641557
the lambda is 0.5029623167977346
the regulation term lambda/alpha is 1.7919756442857042
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.277833194506965
the lambda is 0.5118701018484743
the regulation term lambda/alpha is 1.8423648144593545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3166540998856276
the lambda is 0.5011665148733628
the regulation term lambda/alpha is 1.5826939081299731
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29601342203118697
the lambda is 0.5192199269140167
the regulation term lambda/alpha is 1.7540418382086522
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31423688636019126
the lambda is 0.4780064157834
the regulation term lambda/alpha is 1.521165835494848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3599781256257733
the lambda is 0.5191548051366579
the regulation term lambda/alpha is 1.442184311155511
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3234750987848773
the lambda is 0.5266257309831778
the regulation term lambda/alpha is 1.6280255666090795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2909868240586947
the lambda is 0.4789673209056471
the regulation term lambda/alpha is 1.6460103389734067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30960403494198097
the lambda is 0.5020938440461615
the regulation term lambda/alpha is 1.6217290066657326
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2896759825466396
the lambda is 0.47937835796964506
the regulation term lambda/alpha is 1.654877818158301
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30749566832684194
the lambda is 0.5963529372948357
the regulation term lambda/alpha is 1.939386465310994
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3546637457848088
the lambda is 0.5018732823608449
the regulation term lambda/alpha is 1.4150679011475706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3587998812262596
the lambda is 0.4400709961212475
the regulation term lambda/alpha is 1.2265081989916775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30906757525515577
the lambda is 0.5332719146707486
the regulation term lambda/alpha is 1.7254217438710526
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3123347050964765
the lambda is 0.5507799576028664
the regulation term lambda/alpha is 1.763428618772086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31803500347303254
the lambda is 0.4851872926047917
the regulation term lambda/alpha is 1.525578276939358
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31537782712986
the lambda is 0.5322666571347342
the regulation term lambda/alpha is 1.6877110923703842
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36255700025983273
the lambda is 0.47965251239787554
the regulation term lambda/alpha is 1.3229713177627913
790
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2818362209893459
the lambda is 0.4821602578505891
the regulation term lambda/alpha is 1.7107817304604573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36938611887690687
the lambda is 0.5318307508140779
the regulation term lambda/alpha is 1.4397691836148927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3180131273814545
the lambda is 0.4992149691089942
the regulation term lambda/alpha is 1.569793590659512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36217264562264023
the lambda is 0.5298533618635509
the regulation term lambda/alpha is 1.4629855906224978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190557727318957
the lambda is 0.5661762719590144
the regulation term lambda/alpha is 1.7745369943040503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2988187702203525
the lambda is 0.5308583045845121
the regulation term lambda/alpha is 1.77652262002501
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3336095598310871
the lambda is 0.4881412899410623
the regulation term lambda/alpha is 1.4632113365942438
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2902706385189564
the lambda is 0.48538113036718467
the regulation term lambda/alpha is 1.672167508376795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34321384148266326
the lambda is 0.5098212833303967
the regulation term lambda/alpha is 1.4854333412894982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2981337044825166
the lambda is 0.5048989795919516
the regulation term lambda/alpha is 1.6935320361323332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2672300689094326
the lambda is 0.5277430818831103
the regulation term lambda/alpha is 1.9748641462273788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128850190444003
the lambda is 0.5166176565996692
the regulation term lambda/alpha is 1.6511421933127388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3256812077279048
the lambda is 0.49881015218168495
the regulation term lambda/alpha is 1.5315902187344603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32201094695608073
the lambda is 0.5202053458112863
the regulation term lambda/alpha is 1.6154896307989102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29191268214430893
the lambda is 0.458715599147087
the regulation term lambda/alpha is 1.5714137384422302
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31491912217388246
the lambda is 0.5474093217772467
the regulation term lambda/alpha is 1.7382536760501792
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3730180744552579
the lambda is 0.5948567213479127
the regulation term lambda/alpha is 1.5947128626853266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3180503653531684
the lambda is 0.5241977148115572
the regulation term lambda/alpha is 1.648159448675619
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2978482948052678
the lambda is 0.4988360864386956
the regulation term lambda/alpha is 1.674799201938802
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32073835652700244
the lambda is 0.5344217980840934
the regulation term lambda/alpha is 1.6662235345684366
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3489008972011936
the lambda is 0.47157237411933955
the regulation term lambda/alpha is 1.3515940426126434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3242420511061726
the lambda is 0.569132129078591
the regulation term lambda/alpha is 1.7552693339342018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32962213575538063
the lambda is 0.5687180075184625
the regulation term lambda/alpha is 1.7253635172745796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30952408423219135
the lambda is 0.525179854066646
the regulation term lambda/alpha is 1.6967334072546005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30336979552655896
the lambda is 0.481940129449476
the regulation term lambda/alpha is 1.5886226531318732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3610401631336955
the lambda is 0.5472525784337076
the regulation term lambda/alpha is 1.5157664833844438
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3912786167307988
the lambda is 0.5584896444801153
the regulation term lambda/alpha is 1.4273451719554568
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33179400561724
the lambda is 0.5916073752688392
the regulation term lambda/alpha is 1.7830562495192328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3270721637003028
the lambda is 0.5181473179840314
the regulation term lambda/alpha is 1.5841987655629761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28042046800882986
the lambda is 0.48413827210469734
the regulation term lambda/alpha is 1.7264726627924065
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3542619267428771
the lambda is 0.5509637748067191
the regulation term lambda/alpha is 1.5552441095557186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2880068253732722
the lambda is 0.5116788834771109
the regulation term lambda/alpha is 1.7766206853394801
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2905766863001195
the lambda is 0.49578404389642317
the regulation term lambda/alpha is 1.7062072329655418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30150960540862837
the lambda is 0.4800244899915057
the regulation term lambda/alpha is 1.592070306818055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31721847382285184
the lambda is 0.4968158109377718
the regulation term lambda/alpha is 1.5661629190461797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33492007101746174
the lambda is 0.531526164217645
the regulation term lambda/alpha is 1.5870239206713077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3739150939412068
the lambda is 0.5777095379715416
the regulation term lambda/alpha is 1.545028663813124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3573351432057517
the lambda is 0.526193130927484
the regulation term lambda/alpha is 1.47254794534582
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39255085254911354
the lambda is 0.5135465608937647
the regulation term lambda/alpha is 1.3082293862284071
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.284222460746035
the lambda is 0.46794734687997075
the regulation term lambda/alpha is 1.646412270345171
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3329827168894661
the lambda is 0.5064821809726601
the regulation term lambda/alpha is 1.5210464546146016
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3403081469056086
the lambda is 0.5401023848422492
the regulation term lambda/alpha is 1.5870980161754915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37989395132711745
the lambda is 0.5281110407343107
the regulation term lambda/alpha is 1.3901538544886363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3599530345338872
the lambda is 0.5411372052905374
the regulation term lambda/alpha is 1.5033550307230232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3453298478398561
the lambda is 0.5488147274216525
the regulation term lambda/alpha is 1.5892478766450586
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34209166652662887
the lambda is 0.5537844690267819
the regulation term lambda/alpha is 1.6188189401090676
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29397112398329667
the lambda is 0.4512132534633699
the regulation term lambda/alpha is 1.5348897107629103
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3511190240948202
the lambda is 0.5214041369039798
the regulation term lambda/alpha is 1.4849783153964733
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3154449107947941
the lambda is 0.5073321713682984
the regulation term lambda/alpha is 1.6083067249049152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3030599557194131
the lambda is 0.48769067105397174
the regulation term lambda/alpha is 1.609221745896044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.322391095961037
the lambda is 0.5354060170769104
the regulation term lambda/alpha is 1.6607345047197506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32015920030175404
the lambda is 0.540378171336874
the regulation term lambda/alpha is 1.6878420824001337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31634602738472806
the lambda is 0.5491517196242403
the regulation term lambda/alpha is 1.7359210234569589
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30040607815207176
the lambda is 0.51307669258891
the regulation term lambda/alpha is 1.7079437797832437
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.312330265594439
the lambda is 0.5584187056174164
the regulation term lambda/alpha is 1.787910961989586
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34271825090623664
the lambda is 0.5103714317362332
the regulation term lambda/alpha is 1.4891866143302195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2798674575918314
the lambda is 0.4579598406596572
the regulation term lambda/alpha is 1.6363454493789773
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3291955118904645
the lambda is 0.5629491772796102
the regulation term lambda/alpha is 1.7100754929700386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3204901887816987
the lambda is 0.5500610874474119
the regulation term lambda/alpha is 1.7163117833291457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3403815725664815
the lambda is 0.5986707294576855
the regulation term lambda/alpha is 1.7588223855471976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246173135215055
the lambda is 0.5509209881445152
the regulation term lambda/alpha is 1.6971398788562069
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32057768588895463
the lambda is 0.5410147871041442
the regulation term lambda/alpha is 1.6876245943441837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34554986579929725
the lambda is 0.5211329810706063
the regulation term lambda/alpha is 1.508126706590277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33900391278467984
the lambda is 0.5628986262205926
the regulation term lambda/alpha is 1.6604487588263346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3504387842417359
the lambda is 0.5374462219978543
the regulation term lambda/alpha is 1.5336379595105516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28444862416136935
the lambda is 0.5442702549904692
the regulation term lambda/alpha is 1.9134219987708625
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34781871439092166
the lambda is 0.5993965190657315
the regulation term lambda/alpha is 1.723301519630297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35023588712332415
the lambda is 0.4974895513521282
the regulation term lambda/alpha is 1.4204413929088695
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3285442237824855
the lambda is 0.5547675786641455
the regulation term lambda/alpha is 1.6885628737500873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34393995962133844
the lambda is 0.4798919983385248
the regulation term lambda/alpha is 1.3952784051811342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3560585385872732
the lambda is 0.5342505574384235
the regulation term lambda/alpha is 1.500457086517738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.311954432376366
the lambda is 0.48627086218765136
the regulation term lambda/alpha is 1.5587881168521962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2773550169423535
the lambda is 0.4889786602213353
the regulation term lambda/alpha is 1.7630063649541499
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3384697941302051
the lambda is 0.5231839038026799
the regulation term lambda/alpha is 1.5457329217431366
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3179749180686825
the lambda is 0.5167517569067808
the regulation term lambda/alpha is 1.6251337056565025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090790837949928
the lambda is 0.5157335200147032
the regulation term lambda/alpha is 1.6686134619086062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3565536777047658
the lambda is 0.5208031090185213
the regulation term lambda/alpha is 1.4606583568877325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34788193036265885
the lambda is 0.4912267693169256
the regulation term lambda/alpha is 1.4120502574101308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3083243750012121
the lambda is 0.5427660394954967
the regulation term lambda/alpha is 1.7603734362337162
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2644804979785765
the lambda is 0.48167872821579216
the regulation term lambda/alpha is 1.8212258820490017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2788363126578409
the lambda is 0.5432695186703858
the regulation term lambda/alpha is 1.9483456566040231
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3165966141917015
the lambda is 0.48801857688264394
the regulation term lambda/alpha is 1.5414522929393846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2888744899100849
the lambda is 0.4781587169384645
the regulation term lambda/alpha is 1.655247291262362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30103763142512946
the lambda is 0.5038994685618768
the regulation term lambda/alpha is 1.6738753430140536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3194318953022101
the lambda is 0.5104063084034747
the regulation term lambda/alpha is 1.5978564317147677
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3334602365146035
the lambda is 0.5237251603039302
the regulation term lambda/alpha is 1.5705775470503343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28646421703489
the lambda is 0.47496301672672075
the regulation term lambda/alpha is 1.6580186581169838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4016018851539425
the lambda is 0.5483120491695335
the regulation term lambda/alpha is 1.3653124386090814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28778287905352795
the lambda is 0.5125955667035205
the regulation term lambda/alpha is 1.7811885418248843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3264975657023372
the lambda is 0.5387001776880233
the regulation term lambda/alpha is 1.649936276030762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30719820885583227
the lambda is 0.527736529980573
the regulation term lambda/alpha is 1.7179023665083901
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3078738552091794
the lambda is 0.582169764052244
the regulation term lambda/alpha is 1.890936025264955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28369527617657825
the lambda is 0.48292724152978544
the regulation term lambda/alpha is 1.7022745251112352
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3293284601644284
the lambda is 0.48765458262654815
the regulation term lambda/alpha is 1.4807544491692886
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3537534704205314
the lambda is 0.5114513399171461
the regulation term lambda/alpha is 1.445784657063995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314185257603575
the lambda is 0.5062436879590967
the regulation term lambda/alpha is 1.5275057023370864
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28428247742394075
the lambda is 0.5222197187924438
the regulation term lambda/alpha is 1.8369747003916648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3309220036662648
the lambda is 0.5175202192826327
the regulation term lambda/alpha is 1.5638737030147818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3140176400937933
the lambda is 0.4834933384255348
the regulation term lambda/alpha is 1.5397012036684345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34039330079515334
the lambda is 0.5538275272788246
the regulation term lambda/alpha is 1.6270224060963958
800
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28072372662294454
the lambda is 0.45938656025528224
the regulation term lambda/alpha is 1.636436527049634
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321832039326988
the lambda is 0.5027816876208683
the regulation term lambda/alpha is 1.5622487079666785
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282520833658548
the lambda is 0.4482127902181429
the regulation term lambda/alpha is 1.3654529946077612
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2929985763565583
the lambda is 0.5315527981513876
the regulation term lambda/alpha is 1.8141821873718795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33201883431446805
the lambda is 0.5080890051075997
the regulation term lambda/alpha is 1.53030175579247
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3229275167166958
the lambda is 0.4983068240283319
the regulation term lambda/alpha is 1.5430918649942622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31716954315983403
the lambda is 0.5188967471592675
the regulation term lambda/alpha is 1.6360232511284203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3219231069755194
the lambda is 0.5024225817233311
the regulation term lambda/alpha is 1.5606912670656405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32197196457240274
the lambda is 0.47561077462394635
the regulation term lambda/alpha is 1.4771807081265127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32184867904048425
the lambda is 0.5391520045762631
the regulation term lambda/alpha is 1.675172339322993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33556826402023365
the lambda is 0.5044363144207137
the regulation term lambda/alpha is 1.5032300980354263
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2876759899612128
the lambda is 0.4816838036640422
the regulation term lambda/alpha is 1.6743969621134782
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31157155053008007
the lambda is 0.5047466826643273
the regulation term lambda/alpha is 1.6200024739280474
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3437427662198054
the lambda is 0.4865616323643149
the regulation term lambda/alpha is 1.4154818084322518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3108217899294179
the lambda is 0.5293297356882282
the regulation term lambda/alpha is 1.7030007317325775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36242615138857387
the lambda is 0.48267584696000765
the regulation term lambda/alpha is 1.3317908906703273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3284809618997964
the lambda is 0.5237739761093229
the regulation term lambda/alpha is 1.5945337382112905
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32434852960382393
the lambda is 0.5111153557408916
the regulation term lambda/alpha is 1.5758214053419461
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3053838668979622
the lambda is 0.5593084638460228
the regulation term lambda/alpha is 1.831493161467185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2916508966508927
the lambda is 0.49363836726102167
the regulation term lambda/alpha is 1.6925659167504934
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33425188810010004
the lambda is 0.5713238804640004
the regulation term lambda/alpha is 1.7092614905226902
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32390423286705283
the lambda is 0.5023753194785718
the regulation term lambda/alpha is 1.5509995501811575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3040910195859815
the lambda is 0.509403806307336
the regulation term lambda/alpha is 1.6751688589846778
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30166992051478314
the lambda is 0.5553139924659946
the regulation term lambda/alpha is 1.8408000092232655
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28842304713078765
the lambda is 0.4903866902305706
the regulation term lambda/alpha is 1.7002340662748805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33634831766614504
the lambda is 0.4920695500041568
the regulation term lambda/alpha is 1.4629760999505834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3726865415049924
the lambda is 0.5701758153077787
the regulation term lambda/alpha is 1.5299071788460084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3134010595312307
the lambda is 0.5059643409486521
the regulation term lambda/alpha is 1.6144308564414163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3481284639948947
the lambda is 0.5202423684302667
the regulation term lambda/alpha is 1.4943976785474686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3091621943763058
the lambda is 0.5033506860665619
the regulation term lambda/alpha is 1.6281120241173273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31661256061496745
the lambda is 0.5339297920376465
the regulation term lambda/alpha is 1.6863822174350136
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3197059742953797
the lambda is 0.519584353540512
the regulation term lambda/alpha is 1.6251943827000948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37044660313679634
the lambda is 0.5769702954036392
the regulation term lambda/alpha is 1.557499219909378
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35630899147975276
the lambda is 0.4893636779347518
the regulation term lambda/alpha is 1.3734250036812776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33535643905846285
the lambda is 0.5152594844185737
the regulation term lambda/alpha is 1.536453231269993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3141589066682469
the lambda is 0.4817197193504103
the regulation term lambda/alpha is 1.533363241103676
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29948439890085066
the lambda is 0.47237663046961176
the regulation term lambda/alpha is 1.5772996263020698
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3049411742497441
the lambda is 0.5139986090647362
the regulation term lambda/alpha is 1.6855664386068636
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2922535148574085
the lambda is 0.4914844849249222
the regulation term lambda/alpha is 1.6817059844933573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36662498056760234
the lambda is 0.5484317704825996
the regulation term lambda/alpha is 1.4958930775353256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.345893111130707
the lambda is 0.4937661818084961
the regulation term lambda/alpha is 1.4275108868008373
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3029920063361388
the lambda is 0.5002499185625
the regulation term lambda/alpha is 1.6510333873545284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31727114017106334
the lambda is 0.4777750097577538
the regulation term lambda/alpha is 1.5058886525265154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2865773388735332
the lambda is 0.4761997231578938
the regulation term lambda/alpha is 1.661679618596923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32976546112550087
the lambda is 0.602260682342556
the regulation term lambda/alpha is 1.8263303873213999
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3461738205939378
the lambda is 0.5509466192056434
the regulation term lambda/alpha is 1.5915317289458009
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2991468220431138
the lambda is 0.5567348966386495
the regulation term lambda/alpha is 1.861075751486377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28950106640857914
the lambda is 0.5245070084951442
the regulation term lambda/alpha is 1.8117619219920111
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2792409037829411
the lambda is 0.46582578525283214
the regulation term lambda/alpha is 1.6681860678080558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3239929378470394
the lambda is 0.5165986704355511
the regulation term lambda/alpha is 1.594475095254832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28073162493345694
the lambda is 0.47306188991454423
the regulation term lambda/alpha is 1.6851036644933615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31293916442887754
the lambda is 0.5309573588194209
the regulation term lambda/alpha is 1.6966791605915879
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30111855668428894
the lambda is 0.5276267580137181
the regulation term lambda/alpha is 1.7522226588211038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3388386272550588
the lambda is 0.553156386865394
the regulation term lambda/alpha is 1.63250687014798
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2871888182084584
the lambda is 0.4805673992574937
the regulation term lambda/alpha is 1.673349966253456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31378085113195997
the lambda is 0.49892904998361265
the regulation term lambda/alpha is 1.5900557608398767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33319289093205995
the lambda is 0.4728715747167758
the regulation term lambda/alpha is 1.4192126770591789
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28559015000101834
the lambda is 0.524226800086387
the regulation term lambda/alpha is 1.8355913188340625
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.325172055293232
the lambda is 0.48179528165579594
the regulation term lambda/alpha is 1.4816626269478324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2896970112168008
the lambda is 0.44598337608632854
the regulation term lambda/alpha is 1.5394821445105196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2947607198239304
the lambda is 0.4996136589399372
the regulation term lambda/alpha is 1.6949804547850602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2764219612376849
the lambda is 0.49462863234959614
the regulation term lambda/alpha is 1.7893970151101108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36101303029974313
the lambda is 0.5329499162768174
the regulation term lambda/alpha is 1.476262271847412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33250613930474704
the lambda is 0.4863992606585778
the regulation term lambda/alpha is 1.4628279095105228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30359781825212284
the lambda is 0.5220197080880646
the regulation term lambda/alpha is 1.7194448599579635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3520603692220898
the lambda is 0.6100523094764101
the regulation term lambda/alpha is 1.7328059696817837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33267190106093636
the lambda is 0.5464588940938613
the regulation term lambda/alpha is 1.642636159985646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28164949897217156
the lambda is 0.4682346445337217
the regulation term lambda/alpha is 1.662472847430791
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2989930560413739
the lambda is 0.5166524342412551
the regulation term lambda/alpha is 1.7279746930636477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.332059405126022
the lambda is 0.49362368313497135
the regulation term lambda/alpha is 1.4865523322479997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30823288892999046
the lambda is 0.5583605016165347
the regulation term lambda/alpha is 1.811489045036191
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31011972770781715
the lambda is 0.48191352771629664
the regulation term lambda/alpha is 1.5539595990176316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29127210794996644
the lambda is 0.4974499450631679
the regulation term lambda/alpha is 1.707853005783231
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3565633568693192
the lambda is 0.5134543021373715
the regulation term lambda/alpha is 1.440008605050106
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3034956566458626
the lambda is 0.5873837217342472
the regulation term lambda/alpha is 1.9353941609109837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29167105221251366
the lambda is 0.48296218322538237
the regulation term lambda/alpha is 1.6558454449346334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34393089798841087
the lambda is 0.47626472486332283
the regulation term lambda/alpha is 1.3847686487283009
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3238154219192292
the lambda is 0.49246481067306824
the regulation term lambda/alpha is 1.5208195080835467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34011097716225047
the lambda is 0.5424408952970758
the regulation term lambda/alpha is 1.5948938191380502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.323475332279388
the lambda is 0.5344632078268118
the regulation term lambda/alpha is 1.6522533698649762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3348350717716173
the lambda is 0.5275274587599681
the regulation term lambda/alpha is 1.5754844794746634
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36142802482846026
the lambda is 0.5626705206814854
the regulation term lambda/alpha is 1.5567982614202043
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3588285059233942
the lambda is 0.5197299225248526
the regulation term lambda/alpha is 1.448407565021629
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3251333563668265
the lambda is 0.49314993297465975
the regulation term lambda/alpha is 1.5167620403065358
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3580699428419235
the lambda is 0.5529744268254221
the regulation term lambda/alpha is 1.5443195886160785
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3225639431934849
the lambda is 0.5122438797957771
the regulation term lambda/alpha is 1.5880382497944467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.380410550950562
the lambda is 0.5282415800577115
the regulation term lambda/alpha is 1.3886091716903026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34906600240324426
the lambda is 0.5458490065454329
the regulation term lambda/alpha is 1.5637415353754878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29840272034275045
the lambda is 0.463280877325956
the regulation term lambda/alpha is 1.5525357034072065
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3406358397218
the lambda is 0.5485051358385419
the regulation term lambda/alpha is 1.6102390643524487
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3296245200973151
the lambda is 0.5407552579019177
the regulation term lambda/alpha is 1.6405189084303269
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34122832111911316
the lambda is 0.5373744634642736
the regulation term lambda/alpha is 1.574823747635799
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3368662786552049
the lambda is 0.4971374467798499
the regulation term lambda/alpha is 1.4757708867876576
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30124562187752835
the lambda is 0.48321898078165904
the regulation term lambda/alpha is 1.6040697214783493
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28222818160243096
the lambda is 0.4912660509264685
the regulation term lambda/alpha is 1.7406697238283062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3338144075892992
the lambda is 0.5210907302102691
the regulation term lambda/alpha is 1.561019292047397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33776599535512974
the lambda is 0.5689108213145136
the regulation term lambda/alpha is 1.6843342110752044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34690359686052913
the lambda is 0.4598518786682413
the regulation term lambda/alpha is 1.3255898261934784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33867542614537405
the lambda is 0.5337337614190621
the regulation term lambda/alpha is 1.5759447548165502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30767182357858175
the lambda is 0.5358446514836909
the regulation term lambda/alpha is 1.7416110622389573
810
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3039643616329039
the lambda is 0.5209666378223463
the regulation term lambda/alpha is 1.7139069693029174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2742031714721512
the lambda is 0.47134151200953567
the regulation term lambda/alpha is 1.7189498920781316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2610227201064123
the lambda is 0.5016559915723272
the regulation term lambda/alpha is 1.9218863069383954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2900047538481018
the lambda is 0.49116924524179734
the regulation term lambda/alpha is 1.6936592891131057
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.273514015151319
the lambda is 0.4817232758990679
the regulation term lambda/alpha is 1.7612379959124183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3153896327104519
the lambda is 0.4941413949030036
the regulation term lambda/alpha is 1.5667648636905493
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2662075067873464
the lambda is 0.5486189055827146
the regulation term lambda/alpha is 2.0608694029840637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3099187686708702
the lambda is 0.49905162863207836
the regulation term lambda/alpha is 1.6102659118462905
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3166145893275697
the lambda is 0.47201913000251283
the regulation term lambda/alpha is 1.4908319007187678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3000303337807155
the lambda is 0.48076980361028626
the regulation term lambda/alpha is 1.6024039887969084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32609865437113456
the lambda is 0.5197261780246775
the regulation term lambda/alpha is 1.5937697719941353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33613704286221885
the lambda is 0.5138353053195903
the regulation term lambda/alpha is 1.528648258889483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3461361805001427
the lambda is 0.5043858520574235
the regulation term lambda/alpha is 1.457189050068736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3433641519240976
the lambda is 0.5142151932424824
the regulation term lambda/alpha is 1.4975797279972092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3644322795978908
the lambda is 0.5342309081689554
the regulation term lambda/alpha is 1.4659264233081049
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32572529385014076
the lambda is 0.5317310235741253
the regulation term lambda/alpha is 1.6324523566744047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2688259855770196
the lambda is 0.49186902689274464
the regulation term lambda/alpha is 1.829693010655112
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3182534224894052
the lambda is 0.48544448768987963
the regulation term lambda/alpha is 1.5253394099981448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2853311194792481
the lambda is 0.5365332766316694
the regulation term lambda/alpha is 1.880388222675764
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3111981432381343
the lambda is 0.5450720795385715
the regulation term lambda/alpha is 1.7515274155137641
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3125032792904804
the lambda is 0.5162444927648614
the regulation term lambda/alpha is 1.6519650415732052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2805393866801154
the lambda is 0.49923312739144504
the regulation term lambda/alpha is 1.7795473687289936
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3461681055923305
the lambda is 0.5334237748137887
the regulation term lambda/alpha is 1.5409385388091827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2890028185322689
the lambda is 0.5043462225889435
the regulation term lambda/alpha is 1.7451256190175537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3129121143114952
the lambda is 0.4572992570957285
the regulation term lambda/alpha is 1.4614303383617164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3302286668158995
the lambda is 0.552615723549234
the regulation term lambda/alpha is 1.6734335297950191
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3098473725537269
the lambda is 0.5007985601809638
the regulation term lambda/alpha is 1.6162749938895362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34046131860132567
the lambda is 0.4596501307197316
the regulation term lambda/alpha is 1.3500803339658505
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.339920286004225
the lambda is 0.5192901509294034
the regulation term lambda/alpha is 1.5276821428743708
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36092477566740433
the lambda is 0.48803992804504165
the regulation term lambda/alpha is 1.352192924807066
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2964839578465527
the lambda is 0.49950398729475837
the regulation term lambda/alpha is 1.6847589020424507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3350399599185575
the lambda is 0.517460031365493
the regulation term lambda/alpha is 1.5444725801999222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26839283565069594
the lambda is 0.49922479359268357
the regulation term lambda/alpha is 1.8600526067782506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3218463509020595
the lambda is 0.522734834231096
the regulation term lambda/alpha is 1.6241751157531954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3330085402208126
the lambda is 0.5783549648344009
the regulation term lambda/alpha is 1.7367571547891925
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3552558120066429
the lambda is 0.5255107039833169
the regulation term lambda/alpha is 1.4792459017489357
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2659458408315876
the lambda is 0.44592983189837926
the regulation term lambda/alpha is 1.6767693395918455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3069830317357836
the lambda is 0.560386316527994
the regulation term lambda/alpha is 1.8254634901459679
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2917391166170553
the lambda is 0.5093440178445328
the regulation term lambda/alpha is 1.7458886684472674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3354308264707859
the lambda is 0.5206316332232765
the regulation term lambda/alpha is 1.552128165145312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35293935613139843
the lambda is 0.5008695574823738
the regulation term lambda/alpha is 1.41913773225081
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3342659085644155
the lambda is 0.5327509978518224
the regulation term lambda/alpha is 1.5937939951455067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3260508011334734
the lambda is 0.5115980997540188
the regulation term lambda/alpha is 1.569074812806821
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.293498314491544
the lambda is 0.5061501248343973
the regulation term lambda/alpha is 1.7245418451933903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32041236539146306
the lambda is 0.5432327273278768
the regulation term lambda/alpha is 1.6954174869755212
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3055275824171895
the lambda is 0.4649751484290457
the regulation term lambda/alpha is 1.5218761748133591
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.360696323159253
the lambda is 0.47396494340649764
the regulation term lambda/alpha is 1.3140276542193496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31872939168259146
the lambda is 0.4835532622919496
the regulation term lambda/alpha is 1.5171279301831662
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34910077798369343
the lambda is 0.5079814765580121
the regulation term lambda/alpha is 1.4551141349267918
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3830754952581824
the lambda is 0.5238749644087389
the regulation term lambda/alpha is 1.3675501849985512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31119018117476144
the lambda is 0.5656602829446902
the regulation term lambda/alpha is 1.81773178321144
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32258033260740837
the lambda is 0.5690605045766719
the regulation term lambda/alpha is 1.7640892734438296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3290785682169763
the lambda is 0.5446937722135025
the regulation term lambda/alpha is 1.6552088917998493
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32623552310481113
the lambda is 0.48637255859630374
the regulation term lambda/alpha is 1.4908632694792243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2656587239062497
the lambda is 0.49884001132572525
the regulation term lambda/alpha is 1.8777475250606286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2709414444271709
the lambda is 0.5330216930762207
the regulation term lambda/alpha is 1.9672947939107082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34820864812969243
the lambda is 0.4990647786281899
the regulation term lambda/alpha is 1.4332348760112075
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3091004534263539
the lambda is 0.4334660739771695
the regulation term lambda/alpha is 1.402346936642223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196443008840369
the lambda is 0.49175239672535426
the regulation term lambda/alpha is 1.5384363036203674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3268488607569638
the lambda is 0.5477907319798478
the regulation term lambda/alpha is 1.6759756503700058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3503811708483785
the lambda is 0.5266508333460513
the regulation term lambda/alpha is 1.5030797233506321
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3365622813913322
the lambda is 0.5532205040548126
the regulation term lambda/alpha is 1.6437388698692728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2994266576217471
the lambda is 0.4649857923946873
the regulation term lambda/alpha is 1.5529204917422015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31522327272974887
the lambda is 0.5292127139456999
the regulation term lambda/alpha is 1.678850388687548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2919986667429274
the lambda is 0.4884702069357863
the regulation term lambda/alpha is 1.6728508125889163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33221417441549556
the lambda is 0.4635461503841522
the regulation term lambda/alpha is 1.395323216415208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31072383329405473
the lambda is 0.5151127884024395
the regulation term lambda/alpha is 1.657783321419572
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32052925644701147
the lambda is 0.5974217192031398
the regulation term lambda/alpha is 1.8638601849497722
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3715884418530172
the lambda is 0.5669238933872439
the regulation term lambda/alpha is 1.5256768767083777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28645829667491013
the lambda is 0.5394752782857889
the regulation term lambda/alpha is 1.8832593942915796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3261537898725301
the lambda is 0.5644669799604748
the regulation term lambda/alpha is 1.7306773598463598
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3209157177342167
the lambda is 0.5296196681266698
the regulation term lambda/alpha is 1.6503388237446892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3440684121814508
the lambda is 0.5047054127076676
the regulation term lambda/alpha is 1.466875176095799
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3152015145795467
the lambda is 0.5528097644529482
the regulation term lambda/alpha is 1.753829657799556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4277356919068076
the lambda is 0.5660020737233376
the regulation term lambda/alpha is 1.323251915686883
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32578519812623546
the lambda is 0.4817742524842529
the regulation term lambda/alpha is 1.4788095200616656
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3352431556753028
the lambda is 0.49086023537395174
the regulation term lambda/alpha is 1.4641916682390699
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3350859209929056
the lambda is 0.5350970672789366
the regulation term lambda/alpha is 1.5968951058682817
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.297345449779372
the lambda is 0.5310950820750151
the regulation term lambda/alpha is 1.786121437099789
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2685879759228563
the lambda is 0.46114237846077855
the regulation term lambda/alpha is 1.716913710959375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.339974437200806
the lambda is 0.5539426115083085
the regulation term lambda/alpha is 1.6293654783848415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.349657184854889
the lambda is 0.5547147625912091
the regulation term lambda/alpha is 1.5864532079368565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3302630410285461
the lambda is 0.4797596890033722
the regulation term lambda/alpha is 1.4526593333278985
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3019805661513305
the lambda is 0.5125442044999328
the regulation term lambda/alpha is 1.6972754605774307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33819733899315807
the lambda is 0.5409257957930899
the regulation term lambda/alpha is 1.5994383557347656
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3009891485364402
the lambda is 0.5154222514403313
the regulation term lambda/alpha is 1.7124280192378099
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29789132788414235
the lambda is 0.475232037146475
the regulation term lambda/alpha is 1.5953201475247545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36276738586094265
the lambda is 0.5812906454926992
the regulation term lambda/alpha is 1.60237846109882
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31549154895261566
the lambda is 0.4972307892035083
the regulation term lambda/alpha is 1.5760510570068818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3280540448591536
the lambda is 0.5149341572586063
the regulation term lambda/alpha is 1.569662576419954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3168640524993724
the lambda is 0.5616215046924539
the regulation term lambda/alpha is 1.7724367919379755
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.277923834758055
the lambda is 0.45954458858094327
the regulation term lambda/alpha is 1.6534911047877459
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34459960257601135
the lambda is 0.5021095989956986
the regulation term lambda/alpha is 1.4570811900020806
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33846224111622375
the lambda is 0.5147974293697205
the regulation term lambda/alpha is 1.5209892473439761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32395280288300693
the lambda is 0.4563782271488902
the regulation term lambda/alpha is 1.408779992293222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28420076129497474
the lambda is 0.5137469223957493
the regulation term lambda/alpha is 1.8076901696351415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2925756838888545
the lambda is 0.4701282107448354
the regulation term lambda/alpha is 1.6068601617741776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3200802551358436
the lambda is 0.5050364657223184
the regulation term lambda/alpha is 1.577843236559464
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3485175081069458
the lambda is 0.5391318646231191
the regulation term lambda/alpha is 1.546929069794914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203006893734198
the lambda is 0.4806485127181546
the regulation term lambda/alpha is 1.5006165414704888
820
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31346220278436865
the lambda is 0.4792473030744433
the regulation term lambda/alpha is 1.528883861650518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32384730393604333
the lambda is 0.5463907402623545
the regulation term lambda/alpha is 1.6871863178155755
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3312233811279246
the lambda is 0.5028136026808898
the regulation term lambda/alpha is 1.518049845903523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3066983745168514
the lambda is 0.5197660577220923
the regulation term lambda/alpha is 1.6947140934179747
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31365380344187654
the lambda is 0.49675866402203145
the regulation term lambda/alpha is 1.583780137753331
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32285701443828657
the lambda is 0.5170256076668682
the regulation term lambda/alpha is 1.6014073863824834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31459318802312375
the lambda is 0.5128669601345766
the regulation term lambda/alpha is 1.6302544990162946
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32085194531413896
the lambda is 0.5488563565499914
the regulation term lambda/alpha is 1.710621875808228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3023695494045164
the lambda is 0.533603481282536
the regulation term lambda/alpha is 1.7647394796645675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28689542895100906
the lambda is 0.4806455019282391
the regulation term lambda/alpha is 1.675333426139443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2900421768478586
the lambda is 0.49590252444712524
the regulation term lambda/alpha is 1.709760041924008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37727997480731695
the lambda is 0.49806828571540207
the regulation term lambda/alpha is 1.320155637652843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.322961065385997
the lambda is 0.49427382876476733
the regulation term lambda/alpha is 1.5304440124199508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31063541362160507
the lambda is 0.5096776511087429
the regulation term lambda/alpha is 1.6407583577370142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3065032562636021
the lambda is 0.4860468666657166
the regulation term lambda/alpha is 1.5857804337572896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29949331138479496
the lambda is 0.5281267290738922
the regulation term lambda/alpha is 1.7634007471884556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.276642892540165
the lambda is 0.4797726279848991
the regulation term lambda/alpha is 1.7342669590372444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29753228369400186
the lambda is 0.5052867898874921
the regulation term lambda/alpha is 1.6982587019268003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3043709473775712
the lambda is 0.5160546689089925
the regulation term lambda/alpha is 1.6954793923509013
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27579446628904924
the lambda is 0.5058991062068436
the regulation term lambda/alpha is 1.83433378128998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3437140984795005
the lambda is 0.513912810580338
the regulation term lambda/alpha is 1.4951752426035219
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3439487404313237
the lambda is 0.5762010216522665
the regulation term lambda/alpha is 1.6752525999359393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30698445419985
the lambda is 0.45953712283021647
the regulation term lambda/alpha is 1.4969393939767814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32569268408227314
the lambda is 0.5259478287598963
the regulation term lambda/alpha is 1.6148592045961854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.291082454697019
the lambda is 0.5261101786104903
the regulation term lambda/alpha is 1.8074266247277122
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2952281969489184
the lambda is 0.46902270198906826
the regulation term lambda/alpha is 1.588678543703671
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3366763958349047
the lambda is 0.5231745881769807
the regulation term lambda/alpha is 1.5539390187410962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3172153728592658
the lambda is 0.5691334424359784
the regulation term lambda/alpha is 1.7941546694474901
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2989667475949138
the lambda is 0.5003135733132759
the regulation term lambda/alpha is 1.673475653523775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26700755663964854
the lambda is 0.5004278305387498
the regulation term lambda/alpha is 1.874208493709875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3360432711879155
the lambda is 0.53242509699993
the regulation term lambda/alpha is 1.5843944594331656
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190927099002021
the lambda is 0.4790507809382438
the regulation term lambda/alpha is 1.501290271056551
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2857832299286175
the lambda is 0.4693156707028387
the regulation term lambda/alpha is 1.6422085747300976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3053248911034173
the lambda is 0.5216880306605947
the regulation term lambda/alpha is 1.7086324956188799
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31130038881958544
the lambda is 0.4747545560298836
the regulation term lambda/alpha is 1.5250689465249214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3529487587864943
the lambda is 0.5046995408087357
the regulation term lambda/alpha is 1.4299513123207737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28614049974971406
the lambda is 0.5340332878798617
the regulation term lambda/alpha is 1.8663324078450219
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224704256227176
the lambda is 0.5081560917572573
the regulation term lambda/alpha is 1.5758223123127182
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3010615744266763
the lambda is 0.47310904472497234
the regulation term lambda/alpha is 1.5714693767410637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33624685347924116
the lambda is 0.5452890726581388
the regulation term lambda/alpha is 1.6216927147893838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3498400788621459
the lambda is 0.5248088936514882
the regulation term lambda/alpha is 1.5001394218707815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3170453462710786
the lambda is 0.49259946190211157
the regulation term lambda/alpha is 1.5537192634927735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34086429105273713
the lambda is 0.5370972711396406
the regulation term lambda/alpha is 1.575692395002277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3072300274170285
the lambda is 0.5356928959349702
the regulation term lambda/alpha is 1.7436215477982244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3189490025339762
the lambda is 0.5283190578163219
the regulation term lambda/alpha is 1.6564374041584988
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2941369866208028
the lambda is 0.4377316768531189
the regulation term lambda/alpha is 1.488189846105401
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3135695045968542
the lambda is 0.5286378494089148
the regulation term lambda/alpha is 1.6858713671425631
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3165550057978764
the lambda is 0.5225858088178268
the regulation term lambda/alpha is 1.6508530879195864
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3687379326028801
the lambda is 0.5386897411317779
the regulation term lambda/alpha is 1.4609013434805225
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33288747408577274
the lambda is 0.48424404002732435
the regulation term lambda/alpha is 1.4546778648167238
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215306528589136
the lambda is 0.491149954123374
the regulation term lambda/alpha is 1.527536954117058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32646827079014673
the lambda is 0.4828678753395916
the regulation term lambda/alpha is 1.4790652524084897
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3004210098633823
the lambda is 0.4936912720693988
the regulation term lambda/alpha is 1.6433313778350818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32026266307754203
the lambda is 0.48637344736170895
the regulation term lambda/alpha is 1.5186704646989966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2786606322862078
the lambda is 0.5604100482983035
the regulation term lambda/alpha is 2.0110843921530885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31948218538627987
the lambda is 0.4529244978089882
the regulation term lambda/alpha is 1.417683108876214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2850381424660703
the lambda is 0.5429668638071354
the regulation term lambda/alpha is 1.904891952738458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090275302448876
the lambda is 0.47167012240356243
the regulation term lambda/alpha is 1.526304540018779
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2893738783509873
the lambda is 0.5026320649593609
the regulation term lambda/alpha is 1.7369641925651231
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26735909117919415
the lambda is 0.47072642051580066
the regulation term lambda/alpha is 1.760652381183859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3388005348122231
the lambda is 0.49239016061577867
the regulation term lambda/alpha is 1.453333480977771
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29759293540303006
the lambda is 0.5031630677129463
the regulation term lambda/alpha is 1.6907762512289233
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2972702275333438
the lambda is 0.49009506499038696
the regulation term lambda/alpha is 1.6486516966634832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3113731107256354
the lambda is 0.5228628593088958
the regulation term lambda/alpha is 1.6792164811225891
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32836617488404163
the lambda is 0.46880792827037704
the regulation term lambda/alpha is 1.4276986003078138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30548274324347874
the lambda is 0.5056790206960716
the regulation term lambda/alpha is 1.6553439822066498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3350877398084944
the lambda is 0.5314695735646571
the regulation term lambda/alpha is 1.5860609339762675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33591057060821033
the lambda is 0.550828091914974
the regulation term lambda/alpha is 1.6398057700822786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052612027784891
the lambda is 0.5448388027890623
the regulation term lambda/alpha is 1.784828199030655
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31074126145371517
the lambda is 0.4927608811331348
the regulation term lambda/alpha is 1.585759415495362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39275468847851575
the lambda is 0.5701772551654426
the regulation term lambda/alpha is 1.4517388891632088
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3492421728693886
the lambda is 0.5198400873566406
the regulation term lambda/alpha is 1.4884802802754669
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32610444008633865
the lambda is 0.46988326351694404
the regulation term lambda/alpha is 1.44089808587868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3222870206296614
the lambda is 0.5032244659913048
the regulation term lambda/alpha is 1.561417102705969
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314389422926334
the lambda is 0.5592313949844079
the regulation term lambda/alpha is 1.6872833080991807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3192714395166134
the lambda is 0.5086543923508775
the regulation term lambda/alpha is 1.5931722333854716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3136118981647704
the lambda is 0.49739124704505744
the regulation term lambda/alpha is 1.5860088534770134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32883629650599583
the lambda is 0.5398834921382293
the regulation term lambda/alpha is 1.6418001840876022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30094160233045897
the lambda is 0.4894937902499555
the regulation term lambda/alpha is 1.6265407855190805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2907482506058768
the lambda is 0.47032085866642914
the regulation term lambda/alpha is 1.6176223165104153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3414932804832484
the lambda is 0.5221652418620293
the regulation term lambda/alpha is 1.5290644697989704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29705021977683205
the lambda is 0.5131434847427134
the regulation term lambda/alpha is 1.7274637437677305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3435519687023451
the lambda is 0.5088653563101889
the regulation term lambda/alpha is 1.4811888816479815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215985159042717
the lambda is 0.4896728401834943
the regulation term lambda/alpha is 1.522621579290037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.346338775363676
the lambda is 0.5152605345160932
the regulation term lambda/alpha is 1.48773562525605
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27977077681908485
the lambda is 0.5219457107026885
the regulation term lambda/alpha is 1.8656191208998474
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31572000986606197
the lambda is 0.521963211229849
the regulation term lambda/alpha is 1.6532471649525213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35782101974483993
the lambda is 0.5663644550685726
the regulation term lambda/alpha is 1.5828149376815364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27067025114416576
the lambda is 0.482539775143342
the regulation term lambda/alpha is 1.78275881114962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3197095750824376
the lambda is 0.5178819315117935
the regulation term lambda/alpha is 1.6198511770511
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3533249460899683
the lambda is 0.5251855117919872
the regulation term lambda/alpha is 1.486409373591916
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32052010081453763
the lambda is 0.5346420227006821
the regulation term lambda/alpha is 1.668045221943948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28904017191721426
the lambda is 0.5120589907246187
the regulation term lambda/alpha is 1.7715841619111705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29589153018272607
the lambda is 0.49467343609688064
the regulation term lambda/alpha is 1.671806677911321
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30720135912998386
the lambda is 0.5306218128130001
the regulation term lambda/alpha is 1.7272769050103127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30313117827969027
the lambda is 0.54941370931519
the regulation term lambda/alpha is 1.8124618933399916
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3046084396615362
the lambda is 0.5158996565157393
the regulation term lambda/alpha is 1.6936485971596127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2792312585918382
the lambda is 0.5209505869869157
the regulation term lambda/alpha is 1.8656599895515522
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32386176375694564
the lambda is 0.49755124064737344
the regulation term lambda/alpha is 1.536307450671391
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29660272069075105
the lambda is 0.4905205913910589
the regulation term lambda/alpha is 1.6537966686505678
830
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3317447454451371
the lambda is 0.5735340296789281
the regulation term lambda/alpha is 1.7288413382685435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3344571329265353
the lambda is 0.5464545799972785
the regulation term lambda/alpha is 1.6338553620182747
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33331060856535055
the lambda is 0.5477887785809278
the regulation term lambda/alpha is 1.643478378737308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29488940680459874
the lambda is 0.493684111835437
the regulation term lambda/alpha is 1.6741330832631933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3294441462836826
the lambda is 0.5044910256763622
the regulation term lambda/alpha is 1.5313400810647508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31111813449386044
the lambda is 0.47765117962783615
the regulation term lambda/alpha is 1.5352727040643208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2799250620235793
the lambda is 0.4696980918908877
the regulation term lambda/alpha is 1.6779422624592397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28127958122318375
the lambda is 0.47941020291171554
the regulation term lambda/alpha is 1.7043903465261607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30711885071274353
the lambda is 0.48072667298593535
the regulation term lambda/alpha is 1.565278952660486
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2586114350034414
the lambda is 0.505874165368856
the regulation term lambda/alpha is 1.956116771720184
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3461951551560519
the lambda is 0.5272182103259757
the regulation term lambda/alpha is 1.522893092158743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30176097055296836
the lambda is 0.5317790468374299
the regulation term lambda/alpha is 1.7622525731639849
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2960187792657436
the lambda is 0.5230615014804146
the regulation term lambda/alpha is 1.7669875633493137
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3044572108553807
the lambda is 0.5031649034816732
the regulation term lambda/alpha is 1.6526621329414992
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3335197301034212
the lambda is 0.508677315251285
the regulation term lambda/alpha is 1.525179080390684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33645894517176617
the lambda is 0.5982024930587934
the regulation term lambda/alpha is 1.7779360651368745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3099927606865521
the lambda is 0.4720524120370017
the regulation term lambda/alpha is 1.5227852772804444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087044312261026
the lambda is 0.4848693832386072
the regulation term lambda/alpha is 1.5706589675853313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3421734083401291
the lambda is 0.4977990655483131
the regulation term lambda/alpha is 1.4548151709483168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3267981191751227
the lambda is 0.48631833096419586
the regulation term lambda/alpha is 1.48813075237924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.294367419847542
the lambda is 0.5853275943815973
the regulation term lambda/alpha is 1.9884251955761567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.336292586515503
the lambda is 0.4947314558286875
the regulation term lambda/alpha is 1.4711339936299206
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2656851613727965
the lambda is 0.46808081805171126
the regulation term lambda/alpha is 1.761787582088271
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31410648473892483
the lambda is 0.5403386898768623
the regulation term lambda/alpha is 1.7202404793583754
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31078009299505566
the lambda is 0.5289733464499641
the regulation term lambda/alpha is 1.7020824640089793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3694854164972181
the lambda is 0.5369496730162745
the regulation term lambda/alpha is 1.4532364446387216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3272703776756973
the lambda is 0.5564533462407543
the regulation term lambda/alpha is 1.700286320420242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2802829944787623
the lambda is 0.4834576460587671
the regulation term lambda/alpha is 1.7248911121341677
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.358450762481053
the lambda is 0.4963531869242196
the regulation term lambda/alpha is 1.3847178995761122
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32175110202689894
the lambda is 0.5150595743335032
the regulation term lambda/alpha is 1.6008012749259934
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35792406107017993
the lambda is 0.5169308852917739
the regulation term lambda/alpha is 1.444247373999304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3541086688758502
the lambda is 0.5271273673144364
the regulation term lambda/alpha is 1.4886033967704029
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31545244688257135
the lambda is 0.48984268926201135
the regulation term lambda/alpha is 1.5528257716902656
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30259459522827326
the lambda is 0.5041156341490224
the regulation term lambda/alpha is 1.6659769939668763
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33886730429120554
the lambda is 0.4954044846066844
the regulation term lambda/alpha is 1.4619424132490477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.322637300374486
the lambda is 0.45990300040895343
the regulation term lambda/alpha is 1.4254489480142027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2928527759597211
the lambda is 0.5201534560408366
the regulation term lambda/alpha is 1.7761602372940404
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32323713086730177
the lambda is 0.5059613038869707
the regulation term lambda/alpha is 1.5652945023035814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3116573740172907
the lambda is 0.4847770699986002
the regulation term lambda/alpha is 1.5554808273899685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34234611763396994
the lambda is 0.5655291062121667
the regulation term lambda/alpha is 1.6519220668271746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.350902664395983
the lambda is 0.5392314793994427
the regulation term lambda/alpha is 1.5366981619465174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2731117906697574
the lambda is 0.5131348757343127
the regulation term lambda/alpha is 1.8788455616505682
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32421907594823274
the lambda is 0.48416724361728986
the regulation term lambda/alpha is 1.493333611544176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3398260804465335
the lambda is 0.527492733483728
the regulation term lambda/alpha is 1.5522432321574595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32579090666718535
the lambda is 0.48611981056700787
the regulation term lambda/alpha is 1.4921220961627635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32376778496491204
the lambda is 0.5445911641072542
the regulation term lambda/alpha is 1.6820424680802435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29843468026768005
the lambda is 0.5072467218011102
the regulation term lambda/alpha is 1.6996909385535783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29137601886262254
the lambda is 0.5316553328208531
the regulation term lambda/alpha is 1.8246365466044652
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3061169091577943
the lambda is 0.4488054493883671
the regulation term lambda/alpha is 1.4661243334226304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3409884992330701
the lambda is 0.5825089660268771
the regulation term lambda/alpha is 1.7082950519944795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32565667606978477
the lambda is 0.4653114139095323
the regulation term lambda/alpha is 1.4288403957357256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31245331621510897
the lambda is 0.49673785180182617
the regulation term lambda/alpha is 1.5897986227800067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.375166304236512
the lambda is 0.5319728649171493
the regulation term lambda/alpha is 1.4179654700060258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3119919608432664
the lambda is 0.5374779441241627
the regulation term lambda/alpha is 1.7227301071202037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.303890448280266
the lambda is 0.5018018760628363
the regulation term lambda/alpha is 1.6512591261178584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30085125380275063
the lambda is 0.5274279616150165
the regulation term lambda/alpha is 1.7531187088248534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3376120478475476
the lambda is 0.5401221877317215
the regulation term lambda/alpha is 1.5998309040666094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30387873613386523
the lambda is 0.4743230576160476
the regulation term lambda/alpha is 1.5608958482935704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33681736497204334
the lambda is 0.4886601551912446
the regulation term lambda/alpha is 1.450816394908275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3192787972183773
the lambda is 0.5037170600240591
the regulation term lambda/alpha is 1.5776715034400843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2945126428529294
the lambda is 0.5126180856793232
the regulation term lambda/alpha is 1.7405639388299843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32874811954176614
the lambda is 0.5247349462465297
the regulation term lambda/alpha is 1.5961610578273262
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3366920435512379
the lambda is 0.5302572819994605
the regulation term lambda/alpha is 1.5749029184254122
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.319635000613207
the lambda is 0.5231126365358008
the regulation term lambda/alpha is 1.63659372575666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29056011286346717
the lambda is 0.47208626027610223
the regulation term lambda/alpha is 1.6247455840503935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2706523740185036
the lambda is 0.481065312544644
the regulation term lambda/alpha is 1.7774287563121658
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.363915404672108
the lambda is 0.5593183345464511
the regulation term lambda/alpha is 1.53694602472353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32357970463974867
the lambda is 0.5345609261473193
the regulation term lambda/alpha is 1.652022418224476
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3057261747439283
the lambda is 0.5069646633235874
the regulation term lambda/alpha is 1.6582311401639502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34192887175802883
the lambda is 0.5389643958450446
the regulation term lambda/alpha is 1.5762471097393933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3116137304611468
the lambda is 0.5610781829962761
the regulation term lambda/alpha is 1.8005566769023789
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3054057808470609
the lambda is 0.47298658987386155
the regulation term lambda/alpha is 1.5487152488142348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3368534689882854
the lambda is 0.5386999004057087
the regulation term lambda/alpha is 1.5992113782400823
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3352500502607853
the lambda is 0.49676262146584466
the regulation term lambda/alpha is 1.4817674779747878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3184418854714672
the lambda is 0.4898326183332844
the regulation term lambda/alpha is 1.5382166752594928
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33098587037291594
the lambda is 0.5345201648852399
the regulation term lambda/alpha is 1.6149334842692997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33475525915572757
the lambda is 0.5164072814948029
the regulation term lambda/alpha is 1.5426412800719318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.323975881116724
the lambda is 0.605432113769114
the regulation term lambda/alpha is 1.868756747206701
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29897797655227204
the lambda is 0.5267199486717619
the regulation term lambda/alpha is 1.7617349436428218
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30326043081588294
the lambda is 0.49396503517743984
the regulation term lambda/alpha is 1.6288476338587623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32521467399888493
the lambda is 0.537804512292231
the regulation term lambda/alpha is 1.6536907934667027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29769865059282713
the lambda is 0.4836786990861563
the regulation term lambda/alpha is 1.624725870013098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35323565329891554
the lambda is 0.49156207735238117
the regulation term lambda/alpha is 1.3915981378482507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3188605470968678
the lambda is 0.5689994979277917
the regulation term lambda/alpha is 1.7844775815269907
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3141962614062203
the lambda is 0.5626322892551783
the regulation term lambda/alpha is 1.7907033226208833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3562312189291262
the lambda is 0.559182222981562
the regulation term lambda/alpha is 1.569717063716456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34079809506223513
the lambda is 0.5230599052656704
the regulation term lambda/alpha is 1.5348087704837416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34152658094045
the lambda is 0.5034002165951394
the regulation term lambda/alpha is 1.473970825957217
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31414143526721755
the lambda is 0.4805973179681002
the regulation term lambda/alpha is 1.5298756038320465
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30699434638424017
the lambda is 0.500387785005028
the regulation term lambda/alpha is 1.6299576552420703
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3656088032519571
the lambda is 0.6169464927396286
the regulation term lambda/alpha is 1.6874497748744406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2854440847744106
the lambda is 0.4910752156754139
the regulation term lambda/alpha is 1.7203902335671653
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2927471202663533
the lambda is 0.4912443107546384
the regulation term lambda/alpha is 1.678050019100732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.267351794629127
the lambda is 0.48547064872997503
the regulation term lambda/alpha is 1.8158495977310518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3270044284388673
the lambda is 0.5391115835063741
the regulation term lambda/alpha is 1.6486369499034468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31569505437334455
the lambda is 0.5074320015763197
the regulation term lambda/alpha is 1.6073485933556149
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34865312167982593
the lambda is 0.5503365180344534
the regulation term lambda/alpha is 1.5784643355060413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33584252615906196
the lambda is 0.5875712508559191
the regulation term lambda/alpha is 1.7495439233851915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33921802134140167
the lambda is 0.518454529363031
the regulation term lambda/alpha is 1.5283814442194363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3518873179226891
the lambda is 0.49283759246293934
the regulation term lambda/alpha is 1.4005551418344024
840
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3387630830082294
the lambda is 0.5415879917519398
the regulation term lambda/alpha is 1.5987219945651023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36761866725486475
the lambda is 0.5400588245277576
the regulation term lambda/alpha is 1.469073452010919
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3546966442048599
the lambda is 0.5443860114651269
the regulation term lambda/alpha is 1.5347932391226946
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35232104747848886
the lambda is 0.5088451443910356
the regulation term lambda/alpha is 1.4442655300691434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2974943767267433
the lambda is 0.4651374029981087
the regulation term lambda/alpha is 1.5635166221153487
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3028736747639064
the lambda is 0.49995509957032386
the regulation term lambda/alpha is 1.650705033905785
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2919732884350822
the lambda is 0.5344399083780028
the regulation term lambda/alpha is 1.8304411038506045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3027003868601253
the lambda is 0.4845461272242159
the regulation term lambda/alpha is 1.6007449883046223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2781624621559158
the lambda is 0.5157703490785451
the regulation term lambda/alpha is 1.8542054347701498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38566779361697046
the lambda is 0.5646635809480997
the regulation term lambda/alpha is 1.464119094966225
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33756143323038706
the lambda is 0.5088158427747315
the regulation term lambda/alpha is 1.507328126633064
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30624664018449665
the lambda is 0.5004886785132544
the regulation term lambda/alpha is 1.6342666754212802
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3279120636358762
the lambda is 0.5168043304006676
the regulation term lambda/alpha is 1.5760454942412345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3153438841023137
the lambda is 0.4641884453768006
the regulation term lambda/alpha is 1.4720071286563914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34193766082614646
the lambda is 0.5412132012747434
the regulation term lambda/alpha is 1.582783247587097
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2990657467566309
the lambda is 0.5161302669625227
the regulation term lambda/alpha is 1.7258086977862137
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30901540166487357
the lambda is 0.49783483333393463
the regulation term lambda/alpha is 1.6110356657039226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3738277499860034
the lambda is 0.5136567107174115
the regulation term lambda/alpha is 1.3740464979837466
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3473087357316231
the lambda is 0.5103084597744351
the regulation term lambda/alpha is 1.4693222694195842
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3301912935301569
the lambda is 0.512712693332901
the regulation term lambda/alpha is 1.5527747199248128
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30765331533734336
the lambda is 0.5241699338287142
the regulation term lambda/alpha is 1.7037681952296186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33140285390339913
the lambda is 0.5177546379238485
the regulation term lambda/alpha is 1.562311947002029
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29894418784735016
the lambda is 0.4969439334012241
the regulation term lambda/alpha is 1.6623301392130712
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27435684748272
the lambda is 0.4992612791504311
the regulation term lambda/alpha is 1.8197514796195362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32128650913187073
the lambda is 0.5257800618840361
the regulation term lambda/alpha is 1.6364834717296888
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3042876934025605
the lambda is 0.5037475355862038
the regulation term lambda/alpha is 1.655497565324687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31605096759025186
the lambda is 0.4835829263492289
the regulation term lambda/alpha is 1.530078930105273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32483381965565267
the lambda is 0.476981402852498
the regulation term lambda/alpha is 1.4683859068557972
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31045224279926403
the lambda is 0.49463883265399444
the regulation term lambda/alpha is 1.5932847776971095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3295176644842561
the lambda is 0.5222641791461827
the regulation term lambda/alpha is 1.584935302219999
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32908172841776
the lambda is 0.5245627883432743
the regulation term lambda/alpha is 1.5940197921817056
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35712460703256194
the lambda is 0.5648525215349894
the regulation term lambda/alpha is 1.5816678840153047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29929726773679555
the lambda is 0.46005220347621856
the regulation term lambda/alpha is 1.5371079293673746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32324852597789433
the lambda is 0.5286355895193395
the regulation term lambda/alpha is 1.635384377763538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3262057679009267
the lambda is 0.5517843258237972
the regulation term lambda/alpha is 1.6915222847665339
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3497753045909665
the lambda is 0.5110942265606618
the regulation term lambda/alpha is 1.4612072946611956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3075502672652249
the lambda is 0.5759192602758758
the regulation term lambda/alpha is 1.87260204777912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2943475346546793
the lambda is 0.5071804854843399
the regulation term lambda/alpha is 1.7230668708652532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29621326000847964
the lambda is 0.5346984648699772
the regulation term lambda/alpha is 1.8051131973452859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32839036122981663
the lambda is 0.49223628999911656
the regulation term lambda/alpha is 1.4989364735179789
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.322664576078023
the lambda is 0.5223553415159679
the regulation term lambda/alpha is 1.618880348953019
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30089967950083957
the lambda is 0.5055080105296003
the regulation term lambda/alpha is 1.6799885309555134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196289884273123
the lambda is 0.5438831841572033
the regulation term lambda/alpha is 1.7016078135881885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31293540224187627
the lambda is 0.4653547094142622
the regulation term lambda/alpha is 1.4870631640921756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26392030351719464
the lambda is 0.41763116085024704
the regulation term lambda/alpha is 1.582413915430489
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073031518696232
the lambda is 0.4874133818403771
the regulation term lambda/alpha is 1.5860995205384931
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37502926846717216
the lambda is 0.5326534918273103
the regulation term lambda/alpha is 1.4202984583160223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3706124895588014
the lambda is 0.5575529151363823
the regulation term lambda/alpha is 1.5044094056304622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2748042840409958
the lambda is 0.5263863999253429
the regulation term lambda/alpha is 1.9154956108574186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3237735691806807
the lambda is 0.53958752706183
the regulation term lambda/alpha is 1.6665582938943206
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176564589859153
the lambda is 0.5032314879890506
the regulation term lambda/alpha is 1.584200395595808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3172704602285348
the lambda is 0.5324848863568408
the regulation term lambda/alpha is 1.6783311184195457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.323787794903741
the lambda is 0.5096071905149381
the regulation term lambda/alpha is 1.5738925263271255
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3201489309485879
the lambda is 0.4904598008997628
the regulation term lambda/alpha is 1.5319738830504634
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3155770801194349
the lambda is 0.5181267598859282
the regulation term lambda/alpha is 1.641839007097205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2782852050750412
the lambda is 0.43396027762985445
the regulation term lambda/alpha is 1.5594083685219076
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3106549044180425
the lambda is 0.49559665353913124
the regulation term lambda/alpha is 1.5953285993264605
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29381538123881296
the lambda is 0.490408842102877
the regulation term lambda/alpha is 1.6691054091013466
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3304645946354655
the lambda is 0.5062849763611869
the regulation term lambda/alpha is 1.5320399963562459
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31229065483684626
the lambda is 0.4858388204114562
the regulation term lambda/alpha is 1.5557264134761855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.315749895550901
the lambda is 0.506927298714425
the regulation term lambda/alpha is 1.6054709941549448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36165496694421456
the lambda is 0.574336644197227
the regulation term lambda/alpha is 1.5880789611436987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3470458947522834
the lambda is 0.4984174591878021
the regulation term lambda/alpha is 1.436171603596019
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3028364509437104
the lambda is 0.49998728496984424
the regulation term lambda/alpha is 1.651014213816616
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3204964512191908
the lambda is 0.4607349993415521
the regulation term lambda/alpha is 1.4375666176298805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32860092651991857
the lambda is 0.5191827839902066
the regulation term lambda/alpha is 1.5799796716602856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2878518090018394
the lambda is 0.4935773129363257
the regulation term lambda/alpha is 1.7146924129046266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30642878028008996
the lambda is 0.5267346466684878
the regulation term lambda/alpha is 1.7189463933088405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3270191248217876
the lambda is 0.5206327660971164
the regulation term lambda/alpha is 1.59205601929502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3029808650229908
the lambda is 0.5194938059131176
the regulation term lambda/alpha is 1.714609290173151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3031652728073686
the lambda is 0.4824826322499046
the regulation term lambda/alpha is 1.591483839102094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30429906460651723
the lambda is 0.4879473782627013
the regulation term lambda/alpha is 1.6035125802757753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3151746263898389
the lambda is 0.5235368736035371
the regulation term lambda/alpha is 1.661100957270511
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3360792209796228
the lambda is 0.4818842612894264
the regulation term lambda/alpha is 1.433841282673778
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3269697539972726
the lambda is 0.5213461245436698
the regulation term lambda/alpha is 1.5944781380237958
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31849733402580205
the lambda is 0.5338222827223411
the regulation term lambda/alpha is 1.6760651524922818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33908582456651054
the lambda is 0.5190494168924414
the regulation term lambda/alpha is 1.5307316888165334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2875123389519999
the lambda is 0.5190756972912165
the regulation term lambda/alpha is 1.8054032017661545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2583027303511209
the lambda is 0.5077943642408216
the regulation term lambda/alpha is 1.9658884888694637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31391772208603286
the lambda is 0.49334857890830885
the regulation term lambda/alpha is 1.5715856232325134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26368200148997173
the lambda is 0.4969337905254889
the regulation term lambda/alpha is 1.8845950338570536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3398819286204781
the lambda is 0.506584654213325
the regulation term lambda/alpha is 1.490472459861177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156673169710652
the lambda is 0.5528837453848052
the regulation term lambda/alpha is 1.7514760498169781
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32358242498973394
the lambda is 0.5098384652258704
the regulation term lambda/alpha is 1.5756061697171768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2773971984011928
the lambda is 0.4811258802237612
the regulation term lambda/alpha is 1.7344294859385008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3066392583980025
the lambda is 0.520080087362885
the regulation term lambda/alpha is 1.6960649138012425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30146981794059113
the lambda is 0.5277537296951768
the regulation term lambda/alpha is 1.7506022105309993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3313374434918163
the lambda is 0.5019973233449451
the regulation term lambda/alpha is 1.5150636706030596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2835485606100928
the lambda is 0.5482268227122729
the regulation term lambda/alpha is 1.933449499911723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32791900912139316
the lambda is 0.516640011324963
the regulation term lambda/alpha is 1.575511016300085
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35285763300636885
the lambda is 0.577598472850517
the regulation term lambda/alpha is 1.636916475149885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3114527796431699
the lambda is 0.5331675950052012
the regulation term lambda/alpha is 1.7118729703297204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2924475911432167
the lambda is 0.520778700337702
the regulation term lambda/alpha is 1.7807590696914564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31961838761829797
the lambda is 0.532427736720771
the regulation term lambda/alpha is 1.6658232359166367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34455411916912954
the lambda is 0.5212393164124823
the regulation term lambda/alpha is 1.5127937453466467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087441372879313
the lambda is 0.5221827891119293
the regulation term lambda/alpha is 1.691312404176755
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3221083117329181
the lambda is 0.5299666208000174
the regulation term lambda/alpha is 1.6453056363210175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30045942688112964
the lambda is 0.5061481126242627
the regulation term lambda/alpha is 1.6845805700897827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30048679529515926
the lambda is 0.5021125269428038
the regulation term lambda/alpha is 1.670996978251885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32014172723514195
the lambda is 0.4877457570361626
the regulation term lambda/alpha is 1.5235307226224735
850
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2919746133114065
the lambda is 0.5514045231979469
the regulation term lambda/alpha is 1.888535845442989
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3225435755192784
the lambda is 0.5013947651999351
the regulation term lambda/alpha is 1.5545024091480213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2988131652908706
the lambda is 0.5426161446831226
the regulation term lambda/alpha is 1.8159044102187714
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34062877103184974
the lambda is 0.5507609624220671
the regulation term lambda/alpha is 1.6168950166883271
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3365911636828122
the lambda is 0.5600033080146078
the regulation term lambda/alpha is 1.6637492852971292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32522440061080343
the lambda is 0.5011144894166654
the regulation term lambda/alpha is 1.5408268520920418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3457146732850983
the lambda is 0.4845505851801462
the regulation term lambda/alpha is 1.401591030475455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32185278076122803
the lambda is 0.44954632365391334
the regulation term lambda/alpha is 1.3967451907380504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33895325620754124
the lambda is 0.5352968807786788
the regulation term lambda/alpha is 1.5792646064769362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089994534096662
the lambda is 0.5385495737411321
the regulation term lambda/alpha is 1.7428819624063614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34081873311634897
the lambda is 0.5333471974259334
the regulation term lambda/alpha is 1.5648998884220924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3289611864642104
the lambda is 0.5030948153076001
the regulation term lambda/alpha is 1.529343995609448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2955911604305339
the lambda is 0.4930053369423465
the regulation term lambda/alpha is 1.6678622467068205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3149685949911436
the lambda is 0.553466675833
the regulation term lambda/alpha is 1.7572122574587559
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34614392603021576
the lambda is 0.5370735404671768
the regulation term lambda/alpha is 1.5515902492545668
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32092751086555893
the lambda is 0.4815970642697055
the regulation term lambda/alpha is 1.5006412599867553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28672437114401905
the lambda is 0.46188388977085765
the regulation term lambda/alpha is 1.6108986059606965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31995907348413877
the lambda is 0.4964947738943909
the regulation term lambda/alpha is 1.5517446293611783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3313732212630159
the lambda is 0.5689436735198562
the regulation term lambda/alpha is 1.7169271293297328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3365161211331664
the lambda is 0.5299790671882123
the regulation term lambda/alpha is 1.5748994889266792
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32675169088980477
the lambda is 0.4886539220707157
the regulation term lambda/alpha is 1.4954901097528261
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30499059847674215
the lambda is 0.519828733165477
the regulation term lambda/alpha is 1.7044090400219922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38551550910402765
the lambda is 0.5500031037354458
the regulation term lambda/alpha is 1.4266692020087648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.318372077009195
the lambda is 0.5233477677989001
the regulation term lambda/alpha is 1.643824335083837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.307387610401866
the lambda is 0.5349867640896404
the regulation term lambda/alpha is 1.7404304727513922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3138313390193881
the lambda is 0.4722620608714264
the regulation term lambda/alpha is 1.5048276005419927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3168566616166677
the lambda is 0.43525220915326257
the regulation term lambda/alpha is 1.3736564884970903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3110648371735801
the lambda is 0.5089479867561704
the regulation term lambda/alpha is 1.6361475999042854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33407796999133893
the lambda is 0.47682410308138423
the regulation term lambda/alpha is 1.4272838855364993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3505186382528827
the lambda is 0.5200211450048245
the regulation term lambda/alpha is 1.4835763016677412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3255093564400475
the lambda is 0.48905447413725645
the regulation term lambda/alpha is 1.5024283156890783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33149402101087777
the lambda is 0.5052424094299858
the regulation term lambda/alpha is 1.5241373219621555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3321978453420785
the lambda is 0.5256467733427805
the regulation term lambda/alpha is 1.5823304717750328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3118701193895938
the lambda is 0.5111690308325978
the regulation term lambda/alpha is 1.6390445863588368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33054121944557785
the lambda is 0.515406645451099
the regulation term lambda/alpha is 1.5592810068154253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2901227734286105
the lambda is 0.5140998177923344
the regulation term lambda/alpha is 1.7720078011002371
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3586220102387892
the lambda is 0.5243255390754388
the regulation term lambda/alpha is 1.462056215474102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30983269464358437
the lambda is 0.48806706316398557
the regulation term lambda/alpha is 1.575260040666247
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3340310885926596
the lambda is 0.4847044552731583
the regulation term lambda/alpha is 1.4510758783420907
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298639141361403
the lambda is 0.5190966073576581
the regulation term lambda/alpha is 1.7382068706441425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3482664022797282
the lambda is 0.5570944601341735
the regulation term lambda/alpha is 1.5996216014162463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2917011745660243
the lambda is 0.5026696405545866
the regulation term lambda/alpha is 1.723234886874997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31779522130251875
the lambda is 0.5293373008336681
the regulation term lambda/alpha is 1.665655319372396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3655426299431302
the lambda is 0.5088047831012792
the regulation term lambda/alpha is 1.3919164043341188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156784477094077
the lambda is 0.5211899364144144
the regulation term lambda/alpha is 1.6510152663136088
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3169297598064593
the lambda is 0.4931144092285708
the regulation term lambda/alpha is 1.5559107151367004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28934690658692575
the lambda is 0.48543343761414265
the regulation term lambda/alpha is 1.677686633460892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2723882903073956
the lambda is 0.5009160844313446
the regulation term lambda/alpha is 1.83897804074489
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31533890707747264
the lambda is 0.5062132033701774
the regulation term lambda/alpha is 1.6052989085987117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3449177366520523
the lambda is 0.5286625848711209
the regulation term lambda/alpha is 1.5327207872885575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2792109141999159
the lambda is 0.49489154957967696
the regulation term lambda/alpha is 1.7724649159858166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29853695011336884
the lambda is 0.5416275712300651
the regulation term lambda/alpha is 1.8142731444947873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073932174134443
the lambda is 0.5207071117323918
the regulation term lambda/alpha is 1.6939447009074375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3455837368447535
the lambda is 0.5275974536858182
the regulation term lambda/alpha is 1.526684844902961
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32474519200303736
the lambda is 0.4977990579783761
the regulation term lambda/alpha is 1.5328912336097655
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33913796193832013
the lambda is 0.5383238601545605
the regulation term lambda/alpha is 1.5873299971427757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32619339880312037
the lambda is 0.501308912808047
the regulation term lambda/alpha is 1.5368456708427156
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35739842004365396
the lambda is 0.5198662220194578
the regulation term lambda/alpha is 1.4545845556786718
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3099343504764929
the lambda is 0.5245391624516497
the regulation term lambda/alpha is 1.6924202226865896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31509428668963857
the lambda is 0.5025924189515307
the regulation term lambda/alpha is 1.595054052651148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36307726200371326
the lambda is 0.500471443624163
the regulation term lambda/alpha is 1.3784158249464946
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3424355927930487
the lambda is 0.5568711509462277
the regulation term lambda/alpha is 1.6262069792574787
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128100933205934
the lambda is 0.5835962534667626
the regulation term lambda/alpha is 1.865656722491513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33693561392470034
the lambda is 0.5482150746298806
the regulation term lambda/alpha is 1.6270618241988448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2993807909165046
the lambda is 0.5353487246669574
the regulation term lambda/alpha is 1.7881866202172694
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3440796472741034
the lambda is 0.5287990110578537
the regulation term lambda/alpha is 1.5368505962126777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3911347767054717
the lambda is 0.5124033999811207
the regulation term lambda/alpha is 1.3100430605968987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3240603253868505
the lambda is 0.5009007656999809
the regulation term lambda/alpha is 1.5457022241214664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36746903988892643
the lambda is 0.5403329136283165
the regulation term lambda/alpha is 1.4704175181442252
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3074934384788972
the lambda is 0.4844346632669749
the regulation term lambda/alpha is 1.5754308959025831
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3004586683181651
the lambda is 0.48919831354924986
the regulation term lambda/alpha is 1.6281717425147557
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3543174597882364
the lambda is 0.5191324526288392
the regulation term lambda/alpha is 1.4651619283427555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31351492845281714
the lambda is 0.502494181511144
the regulation term lambda/alpha is 1.6027759315670596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33190368722314073
the lambda is 0.5047613399872898
the regulation term lambda/alpha is 1.5208066659649246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087866623718888
the lambda is 0.5179405929636189
the regulation term lambda/alpha is 1.6773412069846285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30271359804687675
the lambda is 0.5358477588384858
the regulation term lambda/alpha is 1.770147632269585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30231671742079913
the lambda is 0.563244550566328
the regulation term lambda/alpha is 1.8630942918791342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3147091430933381
the lambda is 0.5394874622430615
the regulation term lambda/alpha is 1.7142414641669865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2787390499294159
the lambda is 0.4847050830713567
the regulation term lambda/alpha is 1.7389206255603469
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32565351747771554
the lambda is 0.5538913576518959
the regulation term lambda/alpha is 1.7008609700946917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2928079007087035
the lambda is 0.5316544674776124
the regulation term lambda/alpha is 1.81571079943817
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30042923269308486
the lambda is 0.5018603354323845
the regulation term lambda/alpha is 1.670477705959724
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3348098144266252
the lambda is 0.5019623442166458
the regulation term lambda/alpha is 1.4992462066151666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35761036514439726
the lambda is 0.5098908586707763
the regulation term lambda/alpha is 1.425827963529219
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31170573229870585
the lambda is 0.49011955169450844
the regulation term lambda/alpha is 1.572379012987896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32399630808166824
the lambda is 0.5052219798298765
the regulation term lambda/alpha is 1.559344866678319
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30288898967131717
the lambda is 0.47277562750451096
the regulation term lambda/alpha is 1.5608874657924934
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052879815322993
the lambda is 0.5387889367544142
the regulation term lambda/alpha is 1.764854725201197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31023072508371397
the lambda is 0.5435199337639282
the regulation term lambda/alpha is 1.7519861503636123
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3386305734488504
the lambda is 0.5005798173970807
the regulation term lambda/alpha is 1.4782475554372603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35086922892283634
the lambda is 0.5116349732506352
the regulation term lambda/alpha is 1.4581927711966862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2943693998639405
the lambda is 0.4836626014382192
the regulation term lambda/alpha is 1.64304646359904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3316427480113058
the lambda is 0.494017817712759
the regulation term lambda/alpha is 1.4896083833436267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2894624348174916
the lambda is 0.5458016704167112
the regulation term lambda/alpha is 1.8855699557728227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3207915088035462
the lambda is 0.5053648998170169
the regulation term lambda/alpha is 1.575368692587509
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3478926762245799
the lambda is 0.5188183830010574
the regulation term lambda/alpha is 1.4913173471525958
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2847844224990579
the lambda is 0.5147623175738967
the regulation term lambda/alpha is 1.8075508240820286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30125263321141643
the lambda is 0.5133270697755922
the regulation term lambda/alpha is 1.7039753787491172
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31594162876345816
the lambda is 0.5102642215631965
the regulation term lambda/alpha is 1.6150585269826074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31470900758395864
the lambda is 0.5215224917652926
the regulation term lambda/alpha is 1.657157816260343
860
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2875637401410407
the lambda is 0.4810317265201603
the regulation term lambda/alpha is 1.6727829672970238
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26327053335278244
the lambda is 0.5020596702996647
the regulation term lambda/alpha is 1.9070104956520328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2906468089224911
the lambda is 0.49224928210080293
the regulation term lambda/alpha is 1.693633877921139
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32947192971494715
the lambda is 0.5495124557596419
the regulation term lambda/alpha is 1.6678581882076255
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2872517853918296
the lambda is 0.5534031693760205
the regulation term lambda/alpha is 1.9265438807321722
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3326413653799572
the lambda is 0.5205576119678904
the regulation term lambda/alpha is 1.5649214624082823
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34832511213508477
the lambda is 0.5596745730708267
the regulation term lambda/alpha is 1.6067591843730693
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080369984490621
the lambda is 0.5399654410068845
the regulation term lambda/alpha is 1.7529239790205744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35850016061137313
the lambda is 0.5254400914606976
the regulation term lambda/alpha is 1.4656620810563408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26597337972998253
the lambda is 0.48809136802905706
the regulation term lambda/alpha is 1.8351136061983715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080835935258238
the lambda is 0.4932680085022388
the regulation term lambda/alpha is 1.6010849615751859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3477516946893044
the lambda is 0.5906432458914137
the regulation term lambda/alpha is 1.6984625953271588
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31666172014738975
the lambda is 0.5024980500759825
the regulation term lambda/alpha is 1.5868607353048403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3549636603555929
the lambda is 0.5330767429420767
the regulation term lambda/alpha is 1.5017783578410675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3444284527069082
the lambda is 0.49197024868885647
the regulation term lambda/alpha is 1.4283670376892443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2746004801505878
the lambda is 0.4820751428927981
the regulation term lambda/alpha is 1.7555509831171219
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28636910167191143
the lambda is 0.5286793251994314
the regulation term lambda/alpha is 1.8461465364553575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34824693479930513
the lambda is 0.5571418194531897
the regulation term lambda/alpha is 1.5998470159522604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31046623691055786
the lambda is 0.4615088180947649
the regulation term lambda/alpha is 1.4865024380339331
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2998821761883818
the lambda is 0.5165015893804773
the regulation term lambda/alpha is 1.7223484101169726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3595490546004756
the lambda is 0.533321829526531
the regulation term lambda/alpha is 1.4833075562363764
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31632399808210815
the lambda is 0.5340949579134396
the regulation term lambda/alpha is 1.6884427395698405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3099038177173959
the lambda is 0.46282333376641366
the regulation term lambda/alpha is 1.4934418593980228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37388070463656037
the lambda is 0.544813402116845
the regulation term lambda/alpha is 1.457185127128836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30420112031497637
the lambda is 0.5700212219871799
the regulation term lambda/alpha is 1.8738301206680885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3121480090323853
the lambda is 0.5009570529203036
the regulation term lambda/alpha is 1.6048702488066464
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30264855778169936
the lambda is 0.5153925565497708
the regulation term lambda/alpha is 1.7029407320735486
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2877733948582981
the lambda is 0.4750788283867416
the regulation term lambda/alpha is 1.6508782148560819
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3008841354794965
the lambda is 0.5168330771994076
the regulation term lambda/alpha is 1.7177146158795296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30711726989705057
the lambda is 0.5216879282300863
the regulation term lambda/alpha is 1.698660346925337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29922280864168066
the lambda is 0.5235929694746058
the regulation term lambda/alpha is 1.7498431080553367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2895406625098544
the lambda is 0.535371901120927
the regulation term lambda/alpha is 1.8490387377030537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3127034099216986
the lambda is 0.5421842560454054
the regulation term lambda/alpha is 1.7338610288297438
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29714715819315013
the lambda is 0.5138415852555106
the regulation term lambda/alpha is 1.7292495354153978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.291020542128693
the lambda is 0.5074119919584619
the regulation term lambda/alpha is 1.7435607405819409
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3177764815005349
the lambda is 0.5611938434831265
the regulation term lambda/alpha is 1.7660018162237154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3172715793116254
the lambda is 0.4895660378109006
the regulation term lambda/alpha is 1.5430504014040503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33421725041271094
the lambda is 0.5755951633913092
the regulation term lambda/alpha is 1.7222185948826123
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2909008350472124
the lambda is 0.5164581510417307
the regulation term lambda/alpha is 1.775375278513418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30001706572152165
the lambda is 0.537228043146336
the regulation term lambda/alpha is 1.7906582809025788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31520023056395174
the lambda is 0.5384691199451894
the regulation term lambda/alpha is 1.7083398669530419
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.339415992834881
the lambda is 0.542066700561949
the regulation term lambda/alpha is 1.597057039164485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34521074604401
the lambda is 0.5026628303162599
the regulation term lambda/alpha is 1.4561042379954672
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2921253475791063
the lambda is 0.54285882664645
the regulation term lambda/alpha is 1.8583078501924457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3419138636498923
the lambda is 0.5567787727644378
the regulation term lambda/alpha is 1.6284182420124371
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29022936044728825
the lambda is 0.5020358658755306
the regulation term lambda/alpha is 1.7297900705215208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3369077800364249
the lambda is 0.5395659517904331
the regulation term lambda/alpha is 1.6015241670349605
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29786602951707475
the lambda is 0.4697215713523057
the regulation term lambda/alpha is 1.5769558284771763
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3069798867414085
the lambda is 0.5330566511031114
the regulation term lambda/alpha is 1.7364546477670173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3057748188098047
the lambda is 0.5585407389010393
the regulation term lambda/alpha is 1.8266407321410523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31634985185995573
the lambda is 0.544739252109583
the regulation term lambda/alpha is 1.7219519747103673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3292571071170676
the lambda is 0.5217066943835937
the regulation term lambda/alpha is 1.584496380204484
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3603886732040085
the lambda is 0.5145002831827543
the regulation term lambda/alpha is 1.4276261199016829
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3096649268911123
the lambda is 0.5261818630956375
the regulation term lambda/alpha is 1.6991974789597637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29979091943947705
the lambda is 0.4806656362934889
the regulation term lambda/alpha is 1.6033362090893069
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32830447315075095
the lambda is 0.5005583524722079
the regulation term lambda/alpha is 1.5246772231530374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34890544581053806
the lambda is 0.5324210273641911
the regulation term lambda/alpha is 1.5259751137656512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3070362648505421
the lambda is 0.47015969053084944
the regulation term lambda/alpha is 1.5312839047195677
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3071133137983742
the lambda is 0.5277321682568074
the regulation term lambda/alpha is 1.718363042389213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29739480464023094
the lambda is 0.49702092725568436
the regulation term lambda/alpha is 1.6712495292476552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31043737467903004
the lambda is 0.5210393337132087
the regulation term lambda/alpha is 1.6784040074167161
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3568563352620463
the lambda is 0.5340709789848826
the regulation term lambda/alpha is 1.496599404891339
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3189846198162533
the lambda is 0.5482155246966884
the regulation term lambda/alpha is 1.7186268259970667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3217390427658866
the lambda is 0.5396949428962572
the regulation term lambda/alpha is 1.677430684994504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3298234407849217
the lambda is 0.5390328492267119
the regulation term lambda/alpha is 1.6343072764746758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.313532736912688
the lambda is 0.5261567168777468
the regulation term lambda/alpha is 1.6781555956763452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29536715131574903
the lambda is 0.5158968179079101
the regulation term lambda/alpha is 1.7466289518309153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31720498574109923
the lambda is 0.5516330957207348
the regulation term lambda/alpha is 1.7390429549268636
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30179767684055064
the lambda is 0.5119089413073178
the regulation term lambda/alpha is 1.696199078357305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36442139475202306
the lambda is 0.5552832157715443
the regulation term lambda/alpha is 1.5237393406866149
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32561304698078797
the lambda is 0.5414884654746727
the regulation term lambda/alpha is 1.6629814760052348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.303934252457371
the lambda is 0.5577459680741191
the regulation term lambda/alpha is 1.835087567671719
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3095687952507176
the lambda is 0.49743481223155245
the regulation term lambda/alpha is 1.6068635465298866
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3538985964875186
the lambda is 0.518903462975847
the regulation term lambda/alpha is 1.4662489993631491
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30088185758013863
the lambda is 0.4949418996643651
the regulation term lambda/alpha is 1.6449708986941474
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32538472870419444
the lambda is 0.5237808225854583
the regulation term lambda/alpha is 1.6097277357525428
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.304404836899162
the lambda is 0.49906300496067757
the regulation term lambda/alpha is 1.639471337066824
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3416582553753073
the lambda is 0.5802029717024196
the regulation term lambda/alpha is 1.698196846041592
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30903064354431464
the lambda is 0.4680989860114694
the regulation term lambda/alpha is 1.5147332337103472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27713937927358706
the lambda is 0.49027152304689176
the regulation term lambda/alpha is 1.7690431591928495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28970663290741044
the lambda is 0.48094115867822296
the regulation term lambda/alpha is 1.6600971605366406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3068670882501789
the lambda is 0.5190819194283031
the regulation term lambda/alpha is 1.6915529208043067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33459452264740114
the lambda is 0.5494441858981011
the regulation term lambda/alpha is 1.642119487045849
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34438524143850047
the lambda is 0.5057410187170596
the regulation term lambda/alpha is 1.4685327878876995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3571166247774947
the lambda is 0.510404030230446
the regulation term lambda/alpha is 1.4292362629391973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3633635610017286
the lambda is 0.4935093768581715
the regulation term lambda/alpha is 1.3581696951055138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34868575916438993
the lambda is 0.5560997744450005
the regulation term lambda/alpha is 1.5948451000054293
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30307176401974684
the lambda is 0.4909750959852332
the regulation term lambda/alpha is 1.6199961668261627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2629900466393161
the lambda is 0.4910275015148927
the regulation term lambda/alpha is 1.8670953817059244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3177100655015186
the lambda is 0.5428345738365593
the regulation term lambda/alpha is 1.708584753144891
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38479818657296205
the lambda is 0.5006419492374102
the regulation term lambda/alpha is 1.3010506980195524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3513005133223554
the lambda is 0.5257303460609118
the regulation term lambda/alpha is 1.49652598309328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28888884635503903
the lambda is 0.5327351874755704
the regulation term lambda/alpha is 1.8440836127707356
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28362639241906934
the lambda is 0.5513985307031208
the regulation term lambda/alpha is 1.9441016260870654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35473025097269084
the lambda is 0.4754071200940658
the regulation term lambda/alpha is 1.3401933406876692
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3383925174253914
the lambda is 0.5436746216471003
the regulation term lambda/alpha is 1.6066390172677782
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31703375582442267
the lambda is 0.5485087521240276
the regulation term lambda/alpha is 1.7301272878582643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3594228101234888
the lambda is 0.5423874495323231
the regulation term lambda/alpha is 1.509051274030082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3142651488949621
the lambda is 0.4944163926281079
the regulation term lambda/alpha is 1.5732460133317498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29518331829430233
the lambda is 0.49944367804996537
the regulation term lambda/alpha is 1.6919779916289588
870
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30997372926981304
the lambda is 0.5521143023174475
the regulation term lambda/alpha is 1.7811648219932408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30276636014572034
the lambda is 0.49092512832852314
the regulation term lambda/alpha is 1.6214652383846166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34064612037465747
the lambda is 0.5225614676994538
the regulation term lambda/alpha is 1.5340302925649583
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29168265606921606
the lambda is 0.5306701471311059
the regulation term lambda/alpha is 1.8193407667172996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32313319526365963
the lambda is 0.5082870895162624
the regulation term lambda/alpha is 1.5729955849987094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3310610752421937
the lambda is 0.500478003573876
the regulation term lambda/alpha is 1.511739195578164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3078163966855454
the lambda is 0.48933735117432264
the regulation term lambda/alpha is 1.5897052803012726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.314526581750583
the lambda is 0.5257480891498861
the regulation term lambda/alpha is 1.6715537561998497
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3249738466891781
the lambda is 0.5278070171587347
the regulation term lambda/alpha is 1.6241522895950355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2960208036107058
the lambda is 0.5084730931152378
the regulation term lambda/alpha is 1.7176937800085361
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33224512491318936
the lambda is 0.4807266335800011
the regulation term lambda/alpha is 1.446903498450452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3154314305666968
the lambda is 0.48295325861971466
the regulation term lambda/alpha is 1.5310879380410887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.363403698609027
the lambda is 0.5229354858791447
the regulation term lambda/alpha is 1.4389932955573803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30375378865173847
the lambda is 0.47679119133743236
the regulation term lambda/alpha is 1.5696633561469278
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29639518391700154
the lambda is 0.45669053560115225
the regulation term lambda/alpha is 1.5408163168030342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33344264706758636
the lambda is 0.49849604403267816
the regulation term lambda/alpha is 1.4949978607014738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33371555775533207
the lambda is 0.5094025210472481
the regulation term lambda/alpha is 1.5264572154610883
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3216661471535677
the lambda is 0.5294927562144083
the regulation term lambda/alpha is 1.646094128648301
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3123097724739579
the lambda is 0.5355195242799394
the regulation term lambda/alpha is 1.7147062675555371
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3513894684757616
the lambda is 0.5220776177591884
the regulation term lambda/alpha is 1.4857520346976496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29903642090583515
the lambda is 0.508678049214691
the regulation term lambda/alpha is 1.701057174486685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.329758510145711
the lambda is 0.5002354601535761
the regulation term lambda/alpha is 1.5169751341141617
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33631782241545577
the lambda is 0.5108460814703251
the regulation term lambda/alpha is 1.5189384784945275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.352723454750633
the lambda is 0.5222832197694534
the regulation term lambda/alpha is 1.4807158773682771
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.357767868155969
the lambda is 0.545504598735262
the regulation term lambda/alpha is 1.5247445265192154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3427064827693535
the lambda is 0.482765473322909
the regulation term lambda/alpha is 1.408684975614591
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34499180931462464
the lambda is 0.5108343756110381
the regulation term lambda/alpha is 1.4807145034135254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3187484074834007
the lambda is 0.5439141052149883
the regulation term lambda/alpha is 1.706405718257003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3023679303627296
the lambda is 0.4607804281132799
the regulation term lambda/alpha is 1.5239064128279542
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30021002461800694
the lambda is 0.5157248461224192
the regulation term lambda/alpha is 1.717880163324451
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3079246413449766
the lambda is 0.536543022080046
the regulation term lambda/alpha is 1.7424491256577996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32782724085046294
the lambda is 0.5410918313618746
the regulation term lambda/alpha is 1.650539564552817
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3538513796697338
the lambda is 0.5288340942013359
the regulation term lambda/alpha is 1.4945090639322127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29158420408136276
the lambda is 0.49958571699194704
the regulation term lambda/alpha is 1.7133497288232533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2983120107842556
the lambda is 0.5010224042145999
the regulation term lambda/alpha is 1.6795247462461305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3118072446738175
the lambda is 0.4948419530502326
the regulation term lambda/alpha is 1.5870123658219946
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3362660596360302
the lambda is 0.4936874347347708
the regulation term lambda/alpha is 1.4681452991988884
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31168891596554205
the lambda is 0.48663458470111604
the regulation term lambda/alpha is 1.5612829323546258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3153723718105736
the lambda is 0.46940457351207515
the regulation term lambda/alpha is 1.488413746636056
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2972272752723339
the lambda is 0.5120334818517704
the regulation term lambda/alpha is 1.7227001841692382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233323264191058
the lambda is 0.5293241667568457
the regulation term lambda/alpha is 1.637090149998586
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.304179100396128
the lambda is 0.49903819690588946
the regulation term lambda/alpha is 1.6406064593392489
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29825283541554604
the lambda is 0.5485829330671005
the regulation term lambda/alpha is 1.8393217697420299
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2972660075848489
the lambda is 0.5572979102337177
the regulation term lambda/alpha is 1.8747448279119086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3831505628705649
the lambda is 0.5648251412676916
the regulation term lambda/alpha is 1.4741597585972999
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31374223606120977
the lambda is 0.48404086455477296
the regulation term lambda/alpha is 1.5427979051578464
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36835371924978755
the lambda is 0.5379117155767333
the regulation term lambda/alpha is 1.4603129749097643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3118092889492166
the lambda is 0.5881928443962459
the regulation term lambda/alpha is 1.8863865357521243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34456455352629894
the lambda is 0.5046785003017129
the regulation term lambda/alpha is 1.4646849048655646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28918696650330006
the lambda is 0.5222458472793152
the regulation term lambda/alpha is 1.8059107351691648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35562579389841525
the lambda is 0.5913111884990752
the regulation term lambda/alpha is 1.662734252251634
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2600743149554674
the lambda is 0.5079029819867604
the regulation term lambda/alpha is 1.9529148123440363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30994640817659985
the lambda is 0.49915759507336527
the regulation term lambda/alpha is 1.6104642025370965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3536341787082852
the lambda is 0.5394607395265492
the regulation term lambda/alpha is 1.5254768119332531
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3260349205819838
the lambda is 0.5534170810365995
the regulation term lambda/alpha is 1.6974165836246329
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31010538559644873
the lambda is 0.5328869803630004
the regulation term lambda/alpha is 1.7184060810103614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3586976637710389
the lambda is 0.5390023268773178
the regulation term lambda/alpha is 1.5026647266411233
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3070797027611009
the lambda is 0.5149966289878025
the regulation term lambda/alpha is 1.6770780496308313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2933106683591645
the lambda is 0.4997390733498838
the regulation term lambda/alpha is 1.703787578356829
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159091693532263
the lambda is 0.5149467164961045
the regulation term lambda/alpha is 1.630046755370779
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30273421291096475
the lambda is 0.5069115136917446
the regulation term lambda/alpha is 1.6744440901393234
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31697524831585444
the lambda is 0.5319486964926174
the regulation term lambda/alpha is 1.678202633546168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2990622283230651
the lambda is 0.5161760323813553
the regulation term lambda/alpha is 1.7259820314846004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3388024629079962
the lambda is 0.5241072136766713
the regulation term lambda/alpha is 1.546940388739133
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3342234613743133
the lambda is 0.5091190014466113
the regulation term lambda/alpha is 1.5232892369468456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2735386805748442
the lambda is 0.4961232881904962
the regulation term lambda/alpha is 1.8137226045979613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246284551286765
the lambda is 0.5904255054440303
the regulation term lambda/alpha is 1.8187731115868968
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35281131998211374
the lambda is 0.4582842951728073
the regulation term lambda/alpha is 1.2989500880981955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32513095953588117
the lambda is 0.49589663182287974
the regulation term lambda/alpha is 1.5252211986541166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2903238087058469
the lambda is 0.46443676878898676
the regulation term lambda/alpha is 1.5997198812569635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3454126613323823
the lambda is 0.5312240602920253
the regulation term lambda/alpha is 1.5379403240254739
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300549695567498
the lambda is 0.5595470304198474
the regulation term lambda/alpha is 1.6953146658306524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33705072170127137
the lambda is 0.5556733319481828
the regulation term lambda/alpha is 1.648634155546111
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36875318790201067
the lambda is 0.5908271290497925
the regulation term lambda/alpha is 1.6022292103052784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2994226014182072
the lambda is 0.5726099774921313
the regulation term lambda/alpha is 1.9123806111495234
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37491582004976015
the lambda is 0.5164328298855352
the regulation term lambda/alpha is 1.3774634258351446
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32141076282129394
the lambda is 0.4708817331051374
the regulation term lambda/alpha is 1.4650465621369069
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3411312017945285
the lambda is 0.5052810803349416
the regulation term lambda/alpha is 1.481192801118452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29759448709140657
the lambda is 0.4777055729285466
the regulation term lambda/alpha is 1.6052231934720573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31943783354493954
the lambda is 0.5203278474826548
the regulation term lambda/alpha is 1.6288861019008052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33267375616786443
the lambda is 0.5071469107702989
the regulation term lambda/alpha is 1.5244572238346232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32501779651820817
the lambda is 0.5399605725648758
the regulation term lambda/alpha is 1.6613261745949537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3170339203168995
the lambda is 0.4988838994878856
the regulation term lambda/alpha is 1.5735978629328156
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33274926762836504
the lambda is 0.4688722943138279
the regulation term lambda/alpha is 1.4090858791535898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34080718307363544
the lambda is 0.5488313411344372
the regulation term lambda/alpha is 1.610386659649294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3057729749871702
the lambda is 0.5173572071643608
the regulation term lambda/alpha is 1.6919651162306557
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2905298543842702
the lambda is 0.4842765397124811
the regulation term lambda/alpha is 1.6668735842615032
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3584231235029525
the lambda is 0.4930693966748798
the regulation term lambda/alpha is 1.3756629088435979
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30530011170151844
the lambda is 0.4778461949836592
the regulation term lambda/alpha is 1.565168752544818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3498860889188935
the lambda is 0.5240893565461161
the regulation term lambda/alpha is 1.4978856637755735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29032253754533893
the lambda is 0.5254246408902471
the regulation term lambda/alpha is 1.8097962539618297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3448945520482556
the lambda is 0.4980963680386543
the regulation term lambda/alpha is 1.4441990025083482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3099733233357635
the lambda is 0.5086008033257986
the regulation term lambda/alpha is 1.640788948715053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2975673651707037
the lambda is 0.5212079354884679
the regulation term lambda/alpha is 1.7515628274272268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3031240208202535
the lambda is 0.48585157135736584
the regulation term lambda/alpha is 1.6028144851161963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3102063915997974
the lambda is 0.5285249653589053
the regulation term lambda/alpha is 1.7037848982839927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3206754322386639
the lambda is 0.5226122775200114
the regulation term lambda/alpha is 1.6297234679676216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37037584859588607
the lambda is 0.5060418739109253
the regulation term lambda/alpha is 1.3662928504365393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3321596819040989
the lambda is 0.5819297987939134
the regulation term lambda/alpha is 1.7519579602738422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.354269751816991
the lambda is 0.50105729037039
the regulation term lambda/alpha is 1.4143383334325046
880
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3066783357072644
the lambda is 0.548696021334251
the regulation term lambda/alpha is 1.7891580768783135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33982582424556496
the lambda is 0.4857577057448121
the regulation term lambda/alpha is 1.4294314059951896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3078846199288566
the lambda is 0.4719234405614198
the regulation term lambda/alpha is 1.532793163459961
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34474616045024553
the lambda is 0.5100651932791666
the regulation term lambda/alpha is 1.4795384308646424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31056820656402134
the lambda is 0.5198171125019156
the regulation term lambda/alpha is 1.6737615168433515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3019934201608111
the lambda is 0.5360333388313597
the regulation term lambda/alpha is 1.7749835031038845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34102949513019337
the lambda is 0.48849073404610904
the regulation term lambda/alpha is 1.4324002498951593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33499007387337637
the lambda is 0.5124802790866607
the regulation term lambda/alpha is 1.5298372072969966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3217581576998507
the lambda is 0.5375895476384316
the regulation term lambda/alpha is 1.6707876234793626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089166493727458
the lambda is 0.5021399261914101
the regulation term lambda/alpha is 1.6254867687157797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34612550086512905
the lambda is 0.5129130101832898
the regulation term lambda/alpha is 1.4818700410726195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30124208831811805
the lambda is 0.45218147521080804
the regulation term lambda/alpha is 1.5010567671184605
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3544320990345947
the lambda is 0.5125047594761435
the regulation term lambda/alpha is 1.4459885571089879
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28856241438221547
the lambda is 0.5279522895003059
the regulation term lambda/alpha is 1.829594788464053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3057438500075066
the lambda is 0.5095766616403289
the regulation term lambda/alpha is 1.6666783702364505
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2671094854456412
the lambda is 0.46594060931989795
the regulation term lambda/alpha is 1.7443806180919783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2953537505521656
the lambda is 0.5037768200094337
the regulation term lambda/alpha is 1.705672669020183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137261173616465
the lambda is 0.48796570888197016
the regulation term lambda/alpha is 1.555387587701121
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3739858581883882
the lambda is 0.4953863582272861
the regulation term lambda/alpha is 1.324612541840405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28730059787138107
the lambda is 0.4508851035943105
the regulation term lambda/alpha is 1.5693844946196842
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30411157734126504
the lambda is 0.5283012429074551
the regulation term lambda/alpha is 1.7371954317760516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30171015208440793
the lambda is 0.49499512971384435
the regulation term lambda/alpha is 1.640631335386295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2847262560747687
the lambda is 0.4441352374041647
the regulation term lambda/alpha is 1.5598675145980758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33911518679808267
the lambda is 0.5201925919558064
the regulation term lambda/alpha is 1.5339702030671412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3298324123628368
the lambda is 0.5232013537831292
the regulation term lambda/alpha is 1.5862642183496938
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30150869932575114
the lambda is 0.5261366918847517
the regulation term lambda/alpha is 1.7450133049604368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3454083281593392
the lambda is 0.5184836050265095
the regulation term lambda/alpha is 1.5010744176015625
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3613536835015532
the lambda is 0.52989672596934
the regulation term lambda/alpha is 1.4664212658207547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3326685850030597
the lambda is 0.49591183089347124
the regulation term lambda/alpha is 1.4907083303008914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3494159406230216
the lambda is 0.470769641666658
the regulation term lambda/alpha is 1.347304421278715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2861971911554563
the lambda is 0.5282225800628938
the regulation term lambda/alpha is 1.845659553576731
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2951897069775681
the lambda is 0.4886254767998251
the regulation term lambda/alpha is 1.6552930717091585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27318379895282674
the lambda is 0.5029529185447883
the regulation term lambda/alpha is 1.8410788651183447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236264010268593
the lambda is 0.5219166555357387
the regulation term lambda/alpha is 1.612713467998003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3055692894672559
the lambda is 0.5343697567378264
the regulation term lambda/alpha is 1.7487678741193924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3101625457051346
the lambda is 0.5016925017873584
the regulation term lambda/alpha is 1.6175147796997629
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2953218809761656
the lambda is 0.5447702443017443
the regulation term lambda/alpha is 1.8446660386323044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31166562043055823
the lambda is 0.5350945811556649
the regulation term lambda/alpha is 1.7168867724853487
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31517446026181345
the lambda is 0.5094912750600326
the regulation term lambda/alpha is 1.6165373128165312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3498831316808489
the lambda is 0.5109189290552959
the regulation term lambda/alpha is 1.460255962043172
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35295503577193116
the lambda is 0.5609048654935521
the regulation term lambda/alpha is 1.58916804874826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224234865961576
the lambda is 0.5241599003551397
the regulation term lambda/alpha is 1.6256877124204705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28694120786417043
the lambda is 0.48649425554057923
the regulation term lambda/alpha is 1.6954492495580187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.313084940775103
the lambda is 0.5467171047550864
the regulation term lambda/alpha is 1.746226130843538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37167604530752024
the lambda is 0.5362084630542243
the regulation term lambda/alpha is 1.442676948982741
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3546661583656668
the lambda is 0.5209046445328741
the regulation term lambda/alpha is 1.468718207943067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3425306305778716
the lambda is 0.5504097888930323
the regulation term lambda/alpha is 1.6068921718459308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28882902017811635
the lambda is 0.5329900148217793
the regulation term lambda/alpha is 1.8453478618356725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3112664205114913
the lambda is 0.5243711861878473
the regulation term lambda/alpha is 1.6846378267407378
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3228188229219833
the lambda is 0.501400280578185
the regulation term lambda/alpha is 1.5531940673092661
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047926700724253
the lambda is 0.45663648006438523
the regulation term lambda/alpha is 1.4981872101972749
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3055651365163899
the lambda is 0.48839615418802396
the regulation term lambda/alpha is 1.5983372964468654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3185485342360689
the lambda is 0.5130622393339856
the regulation term lambda/alpha is 1.6106250200283991
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34327361002536316
the lambda is 0.4949881668601479
the regulation term lambda/alpha is 1.4419639389802645
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29324537707131704
the lambda is 0.46445206153330154
the regulation term lambda/alpha is 1.5838342147857531
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2714401925617065
the lambda is 0.446760836596471
the regulation term lambda/alpha is 1.645890508624322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33320762020645234
the lambda is 0.6014975855331207
the regulation term lambda/alpha is 1.8051735586372197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33145839397426813
the lambda is 0.4871007242084888
the regulation term lambda/alpha is 1.4695682265518475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3303233792692739
the lambda is 0.4982463134718748
the regulation term lambda/alpha is 1.5083592162748887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32364866721519203
the lambda is 0.4742827095909212
the regulation term lambda/alpha is 1.465424571872479
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3357143353032837
the lambda is 0.5332173805481824
the regulation term lambda/alpha is 1.588306856382748
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.274268684438135
the lambda is 0.48695469131692337
the regulation term lambda/alpha is 1.7754658805269565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32116654668683625
the lambda is 0.5467106307124386
the regulation term lambda/alpha is 1.702265184068272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29205955699059394
the lambda is 0.5058246785437129
the regulation term lambda/alpha is 1.731923049379971
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29548168625004867
the lambda is 0.4820203602565373
the regulation term lambda/alpha is 1.6313036735841284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28933538208137705
the lambda is 0.4960354861470924
the regulation term lambda/alpha is 1.7143962227460308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2870165573404347
the lambda is 0.5379685792201476
the regulation term lambda/alpha is 1.874346846764157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29158332974051887
the lambda is 0.474552770241033
the regulation term lambda/alpha is 1.6275030903287213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3513864594703879
the lambda is 0.5331747798998403
the regulation term lambda/alpha is 1.5173458325726183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3732797611285682
the lambda is 0.5243985127291522
the regulation term lambda/alpha is 1.4048404637414413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3298392208843431
the lambda is 0.4929908684616945
the regulation term lambda/alpha is 1.494639925294269
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3145870471976836
the lambda is 0.49379875939106926
the regulation term lambda/alpha is 1.5696728895540657
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3272353153865815
the lambda is 0.5525504125602145
the regulation term lambda/alpha is 1.6885415069197394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4041903686225139
the lambda is 0.5675095202235552
the regulation term lambda/alpha is 1.4040649265286431
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30560673004216293
the lambda is 0.5192131233502023
the regulation term lambda/alpha is 1.698958407357617
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211723440328145
the lambda is 0.503049620635184
the regulation term lambda/alpha is 1.566291836708664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2852423623137459
the lambda is 0.4838636614632664
the regulation term lambda/alpha is 1.6963246887257635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3302080344276217
the lambda is 0.5704633793731747
the regulation term lambda/alpha is 1.7275878231188666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32176696746467176
the lambda is 0.49113290873667853
the regulation term lambda/alpha is 1.5263621141924775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.324766506014852
the lambda is 0.5126048159347467
the regulation term lambda/alpha is 1.5783795632894009
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2718467611369487
the lambda is 0.4864283595833422
the regulation term lambda/alpha is 1.7893476366940908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29103905267289865
the lambda is 0.5194194239428639
the regulation term lambda/alpha is 1.7847069634556705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30386867191999284
the lambda is 0.49372062763809954
the regulation term lambda/alpha is 1.6247829186158875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33580393812440273
the lambda is 0.49218861676011394
the regulation term lambda/alpha is 1.465702336634827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3446395609103637
the lambda is 0.5277203679565057
the regulation term lambda/alpha is 1.5312240027306643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3400626586180079
the lambda is 0.5323082873075482
the regulation term lambda/alpha is 1.565324136060142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29866740302203043
the lambda is 0.4914952716081537
the regulation term lambda/alpha is 1.6456274325052467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161680978046122
the lambda is 0.5332171614014658
the regulation term lambda/alpha is 1.6864989387100882
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3844309845847115
the lambda is 0.5052032237831003
the regulation term lambda/alpha is 1.3141584420643286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3266878068681112
the lambda is 0.5280848838366862
the regulation term lambda/alpha is 1.6164817686320383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27904492581067425
the lambda is 0.48286431000682356
the regulation term lambda/alpha is 1.730417812128346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31695199101451743
the lambda is 0.49660343618037167
the regulation term lambda/alpha is 1.5668096439174146
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.336680579166475
the lambda is 0.4547698143611054
the regulation term lambda/alpha is 1.3507456102368176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33198541193595266
the lambda is 0.519343927974984
the regulation term lambda/alpha is 1.5643576774848678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3197090249762905
the lambda is 0.530304665291759
the regulation term lambda/alpha is 1.658710339287689
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3269460179404728
the lambda is 0.5591686467230964
the regulation term lambda/alpha is 1.7102781989683218
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3689104382933143
the lambda is 0.5456182554008121
the regulation term lambda/alpha is 1.478999233323402
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3152394982369995
the lambda is 0.5544473000582203
the regulation term lambda/alpha is 1.7588129125918812
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33715613035558223
the lambda is 0.5118998354646794
the regulation term lambda/alpha is 1.5182871950891224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31074570103052923
the lambda is 0.5046763904266736
the regulation term lambda/alpha is 1.6240816486053065
890
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32555925859992463
the lambda is 0.5356913578300442
the regulation term lambda/alpha is 1.645449618400649
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3419072420571905
the lambda is 0.4985766630691287
the regulation term lambda/alpha is 1.4582220021702035
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31629477044464593
the lambda is 0.5435423348683529
the regulation term lambda/alpha is 1.7184676626307898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3021607746584038
the lambda is 0.5175167597041052
the regulation term lambda/alpha is 1.7127198601114382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3163568522634737
the lambda is 0.5449773552998926
the regulation term lambda/alpha is 1.722666512201908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27838120040219655
the lambda is 0.5028381031736036
the regulation term lambda/alpha is 1.8062933217010295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31600525993552975
the lambda is 0.5019071978428665
the regulation term lambda/alpha is 1.5882874795984845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2833053967280941
the lambda is 0.5095624881771195
the regulation term lambda/alpha is 1.798633185467266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3535805005327822
the lambda is 0.5012384893153327
the regulation term lambda/alpha is 1.4176078391202467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3291123082716732
the lambda is 0.5505957505156664
the regulation term lambda/alpha is 1.6729722246096148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3372904854112346
the lambda is 0.541425593562329
the regulation term lambda/alpha is 1.6052204760599957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30554609578111946
the lambda is 0.5652774821263372
the regulation term lambda/alpha is 1.8500563087910589
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32381705079412393
the lambda is 0.5242397353226501
the regulation term lambda/alpha is 1.6189380208269228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34267112402762545
the lambda is 0.5236909444098043
the regulation term lambda/alpha is 1.5282610867660547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30598579135380755
the lambda is 0.4868118016784737
the regulation term lambda/alpha is 1.590962114693683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.304905207626749
the lambda is 0.5328622091849547
the regulation term lambda/alpha is 1.7476323652604198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31917119481590284
the lambda is 0.4854992993048732
the regulation term lambda/alpha is 1.52112504884693
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36421482743840383
the lambda is 0.5155931034706226
the regulation term lambda/alpha is 1.4156290865390975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2916333399774716
the lambda is 0.4903171027688502
the regulation term lambda/alpha is 1.6812793174015246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3216212505250207
the lambda is 0.5177570478437064
the regulation term lambda/alpha is 1.609834695308565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.314418559843152
the lambda is 0.5271974522498175
the regulation term lambda/alpha is 1.6767376980316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3119594471070937
the lambda is 0.5162492155964379
the regulation term lambda/alpha is 1.6548600158892215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3306750615749845
the lambda is 0.4899018881274905
the regulation term lambda/alpha is 1.4815205168303853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178482327530971
the lambda is 0.5309573413881195
the regulation term lambda/alpha is 1.670474417268711
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.285709041473047
the lambda is 0.5029966646735929
the regulation term lambda/alpha is 1.76052064043988
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3226439808302238
the lambda is 0.5353597378879501
the regulation term lambda/alpha is 1.6592894016196074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3453340866711015
the lambda is 0.5029416752737781
the regulation term lambda/alpha is 1.456391635479596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2907814445623181
the lambda is 0.5115009802282658
the regulation term lambda/alpha is 1.7590564659246846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3068090038106149
the lambda is 0.48718587194399493
the regulation term lambda/alpha is 1.5879125641460052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3414216290762433
the lambda is 0.5016538541072352
the regulation term lambda/alpha is 1.4693089464323603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3388482155517543
the lambda is 0.5340331070111494
the regulation term lambda/alpha is 1.576024551705462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3292712924570087
the lambda is 0.5430373915517955
the regulation term lambda/alpha is 1.649209645638018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29697631539775743
the lambda is 0.4601429479344445
the regulation term lambda/alpha is 1.549426415767024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3393314290235739
the lambda is 0.4918165880505895
the regulation term lambda/alpha is 1.4493693951833215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3111314889104068
the lambda is 0.4814166644645002
the regulation term lambda/alpha is 1.5473093583373316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2973842558846457
the lambda is 0.5046526432210513
the regulation term lambda/alpha is 1.6969716225219547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233991038994098
the lambda is 0.4953463191613353
the regulation term lambda/alpha is 1.5316873584022301
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30239264879428546
the lambda is 0.5069971795109963
the regulation term lambda/alpha is 1.676618732408079
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32925809418628377
the lambda is 0.48424764366612155
the regulation term lambda/alpha is 1.4707235819452615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36887353996346156
the lambda is 0.547522717096099
the regulation term lambda/alpha is 1.4843100894423964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3472543615969055
the lambda is 0.516091411291934
the regulation term lambda/alpha is 1.486205699241916
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3076464464697053
the lambda is 0.5022978598014978
the regulation term lambda/alpha is 1.632711398312739
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3585826244328783
the lambda is 0.5086662962881668
the regulation term lambda/alpha is 1.41854697252176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3334318063637677
the lambda is 0.5061302073485893
the regulation term lambda/alpha is 1.5179421929424781
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30319651380417434
the lambda is 0.4803176686506578
the regulation term lambda/alpha is 1.584179391194718
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2886454849154982
the lambda is 0.5174710139513898
the regulation term lambda/alpha is 1.7927563083236207
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28011357637103407
the lambda is 0.4612601156722876
the regulation term lambda/alpha is 1.6466896094365295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31032187320937354
the lambda is 0.5002824051098161
the regulation term lambda/alpha is 1.6121403236447873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3653426975775236
the lambda is 0.5052751232572126
the regulation term lambda/alpha is 1.3830168951166628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3180196843559663
the lambda is 0.5534685739548092
the regulation term lambda/alpha is 1.7403594845886958
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33275728539105975
the lambda is 0.5125691336808779
the regulation term lambda/alpha is 1.5403693808792238
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3304869094544834
the lambda is 0.5444839551845347
the regulation term lambda/alpha is 1.6475204905491856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2956452675678794
the lambda is 0.4615621569654816
the regulation term lambda/alpha is 1.5612025883671825
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29362776498131893
the lambda is 0.49104975549634017
the regulation term lambda/alpha is 1.6723546410114913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28993316406961644
the lambda is 0.5390365590109746
the regulation term lambda/alpha is 1.8591752369575265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28796919122756753
the lambda is 0.5622286543838045
the regulation term lambda/alpha is 1.9523916846351232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3343802793490245
the lambda is 0.4578005779195501
the regulation term lambda/alpha is 1.3691016073400073
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2845534903263076
the lambda is 0.4895194884613624
the regulation term lambda/alpha is 1.720307446940865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3120879226029701
the lambda is 0.4817009673129597
the regulation term lambda/alpha is 1.543478399597561
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3242969089941853
the lambda is 0.5398144059261287
the regulation term lambda/alpha is 1.664568458578209
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32760839016317267
the lambda is 0.5275919744866825
the regulation term lambda/alpha is 1.6104348677514135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3341622779371168
the lambda is 0.5494965430411142
the regulation term lambda/alpha is 1.6444002789103542
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33988497203707607
the lambda is 0.515129002351003
the regulation term lambda/alpha is 1.5155980544347532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3253436715018132
the lambda is 0.5173779278135255
the regulation term lambda/alpha is 1.5902504739842223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2899230061298656
the lambda is 0.4992883774768841
the regulation term lambda/alpha is 1.7221412820658917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3111192701641449
the lambda is 0.5143169450461083
the regulation term lambda/alpha is 1.653118255178335
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32932254926605997
the lambda is 0.48857502731377217
the regulation term lambda/alpha is 1.4835759907805524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32722220523705914
the lambda is 0.5413260309762541
the regulation term lambda/alpha is 1.654307141485357
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3294261052083628
the lambda is 0.5084501599766605
the regulation term lambda/alpha is 1.5434422225131934
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32753471444820725
the lambda is 0.5690591321012789
the regulation term lambda/alpha is 1.7374009746110857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30285237146872246
the lambda is 0.5065497180281895
the regulation term lambda/alpha is 1.6725961747355977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30458938179830464
the lambda is 0.5314379340529305
the regulation term lambda/alpha is 1.7447684187653074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156982849802188
the lambda is 0.5096091485139222
the regulation term lambda/alpha is 1.6142284350573954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3103362895138996
the lambda is 0.48985288398204835
the regulation term lambda/alpha is 1.578458274246101
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30801228232950534
the lambda is 0.4909305256452301
the regulation term lambda/alpha is 1.5938667183409345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2943849647057213
the lambda is 0.529991034320162
the regulation term lambda/alpha is 1.8003332298236148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2903644263706496
the lambda is 0.5110006872801599
the regulation term lambda/alpha is 1.7598598205272866
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31651159442740356
the lambda is 0.5322807961287984
the regulation term lambda/alpha is 1.681710261173022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.278997329907113
the lambda is 0.4530250517560034
the regulation term lambda/alpha is 1.6237612449797627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35147447527131376
the lambda is 0.4955168520370325
the regulation term lambda/alpha is 1.4098231504706795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3269190030929285
the lambda is 0.4876800077122853
the regulation term lambda/alpha is 1.4917456712470754
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31893304160256714
the lambda is 0.5558832191972992
the regulation term lambda/alpha is 1.7429464705322173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105833828232268
the lambda is 0.531948026261428
the regulation term lambda/alpha is 1.712738207131301
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3402641183812057
the lambda is 0.5273810979939452
the regulation term lambda/alpha is 1.5499168719374286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3206207759985487
the lambda is 0.563340049352433
the regulation term lambda/alpha is 1.7570291494615524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29552470942246295
the lambda is 0.5249475919732545
the regulation term lambda/alpha is 1.7763238579919334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161118131923388
the lambda is 0.4972311476737989
the regulation term lambda/alpha is 1.5729597152740944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36252616119540587
the lambda is 0.5339499316465299
the regulation term lambda/alpha is 1.4728590341890515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3358318649415878
the lambda is 0.5286368653542413
the regulation term lambda/alpha is 1.5741116926060266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3324901710022544
the lambda is 0.5248587472855645
the regulation term lambda/alpha is 1.5785692121467425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300623842741681
the lambda is 0.4708275391059718
the regulation term lambda/alpha is 1.4264804519950276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3142964627312408
the lambda is 0.5137198883264904
the regulation term lambda/alpha is 1.634507381541164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2875653702574529
the lambda is 0.4771399113166468
the regulation term lambda/alpha is 1.6592398135056066
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2980909987450232
the lambda is 0.4748864147233348
the regulation term lambda/alpha is 1.5930920984619745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27059307818165296
the lambda is 0.4840343191998111
the regulation term lambda/alpha is 1.7887904688931917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3160775378616512
the lambda is 0.5590628113357056
the regulation term lambda/alpha is 1.7687521078464306
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.309881458301422
the lambda is 0.518577605894678
the regulation term lambda/alpha is 1.6734709096091096
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3396557496884109
the lambda is 0.5515703834302551
the regulation term lambda/alpha is 1.6239100440261878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31218784790260123
the lambda is 0.5056676005978703
the regulation term lambda/alpha is 1.6197542729325978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33769304478364115
the lambda is 0.5319937941559842
the regulation term lambda/alpha is 1.5753768174195917
900
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36038788111505743
the lambda is 0.5635077972017188
the regulation term lambda/alpha is 1.5636147238308864
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3381744338251887
the lambda is 0.5682099154167068
the regulation term lambda/alpha is 1.6802272986444315
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317450802574144
the lambda is 0.5252439468876623
the regulation term lambda/alpha is 1.6545680232293192
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3391681215663218
the lambda is 0.509729397039771
the regulation term lambda/alpha is 1.5028812103147413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190356262603163
the lambda is 0.5131632547109775
the regulation term lambda/alpha is 1.6084826034201687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29985128697966695
the lambda is 0.5278752804715168
the regulation term lambda/alpha is 1.7604569444696505
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.308267173901618
the lambda is 0.5125464768005722
the regulation term lambda/alpha is 1.6626696586388694
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30467051574724696
the lambda is 0.500817789201906
the regulation term lambda/alpha is 1.6438012978498444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31929376756913824
the lambda is 0.4513384191815341
the regulation term lambda/alpha is 1.4135522362922528
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30534442902775694
the lambda is 0.4826986602671805
the regulation term lambda/alpha is 1.5808333618665806
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3676816914347977
the lambda is 0.5143489684782229
the regulation term lambda/alpha is 1.3988974171411366
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.306857369307389
the lambda is 0.48576566634626744
the regulation term lambda/alpha is 1.5830340572973505
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3412512976820704
the lambda is 0.5536322455378113
the regulation term lambda/alpha is 1.6223593852926748
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.322861507223721
the lambda is 0.5117338996878857
the regulation term lambda/alpha is 1.5849950775745127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2980418898509069
the lambda is 0.5254296184138941
the regulation term lambda/alpha is 1.7629388227162837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30033202548366467
the lambda is 0.4784266414604573
the regulation term lambda/alpha is 1.5929924246006837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34795607525926137
the lambda is 0.5817871263970535
the regulation term lambda/alpha is 1.6720131297134706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3351694183832288
the lambda is 0.5044113194218515
the regulation term lambda/alpha is 1.5049443408500756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3262155387016709
the lambda is 0.5239683641634922
the regulation term lambda/alpha is 1.6062029609284472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35071211690293974
the lambda is 0.5099579215557626
the regulation term lambda/alpha is 1.4540641653875177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3268565517797142
the lambda is 0.5126530967502921
the regulation term lambda/alpha is 1.5684345134247026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3763587896873626
the lambda is 0.5429727861116429
the regulation term lambda/alpha is 1.44269989432872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3039913839307693
the lambda is 0.5411240575241355
the regulation term lambda/alpha is 1.7800637982797913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30199082914095415
the lambda is 0.5036114341295966
the regulation term lambda/alpha is 1.6676381715371102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29735923995430913
the lambda is 0.5286600349529617
the regulation term lambda/alpha is 1.7778496980090248
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31911801872633877
the lambda is 0.5171212940139187
the regulation term lambda/alpha is 1.6204703704223566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2885306576295757
the lambda is 0.4437827447540539
the regulation term lambda/alpha is 1.5380783047456796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.344158879327462
the lambda is 0.5300028663112246
the regulation term lambda/alpha is 1.5399947470393025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33971072071927716
the lambda is 0.5132057163602471
the regulation term lambda/alpha is 1.5107139252880366
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.305941044171919
the lambda is 0.5217320072347484
the regulation term lambda/alpha is 1.7053351198656725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36824417789727987
the lambda is 0.519438702329555
the regulation term lambda/alpha is 1.4105822535894925
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29683095156743644
the lambda is 0.48953335116361874
the regulation term lambda/alpha is 1.6491991437503533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3294749618834652
the lambda is 0.4900078255494841
the regulation term lambda/alpha is 1.4872384315588725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32259042745633043
the lambda is 0.49364422069441
the regulation term lambda/alpha is 1.5302506791254225
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32876983508383806
the lambda is 0.4864199841986478
the regulation term lambda/alpha is 1.4795152483335587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3219158443393732
the lambda is 0.5019992526761821
the regulation term lambda/alpha is 1.5594114471326226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3524770976969284
the lambda is 0.5557571512360882
the regulation term lambda/alpha is 1.576718472965715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29588862978632197
the lambda is 0.49613752534163386
the regulation term lambda/alpha is 1.6767711746812408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34507355471906814
the lambda is 0.48515261841143315
the regulation term lambda/alpha is 1.4059397243767533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28906421840465796
the lambda is 0.5122850029744321
the regulation term lambda/alpha is 1.7722186640799995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176450395988646
the lambda is 0.4647018038585044
the regulation term lambda/alpha is 1.4629594230256175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28699110108332726
the lambda is 0.5184785973983839
the regulation term lambda/alpha is 1.8066016522506902
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3443782837010641
the lambda is 0.5175804077956196
the regulation term lambda/alpha is 1.5029414811907909
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30623805608419524
the lambda is 0.5314186827519688
the regulation term lambda/alpha is 1.735312356495183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4039009186681119
the lambda is 0.573184281929838
the regulation term lambda/alpha is 1.4191210156687644
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2989685710850883
the lambda is 0.5156638406279266
the regulation term lambda/alpha is 1.7248095301668531
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3227363508979913
the lambda is 0.5184275726098608
the regulation term lambda/alpha is 1.6063501095162427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33356808354124445
the lambda is 0.5479795498108494
the regulation term lambda/alpha is 1.6427817193820156
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31387095389623876
the lambda is 0.5453042473453544
the regulation term lambda/alpha is 1.7373517382740176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35631464020886966
the lambda is 0.5665834787584194
the regulation term lambda/alpha is 1.5901212434782117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30286379357582416
the lambda is 0.5219176267706025
the regulation term lambda/alpha is 1.7232750755990798
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29772328019836847
the lambda is 0.4789412022202333
the regulation term lambda/alpha is 1.6086790455255031
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2898898111245902
the lambda is 0.48362680909730693
the regulation term lambda/alpha is 1.668312546829911
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3284974413699237
the lambda is 0.5509502354171848
the regulation term lambda/alpha is 1.6771827297027715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2812398409937075
the lambda is 0.47209493970879013
the regulation term lambda/alpha is 1.6786204189304488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.289240292819951
the lambda is 0.5036893940824907
the regulation term lambda/alpha is 1.7414219477230026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.295258323423082
the lambda is 0.45037104554191204
the regulation term lambda/alpha is 1.525345806751621
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3436135397413965
the lambda is 0.5416484556640171
the regulation term lambda/alpha is 1.576330362510341
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31702793767466286
the lambda is 0.5312943497159918
the regulation term lambda/alpha is 1.675859716379984
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3392753118167093
the lambda is 0.5251219216007563
the regulation term lambda/alpha is 1.547775223575505
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2608415608402417
the lambda is 0.47703246861897475
the regulation term lambda/alpha is 1.8288207871564766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30488436101118577
the lambda is 0.485799962103597
the regulation term lambda/alpha is 1.5933908859489638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2861296675640736
the lambda is 0.49115409539627153
the regulation term lambda/alpha is 1.7165437599590625
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33558623502513685
the lambda is 0.5476344419683302
the regulation term lambda/alpha is 1.6318739710146635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34226798036916606
the lambda is 0.5636409574045821
the regulation term lambda/alpha is 1.6467826081675705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3045617504119203
the lambda is 0.5163312712990354
the regulation term lambda/alpha is 1.695325399859623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32552739047592505
the lambda is 0.5190876479472042
the regulation term lambda/alpha is 1.5946051334982647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3741240627877194
the lambda is 0.4737954377271606
the regulation term lambda/alpha is 1.266412628465428
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30905261232173686
the lambda is 0.4451910538887232
the regulation term lambda/alpha is 1.4405024780222873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3265676074365042
the lambda is 0.5261447308481698
the regulation term lambda/alpha is 1.611135700133609
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3066486831074843
the lambda is 0.4913324990753866
the regulation term lambda/alpha is 1.6022651527356089
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30418848321753456
the lambda is 0.4731590557700946
the regulation term lambda/alpha is 1.5554798484324075
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35103334516418144
the lambda is 0.5047388285078399
the regulation term lambda/alpha is 1.4378657625011921
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26360732069155407
the lambda is 0.4777241893588771
the regulation term lambda/alpha is 1.8122569134483955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3389147570904658
the lambda is 0.5369247283033863
the regulation term lambda/alpha is 1.584247121349355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31198571073309134
the lambda is 0.4774096792458823
the regulation term lambda/alpha is 1.5302293112209673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28773876901795814
the lambda is 0.4804747358107397
the regulation term lambda/alpha is 1.6698296772818704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2890908887440739
the lambda is 0.4891401278656956
the regulation term lambda/alpha is 1.6919942720807126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3062121784100009
the lambda is 0.4640111167011374
the regulation term lambda/alpha is 1.5153254815353967
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31479497004105333
the lambda is 0.5500826884177816
the regulation term lambda/alpha is 1.7474316325513197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35078229241878106
the lambda is 0.4797612416207745
the regulation term lambda/alpha is 1.3676894529442554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39857753935847107
the lambda is 0.584990536392772
the regulation term lambda/alpha is 1.4676956893615762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34304313662860836
the lambda is 0.5152457019587988
the regulation term lambda/alpha is 1.501985164380722
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2898116502264721
the lambda is 0.48846993772715175
the regulation term lambda/alpha is 1.68547378045513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31491911203585066
the lambda is 0.5006312348439531
the regulation term lambda/alpha is 1.5897137255580756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28790371210696136
the lambda is 0.4951896086621525
the regulation term lambda/alpha is 1.7199834105583909
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2981908544605259
the lambda is 0.5207765201844172
the regulation term lambda/alpha is 1.7464536970008144
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3360390360804051
the lambda is 0.5460217555136152
the regulation term lambda/alpha is 1.6248759723943706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2908783358572332
the lambda is 0.4923025701042561
the regulation term lambda/alpha is 1.692469013388073
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087362834292573
the lambda is 0.5036735264032655
the regulation term lambda/alpha is 1.6314037365766092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29795300528624735
the lambda is 0.46815009484049425
the regulation term lambda/alpha is 1.571221254810759
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31751588683119925
the lambda is 0.4699004330556908
the regulation term lambda/alpha is 1.479927312441861
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3337929429110583
the lambda is 0.5133252852356625
the regulation term lambda/alpha is 1.537855416471288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30737960940915804
the lambda is 0.5020337706959076
the regulation term lambda/alpha is 1.6332695967078357
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2768860887522606
the lambda is 0.5115589236369853
the regulation term lambda/alpha is 1.8475428864708852
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35265896337687863
the lambda is 0.5234486525526341
the regulation term lambda/alpha is 1.4842913605267885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37004167632721774
the lambda is 0.48277866349815474
the regulation term lambda/alpha is 1.3046602433809287
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3219722597074598
the lambda is 0.5329047403707083
the regulation term lambda/alpha is 1.655126254836051
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3114864160661544
the lambda is 0.5234739956277542
the regulation term lambda/alpha is 1.6805676544064037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32678417145518385
the lambda is 0.5244321493597377
the regulation term lambda/alpha is 1.6048272687885063
910
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29559416463672267
the lambda is 0.4867750741858597
the regulation term lambda/alpha is 1.6467682127084384
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3271109569834156
the lambda is 0.5439525474192836
the regulation term lambda/alpha is 1.6628991961490969
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3573559658590549
the lambda is 0.45852130108847333
the regulation term lambda/alpha is 1.2830940151963748
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31563416010244044
the lambda is 0.5214819873908494
the regulation term lambda/alpha is 1.6521722085518251
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31551137114758554
the lambda is 0.5226488891624119
the regulation term lambda/alpha is 1.6565136377222185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3222571573614492
the lambda is 0.4978777396705197
the regulation term lambda/alpha is 1.5449703080204713
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31870023375053136
the lambda is 0.49046200655364575
the regulation term lambda/alpha is 1.5389446087998924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3516018936781614
the lambda is 0.5051984720913163
the regulation term lambda/alpha is 1.436847983969476
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32164799989396736
the lambda is 0.4823900273215386
the regulation term lambda/alpha is 1.4997451483626838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30197951816696433
the lambda is 0.5331598422392132
the regulation term lambda/alpha is 1.7655496818973972
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3138350151617917
the lambda is 0.4265112857277349
the regulation term lambda/alpha is 1.3590302710736566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28807191091176887
the lambda is 0.4840065821161236
the regulation term lambda/alpha is 1.6801588901333941
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35464382616090406
the lambda is 0.5256329008396674
the regulation term lambda/alpha is 1.482143102644016
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3214636874636028
the lambda is 0.48134948446157205
the regulation term lambda/alpha is 1.497368142136029
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2741760925798659
the lambda is 0.49001153500890254
the regulation term lambda/alpha is 1.787214670681635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32994048120150976
the lambda is 0.5136504921691144
the regulation term lambda/alpha is 1.556797426913506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3023133071385444
the lambda is 0.523761257672896
the regulation term lambda/alpha is 1.73251142210841
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3132782614531992
the lambda is 0.5052028970726474
the regulation term lambda/alpha is 1.612633110031862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32901614414715696
the lambda is 0.530563073894065
the regulation term lambda/alpha is 1.61257459043336
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33108809702862424
the lambda is 0.553731663469995
the regulation term lambda/alpha is 1.6724601954570482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30461979145709667
the lambda is 0.5157959854914387
the regulation term lambda/alpha is 1.6932451533244666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29762914299842175
the lambda is 0.5445577476267875
the regulation term lambda/alpha is 1.829651969362675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34154841253054646
the lambda is 0.525938052207886
the regulation term lambda/alpha is 1.5398638462734726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31213792505133237
the lambda is 0.5497315060271079
the regulation term lambda/alpha is 1.7611813942080323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321759296178234
the lambda is 0.5275967088688835
the regulation term lambda/alpha is 1.6397248351035327
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34014677535717924
the lambda is 0.48697285491354053
the regulation term lambda/alpha is 1.4316550683221472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35355640291709806
the lambda is 0.5452066173255361
the regulation term lambda/alpha is 1.5420640464355448
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33084063584528756
the lambda is 0.5462401663000982
the regulation term lambda/alpha is 1.6510673330815955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2885008727144988
the lambda is 0.44699733555535404
the regulation term lambda/alpha is 1.549379491817703
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33698313446144584
the lambda is 0.5411940512258363
the regulation term lambda/alpha is 1.605997439874114
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2963134838366954
the lambda is 0.5304798468526387
the regulation term lambda/alpha is 1.7902656334903655
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31155411141307654
the lambda is 0.508882490315717
the regulation term lambda/alpha is 1.6333679180404428
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026019988875526
the lambda is 0.5312541203285654
the regulation term lambda/alpha is 1.7556199968328046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.319228732234152
the lambda is 0.5362176215752188
the regulation term lambda/alpha is 1.6797285689870392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31521642809913347
the lambda is 0.5634305956333935
the regulation term lambda/alpha is 1.7874404548997627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012857761483393
the lambda is 0.5149075658810299
the regulation term lambda/alpha is 1.7090337700758667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3692371906942384
the lambda is 0.6020391606616139
the regulation term lambda/alpha is 1.6304943701084447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4032251028699531
the lambda is 0.5695365681379045
the regulation term lambda/alpha is 1.4124531535468159
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31402499917690496
the lambda is 0.4947649206535801
the regulation term lambda/alpha is 1.5755590222129285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3191885856894607
the lambda is 0.5398082875360406
the regulation term lambda/alpha is 1.6911891957854073
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29311189633342577
the lambda is 0.5199456167813048
the regulation term lambda/alpha is 1.7738809761233545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30294590358750606
the lambda is 0.49638008568580433
the regulation term lambda/alpha is 1.6385106377331315
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32959568923102806
the lambda is 0.5378873772022711
the regulation term lambda/alpha is 1.6319612020933996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32566946276058684
the lambda is 0.47547923656378005
the regulation term lambda/alpha is 1.460005591354215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29499252513717245
the lambda is 0.4636860833729255
the regulation term lambda/alpha is 1.5718570603011381
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27780788993078936
the lambda is 0.4858880204954099
the regulation term lambda/alpha is 1.7490072748346341
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3299442572389801
the lambda is 0.4662663387444967
the regulation term lambda/alpha is 1.4131670078039211
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.344214254464524
the lambda is 0.5235881710197422
the regulation term lambda/alpha is 1.5211112387959085
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3043134425848326
the lambda is 0.4947101566507767
the regulation term lambda/alpha is 1.625659886887408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3491993135699387
the lambda is 0.5408652481323176
the regulation term lambda/alpha is 1.5488725982961917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33118478244992
the lambda is 0.500532230363648
the regulation term lambda/alpha is 1.511338252503603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3428082269820808
the lambda is 0.5127794599114327
the regulation term lambda/alpha is 1.4958201686864319
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.343173437919763
the lambda is 0.5429778001652837
the regulation term lambda/alpha is 1.582225604221259
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29584526021482527
the lambda is 0.5154994009787882
the regulation term lambda/alpha is 1.7424629368895859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3014565264300529
the lambda is 0.5093423952296555
the regulation term lambda/alpha is 1.6896048039213325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.310401625428217
the lambda is 0.6077609314662145
the regulation term lambda/alpha is 1.9579824384868254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32493364885949977
the lambda is 0.5457099507841909
the regulation term lambda/alpha is 1.6794504130292585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3449055775333393
the lambda is 0.5334891147998498
the regulation term lambda/alpha is 1.5467685927702393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3247927707127935
the lambda is 0.5406809847467825
the regulation term lambda/alpha is 1.66469525648677
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29844432801203474
the lambda is 0.5076132549820938
the regulation term lambda/alpha is 1.7008641389278616
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2752386024267141
the lambda is 0.4533676384400604
the regulation term lambda/alpha is 1.647180426156885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3299137044198561
the lambda is 0.522224327448318
the regulation term lambda/alpha is 1.5829118962082362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32268057641962805
the lambda is 0.5032359985208901
the regulation term lambda/alpha is 1.559548467728221
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31578917251435057
the lambda is 0.494174759598764
the regulation term lambda/alpha is 1.564888231170456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34013861210491886
the lambda is 0.44418096104331684
the regulation term lambda/alpha is 1.305882205770585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3120666611376477
the lambda is 0.4765171256887647
the regulation term lambda/alpha is 1.5269722307138105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3198289951120301
the lambda is 0.5216333668749378
the regulation term lambda/alpha is 1.630975849116555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3472230779581563
the lambda is 0.5468485348238804
the regulation term lambda/alpha is 1.5749198988719892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2730454081376827
the lambda is 0.5078977841197646
the regulation term lambda/alpha is 1.8601220492367996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31534567103908134
the lambda is 0.5551681044588972
the regulation term lambda/alpha is 1.760506502688265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31869570711584505
the lambda is 0.5082702290042699
the regulation term lambda/alpha is 1.5948449183832747
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3076044439444131
the lambda is 0.5321587375552851
the regulation term lambda/alpha is 1.730009913808173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27519862831464
the lambda is 0.4676079717144186
the regulation term lambda/alpha is 1.6991653431491427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31352578335421677
the lambda is 0.5476268363139133
the regulation term lambda/alpha is 1.7466724122501038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31246910227997987
the lambda is 0.5392806464244987
the regulation term lambda/alpha is 1.7258687098646002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33448658589234775
the lambda is 0.5061356562267002
the regulation term lambda/alpha is 1.5131717610630775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3098749516691483
the lambda is 0.45849844523126376
the regulation term lambda/alpha is 1.4796240959830786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3189095381529295
the lambda is 0.5220883907066587
the regulation term lambda/alpha is 1.6371049725590117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2973143451256123
the lambda is 0.4759546051128311
the regulation term lambda/alpha is 1.6008464203492945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3533072834449239
the lambda is 0.5775527868743594
the regulation term lambda/alpha is 1.63470387941887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052038890719407
the lambda is 0.4768181818121815
the regulation term lambda/alpha is 1.5622939250940837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26738331506371643
the lambda is 0.47086596390808666
the regulation term lambda/alpha is 1.7610147581418125
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3579832196029826
the lambda is 0.517826497502499
the regulation term lambda/alpha is 1.4465105321886003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32304789404202455
the lambda is 0.4881137625580021
the regulation term lambda/alpha is 1.5109640754831992
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32938658802097104
the lambda is 0.43022656844757
the regulation term lambda/alpha is 1.3061447675585953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29247005312314944
the lambda is 0.48340158262315813
the regulation term lambda/alpha is 1.652824203576199
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3173843498985597
the lambda is 0.4842298692875779
the regulation term lambda/alpha is 1.525689182350498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3405276850740286
the lambda is 0.5637920317788737
the regulation term lambda/alpha is 1.6556422766516292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3523079955877917
the lambda is 0.5066206857388234
the regulation term lambda/alpha is 1.438005075342034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30545259818321685
the lambda is 0.507744761149566
the regulation term lambda/alpha is 1.6622702316809566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3223920938862623
the lambda is 0.5115949278372902
the regulation term lambda/alpha is 1.5868718170792904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29061647344628294
the lambda is 0.5622664456618717
the regulation term lambda/alpha is 1.934737005766468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34274164785945394
the lambda is 0.5503832291205368
the regulation term lambda/alpha is 1.6058253572563475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34831645230557395
the lambda is 0.531847840583577
the regulation term lambda/alpha is 1.5269099035178308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28527348552057225
the lambda is 0.4741375711093491
the regulation term lambda/alpha is 1.6620457041219034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3705526162987375
the lambda is 0.5206172741496999
the regulation term lambda/alpha is 1.4049753024277156
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38565877919327535
the lambda is 0.5458241733734325
the regulation term lambda/alpha is 1.4153033791041723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.281400998986327
the lambda is 0.5246005876068791
the regulation term lambda/alpha is 1.8642456476580205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34607864284573775
the lambda is 0.55307094675249
the regulation term lambda/alpha is 1.5981077081344708
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3624849116298108
the lambda is 0.5228424517357505
the regulation term lambda/alpha is 1.4423840412692972
920
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3254621672795542
the lambda is 0.48443201143164544
the regulation term lambda/alpha is 1.4884433895370237
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33962737108879415
the lambda is 0.4948407729057517
the regulation term lambda/alpha is 1.4570108743572898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3706120345109976
the lambda is 0.5331995785631434
the regulation term lambda/alpha is 1.4387001201044947
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3277081480208524
the lambda is 0.5200017769541954
the regulation term lambda/alpha is 1.586783179163147
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33775298769829576
the lambda is 0.5347490419429177
the regulation term lambda/alpha is 1.5832548087497376
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3260803008183824
the lambda is 0.5292506226612849
the regulation term lambda/alpha is 1.6230683709901956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3057963572747246
the lambda is 0.5072147589578021
the regulation term lambda/alpha is 1.6586684140979648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3303265809636787
the lambda is 0.4736867328535715
the regulation term lambda/alpha is 1.4339952039937593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3058293119860442
the lambda is 0.5012723907389921
the regulation term lambda/alpha is 1.6390593415776527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3423098724302592
the lambda is 0.5224008235444845
the regulation term lambda/alpha is 1.526105045804416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3155045274938559
the lambda is 0.5516856776139203
the regulation term lambda/alpha is 1.7485824434790838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33313818798253036
the lambda is 0.5432938630043466
the regulation term lambda/alpha is 1.630836339401704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.332875069773162
the lambda is 0.516797887273574
the regulation term lambda/alpha is 1.5525280629328786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32703858337355696
the lambda is 0.5043187689733475
the regulation term lambda/alpha is 1.542077279601269
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3129983854024169
the lambda is 0.5195563098059253
the regulation term lambda/alpha is 1.6599328751742288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29731088899146585
the lambda is 0.4948671202633576
the regulation term lambda/alpha is 1.6644769451332222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.356641167247659
the lambda is 0.5673212107418322
the regulation term lambda/alpha is 1.590733944485642
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3422102251635028
the lambda is 0.5199886545559455
the regulation term lambda/alpha is 1.5195006353404632
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30871079120987316
the lambda is 0.5376803393728091
the regulation term lambda/alpha is 1.7416959649048156
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2874990651428509
the lambda is 0.5119794657729068
the regulation term lambda/alpha is 1.7808039324180664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3253344419653372
the lambda is 0.49324562058427057
the regulation term lambda/alpha is 1.5161186673153515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3063921118624667
the lambda is 0.5045832863048372
the regulation term lambda/alpha is 1.6468546896903618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32620672706795983
the lambda is 0.5475722175077626
the regulation term lambda/alpha is 1.6786049215768777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3009643268806555
the lambda is 0.49754340843863565
the regulation term lambda/alpha is 1.6531640596592423
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31226903167711306
the lambda is 0.5292529379718197
the regulation term lambda/alpha is 1.6948620717505811
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30620094725278457
the lambda is 0.5081443282789276
the regulation term lambda/alpha is 1.6595125940594444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3493960674069099
the lambda is 0.49983716341085976
the regulation term lambda/alpha is 1.4305746688005643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3048328725759388
the lambda is 0.48969532762768875
the regulation term lambda/alpha is 1.6064387134156528
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3125355236469826
the lambda is 0.4727282027201689
the regulation term lambda/alpha is 1.5125583076249862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3401024039490126
the lambda is 0.5407835817461443
the regulation term lambda/alpha is 1.5900610388723315
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3129091533347913
the lambda is 0.49555667037628026
the regulation term lambda/alpha is 1.5837078113405927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3124762764301219
the lambda is 0.49920655352603366
the regulation term lambda/alpha is 1.5975822524167518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30698396331184313
the lambda is 0.531758778844212
the regulation term lambda/alpha is 1.7322037708661546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3456735223436815
the lambda is 0.5121133900370441
the regulation term lambda/alpha is 1.4814944071067206
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3202962003072715
the lambda is 0.510981492197683
the regulation term lambda/alpha is 1.595340474559112
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29485515920175565
the lambda is 0.4995077412653504
the regulation term lambda/alpha is 1.6940783489006566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3240814737788019
the lambda is 0.48042085769803067
the regulation term lambda/alpha is 1.4824076553846346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35132704287862415
the lambda is 0.514187229151614
the regulation term lambda/alpha is 1.4635572170550346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3336402421474089
the lambda is 0.5155104389869484
the regulation term lambda/alpha is 1.5451086945296773
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2919864865183756
the lambda is 0.49867055642700947
the regulation term lambda/alpha is 1.7078549160720375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38061155487386306
the lambda is 0.5062502014765358
the regulation term lambda/alpha is 1.3300967745036278
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3295927571391128
the lambda is 0.5643414187857948
the regulation term lambda/alpha is 1.7122385324371692
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29193489300842124
the lambda is 0.5136605444244728
the regulation term lambda/alpha is 1.7595037685668347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36763370660628103
the lambda is 0.540530982110633
the regulation term lambda/alpha is 1.4702976696571435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3005945152911524
the lambda is 0.5132354762401591
the regulation term lambda/alpha is 1.7074013334642686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2957563596532514
the lambda is 0.48972696919305303
the regulation term lambda/alpha is 1.6558459461944124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314638606389175
the lambda is 0.49610822174966573
the regulation term lambda/alpha is 1.4967188905402413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211722823136448
the lambda is 0.5185236982587803
the regulation term lambda/alpha is 1.614472128551895
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29430097543434103
the lambda is 0.5322558510771425
the regulation term lambda/alpha is 1.8085425992612434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30284464123758353
the lambda is 0.5176063601135438
the regulation term lambda/alpha is 1.7091481559598682
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3193428432769098
the lambda is 0.506830328689474
the regulation term lambda/alpha is 1.587104077513299
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31514995439360854
the lambda is 0.5327227961754167
the regulation term lambda/alpha is 1.690378782381384
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3065218973364969
the lambda is 0.5115950573162166
the regulation term lambda/alpha is 1.6690326588791544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.341703826169431
the lambda is 0.5354124455348488
the regulation term lambda/alpha is 1.5668904019511007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28484053970223366
the lambda is 0.5168032008085428
the regulation term lambda/alpha is 1.8143597163128466
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34738545971079177
the lambda is 0.5243575513190719
the regulation term lambda/alpha is 1.5094401238198467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29561840520724997
the lambda is 0.5306377093998643
the regulation term lambda/alpha is 1.7950090388582158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.272241683737354
the lambda is 0.48715377468169774
the regulation term lambda/alpha is 1.7894165507427613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2826862251425508
the lambda is 0.4829211034353077
the regulation term lambda/alpha is 1.7083290959500554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3429054255579803
the lambda is 0.5450964682476492
the regulation term lambda/alpha is 1.589640838609249
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36420166413596966
the lambda is 0.48135009579842747
the regulation term lambda/alpha is 1.3216581449191898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3002153705133103
the lambda is 0.48236167287576837
the regulation term lambda/alpha is 1.6067187767602407
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3397821335871061
the lambda is 0.48179929403595484
the regulation term lambda/alpha is 1.417965356063789
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33929363041799954
the lambda is 0.505683777737112
the regulation term lambda/alpha is 1.4904016238504827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27535123096788605
the lambda is 0.46610669433450186
the regulation term lambda/alpha is 1.6927714203277466
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3034028552736076
the lambda is 0.47107564553472064
the regulation term lambda/alpha is 1.5526407789073253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.335705517904505
the lambda is 0.5600817804546496
the regulation term lambda/alpha is 1.6683722804162273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3516008415587698
the lambda is 0.5390260031188208
the regulation term lambda/alpha is 1.5330623235403236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3268863478123646
the lambda is 0.5050324888286849
the regulation term lambda/alpha is 1.5449788350248803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29734056230318695
the lambda is 0.5470772714413961
the regulation term lambda/alpha is 1.8399012472558722
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28424458564114147
the lambda is 0.532147215305388
the regulation term lambda/alpha is 1.8721454767733847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3374293111285596
the lambda is 0.49778778821499975
the regulation term lambda/alpha is 1.4752357658263542
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2871928818964666
the lambda is 0.5152354803897593
the regulation term lambda/alpha is 1.7940398696075706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3643269867511978
the lambda is 0.5324843336741678
the regulation term lambda/alpha is 1.4615561104118981
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3307578062182238
the lambda is 0.46979307532895354
the regulation term lambda/alpha is 1.4203537044232255
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3095609615846805
the lambda is 0.4807788581413651
the regulation term lambda/alpha is 1.5530991236110627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31592527626389055
the lambda is 0.5166324816243446
the regulation term lambda/alpha is 1.6352996117753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3005295638242224
the lambda is 0.5197233221538444
the regulation term lambda/alpha is 1.729358388374153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3060086194197494
the lambda is 0.5043071133094278
the regulation term lambda/alpha is 1.6480160404164108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2749918878152161
the lambda is 0.5032937734135328
the regulation term lambda/alpha is 1.8302131652397204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26778400396263247
the lambda is 0.47527833556038285
the regulation term lambda/alpha is 1.7748570808086985
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3007448060113573
the lambda is 0.5397715411263714
the regulation term lambda/alpha is 1.794782587553607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3040179563633203
the lambda is 0.47352181664073884
the regulation term lambda/alpha is 1.5575455552199389
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29696994641520036
the lambda is 0.5170766048258683
the regulation term lambda/alpha is 1.7411748598389543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2862608437779043
the lambda is 0.5170526677468693
the regulation term lambda/alpha is 1.8062291053261377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3192936949743411
the lambda is 0.5119333374863099
the regulation term lambda/alpha is 1.603330555986862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32055870968024197
the lambda is 0.540994669221507
the regulation term lambda/alpha is 1.6876617383478687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3192826826590529
the lambda is 0.48938865936145115
the regulation term lambda/alpha is 1.532775455548419
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2989517514856359
the lambda is 0.510620837483052
the regulation term lambda/alpha is 1.7080376179284114
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29878841051221317
the lambda is 0.45710371621353985
the regulation term lambda/alpha is 1.529857585272222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300032879935976
the lambda is 0.4487024114537646
the regulation term lambda/alpha is 1.3596907296950018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212701738337889
the lambda is 0.5429273191411449
the regulation term lambda/alpha is 1.689940004894546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30526518622854754
the lambda is 0.5219599527320145
the regulation term lambda/alpha is 1.7098574494545564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3406437625126482
the lambda is 0.523596944045278
the regulation term lambda/alpha is 1.5370806739073541
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3359061762843425
the lambda is 0.5250538395044855
the regulation term lambda/alpha is 1.5630967114460874
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36105227516615346
the lambda is 0.592494757274966
the regulation term lambda/alpha is 1.6410220846892727
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3523117600676035
the lambda is 0.5015711389967421
the regulation term lambda/alpha is 1.4236571010303427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33948629323162643
the lambda is 0.5257352422010796
the regulation term lambda/alpha is 1.5486199374841279
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3132507491235875
the lambda is 0.5202923899648946
the regulation term lambda/alpha is 1.6609453973232877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3144303214099066
the lambda is 0.5108669531407872
the regulation term lambda/alpha is 1.6247381958904539
930
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2875219721499231
the lambda is 0.5072850220005072
the regulation term lambda/alpha is 1.764334802684202
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28815513383975333
the lambda is 0.492355203528402
the regulation term lambda/alpha is 1.7086463009269406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211539005716401
the lambda is 0.5310487866535692
the regulation term lambda/alpha is 1.6535648040030817
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3091222124706676
the lambda is 0.5522681086412236
the regulation term lambda/alpha is 1.7865688273489175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3220783157001463
the lambda is 0.5544669214816795
the regulation term lambda/alpha is 1.7215282571146024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3363992682745371
the lambda is 0.5287027084137059
the regulation term lambda/alpha is 1.571652373459472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32621656746857924
the lambda is 0.49870050461696563
the regulation term lambda/alpha is 1.5287405801822123
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3193717295736712
the lambda is 0.5152833448553815
the regulation term lambda/alpha is 1.613428168934152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34009996006167664
the lambda is 0.5280646830130498
the regulation term lambda/alpha is 1.552674933914388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34624487195614156
the lambda is 0.5610149654172802
the regulation term lambda/alpha is 1.6202838247041051
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3404846118694799
the lambda is 0.5408253745766619
the regulation term lambda/alpha is 1.5883988753770166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089059628561797
the lambda is 0.5199709997284364
the regulation term lambda/alpha is 1.683266308363637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087338609351632
the lambda is 0.4983811183918764
the regulation term lambda/alpha is 1.61427423892626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2528445424042716
the lambda is 0.5268004717037199
the regulation term lambda/alpha is 2.083495521376221
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2708059478140642
the lambda is 0.5043094365280164
the regulation term lambda/alpha is 1.862253915022118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3283187240528093
the lambda is 0.5578375214992438
the regulation term lambda/alpha is 1.699073128127523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2711278857142453
the lambda is 0.4724226534230273
the regulation term lambda/alpha is 1.7424347635010007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31035045043730913
the lambda is 0.47940666793446396
the regulation term lambda/alpha is 1.5447268314221578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29171892611418754
the lambda is 0.5480847988144169
the regulation term lambda/alpha is 1.8788112451774213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33647018759237696
the lambda is 0.5190827837275973
the regulation term lambda/alpha is 1.542730389999514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30517370621189316
the lambda is 0.5467515411514925
the regulation term lambda/alpha is 1.791607632054195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31700714292834503
the lambda is 0.5029646818911255
the regulation term lambda/alpha is 1.5866036242748434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.295945576564861
the lambda is 0.5077130427037945
the regulation term lambda/alpha is 1.715562194228375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224685004114276
the lambda is 0.5412210741788043
the regulation term lambda/alpha is 1.6783688127314047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3436967833333583
the lambda is 0.5319642466539134
the regulation term lambda/alpha is 1.5477719677636632
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3120007681687953
the lambda is 0.49881499199586743
the regulation term lambda/alpha is 1.5987620637074968
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30762411279176854
the lambda is 0.4786029628592175
the regulation term lambda/alpha is 1.5558044475635266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3398828899631712
the lambda is 0.4791786521182814
the regulation term lambda/alpha is 1.4098345820532594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27686753219417776
the lambda is 0.48442804308262094
the regulation term lambda/alpha is 1.7496744354367744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31776876298024853
the lambda is 0.5401796733095421
the regulation term lambda/alpha is 1.699914328404639
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36663871730280845
the lambda is 0.560605296117423
the regulation term lambda/alpha is 1.5290400867686236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32764539264001913
the lambda is 0.5272943154708472
the regulation term lambda/alpha is 1.6093445148797816
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3086640990568909
the lambda is 0.533772854313871
the regulation term lambda/alpha is 1.7293000901134588
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31842304829258244
the lambda is 0.5141040690616443
the regulation term lambda/alpha is 1.6145315856321452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3043358953874687
the lambda is 0.5329433502011601
the regulation term lambda/alpha is 1.751168226549935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31543069612741215
the lambda is 0.5005109238780259
the regulation term lambda/alpha is 1.586754016089335
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3124106789380656
the lambda is 0.50747658091026
the regulation term lambda/alpha is 1.6243893538955037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.279804609085964
the lambda is 0.4797169134448034
the regulation term lambda/alpha is 1.7144710911371035
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087741639577517
the lambda is 0.467329611079526
the regulation term lambda/alpha is 1.5134997212508647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3058339496628935
the lambda is 0.48566822401367565
the regulation term lambda/alpha is 1.5880127910881217
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30411093219298707
the lambda is 0.5299946046248619
the regulation term lambda/alpha is 1.7427673540145223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2848730943309052
the lambda is 0.5007827019076827
the regulation term lambda/alpha is 1.7579150571727196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29247497186591087
the lambda is 0.5305637156857055
the regulation term lambda/alpha is 1.8140482664238007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2889266021318652
the lambda is 0.48604035743444635
the regulation term lambda/alpha is 1.6822277832783947
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2891845388230828
the lambda is 0.5489048784506728
the regulation term lambda/alpha is 1.8981128129622504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2930077551474235
the lambda is 0.48111538510261215
the regulation term lambda/alpha is 1.6419885707821775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36506906774694314
the lambda is 0.5328816555701116
the regulation term lambda/alpha is 1.4596735320766534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31381683199450683
the lambda is 0.5242279397250966
the regulation term lambda/alpha is 1.670490191342805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3643891199822769
the lambda is 0.5231847292625723
the regulation term lambda/alpha is 1.4357858140441155
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3487010000044755
the lambda is 0.5350984206513562
the regulation term lambda/alpha is 1.5345479956882495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29331355321545244
the lambda is 0.4797503180691093
the regulation term lambda/alpha is 1.635622741635503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3115390454219855
the lambda is 0.5324120019510223
the regulation term lambda/alpha is 1.7089735934378956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31009177819762845
the lambda is 0.5784486283849513
the regulation term lambda/alpha is 1.8654110461977258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3687248282824266
the lambda is 0.5544023124664169
the regulation term lambda/alpha is 1.5035665351012646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2931271101024338
the lambda is 0.49289759374619574
the regulation term lambda/alpha is 1.6815148676420675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35887211189447693
the lambda is 0.5429988963800825
the regulation term lambda/alpha is 1.513070752457205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31559903151207386
the lambda is 0.5203424721160433
the regulation term lambda/alpha is 1.6487454654820024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31660199675069517
the lambda is 0.4699876929411085
the regulation term lambda/alpha is 1.4844748225362432
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2962077355088433
the lambda is 0.511916950850411
the regulation term lambda/alpha is 1.7282362662508108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30750657310890733
the lambda is 0.5529280806323431
the regulation term lambda/alpha is 1.798101663461082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3222507698995038
the lambda is 0.5064894886843407
the regulation term lambda/alpha is 1.5717246815028343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31564547583550173
the lambda is 0.5093893328576479
the regulation term lambda/alpha is 1.6138021034811711
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.324968017990459
the lambda is 0.5048866021919505
the regulation term lambda/alpha is 1.5536501262926552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3517041004272327
the lambda is 0.5629533779540242
the regulation term lambda/alpha is 1.6006449093717598
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32416871981457684
the lambda is 0.5322474090174241
the regulation term lambda/alpha is 1.6418839218104306
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29843541376489147
the lambda is 0.5188729047654297
the regulation term lambda/alpha is 1.7386438768094719
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35200745997708105
the lambda is 0.5273041523267509
the regulation term lambda/alpha is 1.497991412912338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.334594247705649
the lambda is 0.5633134062421883
the regulation term lambda/alpha is 1.6835716994685137
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25497462493814016
the lambda is 0.48457893659317436
the regulation term lambda/alpha is 1.9004986739787886
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30143687295395594
the lambda is 0.45717736261439657
the regulation term lambda/alpha is 1.5166603811081525
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32479638547523787
the lambda is 0.5590848022663901
the regulation term lambda/alpha is 1.7213393598834066
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3355683686102582
the lambda is 0.49653819890462475
the regulation term lambda/alpha is 1.4796930978954188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3370942182078789
the lambda is 0.5345439325080077
the regulation term lambda/alpha is 1.5857404358634408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29173731097528716
the lambda is 0.5333253778220102
the regulation term lambda/alpha is 1.8281013698216604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3039303975081965
the lambda is 0.5022097369916155
the regulation term lambda/alpha is 1.6523840363090756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35431124916767576
the lambda is 0.5065490114372315
the regulation term lambda/alpha is 1.4296723929234043
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3095778499819712
the lambda is 0.48812750322293763
the regulation term lambda/alpha is 1.5767520294212412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33735166355715523
the lambda is 0.49123833565500263
the regulation term lambda/alpha is 1.4561609996975022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31467260875038816
the lambda is 0.5171666313577852
the regulation term lambda/alpha is 1.6435069878230932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28996106115580955
the lambda is 0.4978637281741615
the regulation term lambda/alpha is 1.7170020215460455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27369603590174857
the lambda is 0.47805502993243665
the regulation term lambda/alpha is 1.7466640624055252
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34115442799843587
the lambda is 0.5103346106477511
the regulation term lambda/alpha is 1.4959049883711046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3331202139839825
the lambda is 0.5314607912567106
the regulation term lambda/alpha is 1.5954024071390185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2808605621183221
the lambda is 0.541979983659461
the regulation term lambda/alpha is 1.9297119523357409
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3666345080938921
the lambda is 0.5192855830916515
the regulation term lambda/alpha is 1.4163576303588608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32816729824402413
the lambda is 0.5243673242623418
the regulation term lambda/alpha is 1.5978658661851919
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33411849934782034
the lambda is 0.48143418727589904
the regulation term lambda/alpha is 1.4409085046641543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3507751122850594
the lambda is 0.5151227413752966
the regulation term lambda/alpha is 1.468527051476443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3133190123202593
the lambda is 0.5234685870507401
the regulation term lambda/alpha is 1.6707207876542014
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3619396578461516
the lambda is 0.5322633607593409
the regulation term lambda/alpha is 1.47058590906219
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28387893809014003
the lambda is 0.5015919452082588
the regulation term lambda/alpha is 1.7669220146546707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3425903488852032
the lambda is 0.544673892819392
the regulation term lambda/alpha is 1.589869342763955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33548568689505776
the lambda is 0.4964752709106903
the regulation term lambda/alpha is 1.4798702010377904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32196825893021086
the lambda is 0.5448445909411906
the regulation term lambda/alpha is 1.6922307582477873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28913790019737245
the lambda is 0.5127285471204172
the regulation term lambda/alpha is 1.7733010676580843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3545250176155613
the lambda is 0.5115156013573001
the regulation term lambda/alpha is 1.442819479419576
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29844157551038136
the lambda is 0.4999113801910301
the regulation term lambda/alpha is 1.6750728491367335
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3046740828993568
the lambda is 0.5083183139788384
the regulation term lambda/alpha is 1.668400243110772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30635021119427797
the lambda is 0.49289614080725574
the regulation term lambda/alpha is 1.6089303117688274
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32860406467734093
the lambda is 0.5018710982010078
the regulation term lambda/alpha is 1.5272820763608
940
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30076276146242253
the lambda is 0.5448239797445601
the regulation term lambda/alpha is 1.811474190140493
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3230149646900172
the lambda is 0.5046780631567145
the regulation term lambda/alpha is 1.56239839736537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3261748947590864
the lambda is 0.5780245918732912
the regulation term lambda/alpha is 1.7721308450186568
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33442344600354185
the lambda is 0.5126614140867617
the regulation term lambda/alpha is 1.532970909226658
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28945936885424745
the lambda is 0.48195305195897253
the regulation term lambda/alpha is 1.665011064822891
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33709441881367797
the lambda is 0.5538698081820886
the regulation term lambda/alpha is 1.643070241658996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3533290375922862
the lambda is 0.5345075056549176
the regulation term lambda/alpha is 1.5127754834339346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3054805100357425
the lambda is 0.49720956236780894
the regulation term lambda/alpha is 1.627631046935313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3360461131431492
the lambda is 0.5140882205032314
the regulation term lambda/alpha is 1.5298145117489865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29648901853612575
the lambda is 0.5336579854791932
the regulation term lambda/alpha is 1.7999249621927214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2850903784683665
the lambda is 0.5021903693279802
the regulation term lambda/alpha is 1.7615128648885745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3385020914531853
the lambda is 0.5611103775323794
the regulation term lambda/alpha is 1.6576275057076881
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30491210696699594
the lambda is 0.5487758726495177
the regulation term lambda/alpha is 1.7997838069083882
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2924210919924304
the lambda is 0.46840686742886334
the regulation term lambda/alpha is 1.601823125128705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30927682622338404
the lambda is 0.49720249377200626
the regulation term lambda/alpha is 1.607629319801955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3131820836874009
the lambda is 0.48464787245987234
the regulation term lambda/alpha is 1.5474955232228993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28634460507409887
the lambda is 0.5158336611716667
the regulation term lambda/alpha is 1.8014436173441501
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3350518048229367
the lambda is 0.5278221262596248
the regulation term lambda/alpha is 1.575344823283553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3488839853272725
the lambda is 0.5366055732518331
the regulation term lambda/alpha is 1.5380630691559756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3421998918290568
the lambda is 0.5644455797167927
the regulation term lambda/alpha is 1.649461595969051
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2814344295403355
the lambda is 0.5045266062369451
the regulation term lambda/alpha is 1.7926968177311646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321609873398398
the lambda is 0.5468553732971999
the regulation term lambda/alpha is 1.700368734077316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34091279645968847
the lambda is 0.5257367163325857
the regulation term lambda/alpha is 1.54214427206094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31938434712856656
the lambda is 0.5071997175256356
the regulation term lambda/alpha is 1.5880543993017446
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30062365238056354
the lambda is 0.4781048481392137
the regulation term lambda/alpha is 1.5903766864424038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35134676237461515
the lambda is 0.5215110515284131
the regulation term lambda/alpha is 1.4843200717255063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31211440463217943
the lambda is 0.5006541481948166
the regulation term lambda/alpha is 1.6040725476442763
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32678082145099185
the lambda is 0.49381132269934513
the regulation term lambda/alpha is 1.5111392416075533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073566865179323
the lambda is 0.5168855303618366
the regulation term lambda/alpha is 1.6817123330475507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29226065889059105
the lambda is 0.5416592823157199
the regulation term lambda/alpha is 1.853343123127948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3219108401079159
the lambda is 0.4760536356545991
the regulation term lambda/alpha is 1.4788369211021573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35230158881322404
the lambda is 0.49009106649575496
the regulation term lambda/alpha is 1.3911122800969862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.341510426220024
the lambda is 0.5433810603098687
the regulation term lambda/alpha is 1.591111188973733
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282013323673177
the lambda is 0.4952537175731021
the regulation term lambda/alpha is 1.508993622910775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314525355229124
the lambda is 0.5406921957970533
the regulation term lambda/alpha is 1.6312809161168018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37354703872725614
the lambda is 0.5594247003200262
the regulation term lambda/alpha is 1.4976017537873936
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3722905988151105
the lambda is 0.5462657610630092
the regulation term lambda/alpha is 1.4673101142000617
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30298466281766817
the lambda is 0.4990193522098087
the regulation term lambda/alpha is 1.647011923207847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3441880504591547
the lambda is 0.5370135725661754
the regulation term lambda/alpha is 1.5602330523961745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2909937256552854
the lambda is 0.4895395207460823
the regulation term lambda/alpha is 1.682302666986011
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34951070410211854
the lambda is 0.5050196427999682
the regulation term lambda/alpha is 1.4449332649120061
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.353714450597914
the lambda is 0.5307603510627737
the regulation term lambda/alpha is 1.5005334109635153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236476601103857
the lambda is 0.5000623401861068
the regulation term lambda/alpha is 1.5450825135443644
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33684631691118844
the lambda is 0.45862833815182985
the regulation term lambda/alpha is 1.3615358551560175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30444219976234743
the lambda is 0.5373259199161776
the regulation term lambda/alpha is 1.7649521660782344
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33019150918406787
the lambda is 0.5204293458138646
the regulation term lambda/alpha is 1.576143938709663
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2936156759698589
the lambda is 0.49372359419676065
the regulation term lambda/alpha is 1.6815300905372772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3185114620122196
the lambda is 0.5229588673109351
the regulation term lambda/alpha is 1.6418839812140638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31312946330464714
the lambda is 0.5315004825980438
the regulation term lambda/alpha is 1.6973825362480857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3160287642780962
the lambda is 0.5107314285528468
the regulation term lambda/alpha is 1.6160915912812859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28187841063715785
the lambda is 0.484361278753697
the regulation term lambda/alpha is 1.718334077657267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3456203091378112
the lambda is 0.5015556003612727
the regulation term lambda/alpha is 1.4511751395988841
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3237703688408927
the lambda is 0.5661649183394677
the regulation term lambda/alpha is 1.7486619308813047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32448161407851156
the lambda is 0.5600202602022395
the regulation term lambda/alpha is 1.725892118086965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31502586289569934
the lambda is 0.5345110218117947
the regulation term lambda/alpha is 1.6967210783857571
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3187155239402567
the lambda is 0.47841928288936286
the regulation term lambda/alpha is 1.5010855981368596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29384077477719733
the lambda is 0.4887118457598053
the regulation term lambda/alpha is 1.663185941877425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.259171829172495
the lambda is 0.4996014877484686
the regulation term lambda/alpha is 1.9276843835367334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31311439653063067
the lambda is 0.5334782217183363
the regulation term lambda/alpha is 1.7037805595315332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34784938471957394
the lambda is 0.49622599979419896
the regulation term lambda/alpha is 1.4265541972835223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32911971838694865
the lambda is 0.554035594185939
the regulation term lambda/alpha is 1.6833862063972567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026630277494894
the lambda is 0.5336787693712695
the regulation term lambda/alpha is 1.7632770455629918
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3728811264157798
the lambda is 0.5296003162840474
the regulation term lambda/alpha is 1.42029263152761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3054235861840668
the lambda is 0.5122874518129591
the regulation term lambda/alpha is 1.6773015411593772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32292489590754386
the lambda is 0.5244254299571088
the regulation term lambda/alpha is 1.623985752115118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31360356567983
the lambda is 0.5205341148489909
the regulation term lambda/alpha is 1.6598475649362492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3222079081505385
the lambda is 0.4653646380959008
the regulation term lambda/alpha is 1.444299243823892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29899089544062973
the lambda is 0.4814178021484498
the regulation term lambda/alpha is 1.6101420126488246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32954870018692045
the lambda is 0.4981848091055818
the regulation term lambda/alpha is 1.5117183251610786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26783123961661504
the lambda is 0.4815994949364538
the regulation term lambda/alpha is 1.798145338183237
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012729376426722
the lambda is 0.475268027104789
the regulation term lambda/alpha is 1.5775330861893921
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3133105741207247
the lambda is 0.4878740341209247
the regulation term lambda/alpha is 1.5571578951335912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3392274766414637
the lambda is 0.5327224308858016
the regulation term lambda/alpha is 1.5703988254726389
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3392953603321819
the lambda is 0.5512131713328307
the regulation term lambda/alpha is 1.624582106849837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29860851145135076
the lambda is 0.5046850420307647
the regulation term lambda/alpha is 1.6901227616647756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31164583850685385
the lambda is 0.5147487549679151
the regulation term lambda/alpha is 1.6517106643687607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30893212110592455
the lambda is 0.5175583894639469
the regulation term lambda/alpha is 1.67531426518931
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29562213743676563
the lambda is 0.5227509704919652
the regulation term lambda/alpha is 1.7683079319585226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29666771777617096
the lambda is 0.5526695508237736
the regulation term lambda/alpha is 1.8629244697286214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3021121931366767
the lambda is 0.5304091335180859
the regulation term lambda/alpha is 1.7556694021883679
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282390701386324
the lambda is 0.5015688544719384
the regulation term lambda/alpha is 1.5280595763938152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3301189128729331
the lambda is 0.4917082726243743
the regulation term lambda/alpha is 1.4894883432917367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3349795979582165
the lambda is 0.48034645417163124
the regulation term lambda/alpha is 1.4339573427738932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235967696549265
the lambda is 0.4973959376038501
the regulation term lambda/alpha is 1.5370856085314375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30124919369119296
the lambda is 0.5638983278822125
the regulation term lambda/alpha is 1.871866679451624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33114259723995443
the lambda is 0.5211986787183309
the regulation term lambda/alpha is 1.5739402996246266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36782827487874387
the lambda is 0.48471105291437594
the regulation term lambda/alpha is 1.3177645276839116
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2852158502217372
the lambda is 0.5016532647551791
the regulation term lambda/alpha is 1.7588547914331396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29459905710805395
the lambda is 0.5468690744303292
the regulation term lambda/alpha is 1.8563164451329077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35317712104170434
the lambda is 0.5742611086900338
the regulation term lambda/alpha is 1.6259861539055445
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33075446945085146
the lambda is 0.5118580834074749
the regulation term lambda/alpha is 1.5475469893341367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3279825839568134
the lambda is 0.5061093114375136
the regulation term lambda/alpha is 1.5430981283571896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30477113520740207
the lambda is 0.5290606200093299
the regulation term lambda/alpha is 1.735927582673782
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2702337062926458
the lambda is 0.49067346938968864
the regulation term lambda/alpha is 1.8157374819050909
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33802173780152583
the lambda is 0.5377960131665209
the regulation term lambda/alpha is 1.5910101423189988
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37390602735470957
the lambda is 0.5374497747930808
the regulation term lambda/alpha is 1.4373926480816632
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33307169369129186
the lambda is 0.5238363800419554
the regulation term lambda/alpha is 1.5727436163562858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3565789102924566
the lambda is 0.5398300949605194
the regulation term lambda/alpha is 1.5139148148659858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3241920880548513
the lambda is 0.49403868017295194
the regulation term lambda/alpha is 1.5239072709552481
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2953707038589394
the lambda is 0.5009806776158429
the regulation term lambda/alpha is 1.696108216118471
950
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32074908837422567
the lambda is 0.4983778429054148
the regulation term lambda/alpha is 1.5537934821000814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31493718449118857
the lambda is 0.5348292729792623
the regulation term lambda/alpha is 1.698209355123723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178699595229863
the lambda is 0.4919361494490387
the regulation term lambda/alpha is 1.5476018878514535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105238551274413
the lambda is 0.5071958617119315
the regulation term lambda/alpha is 1.633355548493286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34831574535435905
the lambda is 0.5209107979839791
the regulation term lambda/alpha is 1.495513208723971
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3123070222717826
the lambda is 0.539745754001125
the regulation term lambda/alpha is 1.7282536590913276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3151925786801576
the lambda is 0.5407331067956429
the regulation term lambda/alpha is 1.71556420858612
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3001912182324343
the lambda is 0.550572455874232
the regulation term lambda/alpha is 1.8340724925801482
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.26767697019880105
the lambda is 0.5203686080431501
the regulation term lambda/alpha is 1.9440171026169246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30442408717750447
the lambda is 0.4870202608209652
the regulation term lambda/alpha is 1.5998085609335901
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3476446258866518
the lambda is 0.5115576737391957
the regulation term lambda/alpha is 1.4714959923067734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3148831039183232
the lambda is 0.5832149038778051
the regulation term lambda/alpha is 1.8521632206378524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33349579026980525
the lambda is 0.563309156982667
the regulation term lambda/alpha is 1.6891042508420806
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27547560370119933
the lambda is 0.511192661005239
the regulation term lambda/alpha is 1.8556730764431515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33131695336950745
the lambda is 0.4956304341526604
the regulation term lambda/alpha is 1.4959404555428808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3181453336006537
the lambda is 0.5338166401573695
the regulation term lambda/alpha is 1.6779018384957152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33494310600753885
the lambda is 0.530885069775486
the regulation term lambda/alpha is 1.5850007367028385
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3002928632638432
the lambda is 0.5243214653443911
the regulation term lambda/alpha is 1.7460337207005547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2637384719981754
the lambda is 0.4991056763755996
the regulation term lambda/alpha is 1.8924265109833978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3174105713887942
the lambda is 0.5037513325481848
the regulation term lambda/alpha is 1.5870653908723884
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30912009734295376
the lambda is 0.49879638800439924
the regulation term lambda/alpha is 1.6136006435421404
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.289920695371479
the lambda is 0.5322626716441192
the regulation term lambda/alpha is 1.8358905733242823
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32606307634166354
the lambda is 0.4854951404778604
the regulation term lambda/alpha is 1.4889608045319942
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30219416498620133
the lambda is 0.5170997535738294
the regulation term lambda/alpha is 1.7111506888210135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32831524313290994
the lambda is 0.5356563523281274
the regulation term lambda/alpha is 1.631530559521663
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30450344954318986
the lambda is 0.5277723012029212
the regulation term lambda/alpha is 1.7332227335837243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28125459913986545
the lambda is 0.457111955458336
the regulation term lambda/alpha is 1.6252603756748463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3562553084310916
the lambda is 0.6000613926654429
the regulation term lambda/alpha is 1.6843577582269467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3415163307505917
the lambda is 0.5511207065618262
the regulation term lambda/alpha is 1.6137462748869482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27058480632477483
the lambda is 0.4850419428288598
the regulation term lambda/alpha is 1.7925690263875294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090143908077905
the lambda is 0.46701433012885624
the regulation term lambda/alpha is 1.511302851974111
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33758919110045676
the lambda is 0.5376962423733522
the regulation term lambda/alpha is 1.5927531347215125
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.334042429500441
the lambda is 0.5020717364864233
the regulation term lambda/alpha is 1.5030178568550991
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34446237445399225
the lambda is 0.5430774615420155
the regulation term lambda/alpha is 1.5765944318384506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30540855628183317
the lambda is 0.5208014662830345
the regulation term lambda/alpha is 1.7052615441541041
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3202180792335603
the lambda is 0.4870429923387714
the regulation term lambda/alpha is 1.520972811730385
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29187143800804805
the lambda is 0.5246713099963383
the regulation term lambda/alpha is 1.797611008384695
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32771003925797487
the lambda is 0.5558208938315861
the regulation term lambda/alpha is 1.6960752715727492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.312248880322489
the lambda is 0.5573216797886212
the regulation term lambda/alpha is 1.7848636613621236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29631673321429064
the lambda is 0.5226116506754208
the regulation term lambda/alpha is 1.7636926710361578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2845175099000926
the lambda is 0.4965498445515402
the regulation term lambda/alpha is 1.745234747506057
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29563074568647163
the lambda is 0.5140433396400029
the regulation term lambda/alpha is 1.7388020263128068
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3182439068480121
the lambda is 0.5349276970609428
the regulation term lambda/alpha is 1.6808733350436624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3264270507904464
the lambda is 0.5511950596666574
the regulation term lambda/alpha is 1.688570412078083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3323092976554688
the lambda is 0.46880392687257894
the regulation term lambda/alpha is 1.410745742535994
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3027546632680075
the lambda is 0.5295979150240244
the regulation term lambda/alpha is 1.749264269978258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3726140921461547
the lambda is 0.5539209410926571
the regulation term lambda/alpha is 1.4865807621558937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2905251366863685
the lambda is 0.47950714413220374
the regulation term lambda/alpha is 1.6504841873625813
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.330552800153304
the lambda is 0.481163330697454
the regulation term lambda/alpha is 1.4556322937645656
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3375391037438135
the lambda is 0.5245257150934011
the regulation term lambda/alpha is 1.553970219377922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31121520596145186
the lambda is 0.5534951476520454
the regulation term lambda/alpha is 1.7784964778379215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33005135322569035
the lambda is 0.5923391760391788
the regulation term lambda/alpha is 1.7946879182589963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3879226670924654
the lambda is 0.5488426998096171
the regulation term lambda/alpha is 1.4148250318118036
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3286029052743402
the lambda is 0.47801516673916833
the regulation term lambda/alpha is 1.4546894110387993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32443294709872683
the lambda is 0.5588117998889973
the regulation term lambda/alpha is 1.7224261743026599
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089942099568801
the lambda is 0.49283883581162463
the regulation term lambda/alpha is 1.594977575406348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30682426957570547
the lambda is 0.5350495295226545
the regulation term lambda/alpha is 1.7438305329058625
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3456516377726265
the lambda is 0.500282130330742
the regulation term lambda/alpha is 1.447359351613526
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29500627028241644
the lambda is 0.4971375891104993
the regulation term lambda/alpha is 1.6851763477250088
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3382985717709061
the lambda is 0.5286481243689554
the regulation term lambda/alpha is 1.5626673254977645
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.314740192220923
the lambda is 0.473324072622571
the regulation term lambda/alpha is 1.5038564642241006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33664342425331156
the lambda is 0.5008837151277125
the regulation term lambda/alpha is 1.4878761295833784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.331674601495887
the lambda is 0.5235601239574704
the regulation term lambda/alpha is 1.5785354730092678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3487466230560324
the lambda is 0.5566654446642414
the regulation term lambda/alpha is 1.5961887739191187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37285966744289806
the lambda is 0.528439781432961
the regulation term lambda/alpha is 1.4172618482901196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2864440430535553
the lambda is 0.5289565845502435
the regulation term lambda/alpha is 1.8466314708850364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29877241587841136
the lambda is 0.5273464313458749
the regulation term lambda/alpha is 1.7650439040546642
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28533215370382714
the lambda is 0.5332746929799768
the regulation term lambda/alpha is 1.8689610899355995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31239849475139736
the lambda is 0.5496283951222156
the regulation term lambda/alpha is 1.7593823413253087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026186500605725
the lambda is 0.522759020613793
the regulation term lambda/alpha is 1.7274514327162485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3258235120111595
the lambda is 0.5122275996054494
the regulation term lambda/alpha is 1.5721014006745637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2980494718825454
the lambda is 0.498827358338161
the regulation term lambda/alpha is 1.6736394639032868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30271799448130915
the lambda is 0.48315810981277085
the regulation term lambda/alpha is 1.5960666977879396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30206861016269737
the lambda is 0.49889728179387965
the regulation term lambda/alpha is 1.6516025333621003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31651884730909285
the lambda is 0.5285582400572095
the regulation term lambda/alpha is 1.6699107953626915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31524377934259407
the lambda is 0.5073764386145866
the regulation term lambda/alpha is 1.6094732770704117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3193356164834442
the lambda is 0.47108301827897836
the regulation term lambda/alpha is 1.4751972343911768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3664524513010398
the lambda is 0.5283614406966448
the regulation term lambda/alpha is 1.441828097535626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28424928999034343
the lambda is 0.46189787161524615
the regulation term lambda/alpha is 1.6249745835106142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3377267524593898
the lambda is 0.5615274741041009
the regulation term lambda/alpha is 1.662668029745799
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33418039226737406
the lambda is 0.4866098228057192
the regulation term lambda/alpha is 1.4561291867070048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3008361049029199
the lambda is 0.5355210806621611
the regulation term lambda/alpha is 1.7801090757872107
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3143946113865204
the lambda is 0.5680034409761778
the regulation term lambda/alpha is 1.806657685611118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3254866462156539
the lambda is 0.5353329246176153
the regulation term lambda/alpha is 1.6447154770918806
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.301521931085644
the lambda is 0.5269850671401078
the regulation term lambda/alpha is 1.7477503717314131
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28618402832995016
the lambda is 0.48469751043395465
the regulation term lambda/alpha is 1.6936567468927104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31396687705318826
the lambda is 0.523740335521954
the regulation term lambda/alpha is 1.6681388190934185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30030726514551587
the lambda is 0.5058631513286796
the regulation term lambda/alpha is 1.6844852257688814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31399457850140855
the lambda is 0.489032176568366
the regulation term lambda/alpha is 1.557454204790266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2982015823975818
the lambda is 0.4916234801695523
the regulation term lambda/alpha is 1.6486280059845149
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3013601199803568
the lambda is 0.44112973669811323
the regulation term lambda/alpha is 1.4637959950602186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32251993364564774
the lambda is 0.5244367209814379
the regulation term lambda/alpha is 1.6260598687758503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3638027432928894
the lambda is 0.5119309927382122
the regulation term lambda/alpha is 1.407166389413584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3256470172067555
the lambda is 0.5526096337972675
the regulation term lambda/alpha is 1.6969589911717566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2936677738347279
the lambda is 0.5084596508341794
the regulation term lambda/alpha is 1.7314111255541895
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3216595499765926
the lambda is 0.5025869320161146
the regulation term lambda/alpha is 1.5624809897691154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30142236982519377
the lambda is 0.5075350432393265
the regulation term lambda/alpha is 1.6838001888634386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3753036093149486
the lambda is 0.5383545452275406
the regulation term lambda/alpha is 1.4344507536450637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3432420301026709
the lambda is 0.5160376505506791
the regulation term lambda/alpha is 1.5034220908095706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3464501717399134
the lambda is 0.5509913316436176
the regulation term lambda/alpha is 1.5903912787125332
960
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3595141592581721
the lambda is 0.5112320586405485
the regulation term lambda/alpha is 1.4220081336864
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31538830833606685
the lambda is 0.46967641081751077
the regulation term lambda/alpha is 1.4892004503763654
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3032061704455637
the lambda is 0.5200907601386755
the regulation term lambda/alpha is 1.7153040103847434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3437279059909175
the lambda is 0.5230072425980136
the regulation term lambda/alpha is 1.5215734116502988
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34468788352493485
the lambda is 0.5494319892289155
the regulation term lambda/alpha is 1.5939985577972002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35058361222364953
the lambda is 0.5341714508969991
the regulation term lambda/alpha is 1.5236634921664065
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3240022052848182
the lambda is 0.5041249243189806
the regulation term lambda/alpha is 1.5559305341018381
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29554831756264327
the lambda is 0.5203286480541822
the regulation term lambda/alpha is 1.7605535783295243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3157497847562293
the lambda is 0.4520405212606646
the regulation term lambda/alpha is 1.4316415816709325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3193607433505322
the lambda is 0.5116190188905442
the regulation term lambda/alpha is 1.602009732075893
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28183995726633415
the lambda is 0.4688366060696629
the regulation term lambda/alpha is 1.6634852297632872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29430805562753953
the lambda is 0.5202790241720395
the regulation term lambda/alpha is 1.7678042249393158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3123124567942203
the lambda is 0.44738187844950866
the regulation term lambda/alpha is 1.4324816981100574
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33504428759271754
the lambda is 0.5387123775003735
the regulation term lambda/alpha is 1.6078840841340847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34108873789776645
the lambda is 0.4822210112954315
the regulation term lambda/alpha is 1.41376995988641
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37055724734016093
the lambda is 0.5503026758150303
the regulation term lambda/alpha is 1.4850679072264055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29235671338157676
the lambda is 0.5039670566598432
the regulation term lambda/alpha is 1.7238087363572112
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32479818422048046
the lambda is 0.5405590470375375
the regulation term lambda/alpha is 1.664292084436635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32574046025917913
the lambda is 0.5656994188336466
the regulation term lambda/alpha is 1.7366569028101126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3481340029377165
the lambda is 0.4999210434230853
the regulation term lambda/alpha is 1.4360017671486243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31812807003502536
the lambda is 0.49798511526629036
the regulation term lambda/alpha is 1.5653605015472638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156288736519454
the lambda is 0.4926437829799618
the regulation term lambda/alpha is 1.5608324336106736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30999474684693257
the lambda is 0.5118369836185831
the regulation term lambda/alpha is 1.651115023156554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224491010911434
the lambda is 0.4911048059003156
the regulation term lambda/alpha is 1.5230459760577841
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30314863345044607
the lambda is 0.5145998242267976
the regulation term lambda/alpha is 1.6975165560524166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3191291065054719
the lambda is 0.5127544252641036
the regulation term lambda/alpha is 1.6067303633907546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3056143018410402
the lambda is 0.4855803404190307
the regulation term lambda/alpha is 1.5888665468005374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34124414662733676
the lambda is 0.5244930211131884
the regulation term lambda/alpha is 1.537002249846567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2941161479227488
the lambda is 0.5011072773482516
the regulation term lambda/alpha is 1.7037734272239622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3306610592429045
the lambda is 0.588711047743723
the regulation term lambda/alpha is 1.780406344465419
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31044795617390203
the lambda is 0.5243117251902123
the regulation term lambda/alpha is 1.6888876694569421
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3516835156241858
the lambda is 0.5074994156483047
the regulation term lambda/alpha is 1.4430571610601903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3365815651513694
the lambda is 0.5219088014853402
the regulation term lambda/alpha is 1.5506161225752944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35875819452831975
the lambda is 0.49211635326966313
the regulation term lambda/alpha is 1.3717215683858515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320654201103258
the lambda is 0.5158789701364637
the regulation term lambda/alpha is 1.608832718740332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3273236425508727
the lambda is 0.5010812102846448
the regulation term lambda/alpha is 1.5308433157460255
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29691142037402396
the lambda is 0.4821688948927689
the regulation term lambda/alpha is 1.6239486318356269
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30455691442056143
the lambda is 0.5388567077786521
the regulation term lambda/alpha is 1.7693136562138498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31401134807966463
the lambda is 0.5036270535550031
the regulation term lambda/alpha is 1.60384985012463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3475747184895957
the lambda is 0.5190976290320529
the regulation term lambda/alpha is 1.4934850016935037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32152052735957143
the lambda is 0.5191742603937484
the regulation term lambda/alpha is 1.614746855068235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3266337333680748
the lambda is 0.49356146645912763
the regulation term lambda/alpha is 1.511054787176395
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3254368532344772
the lambda is 0.5358139036035083
the regulation term lambda/alpha is 1.6464450730706104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3406032942992363
the lambda is 0.5096044243851323
the regulation term lambda/alpha is 1.4961817249407472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3710762873744915
the lambda is 0.5622001545306268
the regulation term lambda/alpha is 1.515052763162019
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2912474222251558
the lambda is 0.520547083116797
the regulation term lambda/alpha is 1.7873019412146953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32202318488408427
the lambda is 0.5180964908329088
the regulation term lambda/alpha is 1.6088794694065374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38783159595605415
the lambda is 0.5443433948204431
the regulation term lambda/alpha is 1.4035560807740988
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34569822517372
the lambda is 0.5517904106730431
the regulation term lambda/alpha is 1.5961621162381086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3340699357863412
the lambda is 0.5208259839582905
the regulation term lambda/alpha is 1.559032789743138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34495968267282373
the lambda is 0.48243266859635897
the regulation term lambda/alpha is 1.3985189946209489
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32988120034378193
the lambda is 0.5148548908844047
the regulation term lambda/alpha is 1.5607281965381918
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3549380273678849
the lambda is 0.5348509838571253
the regulation term lambda/alpha is 1.5068855479459935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33172851501976525
the lambda is 0.5034575716427105
the regulation term lambda/alpha is 1.517679514565437
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2964368571219446
the lambda is 0.46263009972144525
the regulation term lambda/alpha is 1.560636231988973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32984348313618833
the lambda is 0.48337851349810135
the regulation term lambda/alpha is 1.4654784411748414
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2918434555251289
the lambda is 0.5127361921799203
the regulation term lambda/alpha is 1.7568877508571425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29908054257825395
the lambda is 0.5106773166576104
the regulation term lambda/alpha is 1.7074909395819104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32553817663493
the lambda is 0.4672063001530075
the regulation term lambda/alpha is 1.4351812895878848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3453223230526951
the lambda is 0.5554341333226207
the regulation term lambda/alpha is 1.6084512823049184
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3035529030980033
the lambda is 0.5326944251764593
the regulation term lambda/alpha is 1.7548651972683544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33532831558246484
the lambda is 0.5260956295778393
the regulation term lambda/alpha is 1.568897123000221
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32400219714367323
the lambda is 0.5066621620215276
the regulation term lambda/alpha is 1.5637615006569134
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2725977390576992
the lambda is 0.5467150368985986
the regulation term lambda/alpha is 2.005574363120006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33023123616511113
the lambda is 0.5214629239482887
the regulation term lambda/alpha is 1.5790841896239167
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31424257338759604
the lambda is 0.484460515481301
the regulation term lambda/alpha is 1.5416768971139794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34494923101177943
the lambda is 0.5353768656454462
the regulation term lambda/alpha is 1.5520453954198377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36348867624593323
the lambda is 0.5213522283297113
the regulation term lambda/alpha is 1.4343011554422371
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3042702553648489
the lambda is 0.532038689253993
the regulation term lambda/alpha is 1.7485727897261207
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2973087203315634
the lambda is 0.5158322438764231
the regulation term lambda/alpha is 1.7350054290407586
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30910648001694097
the lambda is 0.49423553450739993
the regulation term lambda/alpha is 1.5989167696526865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3194385517248252
the lambda is 0.48824106969491365
the regulation term lambda/alpha is 1.528435021567154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34138174567380813
the lambda is 0.47932479303673226
the regulation term lambda/alpha is 1.404072710714677
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29604266320038286
the lambda is 0.5165342500499467
the regulation term lambda/alpha is 1.744796660271629
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27477876355815956
the lambda is 0.5034080479346889
the regulation term lambda/alpha is 1.8320485958083792
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3304607043970556
the lambda is 0.5527595408885956
the regulation term lambda/alpha is 1.6726937077046327
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3126491187792188
the lambda is 0.5308173400374421
the regulation term lambda/alpha is 1.6978053292140751
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3151101991361291
the lambda is 0.4675760898721441
the regulation term lambda/alpha is 1.4838494315766309
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27607550292572786
the lambda is 0.4763107386028087
the regulation term lambda/alpha is 1.7252915726135607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30908517596661433
the lambda is 0.4914648670178313
the regulation term lambda/alpha is 1.5900628863252784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31909351419821563
the lambda is 0.5030954203763982
the regulation term lambda/alpha is 1.5766394426427721
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35431143103576046
the lambda is 0.5337673107480075
the regulation term lambda/alpha is 1.5064919277022555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3572948665753773
the lambda is 0.5331076995436854
the regulation term lambda/alpha is 1.4920664958146481
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3431774919152962
the lambda is 0.49161004287882654
the regulation term lambda/alpha is 1.4325241440955772
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33193777615869785
the lambda is 0.5470291087914284
the regulation term lambda/alpha is 1.6479869062263537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3423780632897142
the lambda is 0.5482978373582066
the regulation term lambda/alpha is 1.6014397420498483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27321229792459173
the lambda is 0.4764931077121488
the regulation term lambda/alpha is 1.744039749790706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29567000704089774
the lambda is 0.5108753475156244
the regulation term lambda/alpha is 1.7278565135115613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3056073210175399
the lambda is 0.5366889743742236
the regulation term lambda/alpha is 1.7561391284321395
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2939070668961563
the lambda is 0.5144502612244806
the regulation term lambda/alpha is 1.7503841151470063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159318655276673
the lambda is 0.5157966127791631
the regulation term lambda/alpha is 1.6326197799569317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29681835706976833
the lambda is 0.5027833690953621
the regulation term lambda/alpha is 1.693909278586772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36235526655288985
the lambda is 0.47870743185498466
the regulation term lambda/alpha is 1.321099694255753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3382243805516083
the lambda is 0.5203650105325314
the regulation term lambda/alpha is 1.5385201081124633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34764464054432415
the lambda is 0.5199556710849808
the regulation term lambda/alpha is 1.4956527742549428
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34460354039941293
the lambda is 0.5386647070115793
the regulation term lambda/alpha is 1.5631432758561903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33501650963821306
the lambda is 0.5112605879912995
the regulation term lambda/alpha is 1.5260758000953856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3397458938421208
the lambda is 0.5130894288800362
the regulation term lambda/alpha is 1.5102152466880667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128175711599836
the lambda is 0.5069807123635839
the regulation term lambda/alpha is 1.6206912881639244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3021351071805441
the lambda is 0.5252866766576435
the regulation term lambda/alpha is 1.7385820587335876
970
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3269017323174724
the lambda is 0.47390188179356446
the regulation term lambda/alpha is 1.4496768751697287
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2960078618319787
the lambda is 0.4910545922982449
the regulation term lambda/alpha is 1.6589241557948198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28299879347191303
the lambda is 0.5183407104045438
the regulation term lambda/alpha is 1.831600425024384
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33464235178000207
the lambda is 0.5426637777447759
the regulation term lambda/alpha is 1.6216231294642875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30311044769202056
the lambda is 0.548882529771787
the regulation term lambda/alpha is 1.8108334237607224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27393353809595145
the lambda is 0.4807850822538037
the regulation term lambda/alpha is 1.7551158050804199
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34334464520162117
the lambda is 0.565545018381211
the regulation term lambda/alpha is 1.6471642307079168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080655257592687
the lambda is 0.5290649843681321
the regulation term lambda/alpha is 1.7173780904701383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.300259404743316
the lambda is 0.4989178112973258
the regulation term lambda/alpha is 1.6616225950485637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317384897284596
the lambda is 0.5040483037184027
the regulation term lambda/alpha is 1.5881294542708735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33655494861615864
the lambda is 0.5065429227336552
the regulation term lambda/alpha is 1.5050823790184944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314533618657148
the lambda is 0.5114024546187803
the regulation term lambda/alpha is 1.5429092399007562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321718636450506
the lambda is 0.50987705894133
the regulation term lambda/alpha is 1.5848539722993966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3041837351449526
the lambda is 0.520687278441842
the regulation term lambda/alpha is 1.7117525307318586
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3355417567188805
the lambda is 0.5144353272240337
the regulation term lambda/alpha is 1.5331484589413762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3295992406335172
the lambda is 0.5208462516962006
the regulation term lambda/alpha is 1.580241054849188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32689532960947587
the lambda is 0.4894631676511594
the regulation term lambda/alpha is 1.4973085367597465
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32886741741302744
the lambda is 0.5497520996019826
the regulation term lambda/alpha is 1.6716526797531424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3213038097862848
the lambda is 0.5565822534661744
the regulation term lambda/alpha is 1.7322616057256994
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.297967676571209
the lambda is 0.4621329786262002
the regulation term lambda/alpha is 1.5509500357357004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3488591850342533
the lambda is 0.5092710276380475
the regulation term lambda/alpha is 1.4598183149113415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2975618440840047
the lambda is 0.4957502962183166
the regulation term lambda/alpha is 1.6660412148755246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28952422861654625
the lambda is 0.4766290796927268
the regulation term lambda/alpha is 1.646249372531745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33628948527887487
the lambda is 0.5501497961501165
the regulation term lambda/alpha is 1.63594111690377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.289260329020628
the lambda is 0.5119594809292966
the regulation term lambda/alpha is 1.7698917880052167
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2983825163751079
the lambda is 0.4871619572832136
the regulation term lambda/alpha is 1.632675946303717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3780236784291789
the lambda is 0.4763170598465451
the regulation term lambda/alpha is 1.2600191126275733
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3466887728557308
the lambda is 0.5465607260226728
the regulation term lambda/alpha is 1.5765169478104664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32583065717284637
the lambda is 0.5073409759601388
the regulation term lambda/alpha is 1.557069492362117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.343014438414719
the lambda is 0.5179486347342926
the regulation term lambda/alpha is 1.509990766359726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31454291530754364
the lambda is 0.4918189770706433
the regulation term lambda/alpha is 1.5635989657874456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31244634998004767
the lambda is 0.5192546420810836
the regulation term lambda/alpha is 1.6619001697867246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3413992420039544
the lambda is 0.5378414765224405
the regulation term lambda/alpha is 1.5754032532861064
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29938211442889806
the lambda is 0.5069773541768573
the regulation term lambda/alpha is 1.6934122973376962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3004756346417073
the lambda is 0.476814961073238
the regulation term lambda/alpha is 1.5868673067012604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33786967066098134
the lambda is 0.5853921913212289
the regulation term lambda/alpha is 1.7325976320277998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3491651460148887
the lambda is 0.5908559094225795
the regulation term lambda/alpha is 1.6921961317335634
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28808813650340426
the lambda is 0.5060787864317537
the regulation term lambda/alpha is 1.7566804123701691
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33246073592232533
the lambda is 0.48635534977928935
the regulation term lambda/alpha is 1.4628956060932239
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.335913912718112
the lambda is 0.5705596821918956
the regulation term lambda/alpha is 1.6985294761241123
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3345744649594016
the lambda is 0.5608080285302719
the regulation term lambda/alpha is 1.676182994414479
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33556350711297694
the lambda is 0.5112098119583602
the regulation term lambda/alpha is 1.5234368491274797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35484437849981726
the lambda is 0.5109930778622737
the regulation term lambda/alpha is 1.4400483953630867
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2937648725967168
the lambda is 0.5434388110676203
the regulation term lambda/alpha is 1.8499108020095316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31521211393449766
the lambda is 0.5139236660222151
the regulation term lambda/alpha is 1.6304058229469267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3245709228586672
the lambda is 0.5081690479596525
the regulation term lambda/alpha is 1.5656641189048601
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31972221976006016
the lambda is 0.5034478672011776
the regulation term lambda/alpha is 1.5746414733983671
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31351567708071
the lambda is 0.4997200190051411
the regulation term lambda/alpha is 1.5939235436590165
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36099761126381297
the lambda is 0.5128386731116673
the regulation term lambda/alpha is 1.4206151428988005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3296865678413447
the lambda is 0.4857477284598295
the regulation term lambda/alpha is 1.4733622047155595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3351874872383034
the lambda is 0.4828903838713099
the regulation term lambda/alpha is 1.4406575491524727
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2802252683513564
the lambda is 0.5178156803450917
the regulation term lambda/alpha is 1.8478550610069753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30039081468999057
the lambda is 0.5014912558995304
the regulation term lambda/alpha is 1.669462684526754
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3446605764410045
the lambda is 0.5280581652196593
the regulation term lambda/alpha is 1.5321107237515659
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3576847492215389
the lambda is 0.5450505478605058
the regulation term lambda/alpha is 1.5238294309353353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3133558712127893
the lambda is 0.5105798012166608
the regulation term lambda/alpha is 1.6293928026321978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3024900156210718
the lambda is 0.4807080219095249
the regulation term lambda/alpha is 1.5891698802769945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32570713904234666
the lambda is 0.4961613173705518
the regulation term lambda/alpha is 1.5233357144991644
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2787598738827659
the lambda is 0.4885703352044172
the regulation term lambda/alpha is 1.7526566087122293
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2878444822496543
the lambda is 0.48203379903614585
the regulation term lambda/alpha is 1.6746327574834892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3202939257646257
the lambda is 0.4998756816373519
the regulation term lambda/alpha is 1.5606779942642293
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196498363149364
the lambda is 0.5116705081105197
the regulation term lambda/alpha is 1.6007219462687106
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2877719321449121
the lambda is 0.5188570470404723
the regulation term lambda/alpha is 1.8030147803962815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298710060866514
the lambda is 0.4893203230794499
the regulation term lambda/alpha is 1.6381112897905195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27926760938127376
the lambda is 0.5002295576709589
the regulation term lambda/alpha is 1.7912193926794207
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3067281625568627
the lambda is 0.5192731746190005
the regulation term lambda/alpha is 1.6929426052383931
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3260500217068487
the lambda is 0.5274341895363832
the regulation term lambda/alpha is 1.617648073676863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2760361030430977
the lambda is 0.4464473870253562
the regulation term lambda/alpha is 1.6173514337566635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30024028714561807
the lambda is 0.5133471593270224
the regulation term lambda/alpha is 1.7097877310450558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317539521848924
the lambda is 0.4977038702352341
the regulation term lambda/alpha is 1.567376140573856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.308928039796414
the lambda is 0.467497211384422
the regulation term lambda/alpha is 1.5132883751585204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29481989261561664
the lambda is 0.5216640960209243
the regulation term lambda/alpha is 1.7694331661027534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37286846696531367
the lambda is 0.5762228868780152
the regulation term lambda/alpha is 1.5453784321526407
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3022711906416045
the lambda is 0.48953203419730085
the regulation term lambda/alpha is 1.619512706977513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3567682887269734
the lambda is 0.5423171795390137
the regulation term lambda/alpha is 1.5200823522575926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3719034746059626
the lambda is 0.5358499157585889
the regulation term lambda/alpha is 1.440830625006475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3771342138044815
the lambda is 0.565679549446276
the regulation term lambda/alpha is 1.4999422718500488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3294238672103553
the lambda is 0.5075388602990104
the regulation term lambda/alpha is 1.5406863643395905
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3583703569725608
the lambda is 0.5630672788508073
the regulation term lambda/alpha is 1.5711882076617165
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34641678744694676
the lambda is 0.5422756283508708
the regulation term lambda/alpha is 1.565384958238837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31351642333887475
the lambda is 0.51899270523005
the regulation term lambda/alpha is 1.65539240242314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36341982656441907
the lambda is 0.4802571853204223
the regulation term lambda/alpha is 1.3214941789514416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3336104478046487
the lambda is 0.4983597725610998
the regulation term lambda/alpha is 1.4938374257778728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32235299141556056
the lambda is 0.4936183876017746
the regulation term lambda/alpha is 1.5312976790881636
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3135119735169039
the lambda is 0.5220716843839047
the regulation term lambda/alpha is 1.6652368282060388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3521052702516134
the lambda is 0.5253254196746842
the regulation term lambda/alpha is 1.4919555714099029
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3023091025753579
the lambda is 0.5282159803818101
the regulation term lambda/alpha is 1.7472711733849937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3125707734767091
the lambda is 0.5162141373723764
the regulation term lambda/alpha is 1.6515112133823402
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2841482341006767
the lambda is 0.48974301860606
the regulation term lambda/alpha is 1.7235476410968613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3547331660830201
the lambda is 0.4696364570099964
the regulation term lambda/alpha is 1.3239147108677312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32268841429405776
the lambda is 0.4881765266892581
the regulation term lambda/alpha is 1.512841816020067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28223104665660664
the lambda is 0.47371089795332627
the regulation term lambda/alpha is 1.6784507004634932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3588854301691811
the lambda is 0.5634348194224962
the regulation term lambda/alpha is 1.5699573514502638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30165283268489557
the lambda is 0.5260064200265697
the regulation term lambda/alpha is 1.7437476563531307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3696774379592341
the lambda is 0.4997508354800738
the regulation term lambda/alpha is 1.3518564677327791
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3271319852720107
the lambda is 0.5095380823220091
the regulation term lambda/alpha is 1.5575917527548628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3188445228424611
the lambda is 0.47452333546186354
the regulation term lambda/alpha is 1.4882593285013783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3490014477964907
the lambda is 0.5277072159554789
the regulation term lambda/alpha is 1.512048787439973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32292854443050906
the lambda is 0.4883797522321974
the regulation term lambda/alpha is 1.512346185108736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30802476676039303
the lambda is 0.5740068057448571
the regulation term lambda/alpha is 1.8635086125764904
980
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3153582962528244
the lambda is 0.573161720721724
the regulation term lambda/alpha is 1.8174937128091826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2920165501462337
the lambda is 0.4719783772874033
the regulation term lambda/alpha is 1.6162726977325421
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3669635318275702
the lambda is 0.5361914704322472
the regulation term lambda/alpha is 1.4611573737637622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33055263709867583
the lambda is 0.46793766446257423
the regulation term lambda/alpha is 1.41562223968247
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2971605853490988
the lambda is 0.4982283257260731
the regulation term lambda/alpha is 1.6766299108637293
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3199231383883728
the lambda is 0.4781976434558116
the regulation term lambda/alpha is 1.4947266579865208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2826435471183437
the lambda is 0.5365771844680131
the regulation term lambda/alpha is 1.8984236149688092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3169798808707849
the lambda is 0.5467301485903445
the regulation term lambda/alpha is 1.7248102532198757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2904766811721189
the lambda is 0.5136203097782472
the regulation term lambda/alpha is 1.7681980794661687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2879328381923236
the lambda is 0.5157502376258988
the regulation term lambda/alpha is 1.7912171493319056
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33687016365837696
the lambda is 0.5267759419419876
the regulation term lambda/alpha is 1.563735821009651
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3529450918154784
the lambda is 0.5151825024027932
the regulation term lambda/alpha is 1.4596675640190893
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224750643207186
the lambda is 0.5160932632533135
the regulation term lambda/alpha is 1.6004129322074694
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3050253493052143
the lambda is 0.5329880776494835
the regulation term lambda/alpha is 1.747356666793504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31085107874003676
the lambda is 0.47496591807922894
the regulation term lambda/alpha is 1.5279532566024667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3231124360670573
the lambda is 0.4831716641473316
the regulation term lambda/alpha is 1.495366968936647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33739389080920096
the lambda is 0.5646301611723388
the regulation term lambda/alpha is 1.6735044010967046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34046837326777013
the lambda is 0.5191044481951399
the regulation term lambda/alpha is 1.5246774412931354
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31838155570967575
the lambda is 0.49606436739026893
the regulation term lambda/alpha is 1.558081360223699
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33557563674785146
the lambda is 0.5091480748899798
the regulation term lambda/alpha is 1.5172379014885076
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34371862141348
the lambda is 0.4841398978383157
the regulation term lambda/alpha is 1.4085355511068294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3172441704123741
the lambda is 0.5041202066430909
the regulation term lambda/alpha is 1.5890605838014404
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2866752181695644
the lambda is 0.48635301362479444
the regulation term lambda/alpha is 1.6965296712083546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3088289947145816
the lambda is 0.5108334722308748
the regulation term lambda/alpha is 1.6540981610324021
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3416071547132766
the lambda is 0.5450788104158732
the regulation term lambda/alpha is 1.595630544897041
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2978253705315333
the lambda is 0.5183290894576845
the regulation term lambda/alpha is 1.7403792314019957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33162211958508303
the lambda is 0.498242251797509
the regulation term lambda/alpha is 1.5024397420199131
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3250767314719171
the lambda is 0.5288890058788931
the regulation term lambda/alpha is 1.6269666656365498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3564802057548652
the lambda is 0.5122634812857639
the regulation term lambda/alpha is 1.4370039991449723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29410700305090515
the lambda is 0.5104233219310937
the regulation term lambda/alpha is 1.735502101739304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33187980028679903
the lambda is 0.5114010108799778
the regulation term lambda/alpha is 1.5409223774331633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3148525657139975
the lambda is 0.5314681246818665
the regulation term lambda/alpha is 1.6879904519013387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211821368681396
the lambda is 0.47380225742711224
the regulation term lambda/alpha is 1.4751824682629544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2721376239780295
the lambda is 0.5081157932497605
the regulation term lambda/alpha is 1.8671280575698062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29430301102874423
the lambda is 0.5109528693264225
the regulation term lambda/alpha is 1.736145571669052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3329498852003615
the lambda is 0.4970953916783145
the regulation term lambda/alpha is 1.4930036434137048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3641799896484263
the lambda is 0.5634088921463879
the regulation term lambda/alpha is 1.54706164029027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2839425702497326
the lambda is 0.5387683153291083
the regulation term lambda/alpha is 1.8974552313703856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31785589336504644
the lambda is 0.5222718399629046
the regulation term lambda/alpha is 1.6431088768994242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3068601250065256
the lambda is 0.49909974057650813
the regulation term lambda/alpha is 1.6264731058357433
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36381136695866756
the lambda is 0.5465114536650291
the regulation term lambda/alpha is 1.5021835580170808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3341170708812348
the lambda is 0.5747137233025208
the regulation term lambda/alpha is 1.7200968564303272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3014516270369753
the lambda is 0.4997749828909212
the regulation term lambda/alpha is 1.6578944615535947
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29982212816411774
the lambda is 0.5355588627256199
the regulation term lambda/alpha is 1.7862552907784837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28738139254445066
the lambda is 0.5036073055885645
the regulation term lambda/alpha is 1.7524005334154302
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3296288535553787
the lambda is 0.49577591864327625
the regulation term lambda/alpha is 1.5040428448415069
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2961610522540266
the lambda is 0.47481522817699784
the regulation term lambda/alpha is 1.6032331887102222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32386384657568046
the lambda is 0.5126790706778285
the regulation term lambda/alpha is 1.583008032846376
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.349922853585555
the lambda is 0.5240541570366244
the regulation term lambda/alpha is 1.4976276961244397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3167356975992695
the lambda is 0.5084088959013999
the regulation term lambda/alpha is 1.6051518655931016
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32506763079144646
the lambda is 0.5307659909273853
the regulation term lambda/alpha is 1.6327863516743342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30113773096062324
the lambda is 0.4729841146803117
the regulation term lambda/alpha is 1.5706570982370824
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3368953457376603
the lambda is 0.5573892170394777
the regulation term lambda/alpha is 1.6544877336284591
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33448551592366077
the lambda is 0.528462705821791
the regulation term lambda/alpha is 1.5799270242314511
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2968729487465105
the lambda is 0.531237603260329
the regulation term lambda/alpha is 1.7894442909109052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29115452585730445
the lambda is 0.45704179290517266
the regulation term lambda/alpha is 1.5697567865703381
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3529015770684059
the lambda is 0.5443462424674578
the regulation term lambda/alpha is 1.5424874181334205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31777884836238657
the lambda is 0.5043309021214942
the regulation term lambda/alpha is 1.587049939668636
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3231890353672738
the lambda is 0.5141524601745178
the regulation term lambda/alpha is 1.5908722261887136
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3506800906563458
the lambda is 0.527063856534409
the regulation term lambda/alpha is 1.5029762754650167
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3169383576581489
the lambda is 0.4766556120928944
the regulation term lambda/alpha is 1.5039379127691994
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29707060362700993
the lambda is 0.4817159588346452
the regulation term lambda/alpha is 1.6215537752751485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3088054516566106
the lambda is 0.5407283199492641
the regulation term lambda/alpha is 1.751032298971684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32359060342912516
the lambda is 0.4899983189595051
the regulation term lambda/alpha is 1.5142538558503835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32076326341604655
the lambda is 0.5651439908581499
the regulation term lambda/alpha is 1.76187255622577
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31664130420530606
the lambda is 0.5016917342237576
the regulation term lambda/alpha is 1.5844165860890569
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3182819258393874
the lambda is 0.5253197403425917
the regulation term lambda/alpha is 1.650485615723214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28536906451916866
the lambda is 0.5168931369649115
the regulation term lambda/alpha is 1.8113145439778073
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33507405786702205
the lambda is 0.5444559487667813
the regulation term lambda/alpha is 1.6248824281790708
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30006776538683044
the lambda is 0.4926883332914779
the regulation term lambda/alpha is 1.6419235590211827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33392611159900515
the lambda is 0.5287752288450938
the regulation term lambda/alpha is 1.5835096761767256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2949150395044312
the lambda is 0.5176737329353992
the regulation term lambda/alpha is 1.755331751833636
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34482414547499873
the lambda is 0.5327150851724086
the regulation term lambda/alpha is 1.544889162093299
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3207834535991064
the lambda is 0.4636606781274422
the regulation term lambda/alpha is 1.445400855079309
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3025895597771746
the lambda is 0.5113323696539194
the regulation term lambda/alpha is 1.6898546335520033
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32318123875209226
the lambda is 0.49971977927630795
the regulation term lambda/alpha is 1.5462524409086627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38037957310043125
the lambda is 0.5218982374053144
the regulation term lambda/alpha is 1.372045909698516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3545337642355583
the lambda is 0.5484952203751836
the regulation term lambda/alpha is 1.5470888127054494
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28474665576869296
the lambda is 0.5090749896469299
the regulation term lambda/alpha is 1.7878172731217767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30684392615535744
the lambda is 0.49222499076703463
the regulation term lambda/alpha is 1.6041542582720616
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3000635120751979
the lambda is 0.5106094122365119
the regulation term lambda/alpha is 1.7016711185748896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29140012569733476
the lambda is 0.4795875796001083
the regulation term lambda/alpha is 1.6458042989941468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30448917402471815
the lambda is 0.5192670123262423
the regulation term lambda/alpha is 1.7053710168496456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3079004653239969
the lambda is 0.48380484650952243
the regulation term lambda/alpha is 1.571302745516884
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3459717293931776
the lambda is 0.46377930601294737
the regulation term lambda/alpha is 1.3405121477017794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29138153132576833
the lambda is 0.47027160955548236
the regulation term lambda/alpha is 1.6139376006975288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3423339292328107
the lambda is 0.5726232798824268
the regulation term lambda/alpha is 1.6727038455279828
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30140358700122516
the lambda is 0.5129939808115352
the regulation term lambda/alpha is 1.7020168403286122
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33728426751085255
the lambda is 0.5302516292053635
the regulation term lambda/alpha is 1.5721208496281316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3265541774892289
the lambda is 0.4972034251495068
the regulation term lambda/alpha is 1.5225756074301227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2855218915971262
the lambda is 0.47040695987851106
the regulation term lambda/alpha is 1.6475337748961794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.307992658203952
the lambda is 0.47895082207226325
the regulation term lambda/alpha is 1.5550722048546468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29940828398486763
the lambda is 0.530977543882513
the regulation term lambda/alpha is 1.7734230222880174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33222825118185345
the lambda is 0.4800044390121855
the regulation term lambda/alpha is 1.4448031957084921
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33123398093182027
the lambda is 0.5210495052853227
the regulation term lambda/alpha is 1.5730557107079337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3085288616399067
the lambda is 0.5108148734187378
the regulation term lambda/alpha is 1.6556469650963321
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32637686377041725
the lambda is 0.5475310956804701
the regulation term lambda/alpha is 1.6776038882021338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32248773480780946
the lambda is 0.5512256765461083
the regulation term lambda/alpha is 1.709291911131498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3395802341524083
the lambda is 0.540471527183515
the regulation term lambda/alpha is 1.5915871208833194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3094707841017492
the lambda is 0.5436228658380867
the regulation term lambda/alpha is 1.7566209599267113
990
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.279938294542859
the lambda is 0.5439888238383717
the regulation term lambda/alpha is 1.9432454738881253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29101845542944416
the lambda is 0.5054912407648394
the regulation term lambda/alpha is 1.7369731415105838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33322214931918026
the lambda is 0.514645894645838
the regulation term lambda/alpha is 1.5444528393365566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073728718677751
the lambda is 0.5172211998187917
the regulation term lambda/alpha is 1.6827158385053855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33524413431115535
the lambda is 0.5033701529997449
the regulation term lambda/alpha is 1.5015032374363457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33308757674918993
the lambda is 0.49717948999164435
the regulation term lambda/alpha is 1.4926389475222406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31320160153216015
the lambda is 0.5125113758027217
the regulation term lambda/alpha is 1.6363625642255728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3223111122472375
the lambda is 0.5443963699109514
the regulation term lambda/alpha is 1.6890400275537425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3240429233721588
the lambda is 0.49699123319180954
the regulation term lambda/alpha is 1.5337203726588469
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090667370281278
the lambda is 0.5255808911656582
the regulation term lambda/alpha is 1.7005417542484544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.283930704552796
the lambda is 0.4905137193408629
the regulation term lambda/alpha is 1.727582510364438
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31094533610493985
the lambda is 0.49942807556532004
the regulation term lambda/alpha is 1.6061603683187897
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3321885178681982
the lambda is 0.47933259195393385
the regulation term lambda/alpha is 1.442953522385496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30132528247773904
the lambda is 0.5074129743240107
the regulation term lambda/alpha is 1.68393760441093
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.370553365060545
the lambda is 0.5876353907943453
the regulation term lambda/alpha is 1.5858320182798264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26901635601041984
the lambda is 0.47231492071331127
the regulation term lambda/alpha is 1.7557107966142291
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29460887076820136
the lambda is 0.5172778432040984
the regulation term lambda/alpha is 1.7558121785514507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3181851208373888
the lambda is 0.4833047825225946
the regulation term lambda/alpha is 1.5189421216512244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3494885832290992
the lambda is 0.55470115716717
the regulation term lambda/alpha is 1.5871796212683387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33421723009194426
the lambda is 0.5036434810552951
the regulation term lambda/alpha is 1.506934519554067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31091020928803337
the lambda is 0.49079371710635716
the regulation term lambda/alpha is 1.5785706047744354
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3005242064472767
the lambda is 0.4816509296402723
the regulation term lambda/alpha is 1.6027026086658085
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3039521522504585
the lambda is 0.5082704020535785
the regulation term lambda/alpha is 1.6722053069548937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34320792238850184
the lambda is 0.5164425248266571
the regulation term lambda/alpha is 1.504751176000123
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3438566382051768
the lambda is 0.537495952892201
the regulation term lambda/alpha is 1.56313967267801
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.348607443100545
the lambda is 0.5543944159207852
the regulation term lambda/alpha is 1.5903114718089577
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2976908764197743
the lambda is 0.4782301408158311
the regulation term lambda/alpha is 1.6064655610791314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3356404732920158
the lambda is 0.5197911112645488
the regulation term lambda/alpha is 1.5486544461290794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32136406552763724
the lambda is 0.5187769255268975
the regulation term lambda/alpha is 1.614296622353014
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28290958433459656
the lambda is 0.5113638524003684
the regulation term lambda/alpha is 1.8075168913174022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3180828577023511
the lambda is 0.5358632792316862
the regulation term lambda/alpha is 1.6846656971785794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3361615248018592
the lambda is 0.499530356182274
the regulation term lambda/alpha is 1.4859831340802845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28279242421273354
the lambda is 0.5092902166150355
the regulation term lambda/alpha is 1.8009330272296002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29108322599508313
the lambda is 0.5241200188835353
the regulation term lambda/alpha is 1.8005847540400304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128028984667132
the lambda is 0.5169065818506535
the regulation term lambda/alpha is 1.6524993354742201
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3232813533294419
the lambda is 0.5042788281682129
the regulation term lambda/alpha is 1.5598760119465485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3144668060728275
the lambda is 0.5145574239491804
the regulation term lambda/alpha is 1.636285337632786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37256581223458374
the lambda is 0.5531123080001709
the regulation term lambda/alpha is 1.4846029609713818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.358908511626651
the lambda is 0.5456626058005835
the regulation term lambda/alpha is 1.5203389948249555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34976147234042293
the lambda is 0.5215388943248312
the regulation term lambda/alpha is 1.4911273412562072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31423132671024734
the lambda is 0.540740179764373
the regulation term lambda/alpha is 1.720834728432374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.344537156354994
the lambda is 0.5355994708324083
the regulation term lambda/alpha is 1.554547777948667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30273770386831533
the lambda is 0.5002205369036038
the regulation term lambda/alpha is 1.6523232174648106
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28699101412832756
the lambda is 0.4601322957385804
the regulation term lambda/alpha is 1.6032986159379645
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3542478291058381
the lambda is 0.553570027137971
the regulation term lambda/alpha is 1.5626631461235623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2854120186890948
the lambda is 0.4837275337643224
the regulation term lambda/alpha is 1.6948393973950227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33861399665592795
the lambda is 0.5336931353500843
the regulation term lambda/alpha is 1.5761106765246327
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3019746772173178
the lambda is 0.5142159672158912
the regulation term lambda/alpha is 1.7028446621894484
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31076242057389286
the lambda is 0.565462358534646
the regulation term lambda/alpha is 1.8195969689333487
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3505176983341966
the lambda is 0.5260582280145064
the regulation term lambda/alpha is 1.5008036128119926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34052212173101465
the lambda is 0.5219775956019829
the regulation term lambda/alpha is 1.5328742607045764
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178473334991759
the lambda is 0.4937176744521208
the regulation term lambda/alpha is 1.5533170249276322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30114472787268093
the lambda is 0.5214778859941934
the regulation term lambda/alpha is 1.7316520520813028
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246803052236321
the lambda is 0.5540552859564319
the regulation term lambda/alpha is 1.706464103434952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31449389771347414
the lambda is 0.48758983386484506
the regulation term lambda/alpha is 1.550395214056183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33200870431757856
the lambda is 0.5266659104394874
the regulation term lambda/alpha is 1.586301514359431
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105310598759975
the lambda is 0.5731276770493129
the regulation term lambda/alpha is 1.8456372038216613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34857768685541884
the lambda is 0.5165301922808759
the regulation term lambda/alpha is 1.4818223075050685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36617370900407203
the lambda is 0.5353894551455274
the regulation term lambda/alpha is 1.4621187758173364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3276357427216174
the lambda is 0.5268152929556013
the regulation term lambda/alpha is 1.6079298570401124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.332890667499208
the lambda is 0.5441549918664998
the regulation term lambda/alpha is 1.6346357678164543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2889824532264361
the lambda is 0.5911976896690215
the regulation term lambda/alpha is 2.0457909574384456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28687833247794153
the lambda is 0.5084314919585092
the regulation term lambda/alpha is 1.772289623851614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31540986267296955
the lambda is 0.5146191361703882
the regulation term lambda/alpha is 1.6315885997007247
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2848730850357447
the lambda is 0.46799214494297603
the regulation term lambda/alpha is 1.6428092702553991
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30307937260909656
the lambda is 0.4900842278525049
the regulation term lambda/alpha is 1.6170161091253215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3956104519837693
the lambda is 0.566924406588816
the regulation term lambda/alpha is 1.4330369780323073
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31669314756220324
the lambda is 0.47855882450469145
the regulation term lambda/alpha is 1.511112028120834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2894013481915095
the lambda is 0.4993026437093156
the regulation term lambda/alpha is 1.7252948088510813
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31468976178678454
the lambda is 0.5610826769491927
the regulation term lambda/alpha is 1.7829708655388339
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3213004282805615
the lambda is 0.5036498240930217
the regulation term lambda/alpha is 1.567535489411896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3171041313297588
the lambda is 0.5016888611498727
the regulation term lambda/alpha is 1.5820950015569584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32632083310503124
the lambda is 0.5086153400214412
the regulation term lambda/alpha is 1.5586358222422645
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3687079609645561
the lambda is 0.5342111468791899
the regulation term lambda/alpha is 1.448873372524071
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2943507003151837
the lambda is 0.4696461955127209
the regulation term lambda/alpha is 1.595532794757529
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3519988813171215
the lambda is 0.5491308349855747
the regulation term lambda/alpha is 1.5600357391217214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32532218102121485
the lambda is 0.5047922169727882
the regulation term lambda/alpha is 1.5516686116765883
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3851549068415307
the lambda is 0.524962116979138
the regulation term lambda/alpha is 1.3629895599256379
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2928666704678015
the lambda is 0.5495426030105901
the regulation term lambda/alpha is 1.876425890774103
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.343174810601897
the lambda is 0.5403608060607564
the regulation term lambda/alpha is 1.5745934414971
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3243989937610218
the lambda is 0.5456338458349871
the regulation term lambda/alpha is 1.6819837802485433
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33706861338411953
the lambda is 0.5437676845766343
the regulation term lambda/alpha is 1.6132255065735321
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3093798923603294
the lambda is 0.5036497534793167
the regulation term lambda/alpha is 1.6279330554964593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31862725223294047
the lambda is 0.5230740186447135
the regulation term lambda/alpha is 1.6416487132817725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39121024190533304
the lambda is 0.4928491114698592
the regulation term lambda/alpha is 1.2598062593389905
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30401691799170294
the lambda is 0.499400576446689
the regulation term lambda/alpha is 1.6426736371964614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3387053768869163
the lambda is 0.5248880000688804
the regulation term lambda/alpha is 1.5496890096436966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32984607955841033
the lambda is 0.542573035522431
the regulation term lambda/alpha is 1.644927950178502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30101465169871305
the lambda is 0.5076612342251524
the regulation term lambda/alpha is 1.6865000801797279
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.331145302489894
the lambda is 0.5433539172138118
the regulation term lambda/alpha is 1.6408323268616924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2814599947918942
the lambda is 0.5149782147370405
the regulation term lambda/alpha is 1.8296675345205096
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30637293216475275
the lambda is 0.4966389152906581
the regulation term lambda/alpha is 1.621027392274946
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3426986414012976
the lambda is 0.506319752856894
the regulation term lambda/alpha is 1.4774489644503648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35788104656601843
the lambda is 0.5124845829571834
the regulation term lambda/alpha is 1.4319969941818227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2729222746324024
the lambda is 0.46796348852931685
the regulation term lambda/alpha is 1.7146401449262962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2934369825247584
the lambda is 0.47273037989896843
the regulation term lambda/alpha is 1.61101159039857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31344218570854127
the lambda is 0.4974239552617135
the regulation term lambda/alpha is 1.5869719455193256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26869923389552675
the lambda is 0.4807016545874123
the regulation term lambda/alpha is 1.788995255469595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2995332207167099
the lambda is 0.5594684507179768
the regulation term lambda/alpha is 1.8678010051082325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3390565671921661
the lambda is 0.5193204036052164
the regulation term lambda/alpha is 1.5316630139503615
1000
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2883493281068581
the lambda is 0.5006292145851545
the regulation term lambda/alpha is 1.7361899813396775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33619107479177623
the lambda is 0.5158404115462449
the regulation term lambda/alpha is 1.534366764096092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3280218215255405
the lambda is 0.5402567619238324
the regulation term lambda/alpha is 1.6470146998490673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.288139867359381
the lambda is 0.5196365366658396
the regulation term lambda/alpha is 1.80341769928604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2931802183366289
the lambda is 0.4257347164960124
the regulation term lambda/alpha is 1.4521263368703299
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3316016643322918
the lambda is 0.48198429470035825
the regulation term lambda/alpha is 1.4535038467640826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3092041875452181
the lambda is 0.5582530658696779
the regulation term lambda/alpha is 1.8054511819573558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32572784317801956
the lambda is 0.5125743267999475
the regulation term lambda/alpha is 1.5736276082478189
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28794410527352476
the lambda is 0.4716945339857794
the regulation term lambda/alpha is 1.6381461726320317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32319556598195265
the lambda is 0.5724191347448977
the regulation term lambda/alpha is 1.7711231062398356
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33184881806257643
the lambda is 0.5145425662736258
the regulation term lambda/alpha is 1.55053306887656
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29908862390768937
the lambda is 0.5058249373740267
the regulation term lambda/alpha is 1.6912209189545917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3167782282518268
the lambda is 0.5145339440831027
the regulation term lambda/alpha is 1.6242718034083692
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3485678946306797
the lambda is 0.5525448752340335
the regulation term lambda/alpha is 1.5851857952077737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33944641964189404
the lambda is 0.5536512606883858
the regulation term lambda/alpha is 1.6310416862622135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30216731067649094
the lambda is 0.5704350576518775
the regulation term lambda/alpha is 1.8878119422474584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33701788398918137
the lambda is 0.4923918205873883
the regulation term lambda/alpha is 1.461025791151174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314610713788328
the lambda is 0.48134564839323546
the regulation term lambda/alpha is 1.452193605695243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33209485670614874
the lambda is 0.5436926928118616
the regulation term lambda/alpha is 1.6371608347218198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3487733734036747
the lambda is 0.5716571427340825
the regulation term lambda/alpha is 1.6390504159055723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3009293516432463
the lambda is 0.5297433776182805
the regulation term lambda/alpha is 1.7603579535381937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3237550381495176
the lambda is 0.5216924887303541
the regulation term lambda/alpha is 1.6113802945343645
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3481848036180521
the lambda is 0.534136555537147
the regulation term lambda/alpha is 1.5340605046137459
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3086840651567299
the lambda is 0.5391493964835071
the regulation term lambda/alpha is 1.7466058580308048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2793987109978609
the lambda is 0.4895567604852184
the regulation term lambda/alpha is 1.752179738899964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3609972274487433
the lambda is 0.5477498960706191
the regulation term lambda/alpha is 1.5173243848483355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3494463932322985
the lambda is 0.5393082162366688
the regulation term lambda/alpha is 1.5433217417074827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.283025221876958
the lambda is 0.49238010463430426
the regulation term lambda/alpha is 1.7397039789208641
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.311814133583581
the lambda is 0.4734427528858273
the regulation term lambda/alpha is 1.5183492404423744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35614607744959653
the lambda is 0.5106443782110505
the regulation term lambda/alpha is 1.433805987329228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2822853524995119
the lambda is 0.5093398861888266
the regulation term lambda/alpha is 1.8043440145896599
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34092832180516797
the lambda is 0.4752510735794597
the regulation term lambda/alpha is 1.3939911799145095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224279583205792
the lambda is 0.5099206035313804
the regulation term lambda/alpha is 1.5815024422428765
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32574423828680465
the lambda is 0.5222043771031102
the regulation term lambda/alpha is 1.603111630921098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2973888306541785
the lambda is 0.5100291378150206
the regulation term lambda/alpha is 1.7150245242670628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012942701423118
the lambda is 0.5107935416867855
the regulation term lambda/alpha is 1.6953310842769094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30938808420127284
the lambda is 0.5088227605213523
the regulation term lambda/alpha is 1.6446100755138875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28983986564506786
the lambda is 0.520530885248776
the regulation term lambda/alpha is 1.795925774704187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29704936263276804
the lambda is 0.5333682108483497
the regulation term lambda/alpha is 1.7955541332291447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35111296176242374
the lambda is 0.5158236146513803
the regulation term lambda/alpha is 1.4691101463819098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30665742385882255
the lambda is 0.49293657890506876
the regulation term lambda/alpha is 1.6074503356292607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3033568868462178
the lambda is 0.49784998195045754
the regulation term lambda/alpha is 1.64113624426412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3041338530071122
the lambda is 0.48271039319124404
the regulation term lambda/alpha is 1.5871642976224545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29772178473489613
the lambda is 0.4908544577943846
the regulation term lambda/alpha is 1.648701851735377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2923584422076837
the lambda is 0.5156250553748972
the regulation term lambda/alpha is 1.7636742468637552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32020278295902216
the lambda is 0.5227284534304493
the regulation term lambda/alpha is 1.632491912156008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3299714654143017
the lambda is 0.5226754324842797
the regulation term lambda/alpha is 1.584001913098834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3088724350218053
the lambda is 0.5633356114165925
the regulation term lambda/alpha is 1.8238455347328844
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34470525449777756
the lambda is 0.5024782257362332
the regulation term lambda/alpha is 1.4577039925553932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30755641539370626
the lambda is 0.4896572153195192
the regulation term lambda/alpha is 1.5920890958905987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.312469617147609
the lambda is 0.5075698083740515
the regulation term lambda/alpha is 1.624381317477911
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3511090795574099
the lambda is 0.5660390528258862
the regulation term lambda/alpha is 1.6121458708484726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3044450360320982
the lambda is 0.5205514206387546
the regulation term lambda/alpha is 1.7098371102489314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30294917252998005
the lambda is 0.526406439415604
the regulation term lambda/alpha is 1.7376064605804808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30223351704967766
the lambda is 0.5278663764809247
the regulation term lambda/alpha is 1.746551413734037
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3572009995650051
the lambda is 0.530440419424959
the regulation term lambda/alpha is 1.4849914195954734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3142371830537931
the lambda is 0.49852166455192876
the regulation term lambda/alpha is 1.5864502720754998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3126556102392418
the lambda is 0.4736204029172989
the regulation term lambda/alpha is 1.5148309750619475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215395342546378
the lambda is 0.4880044981770373
the regulation term lambda/alpha is 1.5177122754384857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3195403892091779
the lambda is 0.537730015914941
the regulation term lambda/alpha is 1.6828233114623001
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2807666729312857
the lambda is 0.4773686791856157
the regulation term lambda/alpha is 1.7002327028409314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3561745924887672
the lambda is 0.5225983776356894
the regulation term lambda/alpha is 1.4672533882443362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2959296416917237
the lambda is 0.5567358280206741
the regulation term lambda/alpha is 1.881311465921477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31743414149531407
the lambda is 0.5205358739523904
the regulation term lambda/alpha is 1.6398232134084245
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282528835468817
the lambda is 0.5445297763488794
the regulation term lambda/alpha is 1.6588727887629011
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3091358207924899
the lambda is 0.5397857897814561
the regulation term lambda/alpha is 1.7461120759078643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2956107631401011
the lambda is 0.5655863360271649
the regulation term lambda/alpha is 1.9132805924225167
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3401073762071822
the lambda is 0.504826190329858
the regulation term lambda/alpha is 1.4843141479599506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3068619116848139
the lambda is 0.5283148807719977
the regulation term lambda/alpha is 1.721669782578439
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34274065945620885
the lambda is 0.5765327095645341
the regulation term lambda/alpha is 1.6821252269259763
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3316544797628398
the lambda is 0.514505980480586
the regulation term lambda/alpha is 1.551331315797393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3162755052279224
the lambda is 0.48713324217365195
the regulation term lambda/alpha is 1.5402180507864551
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3298978456122227
the lambda is 0.5189769282718303
the regulation term lambda/alpha is 1.573144338995957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28549237544156697
the lambda is 0.5354808648353313
the regulation term lambda/alpha is 1.8756398100198324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3610903650913023
the lambda is 0.5068381991052996
the regulation term lambda/alpha is 1.4036325754001902
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.375607793888611
the lambda is 0.5576166988897966
the regulation term lambda/alpha is 1.48457169409845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3483989742476426
the lambda is 0.5955408042836193
the regulation term lambda/alpha is 1.7093644020326761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30545707442737025
the lambda is 0.5133750937958562
the regulation term lambda/alpha is 1.680678356388578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2988463320114113
the lambda is 0.5199150197698654
the regulation term lambda/alpha is 1.7397403417018105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3503519309530134
the lambda is 0.5094239871098561
the regulation term lambda/alpha is 1.4540350490552207
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2817800159313129
the lambda is 0.4933036654849353
the regulation term lambda/alpha is 1.7506694499058575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30018719267622657
the lambda is 0.5386891176680914
the regulation term lambda/alpha is 1.7945106613829
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27887517276253365
the lambda is 0.5091182213488676
the regulation term lambda/alpha is 1.8256132889333585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28619307566449
the lambda is 0.49618238008645416
the regulation term lambda/alpha is 1.7337330015214587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33075723800246476
the lambda is 0.49287535221886236
the regulation term lambda/alpha is 1.4901423025402984
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.304267794019225
the lambda is 0.46335887234491
the regulation term lambda/alpha is 1.5228653227611495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30161778303324216
the lambda is 0.49204930850158557
the regulation term lambda/alpha is 1.6313670353029397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3496616602704112
the lambda is 0.500752788988057
the regulation term lambda/alpha is 1.4321066501852084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33390620080924904
the lambda is 0.501626593518427
the regulation term lambda/alpha is 1.5022979276895543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3301607679373106
the lambda is 0.5657670844042977
the regulation term lambda/alpha is 1.7136108809624617
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2954020264028132
the lambda is 0.5202437946312258
the regulation term lambda/alpha is 1.7611382053345026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30456687229233365
the lambda is 0.5736887612870674
the regulation term lambda/alpha is 1.8836216722100405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3191819577243253
the lambda is 0.5220555655944711
the regulation term lambda/alpha is 1.6356048735228512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35580674882472846
the lambda is 0.5272457376644097
the regulation term lambda/alpha is 1.4818317511007435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28101645539307396
the lambda is 0.4848617531943239
the regulation term lambda/alpha is 1.725385627386552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33086720598015756
the lambda is 0.5505872938082709
the regulation term lambda/alpha is 1.6640733317078578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30878427824802845
the lambda is 0.46311769130471525
the regulation term lambda/alpha is 1.4998098152287396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28149691591484205
the lambda is 0.49886570915579054
the regulation term lambda/alpha is 1.77218889782333
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3317973960289942
the lambda is 0.534914116834986
the regulation term lambda/alpha is 1.6121709309263006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3470974221876617
the lambda is 0.48962080640203587
the regulation term lambda/alpha is 1.4106149314393854
1010
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30841743443377667
the lambda is 0.48274603218152656
the regulation term lambda/alpha is 1.565235872828654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33459996771078393
the lambda is 0.5358257118526686
the regulation term lambda/alpha is 1.6013920010769902
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2811954260119564
the lambda is 0.49225720138836476
the regulation term lambda/alpha is 1.7505875126412405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31509871636438663
the lambda is 0.5533692065127735
the regulation term lambda/alpha is 1.7561772796079753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29063408102272853
the lambda is 0.5163462844858445
the regulation term lambda/alpha is 1.776619874272297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2984442888758207
the lambda is 0.5031218631530515
the regulation term lambda/alpha is 1.685815014414281
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3337240619617574
the lambda is 0.47092092628531207
the regulation term lambda/alpha is 1.411108697158542
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3401233183048118
the lambda is 0.48596314714884464
the regulation term lambda/alpha is 1.4287851523115334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3617896544775954
the lambda is 0.5623404650061604
the regulation term lambda/alpha is 1.554329865562766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33012905067847975
the lambda is 0.5627637127084321
the regulation term lambda/alpha is 1.7046779480686192
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3432651896766802
the lambda is 0.47816887578976447
the regulation term lambda/alpha is 1.3930013592119534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3407729190399145
the lambda is 0.4805181866018637
the regulation term lambda/alpha is 1.4100832541378703
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3341416396575945
the lambda is 0.4927243254915432
the regulation term lambda/alpha is 1.4745971977525858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3465542533839128
the lambda is 0.5176529408655681
the regulation term lambda/alpha is 1.4937140023848219
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2890680104510835
the lambda is 0.5070124025926046
the regulation term lambda/alpha is 1.7539554162407118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3006487169161248
the lambda is 0.5157096928657502
the regulation term lambda/alpha is 1.7153231124868669
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2935222790366242
the lambda is 0.506440680095035
the regulation term lambda/alpha is 1.7253909371282985
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3286971057958791
the lambda is 0.5356558880678725
the regulation term lambda/alpha is 1.629633722423205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30420205489198443
the lambda is 0.46830017430274595
the regulation term lambda/alpha is 1.5394379057335073
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3030723760766701
the lambda is 0.4984731757295607
the regulation term lambda/alpha is 1.6447331234287708
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31013241262239044
the lambda is 0.5302421029162334
the regulation term lambda/alpha is 1.7097281075288415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3103769936439544
the lambda is 0.4602138836447327
the regulation term lambda/alpha is 1.4827577206726286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33234686760200366
the lambda is 0.5287363242039048
the regulation term lambda/alpha is 1.5909171282970658
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33059173928525326
the lambda is 0.5467262757016124
the regulation term lambda/alpha is 1.6537808140144301
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3584704414966503
the lambda is 0.4818467482560805
the regulation term lambda/alpha is 1.3441742818301048
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3291185777540824
the lambda is 0.6000765315584616
the regulation term lambda/alpha is 1.8232836798621537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3260231707377715
the lambda is 0.5211502174531121
the regulation term lambda/alpha is 1.598506683662328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3279308672432628
the lambda is 0.5465529406231788
the regulation term lambda/alpha is 1.6666712262183594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30702142698610935
the lambda is 0.5028370561115363
the regulation term lambda/alpha is 1.6377914110023541
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3001276589837756
the lambda is 0.48255959754950123
the regulation term lambda/alpha is 1.607847804442401
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3014636996751247
the lambda is 0.4546958139029253
the regulation term lambda/alpha is 1.5082937494395932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3434563450605522
the lambda is 0.4968653963838176
the regulation term lambda/alpha is 1.446662446420138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30693513556342145
the lambda is 0.4888587828001626
the regulation term lambda/alpha is 1.5927104008565047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2781332074433787
the lambda is 0.4648374267852547
the regulation term lambda/alpha is 1.6712762602426194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33267812729105484
the lambda is 0.5410639986172644
the regulation term lambda/alpha is 1.6263888552669892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2923715258193159
the lambda is 0.5210095061596646
the regulation term lambda/alpha is 1.7820117903056187
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33127884016223363
the lambda is 0.5086885481902551
the regulation term lambda/alpha is 1.5355298513516302
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32934396077980305
the lambda is 0.5020758518654381
the regulation term lambda/alpha is 1.5244726233225887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35258794092726653
the lambda is 0.49007250153298254
the regulation term lambda/alpha is 1.3899298434431624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33239326124871726
the lambda is 0.4935843167493396
the regulation term lambda/alpha is 1.4849408044407049
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30046091217421705
the lambda is 0.5355606704811143
the regulation term lambda/alpha is 1.7824637041991631
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29328323888077346
the lambda is 0.488360603168436
the regulation term lambda/alpha is 1.665150061190391
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3384772874724133
the lambda is 0.5026958685083152
the regulation term lambda/alpha is 1.4851686866856202
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31484303548729065
the lambda is 0.5128953831015657
the regulation term lambda/alpha is 1.6290510676462775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32093980074230916
the lambda is 0.4760367247356175
the regulation term lambda/alpha is 1.483258616209585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3122365844661221
the lambda is 0.5091175840661202
the regulation term lambda/alpha is 1.630550708644969
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30557910054396675
the lambda is 0.5055256098696524
the regulation term lambda/alpha is 1.6543199746637036
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29966675317513947
the lambda is 0.48153661691278254
the regulation term lambda/alpha is 1.606907045278225
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3143368290172657
the lambda is 0.49601407368054595
the regulation term lambda/alpha is 1.57796996053969
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3280533845906217
the lambda is 0.522140795682346
the regulation term lambda/alpha is 1.5916336188206872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3222716221776582
the lambda is 0.5274196114651957
the regulation term lambda/alpha is 1.6365685811903286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31330076611333096
the lambda is 0.5165743045261922
the regulation term lambda/alpha is 1.6488127716206435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3495064413294231
the lambda is 0.542103534186715
the regulation term lambda/alpha is 1.5510544873642595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052160295092103
the lambda is 0.4961307312612361
the regulation term lambda/alpha is 1.6255067994266819
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29643046703390413
the lambda is 0.5436991107267478
the regulation term lambda/alpha is 1.8341539456690275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3189698142853057
the lambda is 0.487315986143887
the regulation term lambda/alpha is 1.5277808880937003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31141371937088763
the lambda is 0.5172691673680003
the regulation term lambda/alpha is 1.6610352569340174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3103529901468988
the lambda is 0.5267181334948854
the regulation term lambda/alpha is 1.6971582366439415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34484983860444146
the lambda is 0.4818401804139683
the regulation term lambda/alpha is 1.39724635616449
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2999732337073343
the lambda is 0.49471933084080455
the regulation term lambda/alpha is 1.6492115804021108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34030494692931224
the lambda is 0.5337904004193169
the regulation term lambda/alpha is 1.568564915778892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32205669496662837
the lambda is 0.5244785181178303
the regulation term lambda/alpha is 1.6285285364807491
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32525434013312243
the lambda is 0.4882865882973604
the regulation term lambda/alpha is 1.501245419500047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3540860076728628
the lambda is 0.5006082976574406
the regulation term lambda/alpha is 1.4138042362858592
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2890404249316565
the lambda is 0.5020088518197496
the regulation term lambda/alpha is 1.7368119076715633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34259509880015837
the lambda is 0.5282400649948072
the regulation term lambda/alpha is 1.5418786399595832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3608251600767369
the lambda is 0.5479183219160989
the regulation term lambda/alpha is 1.51851473383833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28758410152930663
the lambda is 0.4946519279578953
the regulation term lambda/alpha is 1.7200252911320522
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32029323798826803
the lambda is 0.5283390405880365
the regulation term lambda/alpha is 1.6495479077438062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30758760176224653
the lambda is 0.484119576908808
the regulation term lambda/alpha is 1.5739242223521543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3799505555232441
the lambda is 0.52512653574195
the regulation term lambda/alpha is 1.3820917698587878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29145672535599376
the lambda is 0.586300490045872
the regulation term lambda/alpha is 2.0116210711204126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321980862430197
the lambda is 0.5168349939190146
the regulation term lambda/alpha is 1.6051730218315705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32177165293816395
the lambda is 0.5298611690096566
the regulation term lambda/alpha is 1.6466993415093716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.294479564047229
the lambda is 0.49130503250700497
the regulation term lambda/alpha is 1.6683841342151975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3387285202706974
the lambda is 0.5375013027991751
the regulation term lambda/alpha is 1.5868203314253755
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28707467755689897
the lambda is 0.49053199821705085
the regulation term lambda/alpha is 1.708726114025944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314661154042287
the lambda is 0.5221833244877724
the regulation term lambda/alpha is 1.5753746769891115
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32938257337344784
the lambda is 0.5245392321700107
the regulation term lambda/alpha is 1.5924923616869613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3285351239425153
the lambda is 0.5504265763785495
the regulation term lambda/alpha is 1.6753964379006832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30910178589182985
the lambda is 0.5062537658770923
the regulation term lambda/alpha is 1.6378221963889128
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29637747875621956
the lambda is 0.5437044138012705
the regulation term lambda/alpha is 1.8344997605181927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3217863605458392
the lambda is 0.4921686528896324
the regulation term lambda/alpha is 1.529488857311346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3226950198761856
the lambda is 0.5386360395135436
the regulation term lambda/alpha is 1.669179895370595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31544263025293007
the lambda is 0.5041163414935845
the regulation term lambda/alpha is 1.5981236939641639
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3450263332717538
the lambda is 0.5068396800565118
the regulation term lambda/alpha is 1.4689883964807655
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3826285669127478
the lambda is 0.5167485943591442
the regulation term lambda/alpha is 1.3505227759875553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203491895623789
the lambda is 0.5227126501171668
the regulation term lambda/alpha is 1.6316964960368143
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3025195096455275
the lambda is 0.5489065901435947
the regulation term lambda/alpha is 1.81445021772899
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31956135404154545
the lambda is 0.5345153947277876
the regulation term lambda/alpha is 1.6726534293577204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28668734024530057
the lambda is 0.5174493650623001
the regulation term lambda/alpha is 1.8049257585617515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34282598424229965
the lambda is 0.5298185584369317
the regulation term lambda/alpha is 1.5454445776854273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3028981809108026
the lambda is 0.5074781918276592
the regulation term lambda/alpha is 1.6754085161610832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34460625221069574
the lambda is 0.5615289697321559
the regulation term lambda/alpha is 1.6294799242029754
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31445071497709065
the lambda is 0.5206928595721875
the regulation term lambda/alpha is 1.655880666736988
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30804002262758795
the lambda is 0.5117162370810933
the regulation term lambda/alpha is 1.6612004917937055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28549228854313613
the lambda is 0.5237218531470508
the regulation term lambda/alpha is 1.8344518369291072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3435091390745632
the lambda is 0.475125796128664
the regulation term lambda/alpha is 1.383153290793616
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3331159505999467
the lambda is 0.5275327287065098
the regulation term lambda/alpha is 1.5836309481921105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31320182010486325
the lambda is 0.5214604951871618
the regulation term lambda/alpha is 1.6649344343291854
1020
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32576367165897485
the lambda is 0.507118897628852
the regulation term lambda/alpha is 1.5567079504178984
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3396685505614424
the lambda is 0.543079954216787
the regulation term lambda/alpha is 1.598852626535849
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31444840420027026
the lambda is 0.5202762930354067
the regulation term lambda/alpha is 1.6545680820311808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34423939678533505
the lambda is 0.5408937897071783
the regulation term lambda/alpha is 1.5712721866186494
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3084147888166784
the lambda is 0.5296035316286571
the regulation term lambda/alpha is 1.7171794311830268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30998255521404605
the lambda is 0.502410286945525
the regulation term lambda/alpha is 1.6207695513659008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29784123958327463
the lambda is 0.48400502152240876
the regulation term lambda/alpha is 1.6250436715869356
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3060715278079149
the lambda is 0.5143926614945425
the regulation term lambda/alpha is 1.6806289208886045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.283662323391471
the lambda is 0.5469377116866684
the regulation term lambda/alpha is 1.9281295631632458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29667701167733407
the lambda is 0.4789213531109801
the regulation term lambda/alpha is 1.6142853482421313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3081795078917707
the lambda is 0.5103992159739446
the regulation term lambda/alpha is 1.656175063246552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30722372966415384
the lambda is 0.5105124003381044
the regulation term lambda/alpha is 1.661695862152896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32433513386472174
the lambda is 0.4926756646141401
the regulation term lambda/alpha is 1.5190326707547885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3488824825868174
the lambda is 0.5360079045118605
the regulation term lambda/alpha is 1.5363565993270472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3298631247211876
the lambda is 0.4893616013048588
the regulation term lambda/alpha is 1.483529272083641
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30814018007143834
the lambda is 0.5375434033234414
the regulation term lambda/alpha is 1.7444768260952495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3041077847698088
the lambda is 0.5535564440530791
the regulation term lambda/alpha is 1.8202639714471232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31176068453985145
the lambda is 0.4953830257879547
the regulation term lambda/alpha is 1.5889849180922981
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34658345350396275
the lambda is 0.5193965045814178
the regulation term lambda/alpha is 1.4986188732621628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3379879514957352
the lambda is 0.5474528053467101
the regulation term lambda/alpha is 1.6197405940774137
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32342654959070966
the lambda is 0.5737667763897388
the regulation term lambda/alpha is 1.7740249744983216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35428665572742746
the lambda is 0.5082352111540761
the regulation term lambda/alpha is 1.4345310582205215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.302234783558049
the lambda is 0.49296496146730306
the regulation term lambda/alpha is 1.6310662712739061
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31869740156685883
the lambda is 0.51458822735904
the regulation term lambda/alpha is 1.614660881541846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2755312202639524
the lambda is 0.4693170182139307
the regulation term lambda/alpha is 1.7033170243442326
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32769745677270024
the lambda is 0.5317919192658298
the regulation term lambda/alpha is 1.6228136907229493
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073675783561528
the lambda is 0.5323982694474022
the regulation term lambda/alpha is 1.7321224063212743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3336577072774956
the lambda is 0.5622651532709411
the regulation term lambda/alpha is 1.6851555981091657
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3058984575546071
the lambda is 0.5541080804551768
the regulation term lambda/alpha is 1.8114118158188517
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087225760130079
the lambda is 0.4874042129428124
the regulation term lambda/alpha is 1.5787773580973095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31537587599475597
the lambda is 0.4891149750668228
the regulation term lambda/alpha is 1.550895335681781
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.312296896406071
the lambda is 0.4922593231111226
the regulation term lambda/alpha is 1.5762542912724034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3114831732703876
the lambda is 0.521794639841338
the regulation term lambda/alpha is 1.675193668931793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33391888823723564
the lambda is 0.5361580752401554
the regulation term lambda/alpha is 1.605653630648282
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2807217049728864
the lambda is 0.5065999814491303
the regulation term lambda/alpha is 1.8046341714049523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3371810961817626
the lambda is 0.5303150008530789
the regulation term lambda/alpha is 1.5727898356650591
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2847915650499757
the lambda is 0.5082985741878752
the regulation term lambda/alpha is 1.7848090904612222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34081314057200146
the lambda is 0.5114327348998633
the regulation term lambda/alpha is 1.500625046444816
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33813010132921884
the lambda is 0.5487185458966678
the regulation term lambda/alpha is 1.6228030090772974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33275621578830117
the lambda is 0.55406797635663
the regulation term lambda/alpha is 1.6650867814566293
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29461519305832684
the lambda is 0.461589565073561
the regulation term lambda/alpha is 1.5667541116325838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190524380039614
the lambda is 0.513211411838066
the regulation term lambda/alpha is 1.6085487860515701
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3099868286636098
the lambda is 0.503902972903879
the regulation term lambda/alpha is 1.625562528176648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2990010719665627
the lambda is 0.5039166414436618
the regulation term lambda/alpha is 1.685333895726015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3273132198687742
the lambda is 0.5149929129177728
the regulation term lambda/alpha is 1.5733947841283122
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30920448483633617
the lambda is 0.5290498992350982
the regulation term lambda/alpha is 1.7110033171579886
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31260332918425043
the lambda is 0.498932781872803
the regulation term lambda/alpha is 1.5960571602829245
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176561282961483
the lambda is 0.5016680063087752
the regulation term lambda/alpha is 1.579280113371759
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.326357402228549
the lambda is 0.5435452953636661
the regulation term lambda/alpha is 1.6654909361700945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3153128501782937
the lambda is 0.4824801035114747
the regulation term lambda/alpha is 1.5301631482467533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233421364126667
the lambda is 0.4898224723214944
the regulation term lambda/alpha is 1.514873618872724
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34688225358377645
the lambda is 0.4949050769811263
the regulation term lambda/alpha is 1.4267235405330427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31133818727290097
the lambda is 0.49880632752763104
the regulation term lambda/alpha is 1.6021366729755075
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047162429968077
the lambda is 0.4829469949242899
the regulation term lambda/alpha is 1.5849072900565704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236293093248478
the lambda is 0.5327265471651601
the regulation term lambda/alpha is 1.6461010539389305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2923410334736443
the lambda is 0.4896942287582359
the regulation term lambda/alpha is 1.6750786673345457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34267496357374033
the lambda is 0.5609565004953019
the regulation term lambda/alpha is 1.6369929528703064
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3129265772074221
the lambda is 0.5481755739253587
the regulation term lambda/alpha is 1.7517705872646372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30865936049719767
the lambda is 0.45198239167017046
the regulation term lambda/alpha is 1.4643404656256134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31982096123807247
the lambda is 0.4680736257115781
the regulation term lambda/alpha is 1.4635489303127553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3032815223138805
the lambda is 0.5188151412803805
the regulation term lambda/alpha is 1.7106717788874524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32746880607369766
the lambda is 0.48675282600246
the regulation term lambda/alpha is 1.4864097494920328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28014664688644064
the lambda is 0.47922097244000966
the regulation term lambda/alpha is 1.7106075613115055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34086616101002903
the lambda is 0.5199136484135054
the regulation term lambda/alpha is 1.5252721093608597
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30922870054532214
the lambda is 0.5291854702265469
the regulation term lambda/alpha is 1.7113077450228034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.287192850848456
the lambda is 0.4925927549258505
the regulation term lambda/alpha is 1.7151985276464228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32389395360830675
the lambda is 0.5092235128408136
the regulation term lambda/alpha is 1.572192093022615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30762366441937067
the lambda is 0.5186800419193773
the regulation term lambda/alpha is 1.6860862863017008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30613113492275734
the lambda is 0.4946140980534366
the regulation term lambda/alpha is 1.615693543155083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28333612375054296
the lambda is 0.5151244470135707
the regulation term lambda/alpha is 1.8180683782739284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2913966202151368
the lambda is 0.5457767640111906
the regulation term lambda/alpha is 1.8729687516905518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3477596412521951
the lambda is 0.5744856118162882
the regulation term lambda/alpha is 1.6519617105300368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33820256822130224
the lambda is 0.5245776166747461
the regulation term lambda/alpha is 1.5510752015682203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34675890924487196
the lambda is 0.5153466674983208
the regulation term lambda/alpha is 1.4861814758287772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33926899809557926
the lambda is 0.5355274679070221
the regulation term lambda/alpha is 1.5784745170148222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2874179685538996
the lambda is 0.5050948223561401
the regulation term lambda/alpha is 1.7573529758680326
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33227284109299937
the lambda is 0.5084767032162524
the regulation term lambda/alpha is 1.5302987194007094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3343893140506298
the lambda is 0.5339357299455599
the regulation term lambda/alpha is 1.5967487820640012
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2924098135100192
the lambda is 0.5224433213428492
the regulation term lambda/alpha is 1.7866819005544357
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32667756629341216
the lambda is 0.46595155314185494
the regulation term lambda/alpha is 1.426334714160785
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38166482675380387
the lambda is 0.5412866083469802
the regulation term lambda/alpha is 1.4182250246919967
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176936518692179
the lambda is 0.5569820608335407
the regulation term lambda/alpha is 1.7532048800988589
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3320538847284869
the lambda is 0.48592855798927487
the regulation term lambda/alpha is 1.4634027196718624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3606877819599283
the lambda is 0.566005074671471
the regulation term lambda/alpha is 1.5692382802541203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32057788095570594
the lambda is 0.49918684013616993
the regulation term lambda/alpha is 1.5571468581924475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33987163645815643
the lambda is 0.5165552425084682
the regulation term lambda/alpha is 1.5198539304178278
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233804045428462
the lambda is 0.5021039235406856
the regulation term lambda/alpha is 1.5526726928630563
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4079898932894393
the lambda is 0.542334884818293
the regulation term lambda/alpha is 1.329285096857891
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27872928305099265
the lambda is 0.5192342557335515
the regulation term lambda/alpha is 1.8628622369704846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32397754061434675
the lambda is 0.44935366546823446
the regulation term lambda/alpha is 1.3869901741217665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3442992335207458
the lambda is 0.5423219875907311
the regulation term lambda/alpha is 1.5751472405123825
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3239201299015534
the lambda is 0.5248247562704709
the regulation term lambda/alpha is 1.6202289015813154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29918640436205074
the lambda is 0.5158131649838077
the regulation term lambda/alpha is 1.7240528228001066
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2903723600973466
the lambda is 0.5022638236780169
the regulation term lambda/alpha is 1.729723254340166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28211863754104244
the lambda is 0.5191523172969653
the regulation term lambda/alpha is 1.8401914946914466
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31526534098232534
the lambda is 0.5111578615179502
the regulation term lambda/alpha is 1.6213576155414025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32764053033963814
the lambda is 0.552015825770597
the regulation term lambda/alpha is 1.6848215487820368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320577326774859
the lambda is 0.5456893943589293
the regulation term lambda/alpha is 1.7022083247395914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2776160119303244
the lambda is 0.47526472566770667
the regulation term lambda/alpha is 1.7119499785444212
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34650649675424094
the lambda is 0.5587693155020387
the regulation term lambda/alpha is 1.612579621842833
1030
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31788169142840683
the lambda is 0.4712803204802393
the regulation term lambda/alpha is 1.4825651592658047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.336345652773529
the lambda is 0.48072690216370617
the regulation term lambda/alpha is 1.429264502750666
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30279752321076836
the lambda is 0.5024884820308667
the regulation term lambda/alpha is 1.6594867642992555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39265387792825485
the lambda is 0.4999849369600725
the regulation term lambda/alpha is 1.2733477626609078
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3249764466419499
the lambda is 0.4847102763380002
the regulation term lambda/alpha is 1.4915243284447646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080235151252522
the lambda is 0.5375775315542527
the regulation term lambda/alpha is 1.745248350067223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32841745322057925
the lambda is 0.5365908025940769
the regulation term lambda/alpha is 1.633868106984191
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3289351589016574
the lambda is 0.5057310989902932
the regulation term lambda/alpha is 1.5374796074672363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3135508558595687
the lambda is 0.5204290025513325
the regulation term lambda/alpha is 1.6597913634285189
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178548604901623
the lambda is 0.5358877252989037
the regulation term lambda/alpha is 1.6859510169909437
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3025263645005929
the lambda is 0.5442637055926988
the regulation term lambda/alpha is 1.7990620635367207
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3210591551275488
the lambda is 0.5015090221828353
the regulation term lambda/alpha is 1.5620455426153423
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32134186597554376
the lambda is 0.5183621889792629
the regulation term lambda/alpha is 1.6131175046413457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30568935997086694
the lambda is 0.5072538280073534
the regulation term lambda/alpha is 1.6593767871269585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3480885272146628
the lambda is 0.5090916091799419
the regulation term lambda/alpha is 1.4625348708088561
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29746959696681824
the lambda is 0.5346886975844394
the regulation term lambda/alpha is 1.7974566242616121
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31267110381772645
the lambda is 0.5309245692137688
the regulation term lambda/alpha is 1.6980288959585936
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30234420748176727
the lambda is 0.5682432628648225
the regulation term lambda/alpha is 1.8794580772614609
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.372745043986687
the lambda is 0.506592647369945
the regulation term lambda/alpha is 1.3590862052830903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3050330452146512
the lambda is 0.5224220926739684
the regulation term lambda/alpha is 1.7126737606620326
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2737023752887276
the lambda is 0.44902251967229845
the regulation term lambda/alpha is 1.640550321123908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31861168772053605
the lambda is 0.5061940120546362
the regulation term lambda/alpha is 1.58874903703669
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205729839307575
the lambda is 0.5303513118712361
the regulation term lambda/alpha is 1.6543855485519947
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2990765784108752
the lambda is 0.487916248821084
the regulation term lambda/alpha is 1.6314090906536267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3132417114708831
the lambda is 0.5347066673389194
the regulation term lambda/alpha is 1.70700978751555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3550708310539189
the lambda is 0.5056492159287204
the regulation term lambda/alpha is 1.4240798502874925
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29812433829785007
the lambda is 0.5198662874594057
the regulation term lambda/alpha is 1.7437901595944765
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3193032360756755
the lambda is 0.5461227765228237
the regulation term lambda/alpha is 1.7103577878972436
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37246617421665346
the lambda is 0.508537251944941
the regulation term lambda/alpha is 1.3653246580430112
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3185883831057974
the lambda is 0.5286764043831093
the regulation term lambda/alpha is 1.6594340296693915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2960643587382031
the lambda is 0.4997592341653398
the regulation term lambda/alpha is 1.6880087704418865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3342756669040855
the lambda is 0.5742645643666036
the regulation term lambda/alpha is 1.7179370837404646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32893919276826405
the lambda is 0.491912006593345
the regulation term lambda/alpha is 1.495449667926602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3132843781318901
the lambda is 0.5280850565984517
the regulation term lambda/alpha is 1.6856412047974265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28458548707799036
the lambda is 0.5136254333124054
the regulation term lambda/alpha is 1.8048194888154885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33072219867827046
the lambda is 0.5067888911532503
the regulation term lambda/alpha is 1.5323703494311223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32529032724945545
the lambda is 0.5143337084491021
the regulation term lambda/alpha is 1.5811527898727677
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3594241026553667
the lambda is 0.5546722866198197
the regulation term lambda/alpha is 1.5432250717800817
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3173373297196652
the lambda is 0.5414986173505558
the regulation term lambda/alpha is 1.706381716355003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3100512237684235
the lambda is 0.5353504140239943
the regulation term lambda/alpha is 1.7266515110543355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.336146925821929
the lambda is 0.5034150658006996
the regulation term lambda/alpha is 1.4976042531692808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3036020893954882
the lambda is 0.5342207590895381
the regulation term lambda/alpha is 1.7596083088665235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.297090286570119
the lambda is 0.49524721302982155
the regulation term lambda/alpha is 1.6669922761440863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29247137950985896
the lambda is 0.5032749652888853
the regulation term lambda/alpha is 1.7207665451994092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29624065741679245
the lambda is 0.5440417118666275
the regulation term lambda/alpha is 1.8364856350598566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3061524523177459
the lambda is 0.5173452147725249
the regulation term lambda/alpha is 1.6898287466127784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3157925008622752
the lambda is 0.5164782082032314
the regulation term lambda/alpha is 1.635498647982398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33288679588642917
the lambda is 0.49073732449160024
the regulation term lambda/alpha is 1.4741868123211017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3107872440126883
the lambda is 0.48094300237693294
the regulation term lambda/alpha is 1.5474991707101653
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32618637801556266
the lambda is 0.4959202284919754
the regulation term lambda/alpha is 1.5203584880185113
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3218641724422156
the lambda is 0.5008832452871046
the regulation term lambda/alpha is 1.5561944701286328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3617103234458712
the lambda is 0.5156040926958682
the regulation term lambda/alpha is 1.4254613685999113
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3268752615903676
the lambda is 0.48017175491292424
the regulation term lambda/alpha is 1.4689755124836097
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.271933916785146
the lambda is 0.4957840372929556
the regulation term lambda/alpha is 1.8231783778728594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3674712726832844
the lambda is 0.49137577170518304
the regulation term lambda/alpha is 1.337181456708561
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37966818572793803
the lambda is 0.5490089861762303
the regulation term lambda/alpha is 1.4460231507773427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159268536913154
the lambda is 0.527308966339858
the regulation term lambda/alpha is 1.6690856132637557
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29719647012967815
the lambda is 0.5389687566882632
the regulation term lambda/alpha is 1.813509953375592
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3258431508241396
the lambda is 0.5096124751900578
the regulation term lambda/alpha is 1.5639809334678945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3179735079806655
the lambda is 0.5289442431848291
the regulation term lambda/alpha is 1.6634852587058662
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32613209773743224
the lambda is 0.5067498370791286
the regulation term lambda/alpha is 1.553817733963466
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3186655219015257
the lambda is 0.5065620512735419
the regulation term lambda/alpha is 1.5896355785552483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3416192044471583
the lambda is 0.5575648818735164
the regulation term lambda/alpha is 1.6321239397996448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2956327426441027
the lambda is 0.4733552706352596
the regulation term lambda/alpha is 1.6011598255376875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3207731183681285
the lambda is 0.5089628445360569
the regulation term lambda/alpha is 1.5866754892844743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30667178862905226
the lambda is 0.5302165921984227
the regulation term lambda/alpha is 1.7289382716574833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28128700816775165
the lambda is 0.4895796000360129
the regulation term lambda/alpha is 1.7404984440093352
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2997824477189499
the lambda is 0.5600718297478328
the regulation term lambda/alpha is 1.8682609139041644
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3589820926304642
the lambda is 0.5668769453550032
the regulation term lambda/alpha is 1.5791231846724616
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29254431172794976
the lambda is 0.506115451763494
the regulation term lambda/alpha is 1.7300471466153606
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105523779838578
the lambda is 0.5190079013219113
the regulation term lambda/alpha is 1.6712411113750634
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3152370515688852
the lambda is 0.5260602911601627
the regulation term lambda/alpha is 1.668776841243894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31489578984570943
the lambda is 0.5097164367548623
the regulation term lambda/alpha is 1.6186829204817563
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33516956796361763
the lambda is 0.5539058029463433
the regulation term lambda/alpha is 1.652613649597416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2852376934226515
the lambda is 0.4810232707034493
the regulation term lambda/alpha is 1.6863944765907646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29717251360222996
the lambda is 0.4979172731824288
the regulation term lambda/alpha is 1.6755159053804647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3177968435448454
the lambda is 0.5303648049631803
the regulation term lambda/alpha is 1.668880027401338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2927182023011375
the lambda is 0.4999891351373246
the regulation term lambda/alpha is 1.7080903449350737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3223894250176617
the lambda is 0.5408189980198675
the regulation term lambda/alpha is 1.6775333061567992
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32452277470433016
the lambda is 0.5263349921221473
the regulation term lambda/alpha is 1.6218738194929045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29230951721485243
the lambda is 0.4861814444668964
the regulation term lambda/alpha is 1.6632419262269342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3307024087580991
the lambda is 0.5470043426416535
the regulation term lambda/alpha is 1.6540682140654566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.303478548579883
the lambda is 0.4726288682719851
the regulation term lambda/alpha is 1.5573715851866134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3468539761726282
the lambda is 0.5279462836521366
the regulation term lambda/alpha is 1.5220995575076794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233666521671571
the lambda is 0.4849857552427338
the regulation term lambda/alpha is 1.4998013926062832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32823025559718294
the lambda is 0.4557160239707375
the regulation term lambda/alpha is 1.3884034643351408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2833918159499264
the lambda is 0.49344537710797776
the regulation term lambda/alpha is 1.7412125168609898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3255854364061213
the lambda is 0.5118345038216042
the regulation term lambda/alpha is 1.5720436069602444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3149989598153807
the lambda is 0.512879319211731
the regulation term lambda/alpha is 1.6281936915357658
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2983974617308427
the lambda is 0.4997005789040445
the regulation term lambda/alpha is 1.674614039963849
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3421287600497857
the lambda is 0.5239819537231336
the regulation term lambda/alpha is 1.5315343663212795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3006324861313003
the lambda is 0.5673633170866307
the regulation term lambda/alpha is 1.887232229582922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28494653289577154
the lambda is 0.5061461240374684
the regulation term lambda/alpha is 1.776284550275991
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31621263969741525
the lambda is 0.49544405946756365
the regulation term lambda/alpha is 1.5668066271533467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31040613854108856
the lambda is 0.48770777595980236
the regulation term lambda/alpha is 1.5711924327657725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3402364856071012
the lambda is 0.5185471285770052
the regulation term lambda/alpha is 1.524078546872289
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31926613260682135
the lambda is 0.5235755794989703
the regulation term lambda/alpha is 1.6399346063547477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32828598123159264
the lambda is 0.5555565614033791
the regulation term lambda/alpha is 1.6922945028574221
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3157940123680885
the lambda is 0.5185810767054746
the regulation term lambda/alpha is 1.6421498077709533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2991929560805261
the lambda is 0.5070517909578482
the regulation term lambda/alpha is 1.6947317129397195
1040
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31359864780646174
the lambda is 0.47309656258033517
the regulation term lambda/alpha is 1.5086052375847872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3263090469749211
the lambda is 0.5380532150738204
the regulation term lambda/alpha is 1.6489068264024356
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31337166452718257
the lambda is 0.48355197985961007
the regulation term lambda/alpha is 1.543062231198206
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3529293358161592
the lambda is 0.5027099635510155
the regulation term lambda/alpha is 1.4243926829955473
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2912960253601442
the lambda is 0.5178238907529872
the regulation term lambda/alpha is 1.7776551880952545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34682120700469177
the lambda is 0.5109088561730092
the regulation term lambda/alpha is 1.4731188458325666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34945946829092644
the lambda is 0.5688916739152851
the regulation term lambda/alpha is 1.627918902004625
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2789777343308219
the lambda is 0.5092984804705057
the regulation term lambda/alpha is 1.8255882738891311
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32573350839133947
the lambda is 0.5270314100126947
the regulation term lambda/alpha is 1.617983401878059
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34951463593671417
the lambda is 0.5734615641993921
the regulation term lambda/alpha is 1.640736911238325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34220063671121487
the lambda is 0.4887484318418035
the regulation term lambda/alpha is 1.4282510884229043
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35795288832615774
the lambda is 0.5785334531273006
the regulation term lambda/alpha is 1.6162279227096372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3452809263039151
the lambda is 0.530815973442465
the regulation term lambda/alpha is 1.53734519634381
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30670301504986414
the lambda is 0.519822578123554
the regulation term lambda/alpha is 1.6948727355648612
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2973077534523324
the lambda is 0.5244872104260453
the regulation term lambda/alpha is 1.7641222078324867
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2912578643631471
the lambda is 0.5385694652062588
the regulation term lambda/alpha is 1.8491156157581305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2859096048482162
the lambda is 0.48679609895590276
the regulation term lambda/alpha is 1.7026224047783678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2949418873463473
the lambda is 0.4899391048408784
the regulation term lambda/alpha is 1.661137755810004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3470963298791914
the lambda is 0.5233367669275244
the regulation term lambda/alpha is 1.5077565559672566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.358656262963993
the lambda is 0.5858008549656968
the regulation term lambda/alpha is 1.6333211363006583
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32817888132333073
the lambda is 0.5264241032375038
the regulation term lambda/alpha is 1.604076719119706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29480812935618955
the lambda is 0.5362783852620657
the regulation term lambda/alpha is 1.8190759747134715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33756373730080674
the lambda is 0.5339104563385952
the regulation term lambda/alpha is 1.5816582095215452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29900289424479887
the lambda is 0.488639471470313
the regulation term lambda/alpha is 1.6342299050465223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31181546636862467
the lambda is 0.5137821050715987
the regulation term lambda/alpha is 1.6477120620572792
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32038890534909875
the lambda is 0.5360459229183666
the regulation term lambda/alpha is 1.6731101294980422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.290395253956191
the lambda is 0.5088749771010546
the regulation term lambda/alpha is 1.7523529402371825
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3103576138141894
the lambda is 0.47689178356823086
the regulation term lambda/alpha is 1.5365879950789452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31664573053043005
the lambda is 0.529099147354688
the regulation term lambda/alpha is 1.6709498860709915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3343288443516365
the lambda is 0.5212429690012895
the regulation term lambda/alpha is 1.559072684895422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3195698366501615
the lambda is 0.5065942454910909
the regulation term lambda/alpha is 1.5852379899222724
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2931963059235681
the lambda is 0.5211709476984193
the regulation term lambda/alpha is 1.7775495023947567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31495927342784413
the lambda is 0.5127581482094922
the regulation term lambda/alpha is 1.6280141322048196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.353087311775697
the lambda is 0.5127014943040628
the regulation term lambda/alpha is 1.452053011266977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3081639681266465
the lambda is 0.5092985202874286
the regulation term lambda/alpha is 1.6526867932792249
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3434197476789647
the lambda is 0.5315181514207901
the regulation term lambda/alpha is 1.5477215710893344
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31753224312325823
the lambda is 0.509635967161913
the regulation term lambda/alpha is 1.604989660732138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29872651641764403
the lambda is 0.507360738983847
the regulation term lambda/alpha is 1.6984121298241746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282496547906181
the lambda is 0.4890346404030962
the regulation term lambda/alpha is 1.4898252999383614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32895015780309983
the lambda is 0.4948585474624425
the regulation term lambda/alpha is 1.5043572277556125
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32186415077190506
the lambda is 0.5019827628089172
the regulation term lambda/alpha is 1.5596106668140761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3280051356318632
the lambda is 0.5232528227872932
the regulation term lambda/alpha is 1.5952580186871417
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2941346316982847
the lambda is 0.5153630708827115
the regulation term lambda/alpha is 1.7521332592054544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3065002820419578
the lambda is 0.539584293047293
the regulation term lambda/alpha is 1.7604691566757764
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3253158940297881
the lambda is 0.4931354827801454
the regulation term lambda/alpha is 1.515866552573022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31658975728160044
the lambda is 0.5063976950802888
the regulation term lambda/alpha is 1.5995390988908649
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2879178201864986
the lambda is 0.5079982325900345
the regulation term lambda/alpha is 1.764386213611158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3238083693193897
the lambda is 0.4811548344592573
the regulation term lambda/alpha is 1.4859246395347745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3250263594488183
the lambda is 0.4946688055137339
the regulation term lambda/alpha is 1.521934425111232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31113884647210316
the lambda is 0.48875263246081885
the regulation term lambda/alpha is 1.570850563992949
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31712271954801985
the lambda is 0.4748802867455528
the regulation term lambda/alpha is 1.4974653579610362
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31507180310744304
the lambda is 0.5587155255917056
the regulation term lambda/alpha is 1.7732958648831463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32269765360272534
the lambda is 0.5509804001559195
the regulation term lambda/alpha is 1.707419914599795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34080947059985717
the lambda is 0.5487054846746798
the regulation term lambda/alpha is 1.610006563810876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34282642744750813
the lambda is 0.5383299459945213
the regulation term lambda/alpha is 1.5702696842907413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2828476597865548
the lambda is 0.538294180688325
the regulation term lambda/alpha is 1.9031240389068014
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3419575504980719
the lambda is 0.5639254683830709
the regulation term lambda/alpha is 1.6491095680200532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2902039828732642
the lambda is 0.5011221684485077
the regulation term lambda/alpha is 1.7267928699219615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30929142613992905
the lambda is 0.5190039604844561
the regulation term lambda/alpha is 1.6780418615602013
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3317823461255204
the lambda is 0.5272198359774498
the regulation term lambda/alpha is 1.5890533120107337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30845448216393084
the lambda is 0.5212661325235667
the regulation term lambda/alpha is 1.689928863625769
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31584809592395724
the lambda is 0.49847538217575516
the regulation term lambda/alpha is 1.5782124021281634
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3677917075296185
the lambda is 0.5268667178375532
the regulation term lambda/alpha is 1.4325138578474457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28804707553575765
the lambda is 0.4990245222232298
the regulation term lambda/alpha is 1.7324408563949534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34017417281558776
the lambda is 0.5481982424436652
the regulation term lambda/alpha is 1.6115222325853928
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30165754871024597
the lambda is 0.4947839385267775
the regulation term lambda/alpha is 1.640217328033906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28710836231606196
the lambda is 0.5007807429072452
the regulation term lambda/alpha is 1.7442220730441942
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30589499850371954
the lambda is 0.5292973922504788
the regulation term lambda/alpha is 1.7303237870495707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31008583625192665
the lambda is 0.5152160452772055
the regulation term lambda/alpha is 1.661527180682392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.311509610705283
the lambda is 0.5081873746647467
the regulation term lambda/alpha is 1.6313698107553387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3258753171409822
the lambda is 0.5670283490975511
the regulation term lambda/alpha is 1.7400162555184862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3014638422162254
the lambda is 0.5199612530025204
the regulation term lambda/alpha is 1.7247881178054427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3039000247614398
the lambda is 0.47385236520662044
the regulation term lambda/alpha is 1.55923766567177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2935846743084028
the lambda is 0.5032309299269027
the regulation term lambda/alpha is 1.714091279159457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3113092861969801
the lambda is 0.48868063194622136
the regulation term lambda/alpha is 1.5697592510523761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30125277524447236
the lambda is 0.4792718858823684
the regulation term lambda/alpha is 1.5909293632014847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3244089286544545
the lambda is 0.5588972839096925
the regulation term lambda/alpha is 1.7228172055184223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3041099212886594
the lambda is 0.5085579267208306
the regulation term lambda/alpha is 1.672283247339735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31338075768294216
the lambda is 0.5066195205555882
the regulation term lambda/alpha is 1.6166261269562447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314879223791335
the lambda is 0.4977776182816227
the regulation term lambda/alpha is 1.5016463185415796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30178355985853855
the lambda is 0.48614345553719124
the regulation term lambda/alpha is 1.6109010569199715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2876861749041688
the lambda is 0.49382559805080606
the regulation term lambda/alpha is 1.716542681327333
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33411129334108935
the lambda is 0.5266512903460756
the regulation term lambda/alpha is 1.5762750342246736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32736978159006663
the lambda is 0.5334692299179069
the regulation term lambda/alpha is 1.6295616147794563
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3192335725094206
the lambda is 0.5208077011351996
the regulation term lambda/alpha is 1.6314314846062457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3153238610280045
the lambda is 0.5152919144696315
the regulation term lambda/alpha is 1.6341672107835425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2894955527975844
the lambda is 0.5418242381618805
the regulation term lambda/alpha is 1.8716150660204602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33976285487280095
the lambda is 0.5025109095996633
the regulation term lambda/alpha is 1.4790048482132965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30053758787383134
the lambda is 0.4632700504247783
the regulation term lambda/alpha is 1.5414712472479937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2934113730994597
the lambda is 0.5112081216452815
the regulation term lambda/alpha is 1.7422914328272945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3229834022907183
the lambda is 0.564427359120767
the regulation term lambda/alpha is 1.747542923622819
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34560128197791057
the lambda is 0.5173276912029191
the regulation term lambda/alpha is 1.4968917020278432
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3378206171795194
the lambda is 0.518438759194465
the regulation term lambda/alpha is 1.5346569535125927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31166559190194826
the lambda is 0.49157744015455324
the regulation term lambda/alpha is 1.5772592577662736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215179896675216
the lambda is 0.48638972179725554
the regulation term lambda/alpha is 1.5127916241956665
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32410656899051715
the lambda is 0.542775309502744
the regulation term lambda/alpha is 1.6746816060942744
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3341318135536424
the lambda is 0.5503623010269753
the regulation term lambda/alpha is 1.6471412738991362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35952266000787947
the lambda is 0.5313863375600507
the regulation term lambda/alpha is 1.4780329494346882
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27446703194930877
the lambda is 0.5312408606457776
the regulation term lambda/alpha is 1.9355361438961174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32722544724656605
the lambda is 0.5339291163745349
the regulation term lambda/alpha is 1.631685802150395
1050
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.278971460723997
the lambda is 0.4727615166658853
the regulation term lambda/alpha is 1.6946590717163585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3363930983949811
the lambda is 0.5533477393466242
the regulation term lambda/alpha is 1.6449437933976352
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34664192046146836
the lambda is 0.532822643476171
the regulation term lambda/alpha is 1.537098117754624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3296437496639804
the lambda is 0.522174803962687
the regulation term lambda/alpha is 1.584057954974003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3141618733380468
the lambda is 0.5327229402646937
the regulation term lambda/alpha is 1.6956957080895338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33377080756873223
the lambda is 0.5265990696591821
the regulation term lambda/alpha is 1.5777265648097205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2974705285768719
the lambda is 0.517090867137892
the regulation term lambda/alpha is 1.7382927633594671
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29603163218935646
the lambda is 0.4625461424896419
the regulation term lambda/alpha is 1.562488910623492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3422205932021622
the lambda is 0.4833499234991419
the regulation term lambda/alpha is 1.4123928632594283
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2986337364080676
the lambda is 0.4887888000662465
the regulation term lambda/alpha is 1.6367501071558164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.329734590838434
the lambda is 0.5092088845588435
the regulation term lambda/alpha is 1.5442992597896705
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32970870487405923
the lambda is 0.5475629000646957
the regulation term lambda/alpha is 1.6607474779103921
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2774218583170572
the lambda is 0.5378083235747657
the regulation term lambda/alpha is 1.9385939047388276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30097061065786745
the lambda is 0.4969792407679033
the regulation term lambda/alpha is 1.6512550500581977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2968879688932901
the lambda is 0.5786579682544668
the regulation term lambda/alpha is 1.949078537643446
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31525668261524337
the lambda is 0.49974492808052245
the regulation term lambda/alpha is 1.5852001103825568
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35260344220648776
the lambda is 0.5092857257520581
the regulation term lambda/alpha is 1.4443583493260845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32631627584585293
the lambda is 0.5674019781235815
the regulation term lambda/alpha is 1.7388099219164108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37217586726616153
the lambda is 0.5311380410841426
the regulation term lambda/alpha is 1.4271157476857557
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32255858284498795
the lambda is 0.5382518807429798
the regulation term lambda/alpha is 1.6686949576587382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31939815465355326
the lambda is 0.5527952980499091
the regulation term lambda/alpha is 1.7307404253775933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3461504646020898
the lambda is 0.5459199012425368
the regulation term lambda/alpha is 1.5771173436675516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32321373822241356
the lambda is 0.524732044676811
the regulation term lambda/alpha is 1.6234831092350608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31174671723298075
the lambda is 0.5371205204599692
the regulation term lambda/alpha is 1.722938817856284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31556585508362583
the lambda is 0.502462193228787
the regulation term lambda/alpha is 1.592257797015565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128926238958816
the lambda is 0.5127979869393092
the regulation term lambda/alpha is 1.6388944570005213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3207021083894079
the lambda is 0.49993318584969815
the regulation term lambda/alpha is 1.5588709047171636
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36007027914489015
the lambda is 0.5393779576988772
the regulation term lambda/alpha is 1.4979796693573666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3543637582908236
the lambda is 0.5216453287385409
the regulation term lambda/alpha is 1.4720617346834621
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30148251220387956
the lambda is 0.4790262599573787
the regulation term lambda/alpha is 1.588902309641874
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29072827980788984
the lambda is 0.5137919109616528
the regulation term lambda/alpha is 1.7672581122867064
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3025093385137357
the lambda is 0.4901044889621796
the regulation term lambda/alpha is 1.6201301135697865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2885098902784972
the lambda is 0.4809281558267611
the regulation term lambda/alpha is 1.666938195299036
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3423683433832685
the lambda is 0.5269825126333435
the regulation term lambda/alpha is 1.539226750422443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3053875503924007
the lambda is 0.5717404294631253
the regulation term lambda/alpha is 1.872179886601404
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3428518519887138
the lambda is 0.5146776263827045
the regulation term lambda/alpha is 1.5011662424960357
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31000186443565725
the lambda is 0.53020593341366
the regulation term lambda/alpha is 1.7103314342282203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3284371375124573
the lambda is 0.5067325113180088
the regulation term lambda/alpha is 1.5428599675296735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33377067588309933
the lambda is 0.5337801464124166
the regulation term lambda/alpha is 1.5992421892670075
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35357425086128375
the lambda is 0.48879973120166986
the regulation term lambda/alpha is 1.3824528511648846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31595885334056933
the lambda is 0.5179932026993858
the regulation term lambda/alpha is 1.639432467939252
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33821748562895776
the lambda is 0.5245981460391193
the regulation term lambda/alpha is 1.5510674886118418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2859510149588856
the lambda is 0.5123354696754984
the regulation term lambda/alpha is 1.7916896351956038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3020797618250887
the lambda is 0.48541380169567694
the regulation term lambda/alpha is 1.606906066010284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32911097451952476
the lambda is 0.49742893966734336
the regulation term lambda/alpha is 1.5114322468083878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34015168627309794
the lambda is 0.5346658545040628
the regulation term lambda/alpha is 1.571845373933543
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2831681292013844
the lambda is 0.5118151086027726
the regulation term lambda/alpha is 1.8074601476029044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28925868605578203
the lambda is 0.5239118478035149
the regulation term lambda/alpha is 1.811222525232937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28182042221894876
the lambda is 0.47140770638774965
the regulation term lambda/alpha is 1.6727237248317968
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3496247460009674
the lambda is 0.5389597638586999
the regulation term lambda/alpha is 1.5415378059572724
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31234519359279667
the lambda is 0.49244929138071203
the regulation term lambda/alpha is 1.5766187586120388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29567909178139734
the lambda is 0.5085796567993572
the regulation term lambda/alpha is 1.720039295762456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31804060457483607
the lambda is 0.48305383308518857
the regulation term lambda/alpha is 1.5188432738987714
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3127820425003059
the lambda is 0.534524418159826
the regulation term lambda/alpha is 1.7089357620628212
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28118313051620464
the lambda is 0.48127961724269863
the regulation term lambda/alpha is 1.711623369293708
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32226278637689854
the lambda is 0.5594737933289163
the regulation term lambda/alpha is 1.7360794264175154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31086924617329875
the lambda is 0.5206409939366725
the regulation term lambda/alpha is 1.674790930095521
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.314018315056658
the lambda is 0.5064668783593541
the regulation term lambda/alpha is 1.6128577668088335
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2941947124173663
the lambda is 0.49557655967308495
the regulation term lambda/alpha is 1.6845189215026528
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34035630344947343
the lambda is 0.5212214476603882
the regulation term lambda/alpha is 1.5313994257719532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31602420832397904
the lambda is 0.5078053208066136
the regulation term lambda/alpha is 1.6068557643091252
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3604626393179798
the lambda is 0.5243625105110133
the regulation term lambda/alpha is 1.4546930897003458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2839380926786552
the lambda is 0.4975575429506959
the regulation term lambda/alpha is 1.7523451617807508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30377160727868396
the lambda is 0.49477070525728917
the regulation term lambda/alpha is 1.6287588879344481
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34511617782239346
the lambda is 0.47534732856061335
the regulation term lambda/alpha is 1.37735452322157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30154997356188146
the lambda is 0.5160628905592557
the regulation term lambda/alpha is 1.7113677194647599
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3372306388379516
the lambda is 0.5418169275134993
the regulation term lambda/alpha is 1.6066657803707358
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32093189490340746
the lambda is 0.5147427803206183
the regulation term lambda/alpha is 1.603900355480539
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2884807716087148
the lambda is 0.4857173733353043
the regulation term lambda/alpha is 1.6837079664849006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2708698369411474
the lambda is 0.48857497926208143
the regulation term lambda/alpha is 1.8037260433993445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32469333217766955
the lambda is 0.5315852928270227
the regulation term lambda/alpha is 1.6371918981574392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3457655007599286
the lambda is 0.5551204061036716
the regulation term lambda/alpha is 1.605482342465109
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29056500331102403
the lambda is 0.44825016967933595
the regulation term lambda/alpha is 1.5426846473989297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27075821504706127
the lambda is 0.5405751991686095
the regulation term lambda/alpha is 1.9965237216335268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3328948675358874
the lambda is 0.5158183976209897
the regulation term lambda/alpha is 1.5494933924308174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32351506419667003
the lambda is 0.498075718294605
the regulation term lambda/alpha is 1.5395750412160614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31410056999684116
the lambda is 0.5022649078854837
the regulation term lambda/alpha is 1.5990576135870587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3097995974941396
the lambda is 0.5290241340874766
the regulation term lambda/alpha is 1.7076333809551965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29911325611217326
the lambda is 0.5001245958996384
the regulation term lambda/alpha is 1.672024177063159
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3241554807400348
the lambda is 0.5562038539615916
the regulation term lambda/alpha is 1.7158551590483648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3345318123957288
the lambda is 0.5027015317294111
the regulation term lambda/alpha is 1.5027017255230386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.307787758783919
the lambda is 0.5363756267749148
the regulation term lambda/alpha is 1.7426801796606695
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31841420741552107
the lambda is 0.5099028087605626
the regulation term lambda/alpha is 1.6013820893838278
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34272363769502345
the lambda is 0.49081274049974305
the regulation term lambda/alpha is 1.4320948032668186
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3109300851995922
the lambda is 0.5184980767292511
the regulation term lambda/alpha is 1.6675712689443252
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30075459492223217
the lambda is 0.5355865743404808
the regulation term lambda/alpha is 1.7808092823285726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2918132072749357
the lambda is 0.5638670674564288
the regulation term lambda/alpha is 1.9322876874629389
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29399453852628227
the lambda is 0.49570715435709944
the regulation term lambda/alpha is 1.6861100782414182
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2911484531287587
the lambda is 0.4536922644053405
the regulation term lambda/alpha is 1.5582849901136095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3694370907916927
the lambda is 0.5686119686495605
the regulation term lambda/alpha is 1.5391307013354887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3140418984095884
the lambda is 0.5184127140281911
the regulation term lambda/alpha is 1.6507756342500914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300070147619505
the lambda is 0.516768351972827
the regulation term lambda/alpha is 1.5659314161718538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38449365318158774
the lambda is 0.5459089872182721
the regulation term lambda/alpha is 1.419812739952957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30800819540995816
the lambda is 0.4868820035024313
the regulation term lambda/alpha is 1.5807436644807211
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2938247945170149
the lambda is 0.47002242068031436
the regulation term lambda/alpha is 1.5996690185827602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31560313123035655
the lambda is 0.4890191176646693
the regulation term lambda/alpha is 1.5494748602723387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3259701029595933
the lambda is 0.5132497883934749
the regulation term lambda/alpha is 1.574530252110564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36023314416340607
the lambda is 0.509623690901014
the regulation term lambda/alpha is 1.4147051684667933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29905366137222317
the lambda is 0.4906182451765643
the regulation term lambda/alpha is 1.6405692641425529
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3184709768436827
the lambda is 0.5203871972567246
the regulation term lambda/alpha is 1.6340176502556143
1060
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3162459666727374
the lambda is 0.4781875949382566
the regulation term lambda/alpha is 1.512074920573144
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2840762052126043
the lambda is 0.5092969650836735
the regulation term lambda/alpha is 1.7928181091496653
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2547132797158885
the lambda is 0.45799159977816994
the regulation term lambda/alpha is 1.7980672240136892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3592100194377095
the lambda is 0.5036455295805577
the regulation term lambda/alpha is 1.4020920974558024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32213117231026367
the lambda is 0.5275854197695079
the regulation term lambda/alpha is 1.6377968514681933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29516866691243443
the lambda is 0.5635857062965658
the regulation term lambda/alpha is 1.9093683357107845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35408579549961294
the lambda is 0.4869980529622788
the regulation term lambda/alpha is 1.3753673803128066
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32713155905334124
the lambda is 0.4958197571156071
the regulation term lambda/alpha is 1.5156585887048581
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3419794673393218
the lambda is 0.5074520905855923
the regulation term lambda/alpha is 1.4838671296077663
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3746922660055599
the lambda is 0.5032773409082337
the regulation term lambda/alpha is 1.3431751508336867
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32293360698810947
the lambda is 0.5592330376303906
the regulation term lambda/alpha is 1.7317275920774071
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32714588808591655
the lambda is 0.5078381939855737
the regulation term lambda/alpha is 1.5523294422462768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3298725922688027
the lambda is 0.5434774669423794
the regulation term lambda/alpha is 1.6475375029020807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28465111196905873
the lambda is 0.5331045529221476
the regulation term lambda/alpha is 1.8728349565699063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224670704045008
the lambda is 0.5126774776766503
the regulation term lambda/alpha is 1.589859941461777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3423905069475279
the lambda is 0.5283196602270867
the regulation term lambda/alpha is 1.5430324425088482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31541805222903313
the lambda is 0.5612411188896345
the regulation term lambda/alpha is 1.779356365063414
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30181388323579617
the lambda is 0.5137215392081045
the regulation term lambda/alpha is 1.702113679133682
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32504476058001813
the lambda is 0.479715096103786
the regulation term lambda/alpha is 1.4758431892511363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32510000289721247
the lambda is 0.5095749784907239
the regulation term lambda/alpha is 1.5674407073193328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3818223508901284
the lambda is 0.5918096876395782
the regulation term lambda/alpha is 1.5499608293226261
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33917651161996815
the lambda is 0.5557411793816891
the regulation term lambda/alpha is 1.638501371239916
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3222359655191337
the lambda is 0.5276253411736509
the regulation term lambda/alpha is 1.6373881181252612
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3188637924335003
the lambda is 0.49544613860335207
the regulation term lambda/alpha is 1.5537861317593102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2990907258782515
the lambda is 0.5503850896822913
the regulation term lambda/alpha is 1.8401944362070666
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31310959815162753
the lambda is 0.5434810195993993
the regulation term lambda/alpha is 1.7357533042989353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2802062506562021
the lambda is 0.4456785175728911
the regulation term lambda/alpha is 1.5905373864043975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35038580805348185
the lambda is 0.5536579551096341
the regulation term lambda/alpha is 1.5801380717598168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29508917137267265
the lambda is 0.5242490986844062
the regulation term lambda/alpha is 1.776578571981294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3096776521632066
the lambda is 0.4943041464546461
the regulation term lambda/alpha is 1.5961892729480445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31068826029292596
the lambda is 0.5338710295100899
the regulation term lambda/alpha is 1.718349541134064
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31901511655485093
the lambda is 0.49575842794299113
the regulation term lambda/alpha is 1.554028013772041
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32862661598989695
the lambda is 0.4862970075601337
the regulation term lambda/alpha is 1.4797858234802383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3496347429231623
the lambda is 0.4955986302292372
the regulation term lambda/alpha is 1.4174753518077943
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29646329862729576
the lambda is 0.4608418976755422
the regulation term lambda/alpha is 1.5544652569453394
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3250303828310307
the lambda is 0.5459451294411424
the regulation term lambda/alpha is 1.6796741421092185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28429176465742456
the lambda is 0.49493600043456676
the regulation term lambda/alpha is 1.7409438540401314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32769647007625563
the lambda is 0.5255108797689629
the regulation term lambda/alpha is 1.6036513290688652
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3334356601374927
the lambda is 0.4814248989751143
the regulation term lambda/alpha is 1.4438314689454572
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29922858589370177
the lambda is 0.5003658874843169
the regulation term lambda/alpha is 1.6721861181473727
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3011320866950379
the lambda is 0.5140991493069165
the regulation term lambda/alpha is 1.7072214221646673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.315672021949478
the lambda is 0.5316078689276952
the regulation term lambda/alpha is 1.6840512682900253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30601174032619494
the lambda is 0.49306686259135174
the regulation term lambda/alpha is 1.6112677966726516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31722469999555664
the lambda is 0.5184677468040365
the regulation term lambda/alpha is 1.6343864358963809
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176046239278684
the lambda is 0.543284601612708
the regulation term lambda/alpha is 1.7105689296768363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3125292111753078
the lambda is 0.48614558622847065
the regulation term lambda/alpha is 1.5555204724712142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3010540080163955
the lambda is 0.5207288747645085
the regulation term lambda/alpha is 1.7296859065106664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27915860275273324
the lambda is 0.537267212467136
the regulation term lambda/alpha is 1.9245948617353712
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32179334478769234
the lambda is 0.50637754005741
the regulation term lambda/alpha is 1.5736109781620862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32358038444539217
the lambda is 0.5153704790439366
the regulation term lambda/alpha is 1.5927123639687473
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3394595717283789
the lambda is 0.47583889138506313
the regulation term lambda/alpha is 1.4017542323591017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34525901278870896
the lambda is 0.4880976373197145
the regulation term lambda/alpha is 1.413714397713405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27881308044815956
the lambda is 0.5130216669685267
the regulation term lambda/alpha is 1.8400200813530847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3377045226583691
the lambda is 0.5628769856616088
the regulation term lambda/alpha is 1.6667736079774989
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3116369306466302
the lambda is 0.5351173210997855
the regulation term lambda/alpha is 1.717117801120186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3356828719936402
the lambda is 0.547777676252617
the regulation term lambda/alpha is 1.6318308795421503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2930553824885248
the lambda is 0.5147065026008955
the regulation term lambda/alpha is 1.756345501079646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3109900329543992
the lambda is 0.5142707000492701
the regulation term lambda/alpha is 1.653656534145833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3345901665425853
the lambda is 0.5472839592522268
the regulation term lambda/alpha is 1.635684529845771
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31630270345235334
the lambda is 0.5213210170623351
the regulation term lambda/alpha is 1.6481712339865124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28614952294995327
the lambda is 0.48960101621818264
the regulation term lambda/alpha is 1.7109971429301052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.339426081550923
the lambda is 0.4799799368645498
the regulation term lambda/alpha is 1.4140926786515666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33936736095502834
the lambda is 0.5152436780393693
the regulation term lambda/alpha is 1.518247590426492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3227566988345361
the lambda is 0.504939499734096
the regulation term lambda/alpha is 1.5644586202468176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32221642610547097
the lambda is 0.503838697652506
the regulation term lambda/alpha is 1.5636654646761698
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27456037228739627
the lambda is 0.496723450647934
the regulation term lambda/alpha is 1.8091592989537046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32028927910469845
the lambda is 0.5585524987275594
the regulation term lambda/alpha is 1.743900077732467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31454466286161964
the lambda is 0.47820540363548114
the regulation term lambda/alpha is 1.520310023018455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257683115420112
the lambda is 0.5054325960878187
the regulation term lambda/alpha is 1.5515093954208554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34499950020881615
the lambda is 0.5785817902934477
the regulation term lambda/alpha is 1.677051097011017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.294122706267533
the lambda is 0.5001239990797488
the regulation term lambda/alpha is 1.7003923478959075
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27033196105559437
the lambda is 0.5185193744773878
the regulation term lambda/alpha is 1.918083871595017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3416338916171754
the lambda is 0.5175081586610071
the regulation term lambda/alpha is 1.514803335849685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32295658689027446
the lambda is 0.4843388992982789
the regulation term lambda/alpha is 1.49970280514153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32855486595075034
the lambda is 0.5014544987668705
the regulation term lambda/alpha is 1.5262428006226438
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2937503934181007
the lambda is 0.49819066257974304
the regulation term lambda/alpha is 1.6959659416375945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32619158029085055
the lambda is 0.4898918561528445
the regulation term lambda/alpha is 1.5018531616175674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32260668411488463
the lambda is 0.5284881240250039
the regulation term lambda/alpha is 1.6381809492725887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31008366796442344
the lambda is 0.4864869564356469
the regulation term lambda/alpha is 1.5688893247078803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36196564626242406
the lambda is 0.5465847243770973
the regulation term lambda/alpha is 1.5100458566192907
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3531540971383862
the lambda is 0.5231696104622825
the regulation term lambda/alpha is 1.4814201922093924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2712970568608585
the lambda is 0.5010502102085707
the regulation term lambda/alpha is 1.846869317368035
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29431494198393154
the lambda is 0.4942517281918496
the regulation term lambda/alpha is 1.679329377095757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3326759778241133
the lambda is 0.5516912463169851
the regulation term lambda/alpha is 1.6583441038494993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235856765552691
the lambda is 0.4989983435398012
the regulation term lambda/alpha is 1.5420903324643027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32091087993257333
the lambda is 0.516443881727806
the regulation term lambda/alpha is 1.609306240524834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32666257786259256
the lambda is 0.5495914575399536
the regulation term lambda/alpha is 1.6824438879287054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36271183493200204
the lambda is 0.5047447880158024
the regulation term lambda/alpha is 1.3915862108839856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3266553465345663
the lambda is 0.5584159166303281
the regulation term lambda/alpha is 1.7094957194317257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32549423072623135
the lambda is 0.5342527418988011
the regulation term lambda/alpha is 1.6413585602018048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3227683511680411
the lambda is 0.5523977473848407
the regulation term lambda/alpha is 1.711437151089355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3242291494771923
the lambda is 0.5073270327302793
the regulation term lambda/alpha is 1.5647175263184256
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3011855302927222
the lambda is 0.5196361310989864
the regulation term lambda/alpha is 1.725302442630468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2984423178510793
the lambda is 0.4966986918756064
the regulation term lambda/alpha is 1.6643038274600712
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28903776275277454
the lambda is 0.5060952294902247
the regulation term lambda/alpha is 1.7509657723275003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3262988684432361
the lambda is 0.5207001704534967
the regulation term lambda/alpha is 1.5957768193856892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31954570713769576
the lambda is 0.508148674692135
the regulation term lambda/alpha is 1.5902221915100494
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33067245032157394
the lambda is 0.5761191888115581
the regulation term lambda/alpha is 1.742265460129173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3610990397982786
the lambda is 0.5364003039336624
the regulation term lambda/alpha is 1.485465882804099
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3067496871061306
the lambda is 0.5284929751914011
the regulation term lambda/alpha is 1.7228802421192067
1070
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3135307201420712
the lambda is 0.5035102008438764
the regulation term lambda/alpha is 1.6059357775713947
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3331745518821306
the lambda is 0.5258546805831225
the regulation term lambda/alpha is 1.5783158635992032
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3381837947375183
the lambda is 0.49866788708999354
the regulation term lambda/alpha is 1.4745469618880915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31038125510118697
the lambda is 0.5273630873204209
the regulation term lambda/alpha is 1.6990816251081142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29649933949484225
the lambda is 0.5050094608350675
the regulation term lambda/alpha is 1.7032397498607323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30938724716435567
the lambda is 0.5018347089421542
the regulation term lambda/alpha is 1.6220277776205971
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3136474735615357
the lambda is 0.5255496104939232
the regulation term lambda/alpha is 1.6756060698534962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30536978100087236
the lambda is 0.5106539747051599
the regulation term lambda/alpha is 1.67224789902738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3446202554010121
the lambda is 0.5271532782446778
the regulation term lambda/alpha is 1.5296642318115166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.336591339533277
the lambda is 0.5334564292645633
the regulation term lambda/alpha is 1.584878654347621
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32475671293171315
the lambda is 0.4532397468173918
the regulation term lambda/alpha is 1.3956285698478998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33820006987446133
the lambda is 0.5166236290021307
the regulation term lambda/alpha is 1.5275680729276595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3010033406833721
the lambda is 0.49028979758786967
the regulation term lambda/alpha is 1.628851681429043
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32127112255110535
the lambda is 0.48377702709185244
the regulation term lambda/alpha is 1.5058216974197451
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3499497188062917
the lambda is 0.5525584096396657
the regulation term lambda/alpha is 1.5789651482632692
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29464705796308216
the lambda is 0.5001297172517198
the regulation term lambda/alpha is 1.6973857492728934
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34840126515527764
the lambda is 0.500875234208322
the regulation term lambda/alpha is 1.437638964901832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3139759697481608
the lambda is 0.4879232142525485
the regulation term lambda/alpha is 1.5540145146901219
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3181175215412125
the lambda is 0.5119347461500345
the regulation term lambda/alpha is 1.6092629656795336
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2837008985134108
the lambda is 0.4726758171468762
the regulation term lambda/alpha is 1.666106168939512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178218484304845
the lambda is 0.4967293093435041
the regulation term lambda/alpha is 1.5629174387995264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35479992387072146
the lambda is 0.5302720967822939
the regulation term lambda/alpha is 1.4945665461177193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3271201296249383
the lambda is 0.5220184240198155
the regulation term lambda/alpha is 1.5958003703970742
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3366938277598419
the lambda is 0.5152559113778717
the regulation term lambda/alpha is 1.5303396406345624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36318455379807635
the lambda is 0.4784843001818533
the regulation term lambda/alpha is 1.3174687501932734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31082452349732037
the lambda is 0.5026524943509484
the regulation term lambda/alpha is 1.617158416894611
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31562846549971874
the lambda is 0.5107365711967854
the regulation term lambda/alpha is 1.618157508031355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3108763019897441
the lambda is 0.5400150078664664
the regulation term lambda/alpha is 1.7370735704527316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2759773165352599
the lambda is 0.5074270415518604
the regulation term lambda/alpha is 1.8386548862867487
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30614612451093454
the lambda is 0.5221320760266089
the regulation term lambda/alpha is 1.705499544901017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33155858808267713
the lambda is 0.5437477471989994
the regulation term lambda/alpha is 1.639974854348852
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3032015762965096
the lambda is 0.5094548213642313
the regulation term lambda/alpha is 1.680251229518743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257894550430452
the lambda is 0.5139281090910734
the regulation term lambda/alpha is 1.577485400880057
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32959737527884586
the lambda is 0.5166186362921618
the regulation term lambda/alpha is 1.5674233930263923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3276581031839967
the lambda is 0.5308822219225543
the regulation term lambda/alpha is 1.6202322383110328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3006429039086779
the lambda is 0.5015391655015167
the regulation term lambda/alpha is 1.6682221964362818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28010870534508286
the lambda is 0.47586615817250366
the regulation term lambda/alpha is 1.6988624383746136
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35651031661525184
the lambda is 0.4874444144911386
the regulation term lambda/alpha is 1.3672659437151482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3360341536406825
the lambda is 0.5161668070252846
the regulation term lambda/alpha is 1.536054598715629
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3718610948886168
the lambda is 0.5546318819268168
the regulation term lambda/alpha is 1.491502847569857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2785587604670515
the lambda is 0.5185429646187167
the regulation term lambda/alpha is 1.8615209363700878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32769290313189825
the lambda is 0.48740838393791036
the regulation term lambda/alpha is 1.4873937741084546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30597548100455163
the lambda is 0.5195446826560185
the regulation term lambda/alpha is 1.6979944959978341
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33449260009985154
the lambda is 0.5370983367883753
the regulation term lambda/alpha is 1.6057106693183723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3018209329244368
the lambda is 0.48594426263070145
the regulation term lambda/alpha is 1.6100416161405258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2924783048835057
the lambda is 0.5097843382222068
the regulation term lambda/alpha is 1.7429817176533975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3057648285299659
the lambda is 0.4708831869410012
the regulation term lambda/alpha is 1.5400175003936176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2876876594093613
the lambda is 0.4983608651585147
the regulation term lambda/alpha is 1.7322983758902872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3015306968753333
the lambda is 0.49666093703065195
the regulation term lambda/alpha is 1.6471322561098796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30582238123595706
the lambda is 0.47030880706969425
the regulation term lambda/alpha is 1.5378495359593312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28932374481501955
the lambda is 0.44643032908174246
the regulation term lambda/alpha is 1.543013102388709
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30231777088826645
the lambda is 0.5183399964146921
the regulation term lambda/alpha is 1.7145535139787242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3350885349455842
the lambda is 0.4998635795494282
the regulation term lambda/alpha is 1.4917358471563409
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32641692622307167
the lambda is 0.523375580758502
the regulation term lambda/alpha is 1.6033959599289584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3537280494792911
the lambda is 0.5552597559228127
the regulation term lambda/alpha is 1.5697362896162417
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34166695581984774
the lambda is 0.5000695969795507
the regulation term lambda/alpha is 1.463617093961011
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3630178572102013
the lambda is 0.5250186913254532
the regulation term lambda/alpha is 1.44626133645389
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3164675981214019
the lambda is 0.4860176789908879
the regulation term lambda/alpha is 1.5357581056511318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29501204245605545
the lambda is 0.5184818529563269
the regulation term lambda/alpha is 1.757493859029701
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29624929086040275
the lambda is 0.4716882886847174
the regulation term lambda/alpha is 1.592200566336492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3249223473625992
the lambda is 0.49295916781935306
the regulation term lambda/alpha is 1.5171599362761963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3053685652184323
the lambda is 0.48620701274688405
the regulation term lambda/alpha is 1.5921973252194335
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2917747212883617
the lambda is 0.5007378931436266
the regulation term lambda/alpha is 1.7161798353625917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3043215766800068
the lambda is 0.5324664484312027
the regulation term lambda/alpha is 1.749683523068394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32793690379443075
the lambda is 0.478447874907999
the regulation term lambda/alpha is 1.4589632010672302
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2771545555270901
the lambda is 0.5043503597088409
the regulation term lambda/alpha is 1.8197440729403556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29012271023294534
the lambda is 0.5193562127304532
the regulation term lambda/alpha is 1.7901260205154284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33927341334616534
the lambda is 0.5119862861318928
the regulation term lambda/alpha is 1.5090669235832697
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.361347928125062
the lambda is 0.47738393418374664
the regulation term lambda/alpha is 1.3211198875852548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3299886586390799
the lambda is 0.49761395745893217
the regulation term lambda/alpha is 1.5079729088604523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3140023971984075
the lambda is 0.48904478306724264
the regulation term lambda/alpha is 1.557455571774606
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2947084497061069
the lambda is 0.48826957999735515
the regulation term lambda/alpha is 1.6567885328170058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.348877901813393
the lambda is 0.5062937806314337
the regulation term lambda/alpha is 1.4512062185647945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3398323924493699
the lambda is 0.5172514941356618
the regulation term lambda/alpha is 1.5220782527749317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3288270676187021
the lambda is 0.537006020798643
the regulation term lambda/alpha is 1.6330955498509596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3503968413796266
the lambda is 0.5154047034455322
the regulation term lambda/alpha is 1.470917093362531
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2978623578264131
the lambda is 0.49372605302345157
the regulation term lambda/alpha is 1.6575644422689455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3189888170995323
the lambda is 0.4836105669199267
the regulation term lambda/alpha is 1.5160737336100043
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31135280352071487
the lambda is 0.4709331715829639
the regulation term lambda/alpha is 1.5125387221754432
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3575801812778934
the lambda is 0.5378235206352892
the regulation term lambda/alpha is 1.504064119866083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.309417056140412
the lambda is 0.5107399461383767
the regulation term lambda/alpha is 1.650652205502871
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3277984065244573
the lambda is 0.48003467288572604
the regulation term lambda/alpha is 1.4644203978151744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29703445209748497
the lambda is 0.4879330114137934
the regulation term lambda/alpha is 1.642681540704432
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30974498968808656
the lambda is 0.5093485145304161
the regulation term lambda/alpha is 1.6444124408382859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35599294473093834
the lambda is 0.5539235659312313
the regulation term lambda/alpha is 1.5559959098343652
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32326602009943084
the lambda is 0.5362780819733872
the regulation term lambda/alpha is 1.6589373724106162
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28084771805546244
the lambda is 0.5105019142595474
the regulation term lambda/alpha is 1.8177178643079888
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2701753381338724
the lambda is 0.4578273055277469
the regulation term lambda/alpha is 1.6945562414763875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28106695819875055
the lambda is 0.4650711891397673
the regulation term lambda/alpha is 1.6546633304755163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29258034337745364
the lambda is 0.5202113883798655
the regulation term lambda/alpha is 1.7780120919085405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32288449891741205
the lambda is 0.5412315899247313
the regulation term lambda/alpha is 1.6762390010651098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090519827179387
the lambda is 0.465171223255128
the regulation term lambda/alpha is 1.5051552789411289
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30046794946710426
the lambda is 0.5174544532175404
the regulation term lambda/alpha is 1.7221618949218147
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2881014430623941
the lambda is 0.4895454664465698
the regulation term lambda/alpha is 1.6992121290435502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2937804589506827
the lambda is 0.48968638875232723
the regulation term lambda/alpha is 1.6668446584275078
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31218776504033313
the lambda is 0.5381856976897315
the regulation term lambda/alpha is 1.7239166871904814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3079429905468298
the lambda is 0.5229214745336835
the regulation term lambda/alpha is 1.6981113082168413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2930826674268394
the lambda is 0.492280845361058
the regulation term lambda/alpha is 1.679665500805991
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34364786994835494
the lambda is 0.5746614536787299
the regulation term lambda/alpha is 1.6722392423532053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3808103676961658
the lambda is 0.506593787499741
the regulation term lambda/alpha is 1.3303046095213802
1080
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3040658462659398
the lambda is 0.45745819180996444
the regulation term lambda/alpha is 1.5044708158701448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.349904072935776
the lambda is 0.48778482303954485
the regulation term lambda/alpha is 1.3940530012895176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.310023311260202
the lambda is 0.5184692921498403
the regulation term lambda/alpha is 1.6723558304126684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33334830528721443
the lambda is 0.5211038734122211
the regulation term lambda/alpha is 1.5632414059019608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29956088453987445
the lambda is 0.47407662245673304
the regulation term lambda/alpha is 1.5825718474056276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33122912384083514
the lambda is 0.5088645676941153
the regulation term lambda/alpha is 1.5362917420831597
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3508604721728828
the lambda is 0.5517087427347298
the regulation term lambda/alpha is 1.572444850564076
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3031318005306539
the lambda is 0.5147578367079592
the regulation term lambda/alpha is 1.6981320858017492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3350772134702726
the lambda is 0.5491533507395434
the regulation term lambda/alpha is 1.6388859900443908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31889949172132437
the lambda is 0.5175656710196116
the regulation term lambda/alpha is 1.622974273887821
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32355257309717594
the lambda is 0.5191522324392891
the regulation term lambda/alpha is 1.6045374866586726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156939709332825
the lambda is 0.4849729974593283
the regulation term lambda/alpha is 1.5362124149080458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34367739192735564
the lambda is 0.5111762840330479
the regulation term lambda/alpha is 1.48737244881414
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31562820855933443
the lambda is 0.5041862520653794
the regulation term lambda/alpha is 1.597405549924408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3258565738840513
the lambda is 0.49912748152265984
the regulation term lambda/alpha is 1.5317397945154332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.281496872834021
the lambda is 0.5037587438648199
the regulation term lambda/alpha is 1.7895713682114374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3488587144322197
the lambda is 0.5108231564390998
the regulation term lambda/alpha is 1.4642694457854755
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.345008979689038
the lambda is 0.506812291022353
the regulation term lambda/alpha is 1.4689828985875988
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31698624889031574
the lambda is 0.5108766758576824
the regulation term lambda/alpha is 1.6116682589422262
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3174824070855144
the lambda is 0.4934111391736884
the regulation term lambda/alpha is 1.5541369479436613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2980930191906037
the lambda is 0.5184955416859822
the regulation term lambda/alpha is 1.7393749880283205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31121428347774344
the lambda is 0.5256104043708242
the regulation term lambda/alpha is 1.6889019311622095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28714119584587444
the lambda is 0.4879683358955872
the regulation term lambda/alpha is 1.699402046641571
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3021950267699353
the lambda is 0.46192698397607235
the regulation term lambda/alpha is 1.5285724219669006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34831027738330966
the lambda is 0.503549996917649
the regulation term lambda/alpha is 1.4456937667776613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32317069790947467
the lambda is 0.49586690129773603
the regulation term lambda/alpha is 1.5343807607106643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3388572446797355
the lambda is 0.5287187529889087
the regulation term lambda/alpha is 1.560299392414104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3721615907223774
the lambda is 0.6132965836501958
the regulation term lambda/alpha is 1.6479308959846386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3049482999043526
the lambda is 0.5052293405760245
the regulation term lambda/alpha is 1.656770477928522
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3006099566494609
the lambda is 0.522786537866134
the regulation term lambda/alpha is 1.739085902852352
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3009060223397322
the lambda is 0.44555030898907655
the regulation term lambda/alpha is 1.480695884797003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32289911212625244
the lambda is 0.497195025568427
the regulation term lambda/alpha is 1.5397844307915762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3194445818400131
the lambda is 0.5128859828549237
the regulation term lambda/alpha is 1.6055554296794787
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30671539548804255
the lambda is 0.4953916059810077
the regulation term lambda/alpha is 1.6151507660472841
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3389387224364243
the lambda is 0.5156786588238605
the regulation term lambda/alpha is 1.5214510018712537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33441012856299657
the lambda is 0.5384884732702954
the regulation term lambda/alpha is 1.6102636471695693
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33537492845290384
the lambda is 0.5576364794405371
the regulation term lambda/alpha is 1.6627256009056295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30050757515108517
the lambda is 0.5035597705226894
the regulation term lambda/alpha is 1.6756974271597525
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3353078155166201
the lambda is 0.5320291923024303
the regulation term lambda/alpha is 1.5866889099578991
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3297814705836499
the lambda is 0.5085390964775313
the regulation term lambda/alpha is 1.5420487257137723
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3465794471094135
the lambda is 0.5654040182406154
the regulation term lambda/alpha is 1.631383577290202
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3104655607062371
the lambda is 0.4980968539874
the regulation term lambda/alpha is 1.604354611359615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3258002027437721
the lambda is 0.5323618649024815
the regulation term lambda/alpha is 1.6340133014624343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30456219303142384
the lambda is 0.5162234622515303
the regulation term lambda/alpha is 1.6949689556453509
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30469013312639054
the lambda is 0.5030563174374585
the regulation term lambda/alpha is 1.6510423631893008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31385191164461684
the lambda is 0.4900865581575578
the regulation term lambda/alpha is 1.5615216602933943
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32065991438609664
the lambda is 0.5778802058757011
the regulation term lambda/alpha is 1.8021591722247312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3237044194821489
the lambda is 0.5400065786076989
the regulation term lambda/alpha is 1.6682088538413613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33049134377050055
the lambda is 0.4955039606673949
the regulation term lambda/alpha is 1.4992948227154845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3323355137421617
the lambda is 0.47369961332486216
the regulation term lambda/alpha is 1.4253656131748111
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.363846951438026
the lambda is 0.5619184219134927
the regulation term lambda/alpha is 1.544381283648612
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3170614061970814
the lambda is 0.5105015774826394
the regulation term lambda/alpha is 1.6101031771912282
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31744248093515076
the lambda is 0.5642402024019766
the regulation term lambda/alpha is 1.7774565040563783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36141338237744763
the lambda is 0.5391336250466714
the regulation term lambda/alpha is 1.4917367516945426
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3384362915171415
the lambda is 0.5375219836962806
the regulation term lambda/alpha is 1.588251606489003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36491259762576533
the lambda is 0.5342184201168308
the regulation term lambda/alpha is 1.4639626683009075
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30918226688393563
the lambda is 0.4819538445891112
the regulation term lambda/alpha is 1.5588017044005715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28073937777028046
the lambda is 0.4900396018083379
the regulation term lambda/alpha is 1.7455321220000735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105643943713644
the lambda is 0.5553544803698793
the regulation term lambda/alpha is 1.7882104015626519
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30290029383771644
the lambda is 0.5136303559709033
the regulation term lambda/alpha is 1.695707684740936
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.302230490689042
the lambda is 0.4869080728241935
the regulation term lambda/alpha is 1.6110488115018218
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2569383995580894
the lambda is 0.47690445110453833
the regulation term lambda/alpha is 1.8561042332511235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073101792914641
the lambda is 0.5131413623893762
the regulation term lambda/alpha is 1.6697831603641557
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30738944721845735
the lambda is 0.46837533882359317
the regulation term lambda/alpha is 1.5237196431493805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3134023930691617
the lambda is 0.5139089316647466
the regulation term lambda/alpha is 1.6397734766222323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089761587178364
the lambda is 0.4906832056345377
the regulation term lambda/alpha is 1.5880940706581832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31917170241768955
the lambda is 0.523082813277751
the regulation term lambda/alpha is 1.6388759069662435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31313223434987364
the lambda is 0.4944197485099974
the regulation term lambda/alpha is 1.5789487452050845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3038997830585654
the lambda is 0.5247821167738593
the regulation term lambda/alpha is 1.7268262303192465
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3350020540685482
the lambda is 0.5295606962305378
the regulation term lambda/alpha is 1.5807685051452818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29949326147092054
the lambda is 0.4951168757889034
the regulation term lambda/alpha is 1.653182022717987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3394207541760406
the lambda is 0.5124995234492506
the regulation term lambda/alpha is 1.5099239429049254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28657464298184654
the lambda is 0.49285806594525083
the regulation term lambda/alpha is 1.7198244088067192
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32091570698607
the lambda is 0.5044739287865454
the regulation term lambda/alpha is 1.5719826664901855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3134349651788685
the lambda is 0.4966062555191696
the regulation term lambda/alpha is 1.5843996703934113
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32978452656323204
the lambda is 0.5071164192647654
the regulation term lambda/alpha is 1.5377204763047976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2967773965570778
the lambda is 0.5030548379715294
the regulation term lambda/alpha is 1.695057790139955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30396514535266655
the lambda is 0.4796616103636244
the regulation term lambda/alpha is 1.5780151694929077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31596094381266604
the lambda is 0.5027744228454759
the regulation term lambda/alpha is 1.591254972144823
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.299530589193921
the lambda is 0.5312064211698649
the regulation term lambda/alpha is 1.773463012907684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31049100446710237
the lambda is 0.5022508713666785
the regulation term lambda/alpha is 1.6176020050200641
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31426189864268905
the lambda is 0.4900668947749113
the regulation term lambda/alpha is 1.5594219244888792
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3167289266659377
the lambda is 0.521740537923227
the regulation term lambda/alpha is 1.6472778265482535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35731900490468393
the lambda is 0.5470775391983029
the regulation term lambda/alpha is 1.5310619689659042
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298956124512596
the lambda is 0.48406231602465966
the regulation term lambda/alpha is 1.6191751107753758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2910763978126486
the lambda is 0.47334414764422045
the regulation term lambda/alpha is 1.6261852599566955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33032480407491926
the lambda is 0.4981695388252346
the regulation term lambda/alpha is 1.5081202885153224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3320482515868651
the lambda is 0.48186495119542766
the regulation term lambda/alpha is 1.4511895451717804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29609909618972935
the lambda is 0.4807463227980248
the regulation term lambda/alpha is 1.623599426625674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3086393834663702
the lambda is 0.49628631086611047
the regulation term lambda/alpha is 1.607981150338795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.371787962262176
the lambda is 0.5331664173887902
the regulation term lambda/alpha is 1.4340604632401035
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29387957868859527
the lambda is 0.49691986628519513
the regulation term lambda/alpha is 1.6908962116477928
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3142773582028596
the lambda is 0.5565080574993092
the regulation term lambda/alpha is 1.7707545356802148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3272634994326574
the lambda is 0.5129490949486109
the regulation term lambda/alpha is 1.5673886511568114
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31001953329592974
the lambda is 0.4817804794805523
the regulation term lambda/alpha is 1.554032658389521
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196668574466353
the lambda is 0.5862225750566724
the regulation term lambda/alpha is 1.8338547190633783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2977162787426424
the lambda is 0.5088649742710745
the regulation term lambda/alpha is 1.7092279146447256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32165358380412273
the lambda is 0.5090779315235046
the regulation term lambda/alpha is 1.5826900652023126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.323635000300401
the lambda is 0.5348854893763866
the regulation term lambda/alpha is 1.6527430249506418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2934359244000712
the lambda is 0.5160666682788569
the regulation term lambda/alpha is 1.7587030944965363
1090
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34269245547881505
the lambda is 0.5130749720406995
the regulation term lambda/alpha is 1.4971878249371537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3164411241216248
the lambda is 0.5085014675827166
the regulation term lambda/alpha is 1.6069386335110891
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3582759124799105
the lambda is 0.5492865790741676
the regulation term lambda/alpha is 1.5331384554214695
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27488924770114875
the lambda is 0.5065303817869572
the regulation term lambda/alpha is 1.842670770221037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3403177843110856
the lambda is 0.5146641888690691
the regulation term lambda/alpha is 1.5123047122292406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33575717061103466
the lambda is 0.5201485993174831
the regulation term lambda/alpha is 1.5491809106291905
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31129202782412974
the lambda is 0.5325953068685222
the regulation term lambda/alpha is 1.7109185564155271
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31816044289139644
the lambda is 0.5124781967426084
the regulation term lambda/alpha is 1.6107539708119591
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30273161603431115
the lambda is 0.5151601788661949
the regulation term lambda/alpha is 1.7017059057611195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3127098836128874
the lambda is 0.4969220932936897
the regulation term lambda/alpha is 1.5890834263135858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33105012472381307
the lambda is 0.4924676195048246
the regulation term lambda/alpha is 1.4875923092180623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31158453997139185
the lambda is 0.49212771046023396
the regulation term lambda/alpha is 1.579435585942161
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2895202850826853
the lambda is 0.5310423352559105
the regulation term lambda/alpha is 1.8342146047011798
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30275858571127295
the lambda is 0.4859709615589208
the regulation term lambda/alpha is 1.6051434525538744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29329842418388213
the lambda is 0.48301467190243497
the regulation term lambda/alpha is 1.6468369144718318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33204733091577526
the lambda is 0.5305258425603598
the regulation term lambda/alpha is 1.5977416264638766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34236457000708864
the lambda is 0.4904803147879626
the regulation term lambda/alpha is 1.4326257964654674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2850108964191539
the lambda is 0.49654211282658073
the regulation term lambda/alpha is 1.7421864183618316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3158774457070692
the lambda is 0.5034156003186172
the regulation term lambda/alpha is 1.5937054296224193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2830345366404035
the lambda is 0.5223466524229337
the regulation term lambda/alpha is 1.8455226652660313
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30268549867784705
the lambda is 0.5451071943043472
the regulation term lambda/alpha is 1.8009029064339594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29665446819466046
the lambda is 0.5575590391283279
the regulation term lambda/alpha is 1.8794897731406006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32882740010514644
the lambda is 0.4782773858237767
the regulation term lambda/alpha is 1.4544937121141421
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30258923174981445
the lambda is 0.502529601125629
the regulation term lambda/alpha is 1.660764985652657
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3461970139564528
the lambda is 0.4856493043046417
the regulation term lambda/alpha is 1.4028119386544744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32603494625251217
the lambda is 0.49813062709780126
the regulation term lambda/alpha is 1.5278442781161317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2851235393200908
the lambda is 0.49523478002515237
the regulation term lambda/alpha is 1.7369129928945728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.300139247081967
the lambda is 0.4867094337732573
the regulation term lambda/alpha is 1.6216120967356817
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3416430286487242
the lambda is 0.5536950465411498
the regulation term lambda/alpha is 1.6206829939751426
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29234620334966466
the lambda is 0.47755940314153406
the regulation term lambda/alpha is 1.6335406366483325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3418213189754924
the lambda is 0.5164460863088091
the regulation term lambda/alpha is 1.5108656413143053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34082170324390487
the lambda is 0.4993209537247591
the regulation term lambda/alpha is 1.465050344424299
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30272569493098456
the lambda is 0.47403610980702376
the regulation term lambda/alpha is 1.5658932087515551
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31243922169726324
the lambda is 0.5236101148068647
the regulation term lambda/alpha is 1.6758783099076295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3201430799106407
the lambda is 0.5380458283377144
the regulation term lambda/alpha is 1.680641757079039
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31846303140573506
the lambda is 0.4898092700438439
the regulation term lambda/alpha is 1.538041222184457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3114736630544978
the lambda is 0.5171172457537221
the regulation term lambda/alpha is 1.660227836545022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33257398508767416
the lambda is 0.5173579200789081
the regulation term lambda/alpha is 1.555617526555845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3091934513215088
the lambda is 0.5151819273237217
the regulation term lambda/alpha is 1.6662122859388109
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196398950214986
the lambda is 0.5169369843049862
the regulation term lambda/alpha is 1.617248010515764
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31392425377725025
the lambda is 0.5299689651752182
the regulation term lambda/alpha is 1.6882064982187257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30507508091570923
the lambda is 0.5162713910136372
the regulation term lambda/alpha is 1.6922765027677906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3391135616641024
the lambda is 0.5056445277788332
the regulation term lambda/alpha is 1.4910772818920244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29358085380035254
the lambda is 0.5210598712625324
the regulation term lambda/alpha is 1.7748428227437314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2860682300568941
the lambda is 0.5029795599997633
the regulation term lambda/alpha is 1.758250330348565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3559534204974952
the lambda is 0.5380179164499463
the regulation term lambda/alpha is 1.5114840466991168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31811523360763405
the lambda is 0.4924046209014888
the regulation term lambda/alpha is 1.5478812986014518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31063926307165296
the lambda is 0.4844086165377378
the regulation term lambda/alpha is 1.55939275591831
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3492486054381612
the lambda is 0.5305352980100713
the regulation term lambda/alpha is 1.5190763534888592
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2849512164705027
the lambda is 0.5231353640104371
the regulation term lambda/alpha is 1.8358769283042895
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33415278003753085
the lambda is 0.5273399761201912
the regulation term lambda/alpha is 1.5781403227019757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31542045921141104
the lambda is 0.5080578576713519
the regulation term lambda/alpha is 1.6107320969018861
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3510133171806714
the lambda is 0.5422350208985881
the regulation term lambda/alpha is 1.54477050971685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3285651094309857
the lambda is 0.5052134601752937
the regulation term lambda/alpha is 1.5376357552091588
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3978084412114045
the lambda is 0.540525449027049
the regulation term lambda/alpha is 1.3587581183070006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36086804704505454
the lambda is 0.49656653755413555
the regulation term lambda/alpha is 1.3760335436186153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3085898360599592
the lambda is 0.4672687940283527
the regulation term lambda/alpha is 1.5142066893530546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3231348044502362
the lambda is 0.509025787606532
the regulation term lambda/alpha is 1.5752737885123844
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3302838392680728
the lambda is 0.5583708307567292
the regulation term lambda/alpha is 1.6905787216053614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30470654998431934
the lambda is 0.5126293768767207
the regulation term lambda/alpha is 1.6823707166882411
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2810551839861397
the lambda is 0.49541394612585393
the regulation term lambda/alpha is 1.7626927890086004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3268667786233958
the lambda is 0.5828772593504613
the regulation term lambda/alpha is 1.7832257588405203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235329332205022
the lambda is 0.4932898471897234
the regulation term lambda/alpha is 1.5246974775625832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320859829743751
the lambda is 0.4892676441590189
the regulation term lambda/alpha is 1.524864126960872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30823125194638823
the lambda is 0.5169805427494083
the regulation term lambda/alpha is 1.6772489469670278
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30189437946639264
the lambda is 0.48996460419813076
the regulation term lambda/alpha is 1.622966963029116
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3268727505505926
the lambda is 0.5007619284933597
the regulation term lambda/alpha is 1.5319782014556544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30316226077622194
the lambda is 0.5075514728160833
the regulation term lambda/alpha is 1.674190816220131
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35984019088934854
the lambda is 0.5708130530870215
the regulation term lambda/alpha is 1.5862959934415648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2940153658234391
the lambda is 0.5138507506658727
the regulation term lambda/alpha is 1.7477003258885735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3113582514218311
the lambda is 0.49219339653948124
the regulation term lambda/alpha is 1.580794452345035
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3273909022044936
the lambda is 0.5348780872411157
the regulation term lambda/alpha is 1.6337597765835972
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2911685799212218
the lambda is 0.5226626186922947
the regulation term lambda/alpha is 1.7950515774528475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33301530644865873
the lambda is 0.5152391597948522
the regulation term lambda/alpha is 1.5471936268920032
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34983446087841347
the lambda is 0.5710061505969498
the regulation term lambda/alpha is 1.632218133008359
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3495732932261131
the lambda is 0.5099549851451873
the regulation term lambda/alpha is 1.4587927482644827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2859910605044287
the lambda is 0.53513741238021
the regulation term lambda/alpha is 1.8711683205633736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3573365182143544
the lambda is 0.521632895811871
the regulation term lambda/alpha is 1.4597805408149205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35979605016832406
the lambda is 0.5025674157694723
the regulation term lambda/alpha is 1.3968119314660492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3130430574642508
the lambda is 0.5416932023318076
the regulation term lambda/alpha is 1.7304111668206168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3412090753023069
the lambda is 0.5072720491938194
the regulation term lambda/alpha is 1.486689792012076
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32968322086274504
the lambda is 0.4705078947982767
the regulation term lambda/alpha is 1.4271514745791698
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35576492943333343
the lambda is 0.5226857172869575
the regulation term lambda/alpha is 1.469188427649396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3255757457144903
the lambda is 0.5122233395379013
the regulation term lambda/alpha is 1.5732847003507728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32642127154554496
the lambda is 0.513727101347972
the regulation term lambda/alpha is 1.5738162495218777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32543483412167806
the lambda is 0.48771517695492145
the regulation term lambda/alpha is 1.4986569531538463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2944717593878643
the lambda is 0.5077565245493418
the regulation term lambda/alpha is 1.7242961620660844
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2782529615170376
the lambda is 0.49177667209305764
the regulation term lambda/alpha is 1.7673726432663535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.361590714563355
the lambda is 0.5357657823026405
the regulation term lambda/alpha is 1.4816912070035138
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3266030797120647
the lambda is 0.5575099864607057
the regulation term lambda/alpha is 1.7069954972629466
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32463371285507925
the lambda is 0.48370349155354203
the regulation term lambda/alpha is 1.489997718657993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33383267870596156
the lambda is 0.5184832254076275
the regulation term lambda/alpha is 1.5531230418107311
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32222920140984906
the lambda is 0.508239142212493
the regulation term lambda/alpha is 1.5772597268925188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28557574068021657
the lambda is 0.44941159850702705
the regulation term lambda/alpha is 1.5737036956870627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31715631473758454
the lambda is 0.5448576113880981
the regulation term lambda/alpha is 1.7179465962672502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31352511027016966
the lambda is 0.49893553537614016
the regulation term lambda/alpha is 1.591373446759015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2911035226348877
the lambda is 0.5231422784319116
the regulation term lambda/alpha is 1.7971004737309728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3186883170988755
the lambda is 0.47562143816738545
the regulation term lambda/alpha is 1.492434496805919
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3104782475975492
the lambda is 0.5401726557397077
the regulation term lambda/alpha is 1.739808376011884
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3731734266359597
the lambda is 0.571858929114026
the regulation term lambda/alpha is 1.532421357729443
1100
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33232579228765186
the lambda is 0.5222420141657373
the regulation term lambda/alpha is 1.5714760222814705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.312670671653598
the lambda is 0.4824199301566993
the regulation term lambda/alpha is 1.5429011221467017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33473636309394883
the lambda is 0.5656709610518028
the regulation term lambda/alpha is 1.6898999434161823
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32395858049168547
the lambda is 0.4731557866154783
the regulation term lambda/alpha is 1.4605440791145277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33425294946306994
the lambda is 0.5398157089893677
the regulation term lambda/alpha is 1.6149916099663602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3431475313626899
the lambda is 0.48281847044845116
the regulation term lambda/alpha is 1.407028832558134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105986473784682
the lambda is 0.49756574342898163
the regulation term lambda/alpha is 1.6019572127198989
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3350065834715523
the lambda is 0.5187523686506121
the regulation term lambda/alpha is 1.5484841022375397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3241191530710006
the lambda is 0.5087305939214689
the regulation term lambda/alpha is 1.569578931393875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3554067431579973
the lambda is 0.530625195481131
the regulation term lambda/alpha is 1.4930082382968173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3143260158471997
the lambda is 0.5096528734692704
the regulation term lambda/alpha is 1.6214148615589714
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.310322749366162
the lambda is 0.5170149665313075
the regulation term lambda/alpha is 1.6660556391283492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31932286507011715
the lambda is 0.49166255087153954
the regulation term lambda/alpha is 1.5397035560343602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30935548699643617
the lambda is 0.5022069854280852
the regulation term lambda/alpha is 1.623397697917253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31973768761305893
the lambda is 0.5277587683720019
the regulation term lambda/alpha is 1.6505991905798933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3109289419997225
the lambda is 0.48061769867723325
the regulation term lambda/alpha is 1.5457477055245061
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3458415642328503
the lambda is 0.5223183454891712
the regulation term lambda/alpha is 1.5102821624340723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32068350877483465
the lambda is 0.49916262349834567
the regulation term lambda/alpha is 1.5565584441974805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3375504158940441
the lambda is 0.5460324109194394
the regulation term lambda/alpha is 1.617632167548083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3042309208196212
the lambda is 0.49876333076714174
the regulation term lambda/alpha is 1.6394235320441308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3378732297412237
the lambda is 0.5535486808231379
the regulation term lambda/alpha is 1.6383324634718754
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026663864359525
the lambda is 0.5430634853907129
the regulation term lambda/alpha is 1.7942642781894482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35119759587462324
the lambda is 0.5371765980506278
the regulation term lambda/alpha is 1.5295565925297467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3175183681142783
the lambda is 0.4671026766817675
the regulation term lambda/alpha is 1.4711044260395425
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30815875876308346
the lambda is 0.5607026263817612
the regulation term lambda/alpha is 1.819525197441611
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2857020546709869
the lambda is 0.4931767957598734
the regulation term lambda/alpha is 1.7261926811405448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39784293348565253
the lambda is 0.5566657355520072
the regulation term lambda/alpha is 1.3992098104516975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3358731550611089
the lambda is 0.5198801638378396
the regulation term lambda/alpha is 1.5478467272659897
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32859532442754485
the lambda is 0.5457150297689876
the regulation term lambda/alpha is 1.6607510490896151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3397540693461493
the lambda is 0.5156501634698514
the regulation term lambda/alpha is 1.5177159304146406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3167855707935601
the lambda is 0.4997194198837537
the regulation term lambda/alpha is 1.577469007290759
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29127208532684556
the lambda is 0.5072033271956009
the regulation term lambda/alpha is 1.7413386065693597
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35632960357194815
the lambda is 0.4971239344531594
the regulation term lambda/alpha is 1.3951238669755452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3226833558759401
the lambda is 0.4916481459800494
the regulation term lambda/alpha is 1.5236241257174419
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27458025549028625
the lambda is 0.4424809742379437
the regulation term lambda/alpha is 1.611481398936921
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29878817251089496
the lambda is 0.5383602685556549
the regulation term lambda/alpha is 1.8018125149717037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2903237844089031
the lambda is 0.5002808384484931
the regulation term lambda/alpha is 1.7231824098292907
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2829964115308945
the lambda is 0.4540388992012228
the regulation term lambda/alpha is 1.6043980796260229
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3189979796460171
the lambda is 0.5376930083820822
the regulation term lambda/alpha is 1.6855686953840419
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2914721368779778
the lambda is 0.5018996843557517
the regulation term lambda/alpha is 1.7219473865725543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31325427768482317
the lambda is 0.5249962733379816
the regulation term lambda/alpha is 1.6759428704951316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3098270374783859
the lambda is 0.5228638940358796
the regulation term lambda/alpha is 1.687599307960189
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2994203477710244
the lambda is 0.5516214271010905
the regulation term lambda/alpha is 1.8422977302896322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3333149492479972
the lambda is 0.5368259194672039
the regulation term lambda/alpha is 1.6105665847822142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3508470907492992
the lambda is 0.5461846346748034
the regulation term lambda/alpha is 1.556759765367655
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33771348831353254
the lambda is 0.5095376275118026
the regulation term lambda/alpha is 1.5087867234925154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33152848868238166
the lambda is 0.4796439498565693
the regulation term lambda/alpha is 1.4467654100039906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3380082791333507
the lambda is 0.5180013193825418
the regulation term lambda/alpha is 1.532510744147129
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3785255131853277
the lambda is 0.5301219211587764
the regulation term lambda/alpha is 1.400491915849346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3054507444073843
the lambda is 0.5141894625899665
the regulation term lambda/alpha is 1.6833793074806986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29162930171998636
the lambda is 0.5367062361272544
the regulation term lambda/alpha is 1.8403714337408508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3228277731143347
the lambda is 0.5459199652735743
the regulation term lambda/alpha is 1.691056379713117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33727828575149926
the lambda is 0.5156040978398637
the regulation term lambda/alpha is 1.528720109244601
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31733461332869384
the lambda is 0.5046978411116646
the regulation term lambda/alpha is 1.5904279581027008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33056839422865053
the lambda is 0.5165393020706811
the regulation term lambda/alpha is 1.5625792153420346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32841954131753764
the lambda is 0.5232153266824555
the regulation term lambda/alpha is 1.593130922062206
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235854514068707
the lambda is 0.527704471985464
the regulation term lambda/alpha is 1.630804072590821
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3284142560675709
the lambda is 0.5366584832247128
the regulation term lambda/alpha is 1.6340900959984386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3262504508321217
the lambda is 0.5427898769924704
the regulation term lambda/alpha is 1.6637214618648088
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27799221954528175
the lambda is 0.5134917957864679
the regulation term lambda/alpha is 1.8471444870881573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38019496039406797
the lambda is 0.5469673090361258
the regulation term lambda/alpha is 1.4386495509282924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32297411843483903
the lambda is 0.5703565000652067
the regulation term lambda/alpha is 1.7659511010640865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3279577553646135
the lambda is 0.5002686183378899
the regulation term lambda/alpha is 1.5254056662929236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32951765389763094
the lambda is 0.49161784721258966
the regulation term lambda/alpha is 1.491931741433548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27528784942745116
the lambda is 0.5435757815105806
the regulation term lambda/alpha is 1.9745723708515277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3485673752579058
the lambda is 0.5116574899077599
the regulation term lambda/alpha is 1.467886917211295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30917509160784484
the lambda is 0.4875438707335183
the regulation term lambda/alpha is 1.5769183351675526
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31538636844393614
the lambda is 0.5064320630000091
the regulation term lambda/alpha is 1.6057512742185422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317748139500308
the lambda is 0.5277171235715457
the regulation term lambda/alpha is 1.6608031895999005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3313110555564868
the lambda is 0.5175462506437153
the regulation term lambda/alpha is 1.562115848426544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27851269140945917
the lambda is 0.5192952088792732
the regulation term lambda/alpha is 1.8645297858826273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29056880076068575
the lambda is 0.5224004454699394
the regulation term lambda/alpha is 1.79785456698151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3486324043076831
the lambda is 0.4949818350541801
the regulation term lambda/alpha is 1.4197814917322984
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.343610410097828
the lambda is 0.5248469731024655
the regulation term lambda/alpha is 1.5274478236938118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31344982165502283
the lambda is 0.47088473839925954
the regulation term lambda/alpha is 1.5022651342182185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2808837311537117
the lambda is 0.5446206878850836
the regulation term lambda/alpha is 1.938954191643957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3247924506153487
the lambda is 0.5162942341339183
the regulation term lambda/alpha is 1.589612791663575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31002322463399673
the lambda is 0.5763586020504586
the regulation term lambda/alpha is 1.8590820179065253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37061289676938114
the lambda is 0.5474056198101122
the regulation term lambda/alpha is 1.47702798413608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3286888069701712
the lambda is 0.5361795439000425
the regulation term lambda/alpha is 1.6312680338661525
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.309637714878661
the lambda is 0.4943184402541643
the regulation term lambda/alpha is 1.5964413135133584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29469457205717114
the lambda is 0.5209325848728753
the regulation term lambda/alpha is 1.7677033588925881
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26160856947546085
the lambda is 0.4973028896734553
the regulation term lambda/alpha is 1.9009426589907745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3204933245880597
the lambda is 0.501614427273981
the regulation term lambda/alpha is 1.5651322158385734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2862488228629185
the lambda is 0.526773087158715
the regulation term lambda/alpha is 1.8402628939752217
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137211927915388
the lambda is 0.5383724522842969
the regulation term lambda/alpha is 1.7160856985585737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35305456396877904
the lambda is 0.5395062069161815
the regulation term lambda/alpha is 1.5281099919838184
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34310714646140583
the lambda is 0.5327204897707544
the regulation term lambda/alpha is 1.5526359484636298
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211030259541696
the lambda is 0.4857494874722086
the regulation term lambda/alpha is 1.5127527560003082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2995253185323363
the lambda is 0.4777589895472344
the regulation term lambda/alpha is 1.5950537733779464
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32276306233333263
the lambda is 0.5485039078465764
the regulation term lambda/alpha is 1.6994011144934256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3407634547660447
the lambda is 0.5183659740757686
the regulation term lambda/alpha is 1.521190042023899
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33649082782763484
the lambda is 0.5410872940717139
the regulation term lambda/alpha is 1.6080298460583364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3051037282569226
the lambda is 0.4963900057003821
the regulation term lambda/alpha is 1.626954900014793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3441494877323179
the lambda is 0.5461051639669995
the regulation term lambda/alpha is 1.5868254448536743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3220396850185282
the lambda is 0.525770116188951
the regulation term lambda/alpha is 1.632625234243107
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317655232982588
the lambda is 0.5578912740288956
the regulation term lambda/alpha is 1.756279186055392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3121063232212317
the lambda is 0.5067858746366942
the regulation term lambda/alpha is 1.6237603564265723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31546363451357196
the lambda is 0.48013402903507824
the regulation term lambda/alpha is 1.5219948561596306
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29795768783891746
the lambda is 0.5099978383351228
the regulation term lambda/alpha is 1.7116451736289449
1110
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31565551926858143
the lambda is 0.5048578114568633
the regulation term lambda/alpha is 1.5993948486207064
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35614372585950493
the lambda is 0.5137029806366777
the regulation term lambda/alpha is 1.4424035672590463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3230844698634687
the lambda is 0.5028921173660521
the regulation term lambda/alpha is 1.5565344802198873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2789037361862554
the lambda is 0.5135951471141743
the regulation term lambda/alpha is 1.8414781893462662
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3249777948066284
the lambda is 0.5406274939001574
the regulation term lambda/alpha is 1.663582874090973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2964974900161763
the lambda is 0.5276014325616413
the regulation term lambda/alpha is 1.779446539439023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047262097689384
the lambda is 0.5088305539380775
the regulation term lambda/alpha is 1.6697958286026766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2751541009915193
the lambda is 0.47173971293050493
the regulation term lambda/alpha is 1.7144564127177762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3022485289494562
the lambda is 0.47975945321853913
the regulation term lambda/alpha is 1.587301201716576
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36064954697240087
the lambda is 0.553989759722938
the regulation term lambda/alpha is 1.5360888828881094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32917277986756194
the lambda is 0.54582170388957
the regulation term lambda/alpha is 1.658161723181284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34237630746639724
the lambda is 0.5111204106841857
the regulation term lambda/alpha is 1.492861508047983
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27937878043819747
the lambda is 0.5114605829176893
the regulation term lambda/alpha is 1.830706620293346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33083520595284727
the lambda is 0.4908118780580328
the regulation term lambda/alpha is 1.483553954436114
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33277307289057956
the lambda is 0.5039255197813615
the regulation term lambda/alpha is 1.5143218031558077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33143577404439306
the lambda is 0.4767931253941609
the regulation term lambda/alpha is 1.4385686842914502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32116172460218884
the lambda is 0.5532119363942974
the regulation term lambda/alpha is 1.7225338326960993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28063322486124503
the lambda is 0.5029614013347141
the regulation term lambda/alpha is 1.7922375427335662
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32778793040407667
the lambda is 0.5294971077587463
the regulation term lambda/alpha is 1.6153648705308186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27016132686162675
the lambda is 0.47419715313150146
the regulation term lambda/alpha is 1.7552369861374693
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32042495732627535
the lambda is 0.4923365220546692
the regulation term lambda/alpha is 1.5365111574419077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3507394650195952
the lambda is 0.5412693592654195
the regulation term lambda/alpha is 1.543223427210222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3013432126065923
the lambda is 0.5412517258965021
the regulation term lambda/alpha is 1.7961304693565925
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30287934320818355
the lambda is 0.4842632679282765
the regulation term lambda/alpha is 1.5988652867469375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31675408940520067
the lambda is 0.5321018430544588
the regulation term lambda/alpha is 1.6798578482558415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3122010893631125
the lambda is 0.465826977745912
the regulation term lambda/alpha is 1.4920735180527234
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2788559781290099
the lambda is 0.5495631004663691
the regulation term lambda/alpha is 1.9707775467238478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30929812348875285
the lambda is 0.5208645343619146
the regulation term lambda/alpha is 1.6840209972397555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3083975658673815
the lambda is 0.546792485177895
the regulation term lambda/alpha is 1.773011676146073
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28266568851390256
the lambda is 0.45668275602218167
the regulation term lambda/alpha is 1.6156285484211512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30255593957023624
the lambda is 0.5079250197800264
the regulation term lambda/alpha is 1.6787805273348968
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31178754622118393
the lambda is 0.5167089580585535
the regulation term lambda/alpha is 1.6572469436992752
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3121867329890354
the lambda is 0.526687535337333
the regulation term lambda/alpha is 1.687091345280939
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3834520672943197
the lambda is 0.5178817144045725
the regulation term lambda/alpha is 1.3505774478119348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3718223236215092
the lambda is 0.5093145458903218
the regulation term lambda/alpha is 1.369779363782285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31818348676931935
the lambda is 0.5243338974034496
the regulation term lambda/alpha is 1.6478978929022416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31641405196384126
the lambda is 0.5237308817629092
the regulation term lambda/alpha is 1.6552074047038827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.327173028062682
the lambda is 0.5216227478801472
the regulation term lambda/alpha is 1.5943329771676997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2987936518037252
the lambda is 0.49343581042103973
the regulation term lambda/alpha is 1.6514266867529475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3396564606310752
the lambda is 0.5391033681533319
the regulation term lambda/alpha is 1.5872018661199265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29045483585430354
the lambda is 0.5014471613420882
the regulation term lambda/alpha is 1.726420425630722
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3033570508892732
the lambda is 0.5145520116088304
the regulation term lambda/alpha is 1.6961926881226317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29157132496266963
the lambda is 0.502789386148059
the regulation term lambda/alpha is 1.7244130101354513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2835758100738461
the lambda is 0.4653320971238354
the regulation term lambda/alpha is 1.6409442575608197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.300118518374696
the lambda is 0.5358445857150539
the regulation term lambda/alpha is 1.7854432596060448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31930589687528543
the lambda is 0.5404048419587447
the regulation term lambda/alpha is 1.6924361474282956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3339761266678864
the lambda is 0.4899039566815109
the regulation term lambda/alpha is 1.4668831618874445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137226504304678
the lambda is 0.5163244944379762
the regulation term lambda/alpha is 1.6457992233889158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32688021586894656
the lambda is 0.4877722411850246
the regulation term lambda/alpha is 1.4922048429525732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31198856766298694
the lambda is 0.5547932598892796
the regulation term lambda/alpha is 1.7782486840625926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3381650585533018
the lambda is 0.5489629905354344
the regulation term lambda/alpha is 1.623358110633735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3005284053459227
the lambda is 0.4825649832850602
the regulation term lambda/alpha is 1.6057217045077807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32185433009206005
the lambda is 0.5178430248198705
the regulation term lambda/alpha is 1.608936019819127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30053707226739496
the lambda is 0.5071573990507553
the regulation term lambda/alpha is 1.6875036255078886
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161234305541614
the lambda is 0.5190145229434927
the regulation term lambda/alpha is 1.6418097261366078
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33414506296927077
the lambda is 0.5146675314526556
the regulation term lambda/alpha is 1.5402517902830317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3319509894562159
the lambda is 0.5187605421376842
the regulation term lambda/alpha is 1.5627624517326777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2928930232885326
the lambda is 0.5243509368572076
the regulation term lambda/alpha is 1.7902472751652498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29028473905671653
the lambda is 0.5397451359601473
the regulation term lambda/alpha is 1.859364490582781
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3347610344466625
the lambda is 0.5152869742464108
the regulation term lambda/alpha is 1.539268078491111
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3421470932609737
the lambda is 0.5135217498283324
the regulation term lambda/alpha is 1.5008800599005592
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3145627873300756
the lambda is 0.5701130763398559
the regulation term lambda/alpha is 1.812398348764717
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2932284505315994
the lambda is 0.5005598621487787
the regulation term lambda/alpha is 1.707064444944903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3381557476264061
the lambda is 0.5291109381556349
the regulation term lambda/alpha is 1.564695977725021
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3102485915349541
the lambda is 0.5349634779775023
the regulation term lambda/alpha is 1.7243059036328638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28621115776453226
the lambda is 0.5218985742207836
the regulation term lambda/alpha is 1.823473893530569
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3269814046269149
the lambda is 0.5695903185444995
the regulation term lambda/alpha is 1.7419654771940345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34131828665039043
the lambda is 0.48105508172290656
the regulation term lambda/alpha is 1.4094031891577126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30318354931446445
the lambda is 0.5041597386837487
the regulation term lambda/alpha is 1.6628861949261968
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3031398098281339
the lambda is 0.5209490266318014
the regulation term lambda/alpha is 1.7185107654687624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146319595495293
the lambda is 0.504001372922971
the regulation term lambda/alpha is 1.6018759621386496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35469863052640865
the lambda is 0.47840600480218537
the regulation term lambda/alpha is 1.348767555409454
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.331298146785381
the lambda is 0.5412455106828872
the regulation term lambda/alpha is 1.6337112535480396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31689206128604924
the lambda is 0.5376015378436508
the regulation term lambda/alpha is 1.6964815579850503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33473291691431506
the lambda is 0.510575118351629
the regulation term lambda/alpha is 1.5253209127392933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3642407601577564
the lambda is 0.5122106379447493
the regulation term lambda/alpha is 1.4062419530502452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30621759808778
the lambda is 0.49758715417117366
the regulation term lambda/alpha is 1.624946303799744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3481472296615841
the lambda is 0.5378870040403442
the regulation term lambda/alpha is 1.5449986620982055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2909052902345928
the lambda is 0.5180948343162534
the regulation term lambda/alpha is 1.7809742610677506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34024114086181967
the lambda is 0.5140233021180359
the regulation term lambda/alpha is 1.5107617521385912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33678296940193486
the lambda is 0.5273585714450941
the regulation term lambda/alpha is 1.5658706625860173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32507920116815536
the lambda is 0.5274251196142311
the regulation term lambda/alpha is 1.622451137196585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30521430430294794
the lambda is 0.4602878851910431
the regulation term lambda/alpha is 1.5080809736039535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3542332124574569
the lambda is 0.5432111681829198
the regulation term lambda/alpha is 1.5334845776161063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2642947869538645
the lambda is 0.5052976841908465
the regulation term lambda/alpha is 1.9118715507584025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31708396047800613
the lambda is 0.5647240656315692
the regulation term lambda/alpha is 1.7809922166363885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3172284609749367
the lambda is 0.510757957909088
the regulation term lambda/alpha is 1.6100634739372943
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32774371073802594
the lambda is 0.5321353781388937
the regulation term lambda/alpha is 1.62363261507173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3214578234784181
the lambda is 0.48871242096279255
the regulation term lambda/alpha is 1.5203002859739188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012163363709583
the lambda is 0.504273151817447
the regulation term lambda/alpha is 1.6741228510143529
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320827452490191
the lambda is 0.5233003866938727
the regulation term lambda/alpha is 1.6310960381729556
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33524379482837485
the lambda is 0.5751442319443741
the regulation term lambda/alpha is 1.715599932994477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32109954299358184
the lambda is 0.4893103625445288
the regulation term lambda/alpha is 1.5238587946364943
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3238244323476402
the lambda is 0.5164301510750683
the regulation term lambda/alpha is 1.5947843939108868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2737085274922072
the lambda is 0.4944561420242063
the regulation term lambda/alpha is 1.8065061638910174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2915523041222544
the lambda is 0.5254909412055764
the regulation term lambda/alpha is 1.802389944362183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3158241485714345
the lambda is 0.5066571115603958
the regulation term lambda/alpha is 1.6042380351602465
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2879665335572498
the lambda is 0.49643753198930063
the regulation term lambda/alpha is 1.7239417575952634
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3192886603582701
the lambda is 0.5388269163850501
the regulation term lambda/alpha is 1.6875855089261194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33022506380960553
the lambda is 0.5347529441642782
the regulation term lambda/alpha is 1.619359045601079
1120
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3250890499989356
the lambda is 0.5013514405277671
the regulation term lambda/alpha is 1.5421972549657044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090680814920671
the lambda is 0.5437385295034084
the regulation term lambda/alpha is 1.7592839961941027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2957889249123772
the lambda is 0.5285396685098488
the regulation term lambda/alpha is 1.78688119802464
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2945437892365076
the lambda is 0.5102753446873018
the regulation term lambda/alpha is 1.732426088528283
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29066121475538437
the lambda is 0.5469947126114435
the regulation term lambda/alpha is 1.8818978413469618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28988921187243966
the lambda is 0.48848521171301984
the regulation term lambda/alpha is 1.6850755105987478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30616463380761094
the lambda is 0.4824340337503661
the regulation term lambda/alpha is 1.575734034824937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31143245707347383
the lambda is 0.4649737066573103
the regulation term lambda/alpha is 1.4930162097639448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3180598705069322
the lambda is 0.5388852461974643
the regulation term lambda/alpha is 1.6942887052634925
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2997214981329978
the lambda is 0.5136676182200329
the regulation term lambda/alpha is 1.713816397621565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233307204788614
the lambda is 0.5215704789692033
the regulation term lambda/alpha is 1.613117609724011
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.4119074363108296
the lambda is 0.5946892234459111
the regulation term lambda/alpha is 1.4437448101741783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212928708890625
the lambda is 0.5045106289782291
the regulation term lambda/alpha is 1.5702515514339839
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36625759868662583
the lambda is 0.4881616124984765
the regulation term lambda/alpha is 1.3328368182639485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3442652535485428
the lambda is 0.5220064362973473
the regulation term lambda/alpha is 1.5162913797332795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3286033131837245
the lambda is 0.4844740775953105
the regulation term lambda/alpha is 1.474343252663547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2990452545622902
the lambda is 0.47929355613951025
the regulation term lambda/alpha is 1.6027459015895364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3170689627502615
the lambda is 0.5233280002105493
the regulation term lambda/alpha is 1.6505179052253915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2958712296276539
the lambda is 0.5062181706364064
the regulation term lambda/alpha is 1.7109408416406982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.339838067954988
the lambda is 0.520207050532198
the regulation term lambda/alpha is 1.530749788164109
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2795417327404938
the lambda is 0.4848233779355008
the regulation term lambda/alpha is 1.7343506215781224
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3484400693094552
the lambda is 0.5952687150524052
the regulation term lambda/alpha is 1.70838192126445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3459203827367075
the lambda is 0.5272692171511663
the regulation term lambda/alpha is 1.5242502132419584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3311648606270542
the lambda is 0.5094349157334471
the regulation term lambda/alpha is 1.5383121106775703
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36031356356026495
the lambda is 0.5488012081547926
the regulation term lambda/alpha is 1.5231211468479782
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3112180053583282
the lambda is 0.5264307595556186
the regulation term lambda/alpha is 1.6915176837198094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3013671969997403
the lambda is 0.5141143467526532
the regulation term lambda/alpha is 1.7059399691503128
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3532179733678586
the lambda is 0.521647798975387
the regulation term lambda/alpha is 1.476843870660334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3065295062080358
the lambda is 0.5289363095374385
the regulation term lambda/alpha is 1.725564093586669
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32295311116643355
the lambda is 0.5719421103754206
the regulation term lambda/alpha is 1.7709756946130513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30865061205811767
the lambda is 0.4941774663006764
the regulation term lambda/alpha is 1.6010901873981211
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3477935778642987
the lambda is 0.5163556544312178
the regulation term lambda/alpha is 1.4846612683362665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33690507999238567
the lambda is 0.47162553909358446
the regulation term lambda/alpha is 1.3998766035354635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30904862172424497
the lambda is 0.5024788594388828
the regulation term lambda/alpha is 1.6258893394684995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3291180032381293
the lambda is 0.4719634702489244
the regulation term lambda/alpha is 1.4340250779518768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3301318368244875
the lambda is 0.4874217660244424
the regulation term lambda/alpha is 1.4764458063569832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3085754334743535
the lambda is 0.5360909543391239
the regulation term lambda/alpha is 1.7373092481896482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3206665488701303
the lambda is 0.5220003530449345
the regulation term lambda/alpha is 1.6278603268230023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3288427959175805
the lambda is 0.5040271976373129
the regulation term lambda/alpha is 1.5327299362934492
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.308894969422989
the lambda is 0.5149369157846704
the regulation term lambda/alpha is 1.6670291418036511
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3255815370463398
the lambda is 0.5062997852497688
the regulation term lambda/alpha is 1.5550629493394998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3103193781237439
the lambda is 0.4757672464993541
the regulation term lambda/alpha is 1.5331535187262322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31522230800669543
the lambda is 0.5223536030037059
the regulation term lambda/alpha is 1.6570959279716047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3524869803224037
the lambda is 0.5368222175112228
the regulation term lambda/alpha is 1.5229561586082303
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3219456854771208
the lambda is 0.49428536570778164
the regulation term lambda/alpha is 1.5353066930381591
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34150929650281514
the lambda is 0.5164443533475236
the regulation term lambda/alpha is 1.5122409803660102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.316432328238347
the lambda is 0.4933183936600095
the regulation term lambda/alpha is 1.559001244931037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3100817487339493
the lambda is 0.5416498619523805
the regulation term lambda/alpha is 1.7467969790673399
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31768313986129987
the lambda is 0.5664542714909738
the regulation term lambda/alpha is 1.7830794285724045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33760122904373385
the lambda is 0.5153521157024976
the regulation term lambda/alpha is 1.5265113730843005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3172089637800462
the lambda is 0.5086235744681807
the regulation term lambda/alpha is 1.603433800883578
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32453140544962616
the lambda is 0.5295738968971312
the regulation term lambda/alpha is 1.6318109372602208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29953591029021137
the lambda is 0.46042983966433615
the regulation term lambda/alpha is 1.5371440413212543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31848882953082397
the lambda is 0.534867044429691
the regulation term lambda/alpha is 1.6793902794569615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2740074933545903
the lambda is 0.503786071824201
the regulation term lambda/alpha is 1.8385850169880449
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35908665032214704
the lambda is 0.5152462624651089
the regulation term lambda/alpha is 1.4348800268761495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178923305276395
the lambda is 0.500268049154578
the regulation term lambda/alpha is 1.573702795296226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3140429121215691
the lambda is 0.5262333538902904
the regulation term lambda/alpha is 1.675673398693298
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31081488266533197
the lambda is 0.4943485010135478
the regulation term lambda/alpha is 1.5904917318448826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3629777436559923
the lambda is 0.49666838236720806
the regulation term lambda/alpha is 1.3683163528558364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34525054258711185
the lambda is 0.5321580896281959
the regulation term lambda/alpha is 1.5413678589481854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3039086045089282
the lambda is 0.5113468717865102
the regulation term lambda/alpha is 1.6825679306210228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2988252226388601
the lambda is 0.5151011282221204
the regulation term lambda/alpha is 1.7237538507404937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37477878799533604
the lambda is 0.5093559896194692
the regulation term lambda/alpha is 1.359084361054628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32653339469279263
the lambda is 0.5011796922321577
the regulation term lambda/alpha is 1.5348497286278326
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31298110372253296
the lambda is 0.4762061878930948
the regulation term lambda/alpha is 1.5215173767016483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32580101539115863
the lambda is 0.483871917004055
the regulation term lambda/alpha is 1.485176209236535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2969781052483277
the lambda is 0.46591502771347476
the regulation term lambda/alpha is 1.568853122434346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31332386472502666
the lambda is 0.5020543933677343
the regulation term lambda/alpha is 1.6023496767740233
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3268849256882135
the lambda is 0.5355758708567013
the regulation term lambda/alpha is 1.638423276108913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31359624457887036
the lambda is 0.5714484295846584
the regulation term lambda/alpha is 1.8222425793142347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3475366970214763
the lambda is 0.5099350973216022
the regulation term lambda/alpha is 1.4672841794605949
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3093738738655112
the lambda is 0.510211479677246
the regulation term lambda/alpha is 1.6491744222042535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3088934682959144
the lambda is 0.5447016951693087
the regulation term lambda/alpha is 1.7633966110526307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33363986186903444
the lambda is 0.4963991522002993
the regulation term lambda/alpha is 1.4878292702181781
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33841916758883694
the lambda is 0.49925535085245465
the regulation term lambda/alpha is 1.475257310067691
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176541590286041
the lambda is 0.47418291555511133
the regulation term lambda/alpha is 1.4927647004691418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33012888733489487
the lambda is 0.5192445335971736
the regulation term lambda/alpha is 1.5728539776963923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3539811963254514
the lambda is 0.5544195757203163
the regulation term lambda/alpha is 1.566240188675393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34428267998278855
the lambda is 0.5617198830274727
the regulation term lambda/alpha is 1.6315659069911803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3124144466399893
the lambda is 0.4810678144184518
the regulation term lambda/alpha is 1.5398385689020655
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31730423044796024
the lambda is 0.5037265417654844
the regulation term lambda/alpha is 1.5875191485923112
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32022314752440134
the lambda is 0.5138819001056952
the regulation term lambda/alpha is 1.604761879578168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2854899175442335
the lambda is 0.4971888736139797
the regulation term lambda/alpha is 1.7415286602440025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3335015306300385
the lambda is 0.478725419721439
the regulation term lambda/alpha is 1.4354519417558564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236824675704475
the lambda is 0.5142894514131933
the regulation term lambda/alpha is 1.5888702754691566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30553178443485784
the lambda is 0.5030378939610164
the regulation term lambda/alpha is 1.6464339214052168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.333828727141666
the lambda is 0.5274873198440507
the regulation term lambda/alpha is 1.580113624014755
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205461632814493
the lambda is 0.5127914374260479
the regulation term lambda/alpha is 1.5997428644179448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29556514253995153
the lambda is 0.49850792495559093
the regulation term lambda/alpha is 1.6866262397238119
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2784614417161324
the lambda is 0.4859766312622725
the regulation term lambda/alpha is 1.7452205528609022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3071642836188521
the lambda is 0.49389606452662627
the regulation term lambda/alpha is 1.607921528856793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32905502717519514
the lambda is 0.5040453769302835
the regulation term lambda/alpha is 1.5317966154697895
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33294403641302617
the lambda is 0.5242297067693062
the regulation term lambda/alpha is 1.5745279970084372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30978590931695876
the lambda is 0.4846696285325617
the regulation term lambda/alpha is 1.5645309032977026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26722856874959167
the lambda is 0.46827988339478865
the regulation term lambda/alpha is 1.7523571135599407
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29719942196189636
the lambda is 0.5216380315345093
the regulation term lambda/alpha is 1.7551784861862483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32349504070277
the lambda is 0.5191931442022945
the regulation term lambda/alpha is 1.6049493156815764
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3187072921126361
the lambda is 0.533190028740736
the regulation term lambda/alpha is 1.6729771860767413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080913181856338
the lambda is 0.5197767165936439
the regulation term lambda/alpha is 1.6870865419208718
1130
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3380741482340614
the lambda is 0.5165197646658979
the regulation term lambda/alpha is 1.527829818884264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2788971800133113
the lambda is 0.4826386784549376
the regulation term lambda/alpha is 1.7305254876793734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3069117885705869
the lambda is 0.5387431475358937
the regulation term lambda/alpha is 1.7553680490574828
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087638594267515
the lambda is 0.5140798701002819
the regulation term lambda/alpha is 1.6649612783527141
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3308880883780999
the lambda is 0.5373527735241629
the regulation term lambda/alpha is 1.6239713437799534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215241785001718
the lambda is 0.5043737019421601
the regulation term lambda/alpha is 1.5686960286935019
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27355923655703507
the lambda is 0.48977610210377615
the regulation term lambda/alpha is 1.7903840801283326
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3112880921056835
the lambda is 0.5251202057063568
the regulation term lambda/alpha is 1.6869267377181794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29514831860981283
the lambda is 0.4859087493862609
the regulation term lambda/alpha is 1.6463205742623053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31637757733829897
the lambda is 0.5131077900394148
the regulation term lambda/alpha is 1.6218209721315187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3657651892228422
the lambda is 0.5234923133929853
the regulation term lambda/alpha is 1.431225083243359
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31675365236629205
the lambda is 0.49419670330673876
the regulation term lambda/alpha is 1.5601925964069157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2950358131934778
the lambda is 0.5460343761766855
the regulation term lambda/alpha is 1.850739306074034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3068920055971249
the lambda is 0.512580058374591
the regulation term lambda/alpha is 1.6702294260720654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3393015466057381
the lambda is 0.5372585450460843
the regulation term lambda/alpha is 1.583424981172775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3066210995495411
the lambda is 0.503050815715617
the regulation term lambda/alpha is 1.6406268728885651
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31407001830943515
the lambda is 0.540637339272198
the regulation term lambda/alpha is 1.7213911158483746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38254027501134086
the lambda is 0.4985368709669773
the regulation term lambda/alpha is 1.3032271463500087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29874267346452377
the lambda is 0.5387043326936469
the regulation term lambda/alpha is 1.8032386416251946
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31723286348380075
the lambda is 0.49322954553440823
the regulation term lambda/alpha is 1.554787042293916
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2968953730792278
the lambda is 0.48038938881581994
the regulation term lambda/alpha is 1.6180426923919289
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36268871834189886
the lambda is 0.5491602384403826
the regulation term lambda/alpha is 1.5141365327021312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31362425517143566
the lambda is 0.5167672058819148
the regulation term lambda/alpha is 1.6477271682939052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3318472645181636
the lambda is 0.5069745442635903
the regulation term lambda/alpha is 1.5277345889823997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3202615535994189
the lambda is 0.5235150011990631
the regulation term lambda/alpha is 1.634648290796317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31774406305875486
the lambda is 0.5714811129058165
the regulation term lambda/alpha is 1.7985579570062415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32224250015587497
the lambda is 0.49405721743216124
the regulation term lambda/alpha is 1.5331845339865975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31032286944942955
the lambda is 0.5029230000181342
the regulation term lambda/alpha is 1.6206443337882672
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.326028141212112
the lambda is 0.4964751647964185
the regulation term lambda/alpha is 1.522798501229422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3514636431607027
the lambda is 0.5220982969667408
the regulation term lambda/alpha is 1.4854973113905194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3225989229287406
the lambda is 0.5160223344556124
the regulation term lambda/alpha is 1.599578602962656
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176063899408854
the lambda is 0.5139184222252475
the regulation term lambda/alpha is 1.6180984970765253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32113916048726465
the lambda is 0.4953566064034944
the regulation term lambda/alpha is 1.5424982915565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3279918502971176
the lambda is 0.5477712403824202
the regulation term lambda/alpha is 1.6700757652551772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31155705347038576
the lambda is 0.5155407605062677
the regulation term lambda/alpha is 1.6547234439526857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3010753246457954
the lambda is 0.5015147630703468
the regulation term lambda/alpha is 1.6657451541748278
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2711018275831544
the lambda is 0.48675783887057567
the regulation term lambda/alpha is 1.7954797398821432
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3019550768787871
the lambda is 0.4915428672212304
the regulation term lambda/alpha is 1.6278675367943853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.337287806236435
the lambda is 0.5436768729102076
the regulation term lambda/alpha is 1.611907880621976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2829655600579325
the lambda is 0.49389222318400394
the regulation term lambda/alpha is 1.7454146118802858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.319779675154484
the lambda is 0.5266890215948326
the regulation term lambda/alpha is 1.6470372025376272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3104826538868797
the lambda is 0.5266707596021855
the regulation term lambda/alpha is 1.6962968881155953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3575240150682254
the lambda is 0.5138205040707677
the regulation term lambda/alpha is 1.4371636097584009
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3307465775657831
the lambda is 0.5065047456931961
the regulation term lambda/alpha is 1.531398297212784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33165264386078924
the lambda is 0.5168722990456229
the regulation term lambda/alpha is 1.5584748338764318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233374089402774
the lambda is 0.5213139063094755
the regulation term lambda/alpha is 1.6122907275655372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32954889654677294
the lambda is 0.5048366716676357
the regulation term lambda/alpha is 1.531902175845957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3083865260185177
the lambda is 0.5638584598699123
the regulation term lambda/alpha is 1.8284147078334232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3316623359463917
the lambda is 0.5152250808904423
the regulation term lambda/alpha is 1.5534627392050955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3147563374563355
the lambda is 0.5381054086513539
the regulation term lambda/alpha is 1.7095935637070452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.307603582107157
the lambda is 0.5081161630926574
the regulation term lambda/alpha is 1.6518538555758746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3742363970715636
the lambda is 0.4915030855456747
the regulation term lambda/alpha is 1.3133492343121471
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3470910696167219
the lambda is 0.4949627643641652
the regulation term lambda/alpha is 1.4260314012421345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31494325122311795
the lambda is 0.5107367072852461
the regulation term lambda/alpha is 1.6216785255811705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3319005950031733
the lambda is 0.5186359474801955
the regulation term lambda/alpha is 1.5626243377937807
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3472186280743432
the lambda is 0.5071662914049563
the regulation term lambda/alpha is 1.4606540386893256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3241958010949944
the lambda is 0.4875837102915898
the regulation term lambda/alpha is 1.5039791035070198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29922240294278596
the lambda is 0.47648017011589744
the regulation term lambda/alpha is 1.5923947051752163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3213106440478762
the lambda is 0.48473165216033876
the regulation term lambda/alpha is 1.508607514689468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30551385906786505
the lambda is 0.4830432909223348
the regulation term lambda/alpha is 1.5810847088774274
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3416081516198628
the lambda is 0.5162082812774901
the regulation term lambda/alpha is 1.5111123046382104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33551906654281727
the lambda is 0.535730859722329
the regulation term lambda/alpha is 1.596722550651117
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31566042513082176
the lambda is 0.5261092724832327
the regulation term lambda/alpha is 1.6666937968710929
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32115997231969756
the lambda is 0.48882117378503076
the regulation term lambda/alpha is 1.522048872573807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31655278101936474
the lambda is 0.5091302816923218
the regulation term lambda/alpha is 1.6083582650982187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3906730390923309
the lambda is 0.5355330751700585
the regulation term lambda/alpha is 1.3707960918272932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33888900578831516
the lambda is 0.5733018032196542
the regulation term lambda/alpha is 1.6917096554550473
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33350123069917176
the lambda is 0.5304626415595844
the regulation term lambda/alpha is 1.5905867586979847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.297520396202086
the lambda is 0.5084994427221444
the regulation term lambda/alpha is 1.7091246489761807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2954104467323544
the lambda is 0.4722588220708689
the regulation term lambda/alpha is 1.598653085206365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3223349327526735
the lambda is 0.5175483621430796
the regulation term lambda/alpha is 1.6056229392307062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3515871092153696
the lambda is 0.5241083610270653
the regulation term lambda/alpha is 1.490692767993423
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3299978372958017
the lambda is 0.557963162414109
the regulation term lambda/alpha is 1.6908085428267974
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30492360229958754
the lambda is 0.5444189617002307
the regulation term lambda/alpha is 1.7854274237693772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32855177289493415
the lambda is 0.49111642784036225
the regulation term lambda/alpha is 1.4947915925488364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3354334151887601
the lambda is 0.5082481209864209
the regulation term lambda/alpha is 1.5151982419533605
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29498721832365543
the lambda is 0.533754816966353
the regulation term lambda/alpha is 1.809416760494095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.332700873522154
the lambda is 0.5502629413352886
the regulation term lambda/alpha is 1.6539269509872434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3216041116485412
the lambda is 0.5043549496894938
the regulation term lambda/alpha is 1.5682478283756158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29082571430300624
the lambda is 0.488474765879497
the regulation term lambda/alpha is 1.6796133968076965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3199903575343539
the lambda is 0.5391112768579815
the regulation term lambda/alpha is 1.6847735069645122
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35491875933122885
the lambda is 0.4831524940731069
the regulation term lambda/alpha is 1.3613044714331473
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2857235811835439
the lambda is 0.4838307846374682
the regulation term lambda/alpha is 1.693352654454739
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.308844594081515
the lambda is 0.5217473300789068
the regulation term lambda/alpha is 1.6893523152980923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3450562168483376
the lambda is 0.511739058046578
the regulation term lambda/alpha is 1.4830599567823537
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3362922980991906
the lambda is 0.5371739069066144
the regulation term lambda/alpha is 1.597342282124383
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.308361049637358
the lambda is 0.5452884215187351
the regulation term lambda/alpha is 1.7683440309987626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35175551145563216
the lambda is 0.5272105627871169
the regulation term lambda/alpha is 1.498798300573651
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3422498389294639
the lambda is 0.5748023027478455
the regulation term lambda/alpha is 1.679481587327524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3069201243768361
the lambda is 0.5562289872154008
the regulation term lambda/alpha is 1.8122923296240545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34766877712415706
the lambda is 0.5162389380480057
the regulation term lambda/alpha is 1.4848584975568573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35022137162180605
the lambda is 0.5576868323611468
the regulation term lambda/alpha is 1.5923837822306763
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3538547567304547
the lambda is 0.5022332517466802
the regulation term lambda/alpha is 1.419320334668417
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36047006718365265
the lambda is 0.542486458966929
the regulation term lambda/alpha is 1.5049417645281002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31488249760087134
the lambda is 0.4866912066935638
the regulation term lambda/alpha is 1.5456280053725573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35001873115546134
the lambda is 0.5797944296719765
the regulation term lambda/alpha is 1.6564668632389845
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3515352521927678
the lambda is 0.5306219412048977
the regulation term lambda/alpha is 1.5094416218431657
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34672435528727374
the lambda is 0.5279592577140009
the regulation term lambda/alpha is 1.5227060045336804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3452408966093998
the lambda is 0.544337296498414
the regulation term lambda/alpha is 1.5766883409362382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30462038667571634
the lambda is 0.509073158414515
the regulation term lambda/alpha is 1.671172320309766
1140
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.299942852808778
the lambda is 0.5392233739441056
the regulation term lambda/alpha is 1.7977537017288943
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2780953516416976
the lambda is 0.5401000651648575
the regulation term lambda/alpha is 1.9421398523076752
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31321454188597353
the lambda is 0.5140833083999319
the regulation term lambda/alpha is 1.6413136673171613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3114794997601712
the lambda is 0.495403189376027
the regulation term lambda/alpha is 1.590484092074987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31533878357675316
the lambda is 0.5118111251281945
the regulation term lambda/alpha is 1.6230516250584195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3509067256249602
the lambda is 0.5145370501717574
the regulation term lambda/alpha is 1.4663071768013958
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32361097132398803
the lambda is 0.5031706055051365
the regulation term lambda/alpha is 1.554862628564529
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3389621690689966
the lambda is 0.5172364787646216
the regulation term lambda/alpha is 1.5259416122609744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29842581315242567
the lambda is 0.4742881794355318
the regulation term lambda/alpha is 1.5893001159161848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28623931114322365
the lambda is 0.48148840835565315
the regulation term lambda/alpha is 1.682118386997983
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34740653864290877
the lambda is 0.5030943018797489
the regulation term lambda/alpha is 1.4481428698636787
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3131720853977491
the lambda is 0.5241930853627897
the regulation term lambda/alpha is 1.6738180374442702
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3261624376818928
the lambda is 0.5208180450264102
the regulation term lambda/alpha is 1.5968057165870386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3108497772925594
the lambda is 0.5309689051489375
the regulation term lambda/alpha is 1.7081205905102217
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32263064469543745
the lambda is 0.5473561565352011
the regulation term lambda/alpha is 1.6965411238349786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3420055684940808
the lambda is 0.5278002198071751
the regulation term lambda/alpha is 1.5432503690837123
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2949705694435969
the lambda is 0.5099944726710776
the regulation term lambda/alpha is 1.7289673123426528
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28583766025165946
the lambda is 0.5260697182122819
the regulation term lambda/alpha is 1.8404492877149756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3101546494777623
the lambda is 0.48466594139099134
the regulation term lambda/alpha is 1.5626589580619565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3730622305947874
the lambda is 0.5419720649045853
the regulation term lambda/alpha is 1.4527658402741508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3324814677642315
the lambda is 0.5045285636372238
the regulation term lambda/alpha is 1.5174637161882176
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.340540130482961
the lambda is 0.5451199377217205
the regulation term lambda/alpha is 1.6007509509925313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30422244680497873
the lambda is 0.5238422302232908
the regulation term lambda/alpha is 1.721905256251847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.302308446290997
the lambda is 0.5499956533605842
the regulation term lambda/alpha is 1.8193195066444412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3007325636555513
the lambda is 0.5045907051796343
the regulation term lambda/alpha is 1.6778718574606213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089632092408935
the lambda is 0.5383104141155192
the regulation term lambda/alpha is 1.7423123466322084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3119538408897763
the lambda is 0.4923158770437147
the regulation term lambda/alpha is 1.5781689869228646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29855492158553065
the lambda is 0.49488159342091104
the regulation term lambda/alpha is 1.6575898022137823
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32358001786934015
the lambda is 0.5008217275412656
the regulation term lambda/alpha is 1.5477523329128893
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28739926420854056
the lambda is 0.5057424788378545
the regulation term lambda/alpha is 1.7597208546465912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30827304378259657
the lambda is 0.509195617512093
the regulation term lambda/alpha is 1.6517682223009842
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3287922853202026
the lambda is 0.5057191361331229
the regulation term lambda/alpha is 1.5381113204667065
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31484386333097875
the lambda is 0.4792934072602249
the regulation term lambda/alpha is 1.522320944068613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3231978350316296
the lambda is 0.5257767570558857
the regulation term lambda/alpha is 1.6267954177491035
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3049196208788522
the lambda is 0.4982763352653454
the regulation term lambda/alpha is 1.6341235563300005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34691614397905124
the lambda is 0.6114628977653888
the regulation term lambda/alpha is 1.7625668576620417
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3284491855606441
the lambda is 0.5120010774814219
the regulation term lambda/alpha is 1.5588441073691965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317538593980339
the lambda is 0.5134035628262006
the regulation term lambda/alpha is 1.6168225612852243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3070074595212423
the lambda is 0.5426366238840724
the regulation term lambda/alpha is 1.7675030591448107
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35964174868457693
the lambda is 0.5175129762859726
the regulation term lambda/alpha is 1.4389680235368234
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32269111818240725
the lambda is 0.500238509894824
the regulation term lambda/alpha is 1.550208486407905
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32687580219467427
the lambda is 0.5440611883356959
the regulation term lambda/alpha is 1.6644278489959152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33889785620238655
the lambda is 0.519291385664793
the regulation term lambda/alpha is 1.5322946904529169
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298173752124074
the lambda is 0.5219613516749511
the regulation term lambda/alpha is 1.7505274959874944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3278695442743207
the lambda is 0.46233960533781726
the regulation term lambda/alpha is 1.4101328208483697
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33841788352069396
the lambda is 0.5545827644305241
the regulation term lambda/alpha is 1.638751352797855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34761964024933845
the lambda is 0.5391824639260611
the regulation term lambda/alpha is 1.5510701971249945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3206532181893005
the lambda is 0.5379651642509375
the regulation term lambda/alpha is 1.677716404309858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31061893169916793
the lambda is 0.4717073514741702
the regulation term lambda/alpha is 1.5186046416868602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27882111033673207
the lambda is 0.49196905154552484
the regulation term lambda/alpha is 1.7644612739378813
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3496771250953231
the lambda is 0.5001482638678151
the regulation term lambda/alpha is 1.430314504363055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2924660010816171
the lambda is 0.4875513788236687
the regulation term lambda/alpha is 1.6670360897354701
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35116821939009335
the lambda is 0.47930348842345843
the regulation term lambda/alpha is 1.364882873672081
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33548241298291714
the lambda is 0.5523916619003599
the regulation term lambda/alpha is 1.646559224934655
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2926642265170901
the lambda is 0.48906907953722134
the regulation term lambda/alpha is 1.6710927924382386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28237668294215273
the lambda is 0.5069784047619615
the regulation term lambda/alpha is 1.7953975501079895
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30549918784321134
the lambda is 0.5094344486368543
the regulation term lambda/alpha is 1.6675476364876847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3471546526952301
the lambda is 0.49857045523333965
the regulation term lambda/alpha is 1.4361623886142718
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3149676359081208
the lambda is 0.5111616963160002
the regulation term lambda/alpha is 1.6229022859514084
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35280244394711224
the lambda is 0.5268991681433242
the regulation term lambda/alpha is 1.4934680220704772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047567725313104
the lambda is 0.5596734493739147
the regulation term lambda/alpha is 1.8364594319767396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3139664235476378
the lambda is 0.5096489262068575
the regulation term lambda/alpha is 1.6232593296063997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34691756488547243
the lambda is 0.5390263408579344
the regulation term lambda/alpha is 1.5537591503499764
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3497048580333628
the lambda is 0.5267618178861552
the regulation term lambda/alpha is 1.5063039754394851
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3386340499646093
the lambda is 0.5127168159212709
the regulation term lambda/alpha is 1.514073425205927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32175245599624613
the lambda is 0.5275633060052352
the regulation term lambda/alpha is 1.6396558788393218
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32196047189081556
the lambda is 0.5540904801236178
the regulation term lambda/alpha is 1.7209891539465847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.313908738934036
the lambda is 0.5092107383187618
the regulation term lambda/alpha is 1.6221617150510936
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33780291874208945
the lambda is 0.520926863178568
the regulation term lambda/alpha is 1.5421029075722479
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30222866755581385
the lambda is 0.5394562272253907
the regulation term lambda/alpha is 1.784927391528029
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3144323947087174
the lambda is 0.5342697282307848
the regulation term lambda/alpha is 1.6991561213841193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3034651816211224
the lambda is 0.5241459144360712
the regulation term lambda/alpha is 1.7272028100095833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32238778178457
the lambda is 0.5241548839256237
the regulation term lambda/alpha is 1.6258521989393537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32260271126333934
the lambda is 0.5372083385303036
the regulation term lambda/alpha is 1.6652319393924204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3165803370887291
the lambda is 0.46596840741604395
the regulation term lambda/alpha is 1.471880444948308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2775614883576251
the lambda is 0.47017523763039015
the regulation term lambda/alpha is 1.6939498358093221
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3438550669166479
the lambda is 0.5368375300369747
the regulation term lambda/alpha is 1.5612319889621014
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28361657626059683
the lambda is 0.5199964894569288
the regulation term lambda/alpha is 1.8334488636487094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30633546934780415
the lambda is 0.4920721755067921
the regulation term lambda/alpha is 1.6063179903862457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30907513376697676
the lambda is 0.46821405136100624
the regulation term lambda/alpha is 1.5148874827115992
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3338622257028245
the lambda is 0.4865572070880432
the regulation term lambda/alpha is 1.4573592626832084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29825995700236174
the lambda is 0.5275058152350678
the regulation term lambda/alpha is 1.7686109142397912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32649827902636225
the lambda is 0.562888816211661
the regulation term lambda/alpha is 1.724017712712697
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3003627089183898
the lambda is 0.5770565485715893
the regulation term lambda/alpha is 1.9211990418170677
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3274236380517784
the lambda is 0.5416065176029683
the regulation term lambda/alpha is 1.654146050131296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30505913531475454
the lambda is 0.5195633234518718
the regulation term lambda/alpha is 1.7031560878050602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32930437854986205
the lambda is 0.4877383858763523
the regulation term lambda/alpha is 1.4811172205610403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3708778635890804
the lambda is 0.4976802448500318
the regulation term lambda/alpha is 1.341897949998558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30176466227280424
the lambda is 0.5399870898675296
the regulation term lambda/alpha is 1.7894311606949034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367639491405333
the lambda is 0.5260120839406568
the regulation term lambda/alpha is 1.5619607896958985
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3288749328802562
the lambda is 0.5151912063185295
the regulation term lambda/alpha is 1.5665262226176153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31607419146089943
the lambda is 0.5016643935912636
the regulation term lambda/alpha is 1.5871729079573489
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33004075675070516
the lambda is 0.4961182265880056
the regulation term lambda/alpha is 1.5032029118838384
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3126831962553312
the lambda is 0.5381764574322102
the regulation term lambda/alpha is 1.7211556741051908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2803832282870054
the lambda is 0.5386836260870038
the regulation term lambda/alpha is 1.9212405441583595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3086189815509051
the lambda is 0.5124077190267281
the regulation term lambda/alpha is 1.660324703463546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3046248177343236
the lambda is 0.5246491883514143
the regulation term lambda/alpha is 1.7222798597092093
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3288414043495629
the lambda is 0.5585624600025186
the regulation term lambda/alpha is 1.698577042350662
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236710945767695
the lambda is 0.5713631936618307
the regulation term lambda/alpha is 1.765258632096703
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3263874119852146
the lambda is 0.5337719364511929
the regulation term lambda/alpha is 1.6353937586152154
1150
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3474870240467536
the lambda is 0.4936922896276545
the regulation term lambda/alpha is 1.4207502883941627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2845875901428718
the lambda is 0.49380250676154963
the regulation term lambda/alpha is 1.7351512288840332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31762176283373783
the lambda is 0.48612213672156673
the regulation term lambda/alpha is 1.530506387171058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32864689114464074
the lambda is 0.5185399374634105
the regulation term lambda/alpha is 1.5778026551761781
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29568361755624883
the lambda is 0.5403364208327835
the regulation term lambda/alpha is 1.8274141303415081
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3031443367734752
the lambda is 0.508746343634893
the regulation term lambda/alpha is 1.6782313964685873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35516971967455
the lambda is 0.5492955525720801
the regulation term lambda/alpha is 1.5465720249896637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3167913126960205
the lambda is 0.5141347933332391
the regulation term lambda/alpha is 1.6229447359453981
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3214578942042631
the lambda is 0.5129143555358173
the regulation term lambda/alpha is 1.5955879907864314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2953508150833329
the lambda is 0.5381938781464566
the regulation term lambda/alpha is 1.8222190380433039
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3394389430277441
the lambda is 0.5388440158116614
the regulation term lambda/alpha is 1.5874549072220594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30733264112058967
the lambda is 0.48555002785589163
the regulation term lambda/alpha is 1.579884343184276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32594193869747345
the lambda is 0.4793898927763677
the regulation term lambda/alpha is 1.4707830931241979
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34551138740685616
the lambda is 0.538448996237268
the regulation term lambda/alpha is 1.5584117220519236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34432276203473056
the lambda is 0.4932030134543349
the regulation term lambda/alpha is 1.4323857375557048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33891494321985505
the lambda is 0.5501803875893925
the regulation term lambda/alpha is 1.6233583044831663
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29510137200364106
the lambda is 0.48524734755453564
the regulation term lambda/alpha is 1.6443412114957856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32360578861785816
the lambda is 0.5244635575085367
the regulation term lambda/alpha is 1.6206865759372087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35894223177171974
the lambda is 0.5241650913751126
the regulation term lambda/alpha is 1.4603048763246989
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31748088165985683
the lambda is 0.5186614648721015
the regulation term lambda/alpha is 1.6336777892275915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3173809809575488
the lambda is 0.5619120254545871
the regulation term lambda/alpha is 1.7704653371455343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28085488130567177
the lambda is 0.5177767000442091
the regulation term lambda/alpha is 1.8435737973899788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35382952627858655
the lambda is 0.5288856754389283
the regulation term lambda/alpha is 1.4947471484403816
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.355919995789956
the lambda is 0.5653234030477224
the regulation term lambda/alpha is 1.5883440372407305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3450129114335032
the lambda is 0.5553349010106647
the regulation term lambda/alpha is 1.6096061411246587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3619958644999282
the lambda is 0.5300445853333708
the regulation term lambda/alpha is 1.4642282890871974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31100981698188296
the lambda is 0.527047190005684
the regulation term lambda/alpha is 1.694632005897054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012090735881183
the lambda is 0.49292436222162034
the regulation term lambda/alpha is 1.6364857683392993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3406564043393451
the lambda is 0.5171884626769085
the regulation term lambda/alpha is 1.518211476692835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28432990382186024
the lambda is 0.49056191548262684
the regulation term lambda/alpha is 1.725326491827522
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3016411912484642
the lambda is 0.5333350031828997
the regulation term lambda/alpha is 1.7681106515177083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3244815796811614
the lambda is 0.4724909713157003
the regulation term lambda/alpha is 1.456141121415811
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3419672694509223
the lambda is 0.5209645153349111
the regulation term lambda/alpha is 1.5234338542732309
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33655327502136084
the lambda is 0.5064262432093073
the regulation term lambda/alpha is 1.5047431738026162
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3093709563009937
the lambda is 0.5062771181540552
the regulation term lambda/alpha is 1.6364726805883072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34853127977926046
the lambda is 0.5009944116147177
the regulation term lambda/alpha is 1.4374446159668037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32091623457380436
the lambda is 0.5352150784409186
the regulation term lambda/alpha is 1.6677719005139013
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32439342216184847
the lambda is 0.516913428065486
the regulation term lambda/alpha is 1.593476910291924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047853892674316
the lambda is 0.5199222342336801
the regulation term lambda/alpha is 1.7058633797484246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3309637789765664
the lambda is 0.5178417735013789
the regulation term lambda/alpha is 1.5646478750716835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34475935938377494
the lambda is 0.48875211709451105
the regulation term lambda/alpha is 1.4176616349679663
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3460885979715007
the lambda is 0.5338980764411043
the regulation term lambda/alpha is 1.5426630047057173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31406441298138543
the lambda is 0.5088262554176387
the regulation term lambda/alpha is 1.6201334324618204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2847028297708601
the lambda is 0.47956673937636873
the regulation term lambda/alpha is 1.6844466904749162
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047286995042909
the lambda is 0.5088981889557984
the regulation term lambda/alpha is 1.6700041373970838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3164937338713975
the lambda is 0.5039329505739027
the regulation term lambda/alpha is 1.5922367384962774
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2908729661962953
the lambda is 0.4889650691289086
the regulation term lambda/alpha is 1.6810261727758193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33066592284037677
the lambda is 0.5258589464717741
the regulation term lambda/alpha is 1.5903028106274604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31505745590356626
the lambda is 0.5250802299627545
the regulation term lambda/alpha is 1.66661737446224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31436875837012374
the lambda is 0.5194713980852839
the regulation term lambda/alpha is 1.6524269166520722
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2903260383316708
the lambda is 0.495316888194598
the regulation term lambda/alpha is 1.706071184799291
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087908949867159
the lambda is 0.49629788462172325
the regulation term lambda/alpha is 1.607229658254897
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33100987685710564
the lambda is 0.5026235756782882
the regulation term lambda/alpha is 1.518454918779559
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34411070644921904
the lambda is 0.507106694663257
the regulation term lambda/alpha is 1.4736731091454474
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30384756582201555
the lambda is 0.5166195805043847
the regulation term lambda/alpha is 1.7002590726924052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34136446506380796
the lambda is 0.5648705430625126
the regulation term lambda/alpha is 1.6547432462161134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3122014946986831
the lambda is 0.5054366472740345
the regulation term lambda/alpha is 1.6189437137764173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28232441026698407
the lambda is 0.5159329744419539
the regulation term lambda/alpha is 1.827447275827317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35376015685155615
the lambda is 0.5817774442218032
the regulation term lambda/alpha is 1.644553330707412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3727854640166174
the lambda is 0.5348356382694084
the regulation term lambda/alpha is 1.4347008933952623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28439648790481914
the lambda is 0.48571493165238555
the regulation term lambda/alpha is 1.7078795003085376
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.290343048438879
the lambda is 0.5241927192028112
the regulation term lambda/alpha is 1.8054254166624575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28568603270646725
the lambda is 0.530847973825798
the regulation term lambda/alpha is 1.8581516526963933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30041853073699565
the lambda is 0.49274022280674107
the regulation term lambda/alpha is 1.6401791913366202
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3275006203685698
the lambda is 0.5206236700892272
the regulation term lambda/alpha is 1.5896875844183633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33422203320093313
the lambda is 0.5601481628353657
the regulation term lambda/alpha is 1.675976169107339
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2990368945630915
the lambda is 0.5375183848072449
the regulation term lambda/alpha is 1.7974985514499382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2991650921440489
the lambda is 0.49411070138129637
the regulation term lambda/alpha is 1.651632206953412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3312892350394604
the lambda is 0.5075883903537904
the regulation term lambda/alpha is 1.5321608330959826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28241668777951673
the lambda is 0.4875568806520206
the regulation term lambda/alpha is 1.726374190156416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3515613546848637
the lambda is 0.550280755665865
the regulation term lambda/alpha is 1.5652481375807972
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32895817689939266
the lambda is 0.5375555720109917
the regulation term lambda/alpha is 1.6341152455237362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3359084484792851
the lambda is 0.561927239292746
the regulation term lambda/alpha is 1.6728583095682368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33651181760378013
the lambda is 0.53820517641777
the regulation term lambda/alpha is 1.5993648610922488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30943154794084815
the lambda is 0.4675282271440696
the regulation term lambda/alpha is 1.5109261814294503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32103844868459025
the lambda is 0.4742259088461661
the regulation term lambda/alpha is 1.4771623485885876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33439441384956003
the lambda is 0.4941936683149162
the regulation term lambda/alpha is 1.4778765668533203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34222013695109904
the lambda is 0.5083242666045882
the regulation term lambda/alpha is 1.4853721675566518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.331205498315757
the lambda is 0.5550808196295495
the regulation term lambda/alpha is 1.6759408356812948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178230035923413
the lambda is 0.48196836793535874
the regulation term lambda/alpha is 1.5164678531374025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3274251701327387
the lambda is 0.5092164253741974
the regulation term lambda/alpha is 1.5552146622318628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3370627127062191
the lambda is 0.5073708296786664
the regulation term lambda/alpha is 1.5052713057610925
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3150089934075374
the lambda is 0.5067098341949666
the regulation term lambda/alpha is 1.6085567231390743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3258061740014598
the lambda is 0.5088788976080865
the regulation term lambda/alpha is 1.5619068581733089
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2638652207564546
the lambda is 0.48695133858294737
the regulation term lambda/alpha is 1.8454548014586563
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35815412827258625
the lambda is 0.5331352311511964
the regulation term lambda/alpha is 1.4885636910638496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.295637155903203
the lambda is 0.5116135052661889
the regulation term lambda/alpha is 1.730545349427257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30878912011638393
the lambda is 0.5160774860129201
the regulation term lambda/alpha is 1.6712942665156347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137840974715004
the lambda is 0.5310173500786
the regulation term lambda/alpha is 1.6923016633334325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3255655223882437
the lambda is 0.5018999907298413
the regulation term lambda/alpha is 1.541625129860388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3390187811192872
the lambda is 0.5376629454306208
the regulation term lambda/alpha is 1.5859385242773278
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33284187554556727
the lambda is 0.48866051801746363
the regulation term lambda/alpha is 1.4681461496288324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32673983421374125
the lambda is 0.5202234288376578
the regulation term lambda/alpha is 1.592164083970694
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3539927683974304
the lambda is 0.5280229634158088
the regulation term lambda/alpha is 1.4916207633456324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30628158490358504
the lambda is 0.47254931926050714
the regulation term lambda/alpha is 1.5428590635289479
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31506543703013107
the lambda is 0.48226570423284465
the regulation term lambda/alpha is 1.5306842565112069
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3079606010617047
the lambda is 0.4889339182088591
the regulation term lambda/alpha is 1.5876508765187582
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2929429239105814
the lambda is 0.4629627899401981
the regulation term lambda/alpha is 1.5803856388130884
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3439814649875856
the lambda is 0.5329000670113685
the regulation term lambda/alpha is 1.549211574613769
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3397608250191869
the lambda is 0.5403405306498703
the regulation term lambda/alpha is 1.5903555997644998
1160
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3158141143234301
the lambda is 0.5131574074353198
the regulation term lambda/alpha is 1.624871670269263
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3261130522548538
the lambda is 0.4849711344864771
the regulation term lambda/alpha is 1.4871258023351897
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30772475803053256
the lambda is 0.4837911118040644
the regulation term lambda/alpha is 1.5721553082058561
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34033336125592983
the lambda is 0.48555504946207717
the regulation term lambda/alpha is 1.4267042398377778
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32744880155966605
the lambda is 0.5220483105097076
the regulation term lambda/alpha is 1.5942898798931247
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2883928979028539
the lambda is 0.5079784435756838
the regulation term lambda/alpha is 1.7614110724279972
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246376368815234
the lambda is 0.5130020488925122
the regulation term lambda/alpha is 1.5802297411366768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3237605488913866
the lambda is 0.5027719030346125
the regulation term lambda/alpha is 1.5529128078025332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2909367619738603
the lambda is 0.4897036246699681
the regulation term lambda/alpha is 1.6831961053927118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2851805716605333
the lambda is 0.47796154131496144
the regulation term lambda/alpha is 1.6759961540574593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2915888601968308
the lambda is 0.4806787265992797
the regulation term lambda/alpha is 1.6484811054674993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3312874129823843
the lambda is 0.5098526761495242
the regulation term lambda/alpha is 1.5390040676753236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29725925083312904
the lambda is 0.4593915318261603
the regulation term lambda/alpha is 1.5454238363940662
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33323948624877814
the lambda is 0.5409552937772976
the regulation term lambda/alpha is 1.62332291370012
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29547957755325216
the lambda is 0.5195144911386023
the regulation term lambda/alpha is 1.7582077767962623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32897898414000015
the lambda is 0.5062776399493414
the regulation term lambda/alpha is 1.5389361155480075
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28926466835719966
the lambda is 0.5425838791472166
the regulation term lambda/alpha is 1.8757350568552835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3261509714486705
the lambda is 0.5201647006970225
the regulation term lambda/alpha is 1.594858658205425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3258687586115189
the lambda is 0.5115132945985298
the regulation term lambda/alpha is 1.5696911136189189
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31904054871010595
the lambda is 0.5038136037695019
the regulation term lambda/alpha is 1.5791522607594584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2872285989535532
the lambda is 0.48972045765682215
the regulation term lambda/alpha is 1.7049850169551302
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3292912016982544
the lambda is 0.5287253074798848
the regulation term lambda/alpha is 1.6056466275232633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236687315208162
the lambda is 0.5328814626843167
the regulation term lambda/alpha is 1.6463791858437375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29300712502119375
the lambda is 0.53331020036826
the regulation term lambda/alpha is 1.8201270714139963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33344850427453887
the lambda is 0.5369213138473702
the regulation term lambda/alpha is 1.61020759416964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205515348700243
the lambda is 0.4800384286882671
the regulation term lambda/alpha is 1.4975390115755047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047289414139204
the lambda is 0.5088931543132575
the regulation term lambda/alpha is 1.6699862899533924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2871532616300248
the lambda is 0.5009167363492736
the regulation term lambda/alpha is 1.744422938140493
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3011118929705064
the lambda is 0.5248360209997833
the regulation term lambda/alpha is 1.7429933298954434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31781166457723625
the lambda is 0.49075861266516574
the regulation term lambda/alpha is 1.5441806181594666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2831624812070321
the lambda is 0.48366540662395907
the regulation term lambda/alpha is 1.7080843640098309
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3175109625590162
the lambda is 0.4739035955370366
the regulation term lambda/alpha is 1.4925582150536032
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2871819385096951
the lambda is 0.5226887170444522
the regulation term lambda/alpha is 1.8200612467375157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32812619706736107
the lambda is 0.5505789410729692
the regulation term lambda/alpha is 1.6779487465304113
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3055691231193057
the lambda is 0.517913000782793
the regulation term lambda/alpha is 1.694912743459948
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3303408261653362
the lambda is 0.524114323162819
the regulation term lambda/alpha is 1.5865865846702787
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30919925323572284
the lambda is 0.5137821913794315
the regulation term lambda/alpha is 1.6616540499460446
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3327772486492244
the lambda is 0.5200963620007633
the regulation term lambda/alpha is 1.5628963942453564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30661576196837065
the lambda is 0.47412797157268693
the regulation term lambda/alpha is 1.5463261527357366
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3115934212208483
the lambda is 0.4843306180387133
the regulation term lambda/alpha is 1.5543672781699518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3221731383812133
the lambda is 0.5062458132651305
the regulation term lambda/alpha is 1.5713470583202753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.351361462169953
the lambda is 0.5104609715051773
the regulation term lambda/alpha is 1.4528086499659092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3678783907068519
the lambda is 0.524964267850364
the regulation term lambda/alpha is 1.4270049046416748
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3197655148783725
the lambda is 0.5099100760736929
the regulation term lambda/alpha is 1.594637483868905
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29589094879862643
the lambda is 0.5031807253689208
the regulation term lambda/alpha is 1.700561397406478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29385816649278695
the lambda is 0.46815649004460297
the regulation term lambda/alpha is 1.59313758617661
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2991408423138814
the lambda is 0.5313286645742441
the regulation term lambda/alpha is 1.7761822841186412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3373504593568215
the lambda is 0.5098115227774178
the regulation term lambda/alpha is 1.511222257557922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32182384640415856
the lambda is 0.48471933443636017
the regulation term lambda/alpha is 1.5061635110396117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3106218136948998
the lambda is 0.508386203471767
the regulation term lambda/alpha is 1.6366725743579496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.325876694456859
the lambda is 0.5378400510421342
the regulation term lambda/alpha is 1.6504403665274558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29104679825110086
the lambda is 0.5163687444722154
the regulation term lambda/alpha is 1.774177718411861
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3301610804134185
the lambda is 0.5426027329869235
the regulation term lambda/alpha is 1.6434485018872953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3417310995078736
the lambda is 0.5174079949135044
the regulation term lambda/alpha is 1.514079332137528
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.331963921211952
the lambda is 0.5475944181699656
the regulation term lambda/alpha is 1.6495600370388985
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2947601991549048
the lambda is 0.5376128175121758
the regulation term lambda/alpha is 1.8238989492256554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34253724141323066
the lambda is 0.5182452588139301
the regulation term lambda/alpha is 1.5129603329429764
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.318298706826794
the lambda is 0.5027602151469508
the regulation term lambda/alpha is 1.5795232728373405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.305567927360452
the lambda is 0.534091983639697
the regulation term lambda/alpha is 1.7478666306810235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34117221286472854
the lambda is 0.5343317232092772
the regulation term lambda/alpha is 1.566164250958898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27915104994120105
the lambda is 0.4937861054637637
the regulation term lambda/alpha is 1.7688850017500286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3245409640689908
the lambda is 0.5055347906346793
the regulation term lambda/alpha is 1.5576917757821565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35563702924814405
the lambda is 0.5337745506779503
the regulation term lambda/alpha is 1.5008970010980258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31275556609094957
the lambda is 0.5066627648379789
the regulation term lambda/alpha is 1.6199959961404522
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31660751261589026
the lambda is 0.5045532772645772
the regulation term lambda/alpha is 1.593623831272455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3332409768926282
the lambda is 0.5019659180831113
the regulation term lambda/alpha is 1.506315107955187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3049658169051898
the lambda is 0.552180564019905
the regulation term lambda/alpha is 1.8106310065287456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32985814767271526
the lambda is 0.5190829267685053
the regulation term lambda/alpha is 1.5736550102850229
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29545973430172817
the lambda is 0.4848493476202017
the regulation term lambda/alpha is 1.6409997415250697
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300510468410123
the lambda is 0.5622574252134943
the regulation term lambda/alpha is 1.7035468622050376
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298124094246282
the lambda is 0.5195986628839412
the regulation term lambda/alpha is 1.7428938918794594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30046762557578655
the lambda is 0.48370718818285247
the regulation term lambda/alpha is 1.6098479403760177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30493082056624865
the lambda is 0.5265588894305301
the regulation term lambda/alpha is 1.7268142605353038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3151949084840295
the lambda is 0.49812461247325557
the regulation term lambda/alpha is 1.5803701108912263
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29065232042912686
the lambda is 0.4953013050106121
the regulation term lambda/alpha is 1.7041023594077487
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34707849691047904
the lambda is 0.5198811923877472
the regulation term lambda/alpha is 1.4978778490038196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31087231594728915
the lambda is 0.5158702614023365
the regulation term lambda/alpha is 1.6594281154639912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32983712001572485
the lambda is 0.516026901838321
the regulation term lambda/alpha is 1.564490078659793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29440216088998955
the lambda is 0.488128752515895
the regulation term lambda/alpha is 1.6580338644263417
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3102164762752208
the lambda is 0.5058538605276224
the regulation term lambda/alpha is 1.6306479481729208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2853704283947784
the lambda is 0.45548715183221944
the regulation term lambda/alpha is 1.5961259700045143
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31125694121825487
the lambda is 0.5141272617853695
the regulation term lambda/alpha is 1.6517776592325406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3119813945213758
the lambda is 0.4892197659892548
the regulation term lambda/alpha is 1.568105581231176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.299631980923701
the lambda is 0.513824442211849
the regulation term lambda/alpha is 1.714851801292501
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3113219297073199
the lambda is 0.4943944625008308
the regulation term lambda/alpha is 1.58804894652176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3227589798894052
the lambda is 0.5202320297137661
the regulation term lambda/alpha is 1.6118282127797836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3305110623521831
the lambda is 0.510157704333074
the regulation term lambda/alpha is 1.5435419943356226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3630169402907383
the lambda is 0.5398880596516584
the regulation term lambda/alpha is 1.4872255251208526
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30765560719876023
the lambda is 0.4548895309529098
the regulation term lambda/alpha is 1.4785673340873953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3561180317563617
the lambda is 0.5137540456157007
the regulation term lambda/alpha is 1.4426510308446996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2911152306020559
the lambda is 0.5328601929040533
the regulation term lambda/alpha is 1.8304098751619564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3267054913248898
the lambda is 0.5057491586490919
the regulation term lambda/alpha is 1.5480277255154964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3225845314216058
the lambda is 0.4939629069833195
the regulation term lambda/alpha is 1.531266563856804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30945228752014475
the lambda is 0.5218191525262521
the regulation term lambda/alpha is 1.6862669095386238
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2929165946111419
the lambda is 0.5296374535476726
the regulation term lambda/alpha is 1.808151068568808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31145162893845946
the lambda is 0.5075298108657773
the regulation term lambda/alpha is 1.6295622296008652
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31307051098052135
the lambda is 0.5237672817695227
the regulation term lambda/alpha is 1.6730010122291923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3144838937750853
the lambda is 0.48867392673690135
the regulation term lambda/alpha is 1.55389174584055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3444094223763098
the lambda is 0.487379863453844
the regulation term lambda/alpha is 1.4151176820049987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3191131352635158
the lambda is 0.5101910806469474
the regulation term lambda/alpha is 1.5987780641672555
1170
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32380017637097275
the lambda is 0.5005411794616766
the regulation term lambda/alpha is 1.545833560288783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.285197219391557
the lambda is 0.4771647527086443
the regulation term lambda/alpha is 1.6731045054598814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.355235301610122
the lambda is 0.5583805226563706
the regulation term lambda/alpha is 1.5718610175438157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34872069789365584
the lambda is 0.534413051961183
the regulation term lambda/alpha is 1.5324959349678609
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3214195693987552
the lambda is 0.4915968541307433
the regulation term lambda/alpha is 1.529455269479454
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3199618672645856
the lambda is 0.5459175021812133
the regulation term lambda/alpha is 1.7061955127602082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29180914129623975
the lambda is 0.5330886590320909
the regulation term lambda/alpha is 1.8268401622514912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128388428682924
the lambda is 0.5123936528918518
the regulation term lambda/alpha is 1.6378837365396264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28822219363826906
the lambda is 0.4638022278006796
the regulation term lambda/alpha is 1.6091829083181943
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137910854540976
the lambda is 0.5017287741915804
the regulation term lambda/alpha is 1.5989261564442208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33288091934033964
the lambda is 0.5526586878330859
the regulation term lambda/alpha is 1.660229396530968
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3052408670014152
the lambda is 0.5231387912132762
the regulation term lambda/alpha is 1.7138556719236773
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.316542178990311
the lambda is 0.5272753541471212
the regulation term lambda/alpha is 1.6657348977283073
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2935436288263603
the lambda is 0.5378225268338256
the regulation term lambda/alpha is 1.8321723724140626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3258601133500589
the lambda is 0.5406780614886598
the regulation term lambda/alpha is 1.6592336384165876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224397363501889
the lambda is 0.4980182821560356
the regulation term lambda/alpha is 1.544531352721235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36887522343571055
the lambda is 0.5302182762561297
the regulation term lambda/alpha is 1.437391948739921
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32351187945277193
the lambda is 0.5495800868279204
the regulation term lambda/alpha is 1.6987941455428104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3280107686595338
the lambda is 0.5221515384061551
the regulation term lambda/alpha is 1.5918731587380721
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3145232895245872
the lambda is 0.5480756440315102
the regulation term lambda/alpha is 1.742559811262134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30823663493335585
the lambda is 0.5296717884046463
the regulation term lambda/alpha is 1.7183933652765422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3029852595215741
the lambda is 0.4997221573690844
the regulation term lambda/alpha is 1.6493282813763472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38293809171988813
the lambda is 0.5400040402150138
the regulation term lambda/alpha is 1.4101601587601174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29924932887454586
the lambda is 0.49316794637472094
the regulation term lambda/alpha is 1.6480168835448632
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32276172539674264
the lambda is 0.4826201392469477
the regulation term lambda/alpha is 1.4952830564209716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3142379919025392
the lambda is 0.48928097988517694
the regulation term lambda/alpha is 1.5570395448457652
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2942322521103098
the lambda is 0.48088645508567446
the regulation term lambda/alpha is 1.63437710052733
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3426022260784585
the lambda is 0.5258049708294328
the regulation term lambda/alpha is 1.5347389211330442
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31676637068797114
the lambda is 0.48886741137475037
the regulation term lambda/alpha is 1.5433059081145528
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2918693567897286
the lambda is 0.4633372817296449
the regulation term lambda/alpha is 1.5874817652181519
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31191705352360566
the lambda is 0.5052811995794514
the regulation term lambda/alpha is 1.619921687100741
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31399956675278673
the lambda is 0.5084134049845596
the regulation term lambda/alpha is 1.619153205344502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3045427661432762
the lambda is 0.492431529807976
the regulation term lambda/alpha is 1.6169536254107084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3539908338940248
the lambda is 0.5289963944763709
the regulation term lambda/alpha is 1.4943787912732736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33475046984753126
the lambda is 0.4990700261712261
the regulation term lambda/alpha is 1.4908717720352638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28681590586529815
the lambda is 0.512818293877611
the regulation term lambda/alpha is 1.7879702045480488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2805366919921546
the lambda is 0.5243399911574851
the regulation term lambda/alpha is 1.8690602909517042
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2803556439327783
the lambda is 0.5187037729167917
the regulation term lambda/alpha is 1.85016347679151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2861730159483062
the lambda is 0.5088984096575295
the regulation term lambda/alpha is 1.7782892910820638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29956041097943
the lambda is 0.49122649896026005
the regulation term lambda/alpha is 1.6398244926763412
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30091210295608056
the lambda is 0.5255132110580578
the regulation term lambda/alpha is 1.7464010450080127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3104299184615915
the lambda is 0.5077736378933521
the regulation term lambda/alpha is 1.635711017835342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2833904306079137
the lambda is 0.5096370727195226
the regulation term lambda/alpha is 1.7983566757221723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29678752397951064
the lambda is 0.516576547474925
the regulation term lambda/alpha is 1.7405601844321055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3288453969271702
the lambda is 0.5050359575810582
the regulation term lambda/alpha is 1.535785394292471
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32901115954986976
the lambda is 0.5262424806006161
the regulation term lambda/alpha is 1.5994669643442627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29754176975983604
the lambda is 0.4908539178874252
the regulation term lambda/alpha is 1.6496975140116399
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31734236737291255
the lambda is 0.5194380066412457
the regulation term lambda/alpha is 1.636837876207208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36731352776629245
the lambda is 0.5202786146463776
the regulation term lambda/alpha is 1.4164428351177172
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37200741764693107
the lambda is 0.5273322984371176
the regulation term lambda/alpha is 1.4175316765796429
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3158200659570256
the lambda is 0.5109166248040594
the regulation term lambda/alpha is 1.617745925218004
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3346580115146419
the lambda is 0.5129394092674993
the regulation term lambda/alpha is 1.5327271172919676
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32293939322447135
the lambda is 0.5309086979304982
the regulation term lambda/alpha is 1.6439886525750356
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3133415664568643
the lambda is 0.5335957439705137
the regulation term lambda/alpha is 1.7029203945208795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.333288942408766
the lambda is 0.5077602166235458
the regulation term lambda/alpha is 1.5234835363988688
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29254857768129416
the lambda is 0.5095826853051392
the regulation term lambda/alpha is 1.7418737405733844
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3488574463475466
the lambda is 0.5343847593140928
the regulation term lambda/alpha is 1.5318141117782418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3127487998793848
the lambda is 0.5560625018423567
the regulation term lambda/alpha is 1.7779844464848744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34041815439379725
the lambda is 0.5417191804379804
the regulation term lambda/alpha is 1.5913345790933267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3589374080212527
the lambda is 0.5681456522540046
the regulation term lambda/alpha is 1.5828543906473094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.301657631882792
the lambda is 0.5090954349623154
the regulation term lambda/alpha is 1.6876597213364142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.294140177414823
the lambda is 0.48667421793638616
the regulation term lambda/alpha is 1.654565595947249
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36893488284998255
the lambda is 0.5341540086828686
the regulation term lambda/alpha is 1.4478273362404388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32187608402895285
the lambda is 0.4926999576167266
the regulation term lambda/alpha is 1.5307131597028132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3118942459799869
the lambda is 0.5013130743097283
the regulation term lambda/alpha is 1.6073174826761494
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3364349590175804
the lambda is 0.5035162791837441
the regulation term lambda/alpha is 1.4966229450532007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33131288881424514
the lambda is 0.5372082826481872
the regulation term lambda/alpha is 1.6214530155190552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32439075396491424
the lambda is 0.5097723063804328
the regulation term lambda/alpha is 1.5714760675193882
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31583780773347964
the lambda is 0.5764616554208266
the regulation term lambda/alpha is 1.825182550365455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3098828994183776
the lambda is 0.5501055358956062
the regulation term lambda/alpha is 1.7752045592967696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33647329764422074
the lambda is 0.5411465638478223
the regulation term lambda/alpha is 1.6082897740670599
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28951518586822367
the lambda is 0.45624533553018576
the regulation term lambda/alpha is 1.5758943150493367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29315824844647653
the lambda is 0.4984872313769532
the regulation term lambda/alpha is 1.7004032259660764
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3655322176070102
the lambda is 0.5004839606971291
the regulation term lambda/alpha is 1.3691924722083122
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33519768469713074
the lambda is 0.5052595727908894
the regulation term lambda/alpha is 1.5073480392545635
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2951907765918248
the lambda is 0.5210504333473243
the regulation term lambda/alpha is 1.765131144554042
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3396486119072776
the lambda is 0.5413990312217817
the regulation term lambda/alpha is 1.5939974792818556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34484081546476947
the lambda is 0.5294165368231147
the regulation term lambda/alpha is 1.5352490571905701
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34406226601302886
the lambda is 0.5440939298065636
the regulation term lambda/alpha is 1.5813821611753263
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3127888813141904
the lambda is 0.5040881212499833
the regulation term lambda/alpha is 1.611592199607749
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27217363662025196
the lambda is 0.46365297286812074
the regulation term lambda/alpha is 1.703519042569978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29673655625009343
the lambda is 0.45901843788148206
the regulation term lambda/alpha is 1.546888740916085
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3274977699175786
the lambda is 0.546903116306419
the regulation term lambda/alpha is 1.669944550902005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32259555593503303
the lambda is 0.5034112655900121
the regulation term lambda/alpha is 1.560502791586482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32064778958483575
the lambda is 0.5401106884274757
the regulation term lambda/alpha is 1.6844360259797622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35490969959600427
the lambda is 0.5473802548055601
the regulation term lambda/alpha is 1.542308523629098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32933403291508306
the lambda is 0.5470777580892799
the regulation term lambda/alpha is 1.6611637529436287
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073107155936655
the lambda is 0.546979462295019
the regulation term lambda/alpha is 1.7798906271080048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3258134345692243
the lambda is 0.49319251187962865
the regulation term lambda/alpha is 1.5137267514205035
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3186253090709058
the lambda is 0.5175331987955147
the regulation term lambda/alpha is 1.6242689581207896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3484396228142867
the lambda is 0.5242589908828941
the regulation term lambda/alpha is 1.5045906279215455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2926935859200904
the lambda is 0.4569142556215415
the regulation term lambda/alpha is 1.561066854899532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31774051072515863
the lambda is 0.48439102737589
the regulation term lambda/alpha is 1.5244862113124815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27768184819056185
the lambda is 0.531752435035159
the regulation term lambda/alpha is 1.914970094373035
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34993564705720726
the lambda is 0.4979640939387763
the regulation term lambda/alpha is 1.423016197767841
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29424117689454643
the lambda is 0.49156509046856334
the regulation term lambda/alpha is 1.6706196449341153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3009224650540431
the lambda is 0.5028680399941787
the regulation term lambda/alpha is 1.671088397816587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31210019361880104
the lambda is 0.5226968146092577
the regulation term lambda/alpha is 1.6747724778654869
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28554883215052196
the lambda is 0.50227880286881
the regulation term lambda/alpha is 1.7589944216758089
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29822820666510125
the lambda is 0.4909602309089452
the regulation term lambda/alpha is 1.6462568594669336
1180
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3140771996838171
the lambda is 0.5352711421628624
the regulation term lambda/alpha is 1.7042661571795796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34598911620488276
the lambda is 0.5309075262710897
the regulation term lambda/alpha is 1.5344630839679496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33146752143408215
the lambda is 0.4962520317016884
the regulation term lambda/alpha is 1.497136218820692
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36140044429630136
the lambda is 0.5320114079178464
the regulation term lambda/alpha is 1.4720828828911627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3497099978389959
the lambda is 0.4828050014301012
the regulation term lambda/alpha is 1.3805867845173283
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3081978080227457
the lambda is 0.5090699982267662
the regulation term lambda/alpha is 1.6517638509265313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3561657208049522
the lambda is 0.5470942748922324
the regulation term lambda/alpha is 1.536066619931228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3296770931452105
the lambda is 0.5390284179829486
the regulation term lambda/alpha is 1.63501932403149
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28796993813639327
the lambda is 0.5183043804894254
the regulation term lambda/alpha is 1.7998558594124403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3042463479756711
the lambda is 0.5615628379063186
the regulation term lambda/alpha is 1.8457504638682585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30784638227940536
the lambda is 0.5168981407462603
the regulation term lambda/alpha is 1.6790781717782761
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2835663824675003
the lambda is 0.5420615018916723
the regulation term lambda/alpha is 1.9115859121763077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3100006965691984
the lambda is 0.5328330511046586
the regulation term lambda/alpha is 1.7188124317189062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31233626265179526
the lambda is 0.5348658932160907
the regulation term lambda/alpha is 1.7124681222570055
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31555275075839645
the lambda is 0.5512606659282963
the regulation term lambda/alpha is 1.7469683423877678
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29554104223972627
the lambda is 0.5094662312634861
the regulation term lambda/alpha is 1.723842574968778
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31581875365060585
the lambda is 0.5162786775645954
the regulation term lambda/alpha is 1.634730906878826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31968387376594953
the lambda is 0.5369363319534063
the regulation term lambda/alpha is 1.6795852903938282
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2993450490823595
the lambda is 0.5521411796972017
the regulation term lambda/alpha is 1.844497449982177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32249157150341623
the lambda is 0.5252435977809129
the regulation term lambda/alpha is 1.6287048846960295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36561196662049056
the lambda is 0.5577183117754081
the regulation term lambda/alpha is 1.5254377938737604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2938141957764497
the lambda is 0.5029375654189259
the regulation term lambda/alpha is 1.7117537976333483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30378471905164894
the lambda is 0.5361283123744889
the regulation term lambda/alpha is 1.7648297585479844
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.27618645988768986
the lambda is 0.4940183645552639
the regulation term lambda/alpha is 1.788713193094819
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2975325816344254
the lambda is 0.5120084289911329
the regulation term lambda/alpha is 1.72084827207338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2866389576429253
the lambda is 0.5190670684163994
the regulation term lambda/alpha is 1.8108741138495792
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3384892489914625
the lambda is 0.5517713620666304
the regulation term lambda/alpha is 1.6301001101531214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34951514909957754
the lambda is 0.5440781229827624
the regulation term lambda/alpha is 1.5566653530881818
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3192873356607368
the lambda is 0.5377452810181876
the regulation term lambda/alpha is 1.6842048554959799
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2969255963428348
the lambda is 0.5541609898017692
the regulation term lambda/alpha is 1.866329466463129
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314065834675765
the lambda is 0.5169807911562374
the regulation term lambda/alpha is 1.5599593277446666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34773253069719984
the lambda is 0.5208664649883461
the regulation term lambda/alpha is 1.4978939817451495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31979738628624227
the lambda is 0.5404386707383478
the regulation term lambda/alpha is 1.6899408622890224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30278319145171306
the lambda is 0.5044193164412759
the regulation term lambda/alpha is 1.6659422672137305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3029592360015346
the lambda is 0.5461467614729345
the regulation term lambda/alpha is 1.8027070858805836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3219465312704901
the lambda is 0.5325012914990617
the regulation term lambda/alpha is 1.654005369766415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31438483266057826
the lambda is 0.5706360054517489
the regulation term lambda/alpha is 1.815087581110597
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3083998043524506
the lambda is 0.49903679721959404
the regulation term lambda/alpha is 1.6181488774528419
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30417213792149983
the lambda is 0.5032058660049501
the regulation term lambda/alpha is 1.6543456920265869
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35126141637898345
the lambda is 0.5386109239470757
the regulation term lambda/alpha is 1.533362045565394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2966900046344746
the lambda is 0.5278197922951438
the regulation term lambda/alpha is 1.7790278878637102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29840543613201925
the lambda is 0.5052468282177509
the regulation term lambda/alpha is 1.6931555764092105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30395462646657334
the lambda is 0.5190005279191598
the regulation term lambda/alpha is 1.7074934306888585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2918171384734872
the lambda is 0.49064283345456255
the regulation term lambda/alpha is 1.681336593255435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3292286924133123
the lambda is 0.5389613466643357
the regulation term lambda/alpha is 1.637042454330578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2913410707401819
the lambda is 0.5159901075531852
the regulation term lambda/alpha is 1.7710860547133274
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30663978438259876
the lambda is 0.5426451484244672
the regulation term lambda/alpha is 1.7696501760756564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178767595692685
the lambda is 0.5519742228153912
the regulation term lambda/alpha is 1.736440951403088
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34924165162648013
the lambda is 0.5289820124208695
the regulation term lambda/alpha is 1.5146590046098647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26413413823954573
the lambda is 0.47042389722404354
the regulation term lambda/alpha is 1.781003774670776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29736553154301865
the lambda is 0.49000986861121026
the regulation term lambda/alpha is 1.6478368090227786
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3197268961335658
the lambda is 0.5274036873512132
the regulation term lambda/alpha is 1.6495443258889628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34985199909457704
the lambda is 0.49481361005010205
the regulation term lambda/alpha is 1.414351243756469
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35411306108495766
the lambda is 0.5705787223759822
the regulation term lambda/alpha is 1.611289684226278
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3247787627737906
the lambda is 0.5045878451200076
the regulation term lambda/alpha is 1.553635591226926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2895029868223984
the lambda is 0.47129722207484215
the regulation term lambda/alpha is 1.6279528831388852
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3304004729221079
the lambda is 0.5051279141932932
the regulation term lambda/alpha is 1.5288353243743007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3442198805065751
the lambda is 0.4869275140724903
the regulation term lambda/alpha is 1.4145827758579717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3302357558838818
the lambda is 0.5526462894387429
the regulation term lambda/alpha is 1.6734901645025548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2836965989179136
the lambda is 0.5300363606037692
the regulation term lambda/alpha is 1.8683211664343322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3029973647390335
the lambda is 0.480189513750128
the regulation term lambda/alpha is 1.5847976571139724
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3283514289704968
the lambda is 0.5211390624454625
the regulation term lambda/alpha is 1.587138097980649
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28079625349431425
the lambda is 0.5000920897990074
the regulation term lambda/alpha is 1.7809784980237766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30132193114891054
the lambda is 0.5189784099407552
the regulation term lambda/alpha is 1.7223386560743923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3347402332846013
the lambda is 0.5192473222925335
the regulation term lambda/alpha is 1.5511948390472126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32437167653527527
the lambda is 0.5310292416408089
the regulation term lambda/alpha is 1.6371011406202716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30411455521360137
the lambda is 0.5102314508725627
the regulation term lambda/alpha is 1.677760706041152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31522362788459074
the lambda is 0.502502614627933
the regulation term lambda/alpha is 1.5941146861361186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35621364133160976
the lambda is 0.5213777261139197
the regulation term lambda/alpha is 1.463665805062625
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3329704241426822
the lambda is 0.522843708550545
the regulation term lambda/alpha is 1.5702406899854253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3307060553649404
the lambda is 0.5275604226181544
the regulation term lambda/alpha is 1.5952548012342302
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300759613842336
the lambda is 0.5269498665800262
the regulation term lambda/alpha is 1.5964502969866876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33709300316866664
the lambda is 0.5055258431912784
the regulation term lambda/alpha is 1.499662818389426
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3519428142548292
the lambda is 0.49661041488081303
the regulation term lambda/alpha is 1.411054281452768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32463455829883153
the lambda is 0.46905160991109185
the regulation term lambda/alpha is 1.444860375830111
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3538874062451906
the lambda is 0.5219779646184081
the regulation term lambda/alpha is 1.4749831596345535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2905140869226191
the lambda is 0.49867216793172214
the regulation term lambda/alpha is 1.7165163080871453
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3234492814214267
the lambda is 0.5300055330970969
the regulation term lambda/alpha is 1.6386047629104021
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30706984019367317
the lambda is 0.5021614627888107
the regulation term lambda/alpha is 1.6353330645305009
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33875025244254
the lambda is 0.5394704963664287
the regulation term lambda/alpha is 1.5925316438190276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3419917437223618
the lambda is 0.5322420999625505
the regulation term lambda/alpha is 1.556301021099033
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3468826056599074
the lambda is 0.53146208330363
the regulation term lambda/alpha is 1.5321093494802938
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27831206439488587
the lambda is 0.5266841885242164
the regulation term lambda/alpha is 1.8924231318155336
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3274579994852164
the lambda is 0.5174368508361513
the regulation term lambda/alpha is 1.580162499158955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3126853642346373
the lambda is 0.494035529878002
the regulation term lambda/alpha is 1.5799765079739407
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3351798932981626
the lambda is 0.5732314492165835
the regulation term lambda/alpha is 1.7102202747784152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28093211373382615
the lambda is 0.4949808018406701
the regulation term lambda/alpha is 1.7619231751826279
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31655560926318405
the lambda is 0.5637760122797786
the regulation term lambda/alpha is 1.780969901598097
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3379418089616449
the lambda is 0.5575756931194505
the regulation term lambda/alpha is 1.6499162824293614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34179890392468937
the lambda is 0.46921817883744565
the regulation term lambda/alpha is 1.372790179984987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.307382847229934
the lambda is 0.5046080153137376
the regulation term lambda/alpha is 1.6416271104947886
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3327055621158228
the lambda is 0.5301636755173819
the regulation term lambda/alpha is 1.5934920719264054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33393251488396175
the lambda is 0.5599128656043632
the regulation term lambda/alpha is 1.6767246094586725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2764671142701293
the lambda is 0.47689756184646953
the regulation term lambda/alpha is 1.724970302907363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2877335280471625
the lambda is 0.5074067704477451
the regulation term lambda/alpha is 1.763460705783915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2924312552472704
the lambda is 0.46995950185720264
the regulation term lambda/alpha is 1.607076854557903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.295808814885978
the lambda is 0.5708954789916129
the regulation term lambda/alpha is 1.9299474872365427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3639157308296849
the lambda is 0.5448657236164905
the regulation term lambda/alpha is 1.497230477985277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2977366328331626
the lambda is 0.4533671938854726
the regulation term lambda/alpha is 1.522712168708907
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3108840282867311
the lambda is 0.48625607696832923
the regulation term lambda/alpha is 1.564107618033857
1190
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31443998176318716
the lambda is 0.5727221266179809
the regulation term lambda/alpha is 1.8214036376878837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2954349890629618
the lambda is 0.49811209684682306
the regulation term lambda/alpha is 1.686029465997569
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2848180845391302
the lambda is 0.4856098946044721
the regulation term lambda/alpha is 1.7049826572292526
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33536418271345186
the lambda is 0.5042556716373846
the regulation term lambda/alpha is 1.5036062216227788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.332220245032568
the lambda is 0.5071618841308897
the regulation term lambda/alpha is 1.5265833184885285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2963009284741944
the lambda is 0.5041966997081812
the regulation term lambda/alpha is 1.701637258798171
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33782837464739734
the lambda is 0.5374551563044344
the regulation term lambda/alpha is 1.5909118257618062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27639225981722865
the lambda is 0.4470595042570002
the regulation term lambda/alpha is 1.6174819966110106
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31655297831888773
the lambda is 0.5323216854066091
the regulation term lambda/alpha is 1.6816195767090878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32133561416702056
the lambda is 0.5207843585929927
the regulation term lambda/alpha is 1.6206867077058713
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3380218378399535
the lambda is 0.540880375039813
the regulation term lambda/alpha is 1.6001344129011834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31165184035173166
the lambda is 0.4851521934713915
the regulation term lambda/alpha is 1.5567121083701818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29961798432571246
the lambda is 0.5135382399932805
the regulation term lambda/alpha is 1.7139766865096353
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.36201093674471513
the lambda is 0.5611163142111706
the regulation term lambda/alpha is 1.5499982383318482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3053876829643824
the lambda is 0.4500997311028814
the regulation term lambda/alpha is 1.4738634077634913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34039279715724124
the lambda is 0.5110479477295973
the regulation term lambda/alpha is 1.5013477135755122
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3180770920717928
the lambda is 0.511719750323862
the regulation term lambda/alpha is 1.6087915888276616
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30773152043765284
the lambda is 0.5296158109554886
the regulation term lambda/alpha is 1.7210320548323228
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3321349444818451
the lambda is 0.5273320655784544
the regulation term lambda/alpha is 1.5877042579820413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32856203898974007
the lambda is 0.5567743386192519
the regulation term lambda/alpha is 1.6945790217616652
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3593486955392272
the lambda is 0.5075371839464404
the regulation term lambda/alpha is 1.4123807606560148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35619804917112063
the lambda is 0.5294925895156739
the regulation term lambda/alpha is 1.4865117614984495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3059890069312961
the lambda is 0.5279345177586893
the regulation term lambda/alpha is 1.7253381847055267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190290259846683
the lambda is 0.5064815025438129
the regulation term lambda/alpha is 1.5875718548824238
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30244632183934356
the lambda is 0.49406020040216747
the regulation term lambda/alpha is 1.6335467311935348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3082086628048668
the lambda is 0.5205809384337444
the regulation term lambda/alpha is 1.6890535577299293
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28982086254067957
the lambda is 0.5455406501382223
the regulation term lambda/alpha is 1.8823374044083856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28687681319824665
the lambda is 0.5330536587736645
the regulation term lambda/alpha is 1.858127371225701
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3278638578968696
the lambda is 0.5775216844465317
the regulation term lambda/alpha is 1.7614679707337324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3432993327742936
the lambda is 0.5600152003003641
the regulation term lambda/alpha is 1.631273780157776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33929485007174376
the lambda is 0.5557834254665107
the regulation term lambda/alpha is 1.638054410047752
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32574241837638845
the lambda is 0.5137229456731474
the regulation term lambda/alpha is 1.5770833538773308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212005360442119
the lambda is 0.5551095707744861
the regulation term lambda/alpha is 1.7282336374995264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32234504298745725
the lambda is 0.5112682756752926
the regulation term lambda/alpha is 1.5860900820341963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31039143039734174
the lambda is 0.4937126393058531
the regulation term lambda/alpha is 1.5906129839790877
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3429652237352555
the lambda is 0.5522430296915141
the regulation term lambda/alpha is 1.610201243370978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3454658129951853
the lambda is 0.4796634493763018
the regulation term lambda/alpha is 1.3884541721151054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31562041649410044
the lambda is 0.49809147841097146
the regulation term lambda/alpha is 1.5781345324353622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3076523773211241
the lambda is 0.5106996426340128
the regulation term lambda/alpha is 1.6599892615195047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.356632746967116
the lambda is 0.5676051362956136
the regulation term lambda/alpha is 1.5915676311910603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3415881315419495
the lambda is 0.536615151600195
the regulation term lambda/alpha is 1.570942026521477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.329236430587962
the lambda is 0.49675034993973827
the regulation term lambda/alpha is 1.5087952115524519
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090258074224114
the lambda is 0.5211291675283157
the regulation term lambda/alpha is 1.6863613167944171
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3576047555462485
the lambda is 0.5528527048735089
the regulation term lambda/alpha is 1.5459881231976773
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3223599994599409
the lambda is 0.5292834656146296
the regulation term lambda/alpha is 1.6419018069901772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3352749571552923
the lambda is 0.5315851727953227
the regulation term lambda/alpha is 1.5855200677845545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3101678795306021
the lambda is 0.5082087343704196
the regulation term lambda/alpha is 1.6384956918799136
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2959651949793961
the lambda is 0.500001679953403
the regulation term lambda/alpha is 1.689393511247872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31589760310772136
the lambda is 0.4911734762306937
the regulation term lambda/alpha is 1.554850278693641
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3459707847565251
the lambda is 0.5092625993977157
the regulation term lambda/alpha is 1.4719815135723273
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28961864837589185
the lambda is 0.5073691858861611
the regulation term lambda/alpha is 1.7518526128457514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27684474151807553
the lambda is 0.479611690393388
the regulation term lambda/alpha is 1.7324211677759955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3124415125593107
the lambda is 0.4901264868968154
the regulation term lambda/alpha is 1.5686983553562681
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33861826601648715
the lambda is 0.541290635860341
the regulation term lambda/alpha is 1.5985275756919322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3166823564455741
the lambda is 0.5626500586795207
the regulation term lambda/alpha is 1.7767016293382272
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3233311552728364
the lambda is 0.5646240256050278
the regulation term lambda/alpha is 1.7462716363617397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3325627241757824
the lambda is 0.5584065682518599
the regulation term lambda/alpha is 1.6791014977273981
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3118153445734386
the lambda is 0.5062184150510534
the regulation term lambda/alpha is 1.6234557530950149
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32901057195389416
the lambda is 0.5344012908107332
the regulation term lambda/alpha is 1.6242678392888281
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2801955999068531
the lambda is 0.5503332120967015
the regulation term lambda/alpha is 1.9641036914200354
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30804590270490545
the lambda is 0.5161927728132004
the regulation term lambda/alpha is 1.6757008234181598
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29191719843452996
the lambda is 0.5208398246949563
the regulation term lambda/alpha is 1.784203971153718
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31587867739017605
the lambda is 0.48262109632200867
the regulation term lambda/alpha is 1.5278685484866423
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33339310775037934
the lambda is 0.5475779583740026
the regulation term lambda/alpha is 1.6424393475584065
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3127078539098893
the lambda is 0.5159233208984565
the regulation term lambda/alpha is 1.6498572531763986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3403347314633392
the lambda is 0.5307248834772624
the regulation term lambda/alpha is 1.5594202836580962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34551672027219466
the lambda is 0.5553394031659097
the regulation term lambda/alpha is 1.6072721538003105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3142314149123571
the lambda is 0.5228514595124308
the regulation term lambda/alpha is 1.6639057544843514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32308548556854355
the lambda is 0.5427983955401846
the regulation term lambda/alpha is 1.6800457457412716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31311974049207364
the lambda is 0.48562007060376944
the regulation term lambda/alpha is 1.550908511359291
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32257718890707726
the lambda is 0.4833163878829615
the regulation term lambda/alpha is 1.4982968557711231
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30389655628392553
the lambda is 0.48497585035506713
the regulation term lambda/alpha is 1.5958583285226904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3506021467687776
the lambda is 0.5329717888766765
the regulation term lambda/alpha is 1.520161224877416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31596949637083405
the lambda is 0.5124373790080783
the regulation term lambda/alpha is 1.621793827865782
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33126228024952037
the lambda is 0.5175568009489764
the regulation term lambda/alpha is 1.5623777043348592
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3128856465706608
the lambda is 0.5481086854248508
the regulation term lambda/alpha is 1.7517859685553463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30015896542116954
the lambda is 0.5555162310726718
the regulation term lambda/alpha is 1.8507400913152683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3348694699573927
the lambda is 0.6501412542035876
the regulation term lambda/alpha is 1.9414766424849321
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2941695641809361
the lambda is 0.5359403066587143
the regulation term lambda/alpha is 1.8218754484371853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3114417045092072
the lambda is 0.4956052114386087
the regulation term lambda/alpha is 1.5913257738542752
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176985743831294
the lambda is 0.5225684769179664
the regulation term lambda/alpha is 1.6448562223882492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3143862372544053
the lambda is 0.5252397908133274
the regulation term lambda/alpha is 1.6706831552180725
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3200174095673692
the lambda is 0.5568817017339897
the regulation term lambda/alpha is 1.7401606446562916
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.317576538372298
the lambda is 0.5191267337937432
the regulation term lambda/alpha is 1.6346507725490917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35450534609430645
the lambda is 0.5372252049224657
the regulation term lambda/alpha is 1.515422012224187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31772364333702435
the lambda is 0.5058177924921684
the regulation term lambda/alpha is 1.5920055151691175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3428473696518058
the lambda is 0.5359250767801335
the regulation term lambda/alpha is 1.5631593654179599
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3489731706888094
the lambda is 0.5577215349602881
the regulation term lambda/alpha is 1.5981788338038925
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32512777214022426
the lambda is 0.509731871488051
the regulation term lambda/alpha is 1.5677893897916813
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34064826062450715
the lambda is 0.5335876061591917
the regulation term lambda/alpha is 1.5663887588357877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32662437593949145
the lambda is 0.517388420779162
the regulation term lambda/alpha is 1.5840471774066562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012854258651248
the lambda is 0.4895908032424967
the regulation term lambda/alpha is 1.6250065924585073
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30603051443194307
the lambda is 0.5198436901373265
the regulation term lambda/alpha is 1.6986661970694836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3519576060006102
the lambda is 0.567725278334346
the regulation term lambda/alpha is 1.6130501760867237
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30308081480156046
the lambda is 0.48058453837562704
the regulation term lambda/alpha is 1.585664664027928
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2993910174702095
the lambda is 0.5401012941465321
the regulation term lambda/alpha is 1.803999661413603
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.36729515482703523
the lambda is 0.5610399458486479
the regulation term lambda/alpha is 1.527490734564277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3007456419445724
the lambda is 0.4863802027968344
the regulation term lambda/alpha is 1.617247716881213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3804139313055422
the lambda is 0.5605456241577644
the regulation term lambda/alpha is 1.4735149741599327
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32952050277230505
the lambda is 0.5068573628796519
the regulation term lambda/alpha is 1.5381663921224489
1200
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2986885031729567
the lambda is 0.545591608151352
the regulation term lambda/alpha is 1.826624066060638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32511906772727434
the lambda is 0.5297914799143697
the regulation term lambda/alpha is 1.629530632016897
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2930044247732168
the lambda is 0.5249837321215075
the regulation term lambda/alpha is 1.791726293989727
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34557787778587534
the lambda is 0.5163155068395884
the regulation term lambda/alpha is 1.4940641170309645
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33941164705737725
the lambda is 0.5089218707190181
the regulation term lambda/alpha is 1.4994237090307783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27821203510277837
the lambda is 0.5021724537741703
the regulation term lambda/alpha is 1.8049990310040163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31654178955976886
the lambda is 0.5339139512987013
the regulation term lambda/alpha is 1.6867092084152404
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33310486859405297
the lambda is 0.5226585281539314
the regulation term lambda/alpha is 1.5690510029467117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.373997766579401
the lambda is 0.5397453465274384
the regulation term lambda/alpha is 1.443177993986359
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27797370726887854
the lambda is 0.49576260518633164
the regulation term lambda/alpha is 1.7834874026657137
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3024590502530606
the lambda is 0.4751763418060695
the regulation term lambda/alpha is 1.5710435558416926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3025317415841922
the lambda is 0.5336069799952387
the regulation term lambda/alpha is 1.763804938949654
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3080910398620389
the lambda is 0.5283402824148014
the regulation term lambda/alpha is 1.7148836352118146
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35332377937585296
the lambda is 0.5175970962809487
the regulation term lambda/alpha is 1.464937053473403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30812265674912215
the lambda is 0.5232145233818207
the regulation term lambda/alpha is 1.6980722187133075
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3271971359084596
the lambda is 0.5170419112998791
the regulation term lambda/alpha is 1.5802152725582923
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3250929270420372
the lambda is 0.5119958389201055
the regulation term lambda/alpha is 1.574921495766348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.322007668657157
the lambda is 0.5001985336346025
the regulation term lambda/alpha is 1.5533746004265696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3254616385809908
the lambda is 0.5769271883868549
the regulation term lambda/alpha is 1.7726426711985201
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2876003222664422
the lambda is 0.4861732894343863
the regulation term lambda/alpha is 1.6904476518074958
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3179359345955692
the lambda is 0.5014659419507411
the regulation term lambda/alpha is 1.577254683679061
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3208553198077701
the lambda is 0.49269649985007347
the regulation term lambda/alpha is 1.535572170488731
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.326848530872555
the lambda is 0.5633360662473377
the regulation term lambda/alpha is 1.7235386212183834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30324719321202503
the lambda is 0.4773651717226875
the regulation term lambda/alpha is 1.5741783680382568
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3055491292139013
the lambda is 0.5125128815238622
the regulation term lambda/alpha is 1.6773501624515343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2860115713298681
the lambda is 0.5265891138082475
the regulation term lambda/alpha is 1.841146186358006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3201341790306797
the lambda is 0.5308570741748345
the regulation term lambda/alpha is 1.6582330439761024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3208576137557186
the lambda is 0.520686505156664
the regulation term lambda/alpha is 1.6227961651334943
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29020122521623104
the lambda is 0.5219684840823161
the regulation term lambda/alpha is 1.798643281720791
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30360570054613584
the lambda is 0.499352901205495
the regulation term lambda/alpha is 1.644741519369507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31066676616093875
the lambda is 0.5186972657534777
the regulation term lambda/alpha is 1.6696258571950702
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3226529301534064
the lambda is 0.5228275825373793
the regulation term lambda/alpha is 1.6204024004641742
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3710155194311379
the lambda is 0.5154000954417838
the regulation term lambda/alpha is 1.3891604756373117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32077494508567184
the lambda is 0.5338205546436372
the regulation term lambda/alpha is 1.6641591334418766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3249810990440694
the lambda is 0.48668775211022053
the regulation term lambda/alpha is 1.4975878706232781
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33074788248542
the lambda is 0.534399653808254
the regulation term lambda/alpha is 1.6157311417762787
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34793232458052537
the lambda is 0.5377944468691498
the regulation term lambda/alpha is 1.5456869306912666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3253783515212939
the lambda is 0.5401174110621518
the regulation term lambda/alpha is 1.659967261303199
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3250527322450202
the lambda is 0.5177174653978635
the regulation term lambda/alpha is 1.5927183931732507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3599115780482367
the lambda is 0.5205980274571351
the regulation term lambda/alpha is 1.4464609065378904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30254957230396123
the lambda is 0.47357523004679725
the regulation term lambda/alpha is 1.565281439469405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3198589476417436
the lambda is 0.5067437645048634
the regulation term lambda/alpha is 1.5842725934071387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3076885100374191
the lambda is 0.493485317243595
the regulation term lambda/alpha is 1.6038470763291763
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29872932133380437
the lambda is 0.49961638038074685
the regulation term lambda/alpha is 1.6724718489299832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2957732886780328
the lambda is 0.5167343719980253
the regulation term lambda/alpha is 1.7470623338151472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31585260701857976
the lambda is 0.5441250894130668
the regulation term lambda/alpha is 1.7227183734502438
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33535703183076143
the lambda is 0.5141833123164813
the regulation term lambda/alpha is 1.5332414815025106
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3077570069091664
the lambda is 0.49474880793821296
the regulation term lambda/alpha is 1.6075955927275984
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.329096679187745
the lambda is 0.484161729844041
the regulation term lambda/alpha is 1.4711838814023206
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36656681031286564
the lambda is 0.5253336548106239
the regulation term lambda/alpha is 1.433118438524891
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.275232513669657
the lambda is 0.4805101954395725
the regulation term lambda/alpha is 1.7458336917864887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3572204151473376
the lambda is 0.4990620217785447
the regulation term lambda/alpha is 1.3970702698296336
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30936207249391595
the lambda is 0.5105827028057616
the regulation term lambda/alpha is 1.6504372972734171
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3311086110243769
the lambda is 0.506944691460208
the regulation term lambda/alpha is 1.531052574838912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29913737492848697
the lambda is 0.5174287879572693
the regulation term lambda/alpha is 1.7297363396364898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31940263768121707
the lambda is 0.5551062366000483
the regulation term lambda/alpha is 1.737951322600152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3342689984852868
the lambda is 0.4981350815972819
the regulation term lambda/alpha is 1.4902221978542467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3306733743821555
the lambda is 0.4910461210142289
the regulation term lambda/alpha is 1.4849883875038952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.324966055791163
the lambda is 0.4664364078899721
the regulation term lambda/alpha is 1.4353388594829855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3543230866656811
the lambda is 0.5452165080982173
the regulation term lambda/alpha is 1.5387552451885596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257075591653797
the lambda is 0.5461903071005777
the regulation term lambda/alpha is 1.676934697187199
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34177812566447563
the lambda is 0.5136333033568459
the regulation term lambda/alpha is 1.5028267311088273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31093577344948486
the lambda is 0.4890489574791547
the regulation term lambda/alpha is 1.5728295012622806
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30720644428627497
the lambda is 0.5108205408220463
the regulation term lambda/alpha is 1.6627924001035292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31100176386463135
the lambda is 0.49584310431149936
the regulation term lambda/alpha is 1.5943417752682691
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34598329841796494
the lambda is 0.5600106568172857
the regulation term lambda/alpha is 1.6186060407481435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3519709866439093
the lambda is 0.5225826179271826
the regulation term lambda/alpha is 1.4847320880339547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3197975035569893
the lambda is 0.5055431434369572
the regulation term lambda/alpha is 1.5808226700145804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2913757758576083
the lambda is 0.4841858424442213
the regulation term lambda/alpha is 1.661723048249683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026781256607446
the lambda is 0.5176007952021847
the regulation term lambda/alpha is 1.7100700424659536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32158370270449704
the lambda is 0.4933415537367015
the regulation term lambda/alpha is 1.534099985750934
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.309556690802584
the lambda is 0.5098341734888888
the regulation term lambda/alpha is 1.6469815986436853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3253505709755757
the lambda is 0.4926818676100613
the regulation term lambda/alpha is 1.5143107514234155
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146997766567835
the lambda is 0.5292876760449879
the regulation term lambda/alpha is 1.6818813208826562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367347938611077
the lambda is 0.5211373862230834
the regulation term lambda/alpha is 1.547619657141922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3129612033728287
the lambda is 0.53180592338656
the regulation term lambda/alpha is 1.6992710842596772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.315815861739064
the lambda is 0.5519883735228661
the regulation term lambda/alpha is 1.7478171314236728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36250650458355804
the lambda is 0.5609563296075891
the regulation term lambda/alpha is 1.5474379701186527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3165413706525249
the lambda is 0.472729592123974
the regulation term lambda/alpha is 1.4934211953068866
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.284952587119009
the lambda is 0.5051566040804816
the regulation term lambda/alpha is 1.7727742330323377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2878556404681642
the lambda is 0.4977679002986295
the regulation term lambda/alpha is 1.7292275374179469
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367702160398488
the lambda is 0.5477432193420249
the regulation term lambda/alpha is 1.6264598033135222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32638757747788444
the lambda is 0.5199918538124324
the regulation term lambda/alpha is 1.5931729321029882
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30997319731438777
the lambda is 0.4722217952003905
the regulation term lambda/alpha is 1.5234278295405115
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3029604970584397
the lambda is 0.4786296338393162
the regulation term lambda/alpha is 1.5798417235465214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30398578793267755
the lambda is 0.5164846758066489
the regulation term lambda/alpha is 1.699042179962152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31524317238881555
the lambda is 0.532351097151627
the regulation term lambda/alpha is 1.6886998475419295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33169260231742215
the lambda is 0.5519135356160002
the regulation term lambda/alpha is 1.6639307954412312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3140016937464743
the lambda is 0.5482181443487913
the regulation term lambda/alpha is 1.745908239563268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3383052741821927
the lambda is 0.5652660870011286
the regulation term lambda/alpha is 1.67087577445425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32914450402634754
the lambda is 0.547023192518257
the regulation term lambda/alpha is 1.6619545088149752
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3331243732265118
the lambda is 0.5017525367547555
the regulation term lambda/alpha is 1.506201818542959
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31521060392580824
the lambda is 0.5102606075543258
the regulation term lambda/alpha is 1.6187926459302329
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33798890623352235
the lambda is 0.5405448691851419
the regulation term lambda/alpha is 1.5992976669230383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32348555543870394
the lambda is 0.5107700558477098
the regulation term lambda/alpha is 1.5789578460621365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3116062920296431
the lambda is 0.47112187115690324
the regulation term lambda/alpha is 1.511913857991306
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34613412632953494
the lambda is 0.5296011981488782
the regulation term lambda/alpha is 1.5300461811288566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3004390794138425
the lambda is 0.5238206808783135
the regulation term lambda/alpha is 1.7435171279990909
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3229003442947439
the lambda is 0.5010766522399902
the regulation term lambda/alpha is 1.551799683999738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30351430571440774
the lambda is 0.49855689212138643
the regulation term lambda/alpha is 1.6426141461368358
1210
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012268088447276
the lambda is 0.5126492582108655
the regulation term lambda/alpha is 1.701871291526111
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3410942208848228
the lambda is 0.5271250759330252
the regulation term lambda/alpha is 1.5453943328785373
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31891963860552364
the lambda is 0.5097699441935751
the regulation term lambda/alpha is 1.598427573863261
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30378260912730093
the lambda is 0.5425580316715525
the regulation term lambda/alpha is 1.7860075441125467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3376655237099149
the lambda is 0.5070281807976053
the regulation term lambda/alpha is 1.5015692903051248
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32922246450350834
the lambda is 0.5335917581299128
the regulation term lambda/alpha is 1.620763513008167
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3197417678540846
the lambda is 0.5345541267648388
the regulation term lambda/alpha is 1.6718307725401227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32871547972559695
the lambda is 0.5358516641020931
the regulation term lambda/alpha is 1.6301382111648894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32153656113668566
the lambda is 0.5267533193984559
the regulation term lambda/alpha is 1.6382377093799056
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33761446799135236
the lambda is 0.4826817295711073
the regulation term lambda/alpha is 1.429683189949877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3295621734748747
the lambda is 0.5528046314893577
the regulation term lambda/alpha is 1.677391023552958
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3581265647018652
the lambda is 0.5629067855623291
the regulation term lambda/alpha is 1.571809636715836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33232428783226164
the lambda is 0.5178025502403282
the regulation term lambda/alpha is 1.558124305683265
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3546890218387757
the lambda is 0.5406045012867736
the regulation term lambda/alpha is 1.5241647415084247
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3204929919089434
the lambda is 0.5475330211525324
the regulation term lambda/alpha is 1.7084087171182023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34275531798496717
the lambda is 0.5128796329936273
the regulation term lambda/alpha is 1.4963433273882027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3406468349282921
the lambda is 0.5249243685198735
the regulation term lambda/alpha is 1.5409635866141915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3557596013759748
the lambda is 0.5717779917825924
the regulation term lambda/alpha is 1.6072032618968572
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32820210010600903
the lambda is 0.5631796495707189
the regulation term lambda/alpha is 1.7159538265867655
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2992433243121571
the lambda is 0.5577253114423485
the regulation term lambda/alpha is 1.8637853082415121
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3530422110295595
the lambda is 0.5279629748026032
the regulation term lambda/alpha is 1.4954669960369071
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31352969349992166
the lambda is 0.5398330840612952
the regulation term lambda/alpha is 1.7217925295532814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31141229648640323
the lambda is 0.5163105150717526
the regulation term lambda/alpha is 1.6579644442341268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3440494976884648
the lambda is 0.535813154164948
the regulation term lambda/alpha is 1.5573722902223919
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29614020467315894
the lambda is 0.5337298529621067
the regulation term lambda/alpha is 1.8022877155473314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2955341436567332
the lambda is 0.4572810340685898
the regulation term lambda/alpha is 1.5473035650314833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3223979882773389
the lambda is 0.5329124000610158
the regulation term lambda/alpha is 1.6529644087064974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3241344977531869
the lambda is 0.5960318198549246
the regulation term lambda/alpha is 1.8388410489671934
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33716037800141907
the lambda is 0.48974638204798265
the regulation term lambda/alpha is 1.4525620861829778
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30966657606216674
the lambda is 0.5456422584299556
the regulation term lambda/alpha is 1.7620314900256329
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32916298315242676
the lambda is 0.5053745227297395
the regulation term lambda/alpha is 1.5353321867778607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34678209605686816
the lambda is 0.5451450801619157
the regulation term lambda/alpha is 1.572010453713038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3353384589334985
the lambda is 0.5043446766591588
the regulation term lambda/alpha is 1.5039869815802316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3135364128056168
the lambda is 0.46780672706150067
the regulation term lambda/alpha is 1.492033167297627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29335948406207313
the lambda is 0.5185306663488566
the regulation term lambda/alpha is 1.7675606023330017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30184795070247805
the lambda is 0.48588755206083495
the regulation term lambda/alpha is 1.6097096267509827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31401023629173264
the lambda is 0.5073946283174129
the regulation term lambda/alpha is 1.6158537833334057
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3110862114011702
the lambda is 0.5409866897056924
the regulation term lambda/alpha is 1.7390249708240761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32620677598144926
the lambda is 0.5597740452831771
the regulation term lambda/alpha is 1.7160098639858123
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2941964796345084
the lambda is 0.4947365026288804
the regulation term lambda/alpha is 1.6816533741107664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3434921480782918
the lambda is 0.5333174078491527
the regulation term lambda/alpha is 1.5526334759989746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29869271084818283
the lambda is 0.5062344681736766
the regulation term lambda/alpha is 1.6948336862193514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35601880917135914
the lambda is 0.5572218869283115
the regulation term lambda/alpha is 1.5651473252923254
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.361351659953047
the lambda is 0.5410025018726027
the regulation term lambda/alpha is 1.4971634610531441
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30300064834511237
the lambda is 0.5372454329422973
the regulation term lambda/alpha is 1.7730834434729799
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30824695459537726
the lambda is 0.5179092666706745
the regulation term lambda/alpha is 1.680176426561982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2880476273615206
the lambda is 0.5043855790253768
the regulation term lambda/alpha is 1.7510492401742175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30674345378640117
the lambda is 0.49695860942741593
the regulation term lambda/alpha is 1.6201115404192779
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298245307004641
the lambda is 0.5203377631363533
the regulation term lambda/alpha is 1.7446637077453033
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31122832928788996
the lambda is 0.5307121371745533
the regulation term lambda/alpha is 1.7052179613239455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3239276041501902
the lambda is 0.4838204532828224
the regulation term lambda/alpha is 1.4936067413955167
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31657251939756775
the lambda is 0.49203385384724363
the regulation term lambda/alpha is 1.5542532080282139
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2729068592343184
the lambda is 0.4929377590730801
the regulation term lambda/alpha is 1.8062490640802937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30478295306582015
the lambda is 0.4944425265627817
the regulation term lambda/alpha is 1.6222774980987968
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3479490876073211
the lambda is 0.5539984022667503
the regulation term lambda/alpha is 1.5921823680479565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29337712692247203
the lambda is 0.4963397497191326
the regulation term lambda/alpha is 1.6918147468609424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3313116496751963
the lambda is 0.544462696134944
the regulation term lambda/alpha is 1.6433551209826516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29515667831135156
the lambda is 0.48088656046423395
the regulation term lambda/alpha is 1.6292586134776925
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3556406995732103
the lambda is 0.5271858225847335
the regulation term lambda/alpha is 1.48235515006406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31024131406591626
the lambda is 0.5065796914615796
the regulation term lambda/alpha is 1.632856968088872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31403041203932386
the lambda is 0.4983345286470038
the regulation term lambda/alpha is 1.5868989420827202
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29410605424533726
the lambda is 0.5194954828567868
the regulation term lambda/alpha is 1.766354263565871
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3103688679748682
the lambda is 0.51421498231896
the regulation term lambda/alpha is 1.6567866025808944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37753680698488884
the lambda is 0.553275245357214
the regulation term lambda/alpha is 1.4654869011999647
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31069110616262646
the lambda is 0.5112077242317422
the regulation term lambda/alpha is 1.6453889863334499
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3008618026771203
the lambda is 0.49692684040572505
the regulation term lambda/alpha is 1.6516780660887629
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3375829405233813
the lambda is 0.5327515319419129
the regulation term lambda/alpha is 1.578135231347729
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3445628975262215
the lambda is 0.4947855831228538
the regulation term lambda/alpha is 1.435980445588168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3582750963285327
the lambda is 0.5343030816800867
the regulation term lambda/alpha is 1.4913207397204606
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3096594766005619
the lambda is 0.5221942187582725
the regulation term lambda/alpha is 1.6863498720947103
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3120961848547454
the lambda is 0.5202045782315098
the regulation term lambda/alpha is 1.6668085144123803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.287681520327245
the lambda is 0.5054726828219653
the regulation term lambda/alpha is 1.7570564916612559
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29901873928678707
the lambda is 0.47457483027883884
the regulation term lambda/alpha is 1.5871073211357398
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.329075855697938
the lambda is 0.5396826112737718
the regulation term lambda/alpha is 1.639994554231751
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3414263631046439
the lambda is 0.5319372524939612
the regulation term lambda/alpha is 1.5579852933937837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30952091880729593
the lambda is 0.523514117019087
the regulation term lambda/alpha is 1.6913690972370778
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2846723196282794
the lambda is 0.49540469999079195
the regulation term lambda/alpha is 1.740262982497503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3315569230217519
the lambda is 0.5051268630864032
the regulation term lambda/alpha is 1.5234996708340915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3116519199133943
the lambda is 0.5291899745950519
the regulation term lambda/alpha is 1.6980160903295887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30475051262006125
the lambda is 0.5008805163453038
the regulation term lambda/alpha is 1.6435756318801074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3243881233918037
the lambda is 0.5385848242064267
the regulation term lambda/alpha is 1.6603099354408584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2983636821634604
the lambda is 0.5380003772835272
the regulation term lambda/alpha is 1.803169787228931
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2934201280567966
the lambda is 0.49684497595928107
the regulation term lambda/alpha is 1.6932886617209437
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2740324198771145
the lambda is 0.5130538607195188
the regulation term lambda/alpha is 1.8722378211657935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32739496048537214
the lambda is 0.5306713743554299
the regulation term lambda/alpha is 1.620890479098074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3528449832331023
the lambda is 0.518873267082992
the regulation term lambda/alpha is 1.4705417158792513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3310703643996767
the lambda is 0.5487084532313011
the regulation term lambda/alpha is 1.6573771386220668
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.319998980315561
the lambda is 0.4921813338457172
the regulation term lambda/alpha is 1.538071569354258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31332358440207364
the lambda is 0.5372990538855787
the regulation term lambda/alpha is 1.7148375693164795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2766814181296013
the lambda is 0.5014488505188068
the regulation term lambda/alpha is 1.8123690918915323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3123574985260652
the lambda is 0.49773090165078
the regulation term lambda/alpha is 1.5934655130721824
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2869954258861478
the lambda is 0.5047729260789162
the regulation term lambda/alpha is 1.7588187146897651
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31657180093862086
the lambda is 0.5234014804401176
the regulation term lambda/alpha is 1.6533420819171392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3262575195441817
the lambda is 0.5239465883234302
the regulation term lambda/alpha is 1.6059295401235267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3444720844838064
the lambda is 0.5433815149190714
the regulation term lambda/alpha is 1.5774326553437037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30979754320708575
the lambda is 0.5101981737157639
the regulation term lambda/alpha is 1.6468761128125518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31421334534114237
the lambda is 0.5386002660084871
the regulation term lambda/alpha is 1.7141228213070554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2923056124578891
the lambda is 0.4909545961029128
the regulation term lambda/alpha is 1.679593463754111
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3163065807009081
the lambda is 0.5171817820355564
the regulation term lambda/alpha is 1.6350648819557474
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3440693827997181
the lambda is 0.5133400658284891
the regulation term lambda/alpha is 1.4919667122119467
1220
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3487767003184278
the lambda is 0.5123479437982363
the regulation term lambda/alpha is 1.468985581119583
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29310316986388185
the lambda is 0.5059305697409358
the regulation term lambda/alpha is 1.726117701067142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.364132580536891
the lambda is 0.5327778658020468
the regulation term lambda/alpha is 1.4631425318121731
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3452623975798688
the lambda is 0.5123135390269113
the regulation term lambda/alpha is 1.483838212959171
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33789306875188024
the lambda is 0.5259309222353644
the regulation term lambda/alpha is 1.5565010675657365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3036161922879628
the lambda is 0.4706883549282835
the regulation term lambda/alpha is 1.5502742175287612
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31963322950820006
the lambda is 0.5395661278652517
the regulation term lambda/alpha is 1.6880789544173767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33260517722880706
the lambda is 0.5195910144164797
the regulation term lambda/alpha is 1.5621855881667188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298937194913803
the lambda is 0.5302302935380913
the regulation term lambda/alpha is 1.773718033619003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3084153544390824
the lambda is 0.5188670366533704
the regulation term lambda/alpha is 1.6823644775956055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3198063649511356
the lambda is 0.5119078123048415
the regulation term lambda/alpha is 1.6006805004742721
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32119596559360125
the lambda is 0.5352542213456931
the regulation term lambda/alpha is 1.6664412965352522
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3172843096097992
the lambda is 0.5484027609931007
the regulation term lambda/alpha is 1.7284269797883618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3386639291965957
the lambda is 0.5224011238932974
the regulation term lambda/alpha is 1.542535472060981
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2960274688732995
the lambda is 0.49655492950338054
the regulation term lambda/alpha is 1.6773947748609346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33066409777572137
the lambda is 0.5131817738019825
the regulation term lambda/alpha is 1.551973066486513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32512567637467155
the lambda is 0.5499853990266497
the regulation term lambda/alpha is 1.6916086270370478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203913898503922
the lambda is 0.5592650262701991
the regulation term lambda/alpha is 1.7455682143373132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29978704115069876
the lambda is 0.5044820131274668
the regulation term lambda/alpha is 1.6828012684973621
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3136055911903911
the lambda is 0.4936071589209078
the regulation term lambda/alpha is 1.573974357559324
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32804589233440545
the lambda is 0.5450931260548684
the regulation term lambda/alpha is 1.661636797753919
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2948855606126322
the lambda is 0.47566951342745584
the regulation term lambda/alpha is 1.6130647849940174
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.27642307327962323
the lambda is 0.49900978665956763
the regulation term lambda/alpha is 1.8052392687016428
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32966402796856414
the lambda is 0.512166424122029
the regulation term lambda/alpha is 1.5536011838418347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2981079422753784
the lambda is 0.499322712713628
the regulation term lambda/alpha is 1.6749728601741736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3013642883402885
the lambda is 0.5344041648821277
the regulation term lambda/alpha is 1.7732829852709686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3521608726502118
the lambda is 0.49871200556727285
the regulation term lambda/alpha is 1.4161482558075804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3240649563946025
the lambda is 0.5141588852398138
the regulation term lambda/alpha is 1.586592055370963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2746571343694908
the lambda is 0.5121882302088189
the regulation term lambda/alpha is 1.8648276928418768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2996578622562738
the lambda is 0.5268540851470214
the regulation term lambda/alpha is 1.7581854224683902
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32743608131943674
the lambda is 0.5090764858575801
the regulation term lambda/alpha is 1.554735458005132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32879791890608034
the lambda is 0.49475316361909655
the regulation term lambda/alpha is 1.5047332576348227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3010121968038935
the lambda is 0.5122354521311635
the regulation term lambda/alpha is 1.7017099558423536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33380395380263844
the lambda is 0.5340720760668175
the regulation term lambda/alpha is 1.599957310219841
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3116736395038452
the lambda is 0.4909403056489662
the regulation term lambda/alpha is 1.5751742958772403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30579861377317363
the lambda is 0.5525554735156174
the regulation term lambda/alpha is 1.80692602460741
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.297949986956725
the lambda is 0.5075405425529435
the regulation term lambda/alpha is 1.7034420700500315
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31791530050620337
the lambda is 0.46561102048173886
the regulation term lambda/alpha is 1.4645756896266575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29523270203539437
the lambda is 0.47817837299278837
the regulation term lambda/alpha is 1.619666011577069
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30193952198686397
the lambda is 0.4719059468377397
the regulation term lambda/alpha is 1.5629154597994965
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30673733820821636
the lambda is 0.5414502798638746
the regulation term lambda/alpha is 1.7651919490033938
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29392912943180227
the lambda is 0.5124793499097876
the regulation term lambda/alpha is 1.7435473336734852
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235355523596181
the lambda is 0.49049721291230625
the regulation term lambda/alpha is 1.5160535197291267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32138123757704773
the lambda is 0.5097308259389272
the regulation term lambda/alpha is 1.5860628012446576
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3144318554205162
the lambda is 0.4972748782020621
the regulation term lambda/alpha is 1.5815028586623785
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27342241412556384
the lambda is 0.48712910445718033
the regulation term lambda/alpha is 1.7815990178240322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34658339414866945
the lambda is 0.5540312896961894
the regulation term lambda/alpha is 1.5985511684917417
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31930870600779204
the lambda is 0.511294667076172
the regulation term lambda/alpha is 1.6012550157767855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31322942719380653
the lambda is 0.49223874338193785
the regulation term lambda/alpha is 1.571495845048338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35800963411098347
the lambda is 0.5186349249298667
the regulation term lambda/alpha is 1.4486619227936453
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31556313899743976
the lambda is 0.5729030511226803
the regulation term lambda/alpha is 1.8154942080460428
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3427863241265491
the lambda is 0.46725899315803926
the regulation term lambda/alpha is 1.3631202888524154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31947231028162504
the lambda is 0.5314374612251069
the regulation term lambda/alpha is 1.6634852039496877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3175586393812404
the lambda is 0.4938317428096011
the regulation term lambda/alpha is 1.5550883571356364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.290514226906907
the lambda is 0.5194840098567545
the regulation term lambda/alpha is 1.7881534250066833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3400942687579115
the lambda is 0.5330285641073105
the regulation term lambda/alpha is 1.567296520620684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3201917355487643
the lambda is 0.5254550703839802
the regulation term lambda/alpha is 1.6410638128539545
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2985497106767563
the lambda is 0.525398473759827
the regulation term lambda/alpha is 1.7598358161823269
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32692626447220124
the lambda is 0.4866624486406787
the regulation term lambda/alpha is 1.4886000347092332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32733571356502156
the lambda is 0.49585437419715855
the regulation term lambda/alpha is 1.5148190486054698
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32310192741025806
the lambda is 0.531327642273119
the regulation term lambda/alpha is 1.6444582876117193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30757702431776396
the lambda is 0.5267099089075865
the regulation term lambda/alpha is 1.7124488088012453
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32083186676422487
the lambda is 0.4931680154966179
the regulation term lambda/alpha is 1.5371540878108614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.310346261201924
the lambda is 0.5445967436581501
the regulation term lambda/alpha is 1.754803623375418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30769403634918335
the lambda is 0.5063049550973396
the regulation term lambda/alpha is 1.6454818595273806
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33863605804551816
the lambda is 0.5256872378769979
the regulation term lambda/alpha is 1.5523663986377287
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236245632739978
the lambda is 0.5263849903426633
the regulation term lambda/alpha is 1.626529781971456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29931073619377946
the lambda is 0.5310825845856243
the regulation term lambda/alpha is 1.7743519371847434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32987689859321756
the lambda is 0.5562483693684124
the regulation term lambda/alpha is 1.6862301414272152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31823587132195086
the lambda is 0.49543657827009463
the regulation term lambda/alpha is 1.5568219139220623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3207262279480991
the lambda is 0.5445522355431858
the regulation term lambda/alpha is 1.697872478428259
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31983575520728585
the lambda is 0.550288624233758
the regulation term lambda/alpha is 1.720535041109195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32120803371200146
the lambda is 0.5263312447603213
the regulation term lambda/alpha is 1.6385992550617072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2867279051689226
the lambda is 0.5276181211209492
the regulation term lambda/alpha is 1.840135234867038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3039800236836449
the lambda is 0.5392994808432846
the regulation term lambda/alpha is 1.7741280308752756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3066496381193632
the lambda is 0.5197388490194346
the regulation term lambda/alpha is 1.6948947085244122
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34501221937930654
the lambda is 0.520883208919995
the regulation term lambda/alpha is 1.5097529294964935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3126279432678762
the lambda is 0.4978991066828762
the regulation term lambda/alpha is 1.592625091277429
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35616775453412114
the lambda is 0.5238620142483627
the regulation term lambda/alpha is 1.4708294268064523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2871371494157758
the lambda is 0.4836381270169945
the regulation term lambda/alpha is 1.6843453659724277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2819535243828829
the lambda is 0.525883097853107
the regulation term lambda/alpha is 1.8651410689194876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33445114413749816
the lambda is 0.5449120224446679
the regulation term lambda/alpha is 1.6292724124174198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.292269417204894
the lambda is 0.5332380489347991
the regulation term lambda/alpha is 1.8244743293171013
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29110342818018803
the lambda is 0.48682546417052336
the regulation term lambda/alpha is 1.6723453489155984
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33612413310401207
the lambda is 0.5452569641252898
the regulation term lambda/alpha is 1.6221892759975152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3441951734255145
the lambda is 0.5019484201499441
the regulation term lambda/alpha is 1.45832498217343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34292641829630954
the lambda is 0.5131870496092031
the regulation term lambda/alpha is 1.4964931898766047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31975205677935403
the lambda is 0.48855608017062613
the regulation term lambda/alpha is 1.5279216186801758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28203784837201423
the lambda is 0.5033822922632096
the regulation term lambda/alpha is 1.7848040437439343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29520023371215565
the lambda is 0.48244737215238764
the regulation term lambda/alpha is 1.6343055223418734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3051191358527699
the lambda is 0.5326379223087641
the regulation term lambda/alpha is 1.7456719678367847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3382684653034192
the lambda is 0.5111083285283394
the regulation term lambda/alpha is 1.51095470300457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35299450952350936
the lambda is 0.4977944266769276
the regulation term lambda/alpha is 1.4102044458110037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2878927995822328
the lambda is 0.5063480087968752
the regulation term lambda/alpha is 1.7588074781017355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32771619867303736
the lambda is 0.5503254030368402
the regulation term lambda/alpha is 1.6792743393984628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3290948825498918
the lambda is 0.5622120795588446
the regulation term lambda/alpha is 1.7083586204766084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30422464342531286
the lambda is 0.4812014027450803
the regulation term lambda/alpha is 1.5817305177094083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35629402484795675
the lambda is 0.5272562704789207
the regulation term lambda/alpha is 1.4798347255582507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30914282084233696
the lambda is 0.4963126881638046
the regulation term lambda/alpha is 1.6054478859042447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3395239402290873
the lambda is 0.555229373615421
the regulation term lambda/alpha is 1.6353173011623
1230
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30215875339854364
the lambda is 0.5143966432607968
the regulation term lambda/alpha is 1.702405233921236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36152478481014816
the lambda is 0.5438275043517394
the regulation term lambda/alpha is 1.504260640490599
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32091977465879185
the lambda is 0.49286735349314525
the regulation term lambda/alpha is 1.5357961472370203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32285350642888944
the lambda is 0.5341034510994943
the regulation term lambda/alpha is 1.6543213577181142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2931464456103912
the lambda is 0.5074871934940385
the regulation term lambda/alpha is 1.7311729379400993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32920385399997476
the lambda is 0.5514855218478614
the regulation term lambda/alpha is 1.6752097982665284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3180382034859464
the lambda is 0.5307994183405512
the regulation term lambda/alpha is 1.6689800549826284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3110611772162669
the lambda is 0.4749818873692951
the regulation term lambda/alpha is 1.5269725769701612
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31542672602755656
the lambda is 0.5383556997068283
the regulation term lambda/alpha is 1.7067535984880242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32845650414827343
the lambda is 0.5329978338121224
the regulation term lambda/alpha is 1.6227349042584767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31884138313576604
the lambda is 0.5821695976177075
the regulation term lambda/alpha is 1.8258909552208706
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34372988913751445
the lambda is 0.5455423038955249
the regulation term lambda/alpha is 1.58712501046795
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32376285514933345
the lambda is 0.5422524711890799
the regulation term lambda/alpha is 1.6748446048233965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2925414793247869
the lambda is 0.49624603283038865
the regulation term lambda/alpha is 1.6963270780464053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3353119267534095
the lambda is 0.5005933708706771
the regulation term lambda/alpha is 1.4929184765885666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3117859740640359
the lambda is 0.5230886791211626
the regulation term lambda/alpha is 1.6777171605985344
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2901970035149397
the lambda is 0.5005536750320446
the regulation term lambda/alpha is 1.7248754086679448
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3475109911782458
the lambda is 0.5458458725686277
the regulation term lambda/alpha is 1.5707298083376353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30200418271169693
the lambda is 0.4910734524614834
the regulation term lambda/alpha is 1.6260485138057779
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32727014874058497
the lambda is 0.49967332718633545
the regulation term lambda/alpha is 1.5267916402067216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3095788549701738
the lambda is 0.5099572246180823
the regulation term lambda/alpha is 1.6472611628052372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3506755662330096
the lambda is 0.5447519676506738
the regulation term lambda/alpha is 1.5534357682870563
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33013557067007043
the lambda is 0.5768901169208758
the regulation term lambda/alpha is 1.7474339882551035
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3179390467736893
the lambda is 0.4919580979487287
the regulation term lambda/alpha is 1.547334632033753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31136441818902727
the lambda is 0.5200576425863417
the regulation term lambda/alpha is 1.6702539282141677
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3004276306725838
the lambda is 0.4966997563975508
the regulation term lambda/alpha is 1.6533091689521426
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3168161902982984
the lambda is 0.5100485137443511
the regulation term lambda/alpha is 1.6099193455489593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31896782483382574
the lambda is 0.5070017884960921
the regulation term lambda/alpha is 1.5895076212161128
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32565235359878014
the lambda is 0.5017659203640308
the regulation term lambda/alpha is 1.5408023765804908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.303458411828481
the lambda is 0.5413829168816122
the regulation term lambda/alpha is 1.7840432025578832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2994678852527459
the lambda is 0.5146173248773064
the regulation term lambda/alpha is 1.7184391055587744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32818308406856816
the lambda is 0.49602093575032835
the regulation term lambda/alpha is 1.5114153039243587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3334604515324431
the lambda is 0.547001394775707
the regulation term lambda/alpha is 1.6403786183996336
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30668322592613256
the lambda is 0.5388770135504901
the regulation term lambda/alpha is 1.7571127730353389
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32482200670125444
the lambda is 0.5283168425438802
the regulation term lambda/alpha is 1.626481062380063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190838263163829
the lambda is 0.48851468132089476
the regulation term lambda/alpha is 1.530991673756962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3596704512728231
the lambda is 0.4970220093659782
the regulation term lambda/alpha is 1.3818816853235711
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3238136477782565
the lambda is 0.5019347403606178
the regulation term lambda/alpha is 1.550072839129796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29209702256191256
the lambda is 0.5074989071164185
the regulation term lambda/alpha is 1.737432660782599
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32224918420775417
the lambda is 0.559091214570471
the regulation term lambda/alpha is 1.7349654924495468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203972208070817
the lambda is 0.4932983533264894
the regulation term lambda/alpha is 1.5396461682278926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30206087672840065
the lambda is 0.4727816279256905
the regulation term lambda/alpha is 1.5651865711519939
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32249049482496356
the lambda is 0.5677083379908441
the regulation term lambda/alpha is 1.7603878163881268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2877365508082761
the lambda is 0.4816230942082807
the regulation term lambda/alpha is 1.6738335566175415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35485574782689566
the lambda is 0.5485919944434791
the regulation term lambda/alpha is 1.5459577527009398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27976378208053293
the lambda is 0.531045711503417
the regulation term lambda/alpha is 1.8981932098363965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32055857991994613
the lambda is 0.5267731464937038
the regulation term lambda/alpha is 1.6432976045291194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3114607919548384
the lambda is 0.5049929762780229
the regulation term lambda/alpha is 1.6213693322633256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29197332974085655
the lambda is 0.5151566141111401
the regulation term lambda/alpha is 1.7643961336070382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29932866349158965
the lambda is 0.5309243680241558
the regulation term lambda/alpha is 1.7737170968896312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3923626640274951
the lambda is 0.5726573155745976
the regulation term lambda/alpha is 1.459510213577478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3579669978727865
the lambda is 0.5361829349534217
the regulation term lambda/alpha is 1.4978557748051657
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31438589913698006
the lambda is 0.5192150277851867
the regulation term lambda/alpha is 1.6515213602470167
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3527112049612386
the lambda is 0.5543363340781654
the regulation term lambda/alpha is 1.571643674147195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31118613055174177
the lambda is 0.5282417914605959
the regulation term lambda/alpha is 1.6975107165734165
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3250944466497422
the lambda is 0.5160111865535635
the regulation term lambda/alpha is 1.5872654604571441
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28039584214938906
the lambda is 0.47400959981389956
the regulation term lambda/alpha is 1.690501528768594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3042819732413085
the lambda is 0.5171095236230276
the regulation term lambda/alpha is 1.6994418634617499
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3354756106951133
the lambda is 0.521887616267799
the regulation term lambda/alpha is 1.5556648520184095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33333373337780287
the lambda is 0.5424036695828738
the regulation term lambda/alpha is 1.6272090558806707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2907473893162616
the lambda is 0.5049025559213454
the regulation term lambda/alpha is 1.736567805849275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300629953178794
the lambda is 0.49238399731005467
the regulation term lambda/alpha is 1.4917879444069335
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29578807354563397
the lambda is 0.49132497132293845
the regulation term lambda/alpha is 1.6610709330954048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2843089233094223
the lambda is 0.49939641270844887
the regulation term lambda/alpha is 1.756527395958445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3501883334823007
the lambda is 0.5598858283650054
the regulation term lambda/alpha is 1.5988134807275163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3380321843985357
the lambda is 0.5301909545327534
the regulation term lambda/alpha is 1.5684629422968346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35452397795350404
the lambda is 0.5556496319916532
the regulation term lambda/alpha is 1.5673118506656463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.324020184067989
the lambda is 0.5244331613244508
the regulation term lambda/alpha is 1.6185200401417255
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29539914066131684
the lambda is 0.5040785105487403
the regulation term lambda/alpha is 1.7064318786447659
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3078299739650285
the lambda is 0.4918148145964194
the regulation term lambda/alpha is 1.597683319338788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32911189336318447
the lambda is 0.5485888291906762
the regulation term lambda/alpha is 1.6668763428287674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3030065751527572
the lambda is 0.5144506661038784
the regulation term lambda/alpha is 1.6978201408485083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29383101897561453
the lambda is 0.5232051063748431
the regulation term lambda/alpha is 1.7806326513752608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3123099538598557
the lambda is 0.48663016218024857
the regulation term lambda/alpha is 1.558164112817923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35015224818297674
the lambda is 0.5378314181596536
the regulation term lambda/alpha is 1.5359930457410704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33023436437842757
the lambda is 0.4925144543263698
the regulation term lambda/alpha is 1.4914088521749953
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3161175245562037
the lambda is 0.5376862001147432
the regulation term lambda/alpha is 1.7009060186384766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3005666856095069
the lambda is 0.5183767259134504
the regulation term lambda/alpha is 1.7246646109905874
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28035302359327446
the lambda is 0.49185036435605634
the regulation term lambda/alpha is 1.7543965035654983
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3160019795843402
the lambda is 0.5130842556498422
the regulation term lambda/alpha is 1.623674181803349
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3160224769873203
the lambda is 0.5028932500609501
the regulation term lambda/alpha is 1.5913211454295626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2962578874003905
the lambda is 0.48120787385162855
the regulation term lambda/alpha is 1.6242871306284563
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30153647371565795
the lambda is 0.5256778195444077
the regulation term lambda/alpha is 1.743330792015927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3592095729918581
the lambda is 0.5226920174062284
the regulation term lambda/alpha is 1.4551171703268495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31568750133252027
the lambda is 0.5354355671514611
the regulation term lambda/alpha is 1.696093652397963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282156262244577
the lambda is 0.4632208940627861
the regulation term lambda/alpha is 1.41133101854816
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3049899110029828
the lambda is 0.48673221481172824
the regulation term lambda/alpha is 1.5958961173865454
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3382109876110621
the lambda is 0.5076236181456437
the regulation term lambda/alpha is 1.5009081216764126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31518297402115913
the lambda is 0.49472290304169464
the regulation term lambda/alpha is 1.5696371435611953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34728017387856885
the lambda is 0.5361371605888838
the regulation term lambda/alpha is 1.5438173581897345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3199117593971304
the lambda is 0.5372679833356715
the regulation term lambda/alpha is 1.6794255526841093
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.329216991248573
the lambda is 0.5089920745188157
the regulation term lambda/alpha is 1.5460686661051
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3488836013159884
the lambda is 0.5557660883893525
the regulation term lambda/alpha is 1.5929842683720408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3401406817571383
the lambda is 0.5568174503475919
the regulation term lambda/alpha is 1.6370210333886541
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3289827002158557
the lambda is 0.5251398071083735
the regulation term lambda/alpha is 1.5962535621593874
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31277534658186956
the lambda is 0.5313988096408075
the regulation term lambda/alpha is 1.698979204877047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30669143542083505
the lambda is 0.5224950350602848
the regulation term lambda/alpha is 1.7036505579079146
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.282862344301667
the lambda is 0.4825907760259373
the regulation term lambda/alpha is 1.7060976328162787
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29881201860288864
the lambda is 0.49311147571426606
the regulation term lambda/alpha is 1.6502397661909143
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30222474566374885
the lambda is 0.4957431594971086
the regulation term lambda/alpha is 1.6403129346948504
1240
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3081940432311669
the lambda is 0.460115713096678
the regulation term lambda/alpha is 1.4929416164982765
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2782038531232985
the lambda is 0.45698730790263065
the regulation term lambda/alpha is 1.642634718290894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3003520698654011
the lambda is 0.5277937007768941
the regulation term lambda/alpha is 1.7572500865847807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3076755395406028
the lambda is 0.5283520109057586
the regulation term lambda/alpha is 1.7172376188716618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3132501216162953
the lambda is 0.4868913324551397
the regulation term lambda/alpha is 1.5543212878670167
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34199352238516867
the lambda is 0.534423593041075
the regulation term lambda/alpha is 1.5626716825331646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2975286063646824
the lambda is 0.4700336812211775
the regulation term lambda/alpha is 1.5797932406037445
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3242268556003745
the lambda is 0.53402074981756
the regulation term lambda/alpha is 1.647058966872771
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30939307893337015
the lambda is 0.5178567413349953
the regulation term lambda/alpha is 1.6737825652736051
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321749678514597
the lambda is 0.5694859685556745
the regulation term lambda/alpha is 1.7699659287455614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2886279700019479
the lambda is 0.5160665957884265
the regulation term lambda/alpha is 1.7879992565687368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3338824502247222
the lambda is 0.5194548053402277
the regulation term lambda/alpha is 1.5558014654277414
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3511615637839611
the lambda is 0.5124339083430681
the regulation term lambda/alpha is 1.459253976492495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34982397505573176
the lambda is 0.47033456304379323
the regulation term lambda/alpha is 1.344489219096154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31501402516252086
the lambda is 0.5292730867206062
the regulation term lambda/alpha is 1.6801572134686564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3307223982145205
the lambda is 0.49300488655841207
the regulation term lambda/alpha is 1.4906909517468736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33041810371645464
the lambda is 0.5010058777318861
the regulation term lambda/alpha is 1.5162785334602
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3263693920637906
the lambda is 0.5261258616882037
the regulation term lambda/alpha is 1.6120563829875618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31336551077506475
the lambda is 0.5331929300444723
the regulation term lambda/alpha is 1.7015048296977415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30606864753094676
the lambda is 0.5059709706556728
the regulation term lambda/alpha is 1.6531290438839013
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33451146231874634
the lambda is 0.529531726844936
the regulation term lambda/alpha is 1.5830002451167442
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27544482789042496
the lambda is 0.49479901708873475
the regulation term lambda/alpha is 1.796363434660575
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.287697636785435
the lambda is 0.48921393913583067
the regulation term lambda/alpha is 1.7004447606939734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3388045037928367
the lambda is 0.49868134042725454
the regulation term lambda/alpha is 1.471885216532349
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3171126697255247
the lambda is 0.5485676440575454
the regulation term lambda/alpha is 1.7298824563911477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30883890709533823
the lambda is 0.5005054803540355
the regulation term lambda/alpha is 1.620603715578912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3086820394395426
the lambda is 0.5272684780028536
the regulation term lambda/alpha is 1.7081281404003508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212591045370975
the lambda is 0.47558635096617397
the regulation term lambda/alpha is 1.4803824833274273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32144645146168366
the lambda is 0.5149168600233613
the regulation term lambda/alpha is 1.6018744574156212
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33734955312626047
the lambda is 0.49373655137133976
the regulation term lambda/alpha is 1.4635755310650969
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29680785040426005
the lambda is 0.5044391416844759
the regulation term lambda/alpha is 1.699547842139002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320838825891337
the lambda is 0.5289736698497484
the regulation term lambda/alpha is 1.6487208752874047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33704261798191604
the lambda is 0.5251067711567978
the regulation term lambda/alpha is 1.5579833028266246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.343809033874628
the lambda is 0.5248903879258279
the regulation term lambda/alpha is 1.526691669530802
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32630265276908016
the lambda is 0.5571543692425783
the regulation term lambda/alpha is 1.707477289916085
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3409313597918452
the lambda is 0.5270471948097079
the regulation term lambda/alpha is 1.5459041231393182
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3340859524666819
the lambda is 0.5171963385802482
the regulation term lambda/alpha is 1.5480936410573196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3448173728841817
the lambda is 0.5431405543402842
the regulation term lambda/alpha is 1.5751542615073397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146851300648096
the lambda is 0.5383693184644874
the regulation term lambda/alpha is 1.710819060162169
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32140542742634437
the lambda is 0.4695319302019081
the regulation term lambda/alpha is 1.4608711930028297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3264719812650668
the lambda is 0.5183174669931038
the regulation term lambda/alpha is 1.5876323137582673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31704599440638315
the lambda is 0.4894749190343204
the regulation term lambda/alpha is 1.5438609150409934
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2953667305066994
the lambda is 0.5068935875064162
the regulation term lambda/alpha is 1.7161499084099419
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3237952619797988
the lambda is 0.5508558980247389
the regulation term lambda/alpha is 1.701247555806132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2750864127867211
the lambda is 0.49163486399086953
the regulation term lambda/alpha is 1.7872015524519633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29384842384498727
the lambda is 0.5018947265904476
the regulation term lambda/alpha is 1.708005508497164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224831818678167
the lambda is 0.48444417809646007
the regulation term lambda/alpha is 1.5022308304283287
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3461361040373595
the lambda is 0.5170697841430131
the regulation term lambda/alpha is 1.493833720643034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34091925577013654
the lambda is 0.5031980927167007
the regulation term lambda/alpha is 1.4760037287420926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29840427775552214
the lambda is 0.5428780777225419
the regulation term lambda/alpha is 1.8192704267038466
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30851208590512214
the lambda is 0.4816879321062586
the regulation term lambda/alpha is 1.561325971049296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2915545091871038
the lambda is 0.4804414242104074
the regulation term lambda/alpha is 1.6478614086605887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34047319765970485
the lambda is 0.5770081211255865
the regulation term lambda/alpha is 1.694724063719967
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32993362157378286
the lambda is 0.5218861144342151
the regulation term lambda/alpha is 1.5817912462052794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3050721247746664
the lambda is 0.5208709756291237
the regulation term lambda/alpha is 1.707369940842191
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3138130090835374
the lambda is 0.49932503061312083
the regulation term lambda/alpha is 1.5911546563074443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30821640578357745
the lambda is 0.5064711624903626
the regulation term lambda/alpha is 1.643232329579481
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30137504376238744
the lambda is 0.4894124760775761
the regulation term lambda/alpha is 1.6239316632449587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30449568260698895
the lambda is 0.5024350867550569
the regulation term lambda/alpha is 1.6500565211742175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3396221277048468
the lambda is 0.557538182632813
the regulation term lambda/alpha is 1.641642688009272
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3368417588228554
the lambda is 0.5604023044838863
the regulation term lambda/alpha is 1.6636960525390234
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3092764628007179
the lambda is 0.49636648491338375
the regulation term lambda/alpha is 1.6049280970767477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3420299828142553
the lambda is 0.5415725996979084
the regulation term lambda/alpha is 1.5834067973859995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32326991611625455
the lambda is 0.5236897164116149
the regulation term lambda/alpha is 1.619976652028719
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052013327316246
the lambda is 0.4984220855918745
the regulation term lambda/alpha is 1.6330927559551531
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33791586574326254
the lambda is 0.4642671467680994
the regulation term lambda/alpha is 1.3739134318151087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3188448942183858
the lambda is 0.4920530944260735
the regulation term lambda/alpha is 1.5432365496467775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30853223719025813
the lambda is 0.5136760864636417
the regulation term lambda/alpha is 1.6649024787217956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30677567222317653
the lambda is 0.49351376604737907
the regulation term lambda/alpha is 1.6087121983008883
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3095987109124501
the lambda is 0.50915744939539
the regulation term lambda/alpha is 1.6445722525613877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2774120384850154
the lambda is 0.5392101056827516
the regulation term lambda/alpha is 1.9437155958604062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29698152474887113
the lambda is 0.48051742666613634
the regulation term lambda/alpha is 1.6180044434496859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3382032530498145
the lambda is 0.5518820116448208
the regulation term lambda/alpha is 1.6318057460066273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3452740170490125
the lambda is 0.548766912433208
the regulation term lambda/alpha is 1.5893663737671553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33273475016906173
the lambda is 0.5181337121335505
the regulation term lambda/alpha is 1.5571974729729552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3003630723288919
the lambda is 0.5222803152748768
the regulation term lambda/alpha is 1.7388299807473993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2920593674110582
the lambda is 0.510098171411635
the regulation term lambda/alpha is 1.7465564482090339
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089686232796455
the lambda is 0.5077915105190017
the regulation term lambda/alpha is 1.643505107829033
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.289249910716816
the lambda is 0.5499969060386374
the regulation term lambda/alpha is 1.901459207629973
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3250816387461718
the lambda is 0.5314068817355375
the regulation term lambda/alpha is 1.6346874704617425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3448211205252473
the lambda is 0.5062018939988182
the regulation term lambda/alpha is 1.4680130185405937
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31348015805715995
the lambda is 0.5453598768754004
the regulation term lambda/alpha is 1.7396950424401647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31174429437547463
the lambda is 0.5095940068857128
the regulation term lambda/alpha is 1.634653836749749
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29070565176242924
the lambda is 0.4980549550765456
the regulation term lambda/alpha is 1.7132620300191708
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.305180600542348
the lambda is 0.4953548598881329
the regulation term lambda/alpha is 1.6231531722783787
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3270140762673551
the lambda is 0.5462274852679544
the regulation term lambda/alpha is 1.670348541270065
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3085228710414303
the lambda is 0.5398777023183556
the regulation term lambda/alpha is 1.749879030024512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3002333610398941
the lambda is 0.5039925631436807
the regulation term lambda/alpha is 1.6786694236711144
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30789753588174495
the lambda is 0.5380509676398681
the regulation term lambda/alpha is 1.7475000769298747
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30506330599781595
the lambda is 0.48465943711803383
the regulation term lambda/alpha is 1.5887175795620063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3092463726901705
the lambda is 0.5133760439229763
the regulation term lambda/alpha is 1.660087520047714
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27804803064572087
the lambda is 0.5119770980624733
the regulation term lambda/alpha is 1.841326107843636
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3322502211163585
the lambda is 0.5407541949584139
the regulation term lambda/alpha is 1.6275510461407174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31187234241341855
the lambda is 0.5015106010057173
the regulation term lambda/alpha is 1.608063726089933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2866621900042764
the lambda is 0.5137531079648932
the regulation term lambda/alpha is 1.7921899918410205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32657660868483473
the lambda is 0.5005981612977324
the regulation term lambda/alpha is 1.5328659431969254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3219013100130083
the lambda is 0.5679249858295686
the regulation term lambda/alpha is 1.7642829282261023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33234166475047094
the lambda is 0.5133570928115064
the regulation term lambda/alpha is 1.544666670659382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3339110696468006
the lambda is 0.5098137959921094
the regulation term lambda/alpha is 1.5267951330016478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2976496261366522
the lambda is 0.4825782041766645
the regulation term lambda/alpha is 1.6212961878712753
1250
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3250809509399413
the lambda is 0.5612273152165776
the regulation term lambda/alpha is 1.7264232604028045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2925660773509778
the lambda is 0.523954829204721
the regulation term lambda/alpha is 1.7908939886293005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31786838642495263
the lambda is 0.4739902935844519
the regulation term lambda/alpha is 1.4911526714417667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320174594834852
the lambda is 0.49341735070811765
the regulation term lambda/alpha is 1.5410883894851974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29921018123009785
the lambda is 0.5297508444913717
the regulation term lambda/alpha is 1.7704973885363346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3418162110478684
the lambda is 0.5572939977552444
the regulation term lambda/alpha is 1.6303907765135228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3579969256722547
the lambda is 0.5511655577822737
the regulation term lambda/alpha is 1.5395818183278602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2964830136886611
the lambda is 0.5313677008090244
the regulation term lambda/alpha is 1.7922365743590876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33053104681807555
the lambda is 0.5296828951140095
the regulation term lambda/alpha is 1.602520853072986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080536544975092
the lambda is 0.4891625460204824
the regulation term lambda/alpha is 1.58791346532926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3182116308685505
the lambda is 0.5226911373450606
the regulation term lambda/alpha is 1.6425896687634847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2790477006005132
the lambda is 0.5028626168066294
the regulation term lambda/alpha is 1.8020668714505241
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34151966189766764
the lambda is 0.5181184547642701
the regulation term lambda/alpha is 1.5170970007563378
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3192528284189767
the lambda is 0.516489087706361
the regulation term lambda/alpha is 1.6178058320239472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33866260397385706
the lambda is 0.49939405665500064
the regulation term lambda/alpha is 1.474606439551121
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2697805666612533
the lambda is 0.5163644737973824
the regulation term lambda/alpha is 1.9140165660847959
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35933805342692265
the lambda is 0.5112705015054749
the regulation term lambda/alpha is 1.422812019572122
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32521698406278987
the lambda is 0.5562823704230018
the regulation term lambda/alpha is 1.7104960616558695
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.310986106592485
the lambda is 0.5103368696281829
the regulation term lambda/alpha is 1.6410278749105869
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2818684003610896
the lambda is 0.5055105786868517
the regulation term lambda/alpha is 1.7934276351633016
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3388147527318379
the lambda is 0.5151210379955163
the regulation term lambda/alpha is 1.5203618905084093
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2865158160739749
the lambda is 0.5260702969638485
the regulation term lambda/alpha is 1.8360951383850432
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29966800488593454
the lambda is 0.49267115540236556
the regulation term lambda/alpha is 1.6440565805144784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32816945479089576
the lambda is 0.5216193765795472
the regulation term lambda/alpha is 1.589481802661721
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3256255780460304
the lambda is 0.5050403101703247
the regulation term lambda/alpha is 1.5509847635462233
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3703186466745245
the lambda is 0.5125565698179103
the regulation term lambda/alpha is 1.384096033026389
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3452145530196458
the lambda is 0.5051127790839024
the regulation term lambda/alpha is 1.4631850675633506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31832758347539475
the lambda is 0.5187514835486454
the regulation term lambda/alpha is 1.629615246926104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33820654277091683
the lambda is 0.48645528521149817
the regulation term lambda/alpha is 1.4383378902903046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31579248058440756
the lambda is 0.4858067688367909
the regulation term lambda/alpha is 1.5383734531542799
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32590818536021443
the lambda is 0.5230379584327725
the regulation term lambda/alpha is 1.604862909026595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3420232307330924
the lambda is 0.515509889347833
the regulation term lambda/alpha is 1.5072364770161648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3132848713106489
the lambda is 0.4953820985843456
the regulation term lambda/alpha is 1.5812512634647193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33662469304317916
the lambda is 0.495169792076548
the regulation term lambda/alpha is 1.470984756347129
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3302687023880047
the lambda is 0.5129248520590094
the regulation term lambda/alpha is 1.5530531605032845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31875465006923875
the lambda is 0.49272310966216043
the regulation term lambda/alpha is 1.5457754406253614
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3372190910437352
the lambda is 0.5390898753097626
the regulation term lambda/alpha is 1.5986339137597818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34003308155614714
the lambda is 0.5147023702351088
the regulation term lambda/alpha is 1.5136832212901021
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30123114564335834
the lambda is 0.47864329266753164
the regulation term lambda/alpha is 1.5889568512089378
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3402337327193862
the lambda is 0.5192977800633625
the regulation term lambda/alpha is 1.5262971602279736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3144465717333832
the lambda is 0.5128855675087668
the regulation term lambda/alpha is 1.6310738090782508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31162498748429457
the lambda is 0.5229035240026977
the regulation term lambda/alpha is 1.677989715215155
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3274103689250942
the lambda is 0.5177807096911745
the regulation term lambda/alpha is 1.5814426140231184
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33903544173418826
the lambda is 0.5132318869586727
the regulation term lambda/alpha is 1.5138001040052282
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.343919163436886
the lambda is 0.5373239204378139
the regulation term lambda/alpha is 1.5623552786886805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31668427700597074
the lambda is 0.5058325055555722
the regulation term lambda/alpha is 1.5972769798926119
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3469126236021295
the lambda is 0.5263862219218274
the regulation term lambda/alpha is 1.5173452509630618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.333115355967484
the lambda is 0.5378426528550486
the regulation term lambda/alpha is 1.6145837867274677
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32385844293286353
the lambda is 0.4917625892289492
the regulation term lambda/alpha is 1.518449186550596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3595446519448946
the lambda is 0.5258336970519744
the regulation term lambda/alpha is 1.4624990086977179
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30306172901147926
the lambda is 0.5296472027466097
the regulation term lambda/alpha is 1.7476545272615003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32495666525813965
the lambda is 0.5098224128870906
the regulation term lambda/alpha is 1.5688935399496944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30939838531921393
the lambda is 0.48573441034583925
the regulation term lambda/alpha is 1.5699319498538917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32250725115377593
the lambda is 0.5270253794336979
the regulation term lambda/alpha is 1.6341504804876614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31563607775891434
the lambda is 0.4911406226301492
the regulation term lambda/alpha is 1.5560344879373604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32225098600336854
the lambda is 0.4748707398639692
the regulation term lambda/alpha is 1.4736052347067305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367070595576627
the lambda is 0.5040971039112521
the regulation term lambda/alpha is 1.497138505422168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2944412619746923
the lambda is 0.49181103626389205
the regulation term lambda/alpha is 1.67031968605733
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2965892725298464
the lambda is 0.49771775837879645
the regulation term lambda/alpha is 1.6781381003209077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3438926810190228
the lambda is 0.5093642083019332
the regulation term lambda/alpha is 1.4811719946832982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3503208085196093
the lambda is 0.5401958429182121
the regulation term lambda/alpha is 1.5420033003491271
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3393515382182776
the lambda is 0.5088435744326573
the regulation term lambda/alpha is 1.4994585765082313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30762658072396404
the lambda is 0.5303510352713469
the regulation term lambda/alpha is 1.7240091347868127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3429665493349872
the lambda is 0.5585915062271765
the regulation term lambda/alpha is 1.6287055029427402
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3360042741152815
the lambda is 0.5103345361678362
the regulation term lambda/alpha is 1.5188334657693754
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3083129975765091
the lambda is 0.5188765988197479
the regulation term lambda/alpha is 1.6829540204220117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3136421828429223
the lambda is 0.5180831778473123
the regulation term lambda/alpha is 1.6518287596116425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31745197737448594
the lambda is 0.5119782440256578
the regulation term lambda/alpha is 1.6127738382983727
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3157168543074707
the lambda is 0.5514403813131983
the regulation term lambda/alpha is 1.7466295314603664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3062874547700852
the lambda is 0.5017865075653909
the regulation term lambda/alpha is 1.6382861908009168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30167501792540824
the lambda is 0.5075024295044355
the regulation term lambda/alpha is 1.6822819237551843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31588536704853165
the lambda is 0.5346907289136261
the regulation term lambda/alpha is 1.6926733071224471
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2989243189650979
the lambda is 0.4919806024103828
the regulation term lambda/alpha is 1.6458366589699445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30612485547984475
the lambda is 0.520846420639479
the regulation term lambda/alpha is 1.7014182655082428
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35353442179552047
the lambda is 0.5123982085812778
the regulation term lambda/alpha is 1.4493587526185556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33306605642094633
the lambda is 0.563742845881182
the regulation term lambda/alpha is 1.6925857048870037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3061093442422294
the lambda is 0.4817701706591336
the regulation term lambda/alpha is 1.573849932127197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32631858210961345
the lambda is 0.5149370571591071
the regulation term lambda/alpha is 1.578019412287514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33096536226377576
the lambda is 0.5581456766128872
the regulation term lambda/alpha is 1.6864171911985495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31067139019593754
the lambda is 0.4924369510131858
the regulation term lambda/alpha is 1.5850733815643931
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29738877432801
the lambda is 0.549866357905923
the regulation term lambda/alpha is 1.8489815533502236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34499235006845924
the lambda is 0.5871190666069147
the regulation term lambda/alpha is 1.7018321319020802
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33121044667073357
the lambda is 0.5554634505183165
the regulation term lambda/alpha is 1.677071046827577
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156557392478692
the lambda is 0.5378047195744836
the regulation term lambda/alpha is 1.7037698121882445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156476631580374
the lambda is 0.5359769523109991
the regulation term lambda/alpha is 1.6980228744562191
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3380265751214959
the lambda is 0.5293390674539599
the regulation term lambda/alpha is 1.5659687918433662
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.325236871817869
the lambda is 0.5437293295960431
the regulation term lambda/alpha is 1.6717948569513017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3106555370758678
the lambda is 0.5436297543935322
the regulation term lambda/alpha is 1.7499438751699052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3322821779394658
the lambda is 0.5256637848076103
the regulation term lambda/alpha is 1.5819800750895952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32592798573097553
the lambda is 0.5341344205154687
the regulation term lambda/alpha is 1.6388111604394382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3120529672951845
the lambda is 0.5062313197976203
the regulation term lambda/alpha is 1.6222608750864849
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.295687289976345
the lambda is 0.4956842976499621
the regulation term lambda/alpha is 1.6763801301355117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2952274280809251
the lambda is 0.5029033777715861
the regulation term lambda/alpha is 1.703443955192858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2896679754539256
the lambda is 0.5166455280337017
the regulation term lambda/alpha is 1.7835783442201016
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28157481966877845
the lambda is 0.4899630321979748
the regulation term lambda/alpha is 1.7400811364252216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31921574035474615
the lambda is 0.4693238417255895
the regulation term lambda/alpha is 1.4702402870360571
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32121403657495134
the lambda is 0.5341574050878248
the regulation term lambda/alpha is 1.662932948956562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3009212854738477
the lambda is 0.5299903374560739
the regulation term lambda/alpha is 1.761225818976285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29622986113939925
the lambda is 0.5253750406823886
the regulation term lambda/alpha is 1.7735384227019526
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32517562268472755
the lambda is 0.5277968720915677
the regulation term lambda/alpha is 1.6231132817827816
1260
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3181108404498416
the lambda is 0.5460028146543732
the regulation term lambda/alpha is 1.71639172648838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3637970949547287
the lambda is 0.49167078256604346
the regulation term lambda/alpha is 1.351497275224882
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2891751719641444
the lambda is 0.544076903151889
the regulation term lambda/alpha is 1.8814786188468162
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32929662024590434
the lambda is 0.5171692625488163
the regulation term lambda/alpha is 1.5705270894144523
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31836032279812115
the lambda is 0.5420034486587718
the regulation term lambda/alpha is 1.7024842916825014
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36530492152906135
the lambda is 0.5313167213852771
the regulation term lambda/alpha is 1.4544472030689817
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3265361665557445
the lambda is 0.49531712656466387
the regulation term lambda/alpha is 1.5168828978094404
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3186164636670638
the lambda is 0.5434467015834376
the regulation term lambda/alpha is 1.7056453873372615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31790432295395005
the lambda is 0.5182029512907368
the regulation term lambda/alpha is 1.6300594671869277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3289904215460927
the lambda is 0.47923109138163805
the regulation term lambda/alpha is 1.4566718664011198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30224518071772505
the lambda is 0.5203620073713203
the regulation term lambda/alpha is 1.7216552672093737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32401001114094047
the lambda is 0.5285543385226588
the regulation term lambda/alpha is 1.6312901464416294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.285834329438498
the lambda is 0.5075678476899576
the regulation term lambda/alpha is 1.7757413837835359
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34963331454695806
the lambda is 0.5207814925195993
the regulation term lambda/alpha is 1.4895076380075758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3091235430533286
the lambda is 0.5152714401234667
the regulation term lambda/alpha is 1.6668786693952145
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3312868490529395
the lambda is 0.5572278543227026
the regulation term lambda/alpha is 1.6820101851783977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3414672364759917
the lambda is 0.5185134138331238
the regulation term lambda/alpha is 1.518486573365817
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33889741347418484
the lambda is 0.5542372355411166
the regulation term lambda/alpha is 1.6354129996431355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2919632002565412
the lambda is 0.5365052117139207
the regulation term lambda/alpha is 1.8375781990418867
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3164837101956078
the lambda is 0.5220242630405022
the regulation term lambda/alpha is 1.6494506548784353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3160182349664155
the lambda is 0.528019112015137
the regulation term lambda/alpha is 1.6708501396169484
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30978355045129446
the lambda is 0.5311102707019913
the regulation term lambda/alpha is 1.7144560126845563
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105619431237164
the lambda is 0.4761412164735653
the regulation term lambda/alpha is 1.5331602181658435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29487487990830097
the lambda is 0.49095825679842525
the regulation term lambda/alpha is 1.6649714514546017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3048410413679159
the lambda is 0.5192337164260692
the regulation term lambda/alpha is 1.7032933429701826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236273051475393
the lambda is 0.5039256129376213
the regulation term lambda/alpha is 1.5571171063822484
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29688643985308594
the lambda is 0.46941278381663143
the regulation term lambda/alpha is 1.5811189761611208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.286004333933556
the lambda is 0.500431364680892
the regulation term lambda/alpha is 1.749733501580963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30355566754663
the lambda is 0.5369040720309417
the regulation term lambda/alpha is 1.7687170078893897
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31176344665546685
the lambda is 0.5069367583972351
the regulation term lambda/alpha is 1.6260301322542676
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31012700989718706
the lambda is 0.5088484752761628
the regulation term lambda/alpha is 1.6407744538112166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33867650508238567
the lambda is 0.49283973267436404
the regulation term lambda/alpha is 1.4551931571234236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3260996589297112
the lambda is 0.5433495073519886
the regulation term lambda/alpha is 1.666206917036685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30866307364376916
the lambda is 0.49508456106162196
the regulation term lambda/alpha is 1.6039643330740738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3637128755091432
the lambda is 0.5490877547100393
the regulation term lambda/alpha is 1.509673678561418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33572612345478997
the lambda is 0.5023870572448499
the regulation term lambda/alpha is 1.496419319637791
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3256275539230487
the lambda is 0.5451308381444244
the regulation term lambda/alpha is 1.6740930906395226
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31597541643472693
the lambda is 0.5344337562103653
the regulation term lambda/alpha is 1.6913776465289245
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3059497130221744
the lambda is 0.4797704293833192
the regulation term lambda/alpha is 1.568134922056772
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30216029614885076
the lambda is 0.5107471467838149
the regulation term lambda/alpha is 1.6903185272634553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29687186152673545
the lambda is 0.5088967604824601
the regulation term lambda/alpha is 1.7141966835972102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3306626251158201
the lambda is 0.5218785226335724
the regulation term lambda/alpha is 1.5782809516218401
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33642979580768584
the lambda is 0.5227080154776003
the regulation term lambda/alpha is 1.5536912068763287
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2901438865125169
the lambda is 0.4822125556944606
the regulation term lambda/alpha is 1.6619773088813912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159420685494418
the lambda is 0.5122749249968612
the regulation term lambda/alpha is 1.6214204311215215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30641528481909486
the lambda is 0.5309986222142168
the regulation term lambda/alpha is 1.7329377760241762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3260046522175485
the lambda is 0.4926093249503592
the regulation term lambda/alpha is 1.5110499853285302
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32733745520393664
the lambda is 0.5001527331617666
the regulation term lambda/alpha is 1.5279422663384583
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2971430571537459
the lambda is 0.5395453074394772
the regulation term lambda/alpha is 1.8157762547361456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34634726858890785
the lambda is 0.5279569829425008
the regulation term lambda/alpha is 1.5243572876827047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3264392715949808
the lambda is 0.5176475059273038
the regulation term lambda/alpha is 1.5857390668655778
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3255859200912015
the lambda is 0.5033768476394365
the regulation term lambda/alpha is 1.5460645457224718
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33542230283790764
the lambda is 0.5006402766152461
the regulation term lambda/alpha is 1.4925670487009322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28824844983073405
the lambda is 0.4728304393779455
the regulation term lambda/alpha is 1.64035726698826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31450866674522443
the lambda is 0.5203712396389442
the regulation term lambda/alpha is 1.6545529413359024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3378744942798038
the lambda is 0.5304504666811102
the regulation term lambda/alpha is 1.5699630355697358
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236516586236922
the lambda is 0.5246263060050315
the regulation term lambda/alpha is 1.6209597325592922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3092537832827221
the lambda is 0.5778197326789813
the regulation term lambda/alpha is 1.8684322194717804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3188239958129044
the lambda is 0.5205034752987538
the regulation term lambda/alpha is 1.6325730877678388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37106837194873377
the lambda is 0.5157324685714082
the regulation term lambda/alpha is 1.389858332206931
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2750728628346979
the lambda is 0.4825597264324364
the regulation term lambda/alpha is 1.7542978302531629
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31651541049213106
the lambda is 0.50332340498043
the regulation term lambda/alpha is 1.5902018931648298
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2857800754886924
the lambda is 0.49834371100114355
the regulation term lambda/alpha is 1.7438014534391912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32894383326354604
the lambda is 0.5609987162977095
the regulation term lambda/alpha is 1.7054544258570845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35233488176862093
the lambda is 0.516478009940836
the regulation term lambda/alpha is 1.4658724885491419
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2951075964660601
the lambda is 0.5099112471447372
the regulation term lambda/alpha is 1.7278824850697512
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32212748839396554
the lambda is 0.5218981197916089
the regulation term lambda/alpha is 1.620160149615427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32747582158596117
the lambda is 0.4792082728514311
the regulation term lambda/alpha is 1.4633394017629504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3403298434019049
the lambda is 0.524919566742137
the regulation term lambda/alpha is 1.5423847685383412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2997468223354607
the lambda is 0.4896850656816453
the regulation term lambda/alpha is 1.633662241575378
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33156664289281323
the lambda is 0.5183296062046812
the regulation term lambda/alpha is 1.5632742838134157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3448964229790693
the lambda is 0.5192897468260188
the regulation term lambda/alpha is 1.5056397000021449
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3125848121986211
the lambda is 0.4867261906991058
the regulation term lambda/alpha is 1.5571012144692193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.308139009926913
the lambda is 0.5102533862556696
the regulation term lambda/alpha is 1.6559194708151226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32644988082673215
the lambda is 0.5467421794912412
the regulation term lambda/alpha is 1.6748120051587099
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35777285877560966
the lambda is 0.4800497939893004
the regulation term lambda/alpha is 1.3417725302924144
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3323900973863283
the lambda is 0.5389874762076415
the regulation term lambda/alpha is 1.621550944043891
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2984956375442775
the lambda is 0.5062415845943442
the regulation term lambda/alpha is 1.695976493188282
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31413268449173076
the lambda is 0.5540507724457167
the regulation term lambda/alpha is 1.7637476130259266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31850584166007484
the lambda is 0.5200754558360887
the regulation term lambda/alpha is 1.6328600226778225
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3165615940051623
the lambda is 0.5900380200895702
the regulation term lambda/alpha is 1.8638964146735633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29922912701766285
the lambda is 0.5187954853493608
the regulation term lambda/alpha is 1.733773347935936
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34567618228124103
the lambda is 0.5161466328103156
the regulation term lambda/alpha is 1.493150697870125
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32902958023563067
the lambda is 0.5440412100795122
the regulation term lambda/alpha is 1.6534720364348503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2762849787592334
the lambda is 0.4921197542620559
the regulation term lambda/alpha is 1.7812034388265103
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3158676090469282
the lambda is 0.5178347367233418
the regulation term lambda/alpha is 1.6394043640176081
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2894539513609173
the lambda is 0.4879683551110535
the regulation term lambda/alpha is 1.6858237823902102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3414942007404241
the lambda is 0.5198309753971314
the regulation term lambda/alpha is 1.5222248994859633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2719789616041627
the lambda is 0.5105605590136275
the regulation term lambda/alpha is 1.8772060750665551
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37781350994123497
the lambda is 0.5557568876225174
the regulation term lambda/alpha is 1.4709820400783438
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2996250712629477
the lambda is 0.5106622021614498
the regulation term lambda/alpha is 1.7043373573812126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3441224169915518
the lambda is 0.5843591054254103
the regulation term lambda/alpha is 1.698114033180687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2969622326656038
the lambda is 0.4889291261129891
the regulation term lambda/alpha is 1.6464353790859017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32013726053519553
the lambda is 0.5227456063016579
the regulation term lambda/alpha is 1.6328796136624273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33345965381889997
the lambda is 0.5397101966028712
the regulation term lambda/alpha is 1.6185172341598626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3175271931077383
the lambda is 0.5321397757021346
the regulation term lambda/alpha is 1.6758872539196266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2896471959582495
the lambda is 0.49221907009647314
the regulation term lambda/alpha is 1.6993745389733477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3483922781005698
the lambda is 0.5240116488220743
the regulation term lambda/alpha is 1.5040851412636902
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3554128002370923
the lambda is 0.517860318411539
the regulation term lambda/alpha is 1.457067157024394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32738586066397807
the lambda is 0.489761120232306
the regulation term lambda/alpha is 1.495975175100755
1270
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3271801068926677
the lambda is 0.5108770490957152
the regulation term lambda/alpha is 1.5614551078538212
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3256461877475125
the lambda is 0.528739121469167
the regulation term lambda/alpha is 1.6236613274254608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.299948689015433
the lambda is 0.48088716772321544
the regulation term lambda/alpha is 1.6032314370224596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30379765287201455
the lambda is 0.5123187941086211
the regulation term lambda/alpha is 1.6863816730159316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3403914765680079
the lambda is 0.5390348295347457
the regulation term lambda/alpha is 1.5835732285941955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28124925950596674
the lambda is 0.4385952263644405
the regulation term lambda/alpha is 1.5594537995757305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3048118580596997
the lambda is 0.5057868399296271
the regulation term lambda/alpha is 1.6593410871520786
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3149012283234563
the lambda is 0.5173162880493872
the regulation term lambda/alpha is 1.6427890446906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28548369470139645
the lambda is 0.5155188070991793
the regulation term lambda/alpha is 1.8057732076025903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3219961395677068
the lambda is 0.48245795076523357
the regulation term lambda/alpha is 1.498334580697003
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.318944474024537
the lambda is 0.49875630692722134
the regulation term lambda/alpha is 1.5637715889344772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3437991354674498
the lambda is 0.551281574892877
the regulation term lambda/alpha is 1.6034990144559895
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089514295123328
the lambda is 0.5273715002513268
the regulation term lambda/alpha is 1.7069721965156828
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2917844453929079
the lambda is 0.5267634250807836
the regulation term lambda/alpha is 1.8053170187720606
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28174845325594317
the lambda is 0.5407499478394427
the regulation term lambda/alpha is 1.9192650095871866
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3629619776053061
the lambda is 0.5463462900432022
the regulation term lambda/alpha is 1.505243865067632
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2919079646821047
the lambda is 0.5035860753321376
the regulation term lambda/alpha is 1.7251535972324559
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31501935940642445
the lambda is 0.5090694592093115
the regulation term lambda/alpha is 1.6159942048276845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3266252032597785
the lambda is 0.5039143599583753
the regulation term lambda/alpha is 1.5427908040445715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37068046727527126
the lambda is 0.5183831062523928
the regulation term lambda/alpha is 1.3984635070275662
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3023430512999664
the lambda is 0.5180627127873714
the regulation term lambda/alpha is 1.713493035675495
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3516978242167286
the lambda is 0.5741446266305997
the regulation term lambda/alpha is 1.6324941102757335
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3020189355498083
the lambda is 0.49709044330647456
the regulation term lambda/alpha is 1.6458916471629492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3201064837460076
the lambda is 0.49246542290813256
the regulation term lambda/alpha is 1.5384425118326728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3177700361484617
the lambda is 0.5153922555885376
the regulation term lambda/alpha is 1.621903253797495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30015828958094964
the lambda is 0.5232698576430784
the regulation term lambda/alpha is 1.7433130311796965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32160504906506293
the lambda is 0.5328992877788828
the regulation term lambda/alpha is 1.6569991339628303
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30755239842691506
the lambda is 0.4902394661266988
the regulation term lambda/alpha is 1.5940030662553795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137355066787571
the lambda is 0.5112625237994611
the regulation term lambda/alpha is 1.6295972655812836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052842266861289
the lambda is 0.5016098177831022
the regulation term lambda/alpha is 1.6430911718829844
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3420427812843091
the lambda is 0.5514401600488611
the regulation term lambda/alpha is 1.6121964567657372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32336403436978506
the lambda is 0.5414260121169798
the regulation term lambda/alpha is 1.6743544568034074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29052225992527175
the lambda is 0.5024220479715371
the regulation term lambda/alpha is 1.7293753948519135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3722149832348383
the lambda is 0.5158342395487223
the regulation term lambda/alpha is 1.385850282182949
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3395077124184921
the lambda is 0.5367914154383716
the regulation term lambda/alpha is 1.5810875447114998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32148536848496745
the lambda is 0.5240814432835346
the regulation term lambda/alpha is 1.630187544003392
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3035669937931071
the lambda is 0.5122483028221211
the regulation term lambda/alpha is 1.6874308251418089
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32077313006591013
the lambda is 0.5497622626061518
the regulation term lambda/alpha is 1.7138663157141332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3453566822989397
the lambda is 0.5721391221067481
the regulation term lambda/alpha is 1.6566615080333273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36057421543669377
the lambda is 0.5455811698596361
the regulation term lambda/alpha is 1.5130898064879077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39082645680640715
the lambda is 0.5408898013933852
the regulation term lambda/alpha is 1.3839641405374732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3241791919244584
the lambda is 0.5275782847165086
the regulation term lambda/alpha is 1.6274279715011664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.319172285320694
the lambda is 0.525161924020096
the regulation term lambda/alpha is 1.6453869843129714
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3143012839187344
the lambda is 0.5006113639465806
the regulation term lambda/alpha is 1.5927754341468692
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32026163127843876
the lambda is 0.5272753968176233
the regulation term lambda/alpha is 1.6463895306871918
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35509268948223
the lambda is 0.5343831926570384
the regulation term lambda/alpha is 1.5049118398811212
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3380227562713308
the lambda is 0.544249258652084
the regulation term lambda/alpha is 1.6100965055004024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3138769716653837
the lambda is 0.5395133257700241
the regulation term lambda/alpha is 1.718868774945317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3113277182091731
the lambda is 0.5404361233478927
the regulation term lambda/alpha is 1.7359075075505725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33185984215736425
the lambda is 0.5553095098680012
the regulation term lambda/alpha is 1.6733254203281385
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3173726306821878
the lambda is 0.558831539657067
the regulation term lambda/alpha is 1.760805707965009
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33316544639521245
the lambda is 0.5124619968762053
the regulation term lambda/alpha is 1.5381607019003556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31865485702773455
the lambda is 0.502220843380994
the regulation term lambda/alpha is 1.5760652389405838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3582245895916589
the lambda is 0.5256700865146547
the regulation term lambda/alpha is 1.467431610749746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2884672849199006
the lambda is 0.49012888831881707
the regulation term lambda/alpha is 1.6990796320453196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3891222356368973
the lambda is 0.5282228305351748
the regulation term lambda/alpha is 1.3574727480443365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3423735562200888
the lambda is 0.5136545587367443
the regulation term lambda/alpha is 1.500275209358022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31576036294678983
the lambda is 0.49995712757462696
the regulation term lambda/alpha is 1.5833435295958187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3335638822105811
the lambda is 0.5776264007354526
the regulation term lambda/alpha is 1.7316814905361761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36082687256036833
the lambda is 0.5215574133407465
the regulation term lambda/alpha is 1.4454505831005895
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3092335468727552
the lambda is 0.48850871979156846
the regulation term lambda/alpha is 1.5797403765917486
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33238116422839126
the lambda is 0.5078528416241395
the regulation term lambda/alpha is 1.5279230482361967
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29949544658648625
the lambda is 0.5364221514928257
the regulation term lambda/alpha is 1.7910861671077907
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29148768079356757
the lambda is 0.5522983374900587
the regulation term lambda/alpha is 1.8947570476612974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33001267063307643
the lambda is 0.5128741935780818
the regulation term lambda/alpha is 1.5541045517864962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3517648684068302
the lambda is 0.5081304563101058
the regulation term lambda/alpha is 1.4445173522059416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28563440939565704
the lambda is 0.49730770509822797
the regulation term lambda/alpha is 1.7410637120031427
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3055554373312526
the lambda is 0.5088172869241852
the regulation term lambda/alpha is 1.6652208560523059
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3432184371750323
the lambda is 0.5060105582055013
the regulation term lambda/alpha is 1.4743105363755542
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34190424507915923
the lambda is 0.5321160108308071
the regulation term lambda/alpha is 1.5563305179425577
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3237630881827081
the lambda is 0.5299340761907987
the regulation term lambda/alpha is 1.6367958409506609
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31402157952708243
the lambda is 0.5352787181590373
the regulation term lambda/alpha is 1.704592146072155
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30493994206122466
the lambda is 0.49308164176404484
the regulation term lambda/alpha is 1.6169795220366567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35779110905066347
the lambda is 0.5134929227696312
the regulation term lambda/alpha is 1.4351751896018194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32309725625272895
the lambda is 0.5255845906404649
the regulation term lambda/alpha is 1.6267070687513019
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32603440203753614
the lambda is 0.5285294938542825
the regulation term lambda/alpha is 1.6210850467044677
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3199248463990688
the lambda is 0.5570384482053872
the regulation term lambda/alpha is 1.7411540693858671
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3363950416210239
the lambda is 0.5438303707249205
the regulation term lambda/alpha is 1.6166420530585262
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32206950858060324
the lambda is 0.5175322482652938
the regulation term lambda/alpha is 1.6068961341485475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317324677761591
the lambda is 0.5281360583192113
the regulation term lambda/alpha is 1.664339697891397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2764907991838917
the lambda is 0.48033509342948066
the regulation term lambda/alpha is 1.7372552535103125
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190902029451257
the lambda is 0.5331693923508061
the regulation term lambda/alpha is 1.6709049272894656
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2994977313689601
the lambda is 0.51364463601297
the regulation term lambda/alpha is 1.7150201227407496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3009440358080793
the lambda is 0.49722497877221983
the regulation term lambda/alpha is 1.6522174212128746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3214622824658015
the lambda is 0.5298699363833448
the regulation term lambda/alpha is 1.6483113736359243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2932893736729022
the lambda is 0.4721429540814083
the regulation term lambda/alpha is 1.6098195040914667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30835980125480295
the lambda is 0.5152119743054461
the regulation term lambda/alpha is 1.6708143286151544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32336180628928535
the lambda is 0.5368433234166095
the regulation term lambda/alpha is 1.660193977690549
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2945880548372332
the lambda is 0.5374674023586421
the regulation term lambda/alpha is 1.8244711336160775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32820221756822765
the lambda is 0.5364274931563718
the regulation term lambda/alpha is 1.6344420130094268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3148202127468242
the lambda is 0.540560156234694
the regulation term lambda/alpha is 1.7170439963758235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32756260814905186
the lambda is 0.4911222468487032
the regulation term lambda/alpha is 1.499323288527567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3273373857204653
the lambda is 0.5475646364242841
the regulation term lambda/alpha is 1.6727836791972341
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30950502759459336
the lambda is 0.5121839620887967
the regulation term lambda/alpha is 1.654848601553844
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33022264091274645
the lambda is 0.5211051452053385
the regulation term lambda/alpha is 1.5780418440267645
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31865986374036226
the lambda is 0.5292334763034756
the regulation term lambda/alpha is 1.6608099623574952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3221958685204305
the lambda is 0.49764108332449797
the regulation term lambda/alpha is 1.54452968503208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34305241191515495
the lambda is 0.5087676407446395
the regulation term lambda/alpha is 1.4830609640793604
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32327866991053744
the lambda is 0.5163009333885988
the regulation term lambda/alpha is 1.597077015726022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34346995958558735
the lambda is 0.5231304797865911
the regulation term lambda/alpha is 1.5230749158318608
1280
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31616042936202904
the lambda is 0.48929181250893883
the regulation term lambda/alpha is 1.5476061109110542
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3069624754488214
the lambda is 0.5024722747226019
the regulation term lambda/alpha is 1.6369175873628146
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34171713706366413
the lambda is 0.5014981516942255
the regulation term lambda/alpha is 1.4675826796500204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156047387248276
the lambda is 0.4967646273481252
the regulation term lambda/alpha is 1.5740087723500533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.332375669200854
the lambda is 0.5233508800666958
the regulation term lambda/alpha is 1.5745763861867876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3304474367268462
the lambda is 0.5392427018535609
the regulation term lambda/alpha is 1.6318562104608143
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2933202157813833
the lambda is 0.5042275590866
the regulation term lambda/alpha is 1.719034461171983
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34219179455458587
the lambda is 0.5429966779843309
the regulation term lambda/alpha is 1.5868196918372133
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30958500922972076
the lambda is 0.5055738267717329
the regulation term lambda/alpha is 1.6330694694476726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28939774740126967
the lambda is 0.5100078289328762
the regulation term lambda/alpha is 1.7623075283503007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3259394009642569
the lambda is 0.5480831137868264
the regulation term lambda/alpha is 1.6815491228289094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3218319904069434
the lambda is 0.5744521748806587
the regulation term lambda/alpha is 1.7849442939289144
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2994042331087982
the lambda is 0.4646227098067049
the regulation term lambda/alpha is 1.551824117456179
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.327316542546264
the lambda is 0.5221702282097634
the regulation term lambda/alpha is 1.5953065621055744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3445369376779681
the lambda is 0.5255953550684853
the regulation term lambda/alpha is 1.5255123546716751
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.327462270072065
the lambda is 0.5154511372360193
the regulation term lambda/alpha is 1.5740779452930054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3155225103762179
the lambda is 0.4782744406424627
the regulation term lambda/alpha is 1.5158171759985846
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33105361681009576
the lambda is 0.6211785215332072
the regulation term lambda/alpha is 1.8763683282443564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30937368299211637
the lambda is 0.521596382393071
the regulation term lambda/alpha is 1.6859752818935236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3025434160356285
the lambda is 0.5012440166248429
the regulation term lambda/alpha is 1.6567672276358998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300006296934005
the lambda is 0.553859867005502
the regulation term lambda/alpha is 1.6783600307674758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32521609113890115
the lambda is 0.51366397768525
the regulation term lambda/alpha is 1.5794543741252394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31662842477524383
the lambda is 0.5225092112202386
the regulation term lambda/alpha is 1.6502283760251077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3430817328398494
the lambda is 0.5155927878170391
the regulation term lambda/alpha is 1.502827864221258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2968074015494245
the lambda is 0.5444979410178178
the regulation term lambda/alpha is 1.8345160470236717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32189590131954277
the lambda is 0.5238831265742443
the regulation term lambda/alpha is 1.6274923800728698
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3228545389653329
the lambda is 0.5148341102911518
the regulation term lambda/alpha is 1.5946317866277018
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3270567560488209
the lambda is 0.537916261185667
the regulation term lambda/alpha is 1.644718389811738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2871838910216508
the lambda is 0.46342028181407713
the regulation term lambda/alpha is 1.6136708788416683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34623132251730604
the lambda is 0.5249631554961923
the regulation term lambda/alpha is 1.5162208655167313
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28651285951838384
the lambda is 0.5152061088334929
the regulation term lambda/alpha is 1.798195409796031
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30374933200046955
the lambda is 0.5172431859505531
the regulation term lambda/alpha is 1.7028619702437848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36563924887328125
the lambda is 0.5356165706434562
the regulation term lambda/alpha is 1.4648771221742762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3379414417401567
the lambda is 0.5668945536005406
the regulation term lambda/alpha is 1.677493445850971
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2952789293280112
the lambda is 0.48272522409376944
the regulation term lambda/alpha is 1.634810940260262
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2997578157913039
the lambda is 0.4963483266907699
the regulation term lambda/alpha is 1.6558311428194266
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3173215343017726
the lambda is 0.5348137522546088
the regulation term lambda/alpha is 1.6854001208313873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3165939380541984
the lambda is 0.5263888152883061
the regulation term lambda/alpha is 1.6626623318295894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3380198486489829
the lambda is 0.49628414140910665
the regulation term lambda/alpha is 1.468210057464624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2946300587273582
the lambda is 0.533968772927467
the regulation term lambda/alpha is 1.8123363761115279
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30828963568924067
the lambda is 0.5352848775389222
the regulation term lambda/alpha is 1.736305135079193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3043953706781609
the lambda is 0.5192441410199851
the regulation term lambda/alpha is 1.7058214120115023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32343049863534895
the lambda is 0.5220131805094204
the regulation term lambda/alpha is 1.613988732392127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3411728948481163
the lambda is 0.520922669908976
the regulation term lambda/alpha is 1.5268583107719647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3464105957507211
the lambda is 0.5319492789411724
the regulation term lambda/alpha is 1.5356033720283946
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32727053834199743
the lambda is 0.49129455240505726
the regulation term lambda/alpha is 1.5011878395593767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30202865542138435
the lambda is 0.5207132320618928
the regulation term lambda/alpha is 1.7240524126275505
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3192399423263896
the lambda is 0.5365488888410477
the regulation term lambda/alpha is 1.680707260285376
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2862124742945959
the lambda is 0.4829171054739878
the regulation term lambda/alpha is 1.687267847651272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3299431727473667
the lambda is 0.5043575026595798
the regulation term lambda/alpha is 1.528619302711743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32235730893956066
the lambda is 0.4892571852257417
the regulation term lambda/alpha is 1.5177480753739427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3242971176537766
the lambda is 0.5207382783783244
the regulation term lambda/alpha is 1.6057443931224535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3243355877410496
the lambda is 0.545987320091508
the regulation term lambda/alpha is 1.6834024409539226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3465913926073146
the lambda is 0.5113172247145417
the regulation term lambda/alpha is 1.4752738689441725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33295063908075484
the lambda is 0.5316571895756032
the regulation term lambda/alpha is 1.5968048328228421
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2892129108445314
the lambda is 0.49468033315747734
the regulation term lambda/alpha is 1.710436549021826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3177481400723578
the lambda is 0.48716824097959943
the regulation term lambda/alpha is 1.5331899059068015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257246762575279
the lambda is 0.5449507885446865
the regulation term lambda/alpha is 1.6730411548980457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3555114092867873
the lambda is 0.5394381901593064
the regulation term lambda/alpha is 1.5173583071257983
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33642224156776046
the lambda is 0.515266025583855
the regulation term lambda/alpha is 1.5316051138077706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35655603965149074
the lambda is 0.4809134412928422
the regulation term lambda/alpha is 1.3487737909667785
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3418812932359561
the lambda is 0.5267516289722951
the regulation term lambda/alpha is 1.5407442272916263
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3075790879050124
the lambda is 0.5120322749252361
the regulation term lambda/alpha is 1.6647174501127449
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2768649119069459
the lambda is 0.4776314291054565
the regulation term lambda/alpha is 1.7251425101711266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233605814996204
the lambda is 0.4719278575412428
the regulation term lambda/alpha is 1.4594477018584804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33658035793644825
the lambda is 0.48380881807277704
the regulation term lambda/alpha is 1.4374243970711085
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31394473483880636
the lambda is 0.5230210247532808
the regulation term lambda/alpha is 1.6659652694026668
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3271311339588336
the lambda is 0.5317571441120411
the regulation term lambda/alpha is 1.6255167696112893
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2968643000379949
the lambda is 0.5257095543190315
the regulation term lambda/alpha is 1.770874956172727
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3726637999888848
the lambda is 0.5499298407506098
the regulation term lambda/alpha is 1.475672820292747
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31153798419407774
the lambda is 0.5209171164197726
the regulation term lambda/alpha is 1.6720821949443527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.286343445258586
the lambda is 0.5198747332876608
the regulation term lambda/alpha is 1.8155635894447713
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33679845634439
the lambda is 0.5032188227219658
the regulation term lambda/alpha is 1.4941244926829602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29350759634693174
the lambda is 0.510919264836326
the regulation term lambda/alpha is 1.7407360872268853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3302914818532846
the lambda is 0.5509897105083381
the regulation term lambda/alpha is 1.668192311278217
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.279421864495504
the lambda is 0.4725526374324807
the regulation term lambda/alpha is 1.6911798877502813
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196504696943845
the lambda is 0.5148676146118909
the regulation term lambda/alpha is 1.6107206571732935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3163893297208435
the lambda is 0.5254907859989782
the regulation term lambda/alpha is 1.6608992043525268
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3093239686986736
the lambda is 0.5375426742694155
the regulation term lambda/alpha is 1.7377983236503083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30652465980727533
the lambda is 0.4984118583696545
the regulation term lambda/alpha is 1.6260090091382096
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33043396620910237
the lambda is 0.5261444200721063
the regulation term lambda/alpha is 1.5922831000344442
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31257546841799266
the lambda is 0.5383310804316058
the regulation term lambda/alpha is 1.7222435373966094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3125557386200376
the lambda is 0.48684486590474585
the regulation term lambda/alpha is 1.5576257471842008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2992609419756081
the lambda is 0.5318444470279913
the regulation term lambda/alpha is 1.777192985883672
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2932632680715068
the lambda is 0.46539358509123224
the regulation term lambda/alpha is 1.5869480966765828
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3442587098860303
the lambda is 0.5394534083941965
the regulation term lambda/alpha is 1.5670000290560173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31347221252498936
the lambda is 0.5079764506855897
the regulation term lambda/alpha is 1.6204831892239726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31382265325654785
the lambda is 0.46290954388106437
the regulation term lambda/alpha is 1.4750673320661751
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34022951000031315
the lambda is 0.525725992743074
the regulation term lambda/alpha is 1.545209857729831
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3014033970306571
the lambda is 0.5126543584130567
the regulation term lambda/alpha is 1.7008911096012376
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.310328043200795
the lambda is 0.5037711775851058
the regulation term lambda/alpha is 1.6233504790256585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31020637914416777
the lambda is 0.49334322443071166
the regulation term lambda/alpha is 1.5903709839617175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3776527391575806
the lambda is 0.5350900530044236
the regulation term lambda/alpha is 1.4168838128859704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30090442664882533
the lambda is 0.4890634137557943
the regulation term lambda/alpha is 1.6253114625214953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2955043219443106
the lambda is 0.5251568946789904
the regulation term lambda/alpha is 1.7771547002211328
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.291268783343618
the lambda is 0.5420314071628126
the regulation term lambda/alpha is 1.8609320262218518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2935305171934508
the lambda is 0.5296148085501707
the regulation term lambda/alpha is 1.8042921520188273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31117588286434206
the lambda is 0.4939125486230441
the regulation term lambda/alpha is 1.5872455926745666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31516483058773864
the lambda is 0.5137766997959414
the regulation term lambda/alpha is 1.6301841129856376
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3086835012204715
the lambda is 0.5139899027779655
the regulation term lambda/alpha is 1.6651032554242597
1290
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30369848095227525
the lambda is 0.511928879910973
the regulation term lambda/alpha is 1.6856484705019652
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29734030552927304
the lambda is 0.5488022275884105
the regulation term lambda/alpha is 1.845704122122055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34009252318938643
the lambda is 0.5135686738182246
the regulation term lambda/alpha is 1.5100851644781232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2756503167563673
the lambda is 0.46131942197930176
the regulation term lambda/alpha is 1.6735675380595971
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31349959476010775
the lambda is 0.5160600026162113
the regulation term lambda/alpha is 1.6461265380936276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2925265991329843
the lambda is 0.5358110791101837
the regulation term lambda/alpha is 1.831666182488249
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32612890341564105
the lambda is 0.5144243300610536
the regulation term lambda/alpha is 1.5773650377913175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2925919161589608
the lambda is 0.4717296503779526
the regulation term lambda/alpha is 1.6122443045270909
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31330733672305744
the lambda is 0.50990182467169
the regulation term lambda/alpha is 1.6274812776644576
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36134420078009183
the lambda is 0.4854013836302005
the regulation term lambda/alpha is 1.3433213611351351
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3356371342092998
the lambda is 0.4726084349019417
the regulation term lambda/alpha is 1.4080934042513544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3079415579822512
the lambda is 0.5608100527569848
the regulation term lambda/alpha is 1.8211574184128412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3540615051519631
the lambda is 0.5568661970384257
the regulation term lambda/alpha is 1.5727950905010666
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31503698764746046
the lambda is 0.5216119670977295
the regulation term lambda/alpha is 1.655716590591055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31979041837818717
the lambda is 0.5122740408416008
the regulation term lambda/alpha is 1.6019055337542374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3466078077505749
the lambda is 0.576756210409105
the regulation term lambda/alpha is 1.6640023609166614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3027007628090293
the lambda is 0.536313252235927
the regulation term lambda/alpha is 1.7717604913149205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31518344715593216
the lambda is 0.516025169105404
the regulation term lambda/alpha is 1.6372216680849627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3329091279434839
the lambda is 0.48580384914941266
the regulation term lambda/alpha is 1.4592686363105216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.325820607302477
the lambda is 0.5205525424778922
the regulation term lambda/alpha is 1.5976661107706882
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2951209438138229
the lambda is 0.507030900166994
the regulation term lambda/alpha is 1.718044451927663
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3266045487520925
the lambda is 0.5902687893281242
the regulation term lambda/alpha is 1.8072889418823272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29968747770155946
the lambda is 0.4910337719055054
the regulation term lambda/alpha is 1.6384861178433892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28747904968209503
the lambda is 0.49933015078270837
the regulation term lambda/alpha is 1.7369270955044762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31292183201456586
the lambda is 0.5235202868633011
the regulation term lambda/alpha is 1.673006589194877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30799149445843316
the lambda is 0.5374663837352571
the regulation term lambda/alpha is 1.7450689171800948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31183895650112725
the lambda is 0.513783338529425
the regulation term lambda/alpha is 1.6475918990178118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34335409833457653
the lambda is 0.5307059460563355
the regulation term lambda/alpha is 1.5456519920120382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3120341555452522
the lambda is 0.4956411447247116
the regulation term lambda/alpha is 1.5884195236852272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29315340293488146
the lambda is 0.48306494758125756
the regulation term lambda/alpha is 1.6478230944791776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3716298261725089
the lambda is 0.5355920685795794
the regulation term lambda/alpha is 1.4411977480272533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.300567587491814
the lambda is 0.5319966648846395
the regulation term lambda/alpha is 1.7699735002169137
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35083893331195154
the lambda is 0.5038215096278177
the regulation term lambda/alpha is 1.4360478891886277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29500750160256217
the lambda is 0.5074340624768429
the regulation term lambda/alpha is 1.7200717260419514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146138594323259
the lambda is 0.49955143556683806
the regulation term lambda/alpha is 1.5878239962734149
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34568059597331074
the lambda is 0.5257205010462267
the regulation term lambda/alpha is 1.5208273393708696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30229033715312437
the lambda is 0.49916084334372113
the regulation term lambda/alpha is 1.6512629812936181
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3031203693373609
the lambda is 0.4756613660021951
the regulation term lambda/alpha is 1.5692161072580475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30182938190724534
the lambda is 0.5090898024539368
the regulation term lambda/alpha is 1.6866807308056717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3206707534698423
the lambda is 0.5001000701524576
the regulation term lambda/alpha is 1.5595437524036313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.297074542131716
the lambda is 0.527011373609612
the regulation term lambda/alpha is 1.774003823511566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32243026961659366
the lambda is 0.5329113495615528
the regulation term lambda/alpha is 1.6527956577874812
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3249698691162331
the lambda is 0.4962519200762013
the regulation term lambda/alpha is 1.527070560190013
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30009044243783517
the lambda is 0.5276769986391104
the regulation term lambda/alpha is 1.7583932175661365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3154169992708712
the lambda is 0.5292082737015236
the regulation term lambda/alpha is 1.6778051751327914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3317927327080444
the lambda is 0.5494128258107285
the regulation term lambda/alpha is 1.6558916807083155
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3227980951162786
the lambda is 0.5119579918842976
the regulation term lambda/alpha is 1.5860006599477596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2796511922758269
the lambda is 0.503474638779194
the regulation term lambda/alpha is 1.8003665018620927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3139050648747523
the lambda is 0.5320527283526584
the regulation term lambda/alpha is 1.6949478931311501
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3311353903255949
the lambda is 0.52019989898948
the regulation term lambda/alpha is 1.5709583275831194
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3246506208501439
the lambda is 0.5098441790504341
the regulation term lambda/alpha is 1.5704395627377348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080887627190509
the lambda is 0.5184323428826058
the regulation term lambda/alpha is 1.6827369434287651
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34162994582430073
the lambda is 0.5434406422884526
the regulation term lambda/alpha is 1.590728942034673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33114262096019736
the lambda is 0.5053267321012629
the regulation term lambda/alpha is 1.5260093389246987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36120052358232313
the lambda is 0.5454941110420808
the regulation term lambda/alpha is 1.5102251392992634
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28707422352085793
the lambda is 0.5263513337506801
the regulation term lambda/alpha is 1.8335025948870574
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32709142771219174
the lambda is 0.5286445367278321
the regulation term lambda/alpha is 1.6161980777832772
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3396966804327027
the lambda is 0.5717209699231504
the regulation term lambda/alpha is 1.6830337264258726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3042863978391193
the lambda is 0.5448590054936414
the regulation term lambda/alpha is 1.7906124275121769
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2993718471578622
the lambda is 0.507489904800162
the regulation term lambda/alpha is 1.6951824616045368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3135079364559905
the lambda is 0.5233533652127058
the regulation term lambda/alpha is 1.6693464641721212
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30044409075509365
the lambda is 0.4990302584236538
the regulation term lambda/alpha is 1.6609754486082977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35388306964318084
the lambda is 0.548911644726652
the regulation term lambda/alpha is 1.551110216377737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30358546022791977
the lambda is 0.4817389069347807
the regulation term lambda/alpha is 1.5868312882083038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3323017713197864
the lambda is 0.5108488442297635
the regulation term lambda/alpha is 1.537304005936684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2964051023026491
the lambda is 0.49413564531627346
the regulation term lambda/alpha is 1.6670956116393991
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3479141267596478
the lambda is 0.5247651857063631
the regulation term lambda/alpha is 1.5083181318155865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28340442898805096
the lambda is 0.5071464557735654
the regulation term lambda/alpha is 1.7894796407537723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2802146411251386
the lambda is 0.4911229718253295
the regulation term lambda/alpha is 1.7526670621254339
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30854790273819643
the lambda is 0.5399804559325011
the regulation term lambda/alpha is 1.7500700900588382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2915119143757246
the lambda is 0.4801950309128515
the regulation term lambda/alpha is 1.6472569635487917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3125841659614877
the lambda is 0.49790874200744456
the regulation term lambda/alpha is 1.5928789626176714
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30173665707394215
the lambda is 0.5082118278806272
the regulation term lambda/alpha is 1.6842893164156958
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2999917662026468
the lambda is 0.5184814943341416
the regulation term lambda/alpha is 1.7283190832107815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34449842495736127
the lambda is 0.5150109215886051
the regulation term lambda/alpha is 1.4949587117919283
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3149726712829319
the lambda is 0.4817048242545328
the regulation term lambda/alpha is 1.5293543477676186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3481342686781678
the lambda is 0.5229709914696472
the regulation term lambda/alpha is 1.5022106081521867
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32822850464832304
the lambda is 0.5563318165700176
the regulation term lambda/alpha is 1.694952780429882
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29962757233561865
the lambda is 0.48879153273404086
the regulation term lambda/alpha is 1.6313302842054067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31590566336994746
the lambda is 0.46405624872196466
the regulation term lambda/alpha is 1.4689709699142766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203138768885019
the lambda is 0.5225757542773093
the regulation term lambda/alpha is 1.6314490004415663
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3405517056688962
the lambda is 0.5050250914947174
the regulation term lambda/alpha is 1.4829615682081816
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31800432958987757
the lambda is 0.5058410693243601
the regulation term lambda/alpha is 1.5906735294350585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32432086885780953
the lambda is 0.5087604339014589
the regulation term lambda/alpha is 1.5686947179600468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29660924164711355
the lambda is 0.4786714673236835
the regulation term lambda/alpha is 1.6138117095258135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27483731032328695
the lambda is 0.5121416876181308
the regulation term lambda/alpha is 1.8634358159585624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146739014216711
the lambda is 0.5466239995919436
the regulation term lambda/alpha is 1.7371126017198784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2996186360133387
the lambda is 0.48542789944250253
the regulation term lambda/alpha is 1.6201525576028981
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2906364161310409
the lambda is 0.5095106885370172
the regulation term lambda/alpha is 1.753086193807493
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31631339713351264
the lambda is 0.5329145751125733
the regulation term lambda/alpha is 1.6847676384937802
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2872072187924717
the lambda is 0.4833935560250113
the regulation term lambda/alpha is 1.6830828906647317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29954021563025196
the lambda is 0.48608078650343467
the regulation term lambda/alpha is 1.6227563483610683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3297643554854787
the lambda is 0.48155783875953034
the regulation term lambda/alpha is 1.4603089471285682
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30759117255192814
the lambda is 0.49334127800927985
the regulation term lambda/alpha is 1.6038863336560578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33232336847825855
the lambda is 0.49042821293553396
the regulation term lambda/alpha is 1.475756023963205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3189811232773595
the lambda is 0.49481067665414596
the regulation term lambda/alpha is 1.5512224409088298
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2942600013194659
the lambda is 0.5255294076891573
the regulation term lambda/alpha is 1.7859355853078103
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28824061458426165
the lambda is 0.4955887095788609
the regulation term lambda/alpha is 1.719357663366295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203812615377755
the lambda is 0.5098948282970394
the regulation term lambda/alpha is 1.5915251280603335
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159245686484844
the lambda is 0.4934285005324568
the regulation term lambda/alpha is 1.5618554221450036
1300
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3508992880042138
the lambda is 0.5063899642790993
the regulation term lambda/alpha is 1.4431205237242266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2912352619056838
the lambda is 0.4972119921796082
the regulation term lambda/alpha is 1.7072520302868743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3100615740446585
the lambda is 0.4930542081239808
the regulation term lambda/alpha is 1.5901815942305888
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36610091319473514
the lambda is 0.530979814209441
the regulation term lambda/alpha is 1.4503646264520624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30357119382066344
the lambda is 0.5061532982979308
the regulation term lambda/alpha is 1.6673298013807725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33185608031487757
the lambda is 0.4978024906084811
the regulation term lambda/alpha is 1.5000553557317597
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27778854754563326
the lambda is 0.48853192436916526
the regulation term lambda/alpha is 1.7586467429472141
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32129970795169716
the lambda is 0.5544431137127838
the regulation term lambda/alpha is 1.7256259498254396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28285656430086
the lambda is 0.4915365283401906
the regulation term lambda/alpha is 1.737758957636806
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3033742818849729
the lambda is 0.5504189809386185
the regulation term lambda/alpha is 1.8143231440670204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3116955940036336
the lambda is 0.5463981245826833
the regulation term lambda/alpha is 1.7529863594296224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3327070679667438
the lambda is 0.5500245886520269
the regulation term lambda/alpha is 1.653179753629416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30790101748912874
the lambda is 0.4974228079976369
the regulation term lambda/alpha is 1.6155283020953308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29230088803016113
the lambda is 0.5045583409008731
the regulation term lambda/alpha is 1.7261608211358228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34585598792432115
the lambda is 0.521779832013143
the regulation term lambda/alpha is 1.5086621317289926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052004106811558
the lambda is 0.5442822610359476
the regulation term lambda/alpha is 1.7833601855947752
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3839466804418926
the lambda is 0.5344360807395706
the regulation term lambda/alpha is 1.3919539039235251
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33059389564793457
the lambda is 0.4873874962128117
the regulation term lambda/alpha is 1.4742785714708242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3118998994102414
the lambda is 0.5329806563692457
the regulation term lambda/alpha is 1.7088195840301226
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30860114530091115
the lambda is 0.5287207351218476
the regulation term lambda/alpha is 1.7132818305204343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30096870038726964
the lambda is 0.4972648248243424
the regulation term lambda/alpha is 1.6522144136067636
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32199879904936346
the lambda is 0.5145005096131261
the regulation term lambda/alpha is 1.5978336289827326
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012778053698981
the lambda is 0.4868715282246533
the regulation term lambda/alpha is 1.6160218892556317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33988693937147174
the lambda is 0.49395495389877464
the regulation term lambda/alpha is 1.4532919529423804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3179327400021351
the lambda is 0.5035980548929966
the regulation term lambda/alpha is 1.5839767080597444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3032139627635194
the lambda is 0.5158070614368789
the regulation term lambda/alpha is 1.701132285386091
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3468663662591652
the lambda is 0.487241437617725
the regulation term lambda/alpha is 1.4046949632864574
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3379070133108266
the lambda is 0.5223729192404222
the regulation term lambda/alpha is 1.5459073018999847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3042493360962074
the lambda is 0.540121704069469
the regulation term lambda/alpha is 1.77526009094947
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3292112203958357
the lambda is 0.5707798798433767
the regulation term lambda/alpha is 1.733780152320096
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2997890010315961
the lambda is 0.5396170800228648
the regulation term lambda/alpha is 1.7999895865625575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33063812236567364
the lambda is 0.5497221798209267
the regulation term lambda/alpha is 1.6626097919009901
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2879175610827833
the lambda is 0.5191056843858515
the regulation term lambda/alpha is 1.8029663853556883
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29237165411527016
the lambda is 0.4949682121103121
the regulation term lambda/alpha is 1.6929418606195197
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3684786334229925
the lambda is 0.5422928167977435
the regulation term lambda/alpha is 1.471707631349203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3180931316500112
the lambda is 0.48618312166807653
the regulation term lambda/alpha is 1.5284301146213053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236988768351501
the lambda is 0.5182486795949632
the regulation term lambda/alpha is 1.6010209385400227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2882378126616484
the lambda is 0.4891089856955556
the regulation term lambda/alpha is 1.696893898753327
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31650136855997746
the lambda is 0.5340466761437681
the regulation term lambda/alpha is 1.6873439712870166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3263754738998806
the lambda is 0.5724962157396885
the regulation term lambda/alpha is 1.7541030546777796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.330505926146034
the lambda is 0.5166668235201543
the regulation term lambda/alpha is 1.5632603915606191
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32558679158560705
the lambda is 0.5244485683091119
the regulation term lambda/alpha is 1.610779619637051
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32748698682930594
the lambda is 0.4928809239633701
the regulation term lambda/alpha is 1.505039723060115
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30405168666224697
the lambda is 0.48633428038860294
the regulation term lambda/alpha is 1.5995118649969633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3653266746499481
the lambda is 0.5130067243652777
the regulation term lambda/alpha is 1.4042410805530008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3114353096113072
the lambda is 0.5611008638950632
the regulation term lambda/alpha is 1.80166104028267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2999903486197571
the lambda is 0.521584147305289
the regulation term lambda/alpha is 1.7386697595608513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2866571525244505
the lambda is 0.49697901728004557
the regulation term lambda/alpha is 1.7337052744136765
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3120755344853497
the lambda is 0.49491316440515004
the regulation term lambda/alpha is 1.5858762053274114
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3130855718415413
the lambda is 0.49141303736386943
the regulation term lambda/alpha is 1.569580592530732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32466301773194295
the lambda is 0.47975922707241786
the regulation term lambda/alpha is 1.477714432718449
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33590254405164793
the lambda is 0.5290750397873248
the regulation term lambda/alpha is 1.5750849440008259
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3585583005700935
the lambda is 0.51482477999326
the regulation term lambda/alpha is 1.4358188868440893
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2979254707606734
the lambda is 0.4687405478933338
the regulation term lambda/alpha is 1.5733483501646557
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2839568302745663
the lambda is 0.49543830448328025
the regulation term lambda/alpha is 1.7447662872001573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28662126872774846
the lambda is 0.5340595128315629
the regulation term lambda/alpha is 1.863293380851117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3209756428979634
the lambda is 0.5608630798491616
the regulation term lambda/alpha is 1.7473695972234793
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3223577008724213
the lambda is 0.5256724580891925
the regulation term lambda/alpha is 1.6307116494084828
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31250181597056204
the lambda is 0.4988827051165051
the regulation term lambda/alpha is 1.596415379434148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212782198096582
the lambda is 0.4881748181403789
the regulation term lambda/alpha is 1.5194768522733935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2813298574016534
the lambda is 0.5268450423574885
the regulation term lambda/alpha is 1.8726950890438698
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32587777086312575
the lambda is 0.5156901116998824
the regulation term lambda/alpha is 1.5824648313200875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3697983921062529
the lambda is 0.5389816376212345
the regulation term lambda/alpha is 1.4575013010504674
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3335631747086523
the lambda is 0.5536269419231524
the regulation term lambda/alpha is 1.6597363974806654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2914819817253147
the lambda is 0.45262692498846724
the regulation term lambda/alpha is 1.5528470141081019
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35098687133744716
the lambda is 0.5348884111563647
the regulation term lambda/alpha is 1.5239556087045494
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2660085159796561
the lambda is 0.560740621336177
the regulation term lambda/alpha is 2.107979961735742
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30042205269364847
the lambda is 0.4991313929083223
the regulation term lambda/alpha is 1.6614339341370028
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3250937541349876
the lambda is 0.4811444851399243
the regulation term lambda/alpha is 1.4800176226705983
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3325093003942719
the lambda is 0.5182272243344117
the regulation term lambda/alpha is 1.55853452435744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32096569446532036
the lambda is 0.5376486067045685
the regulation term lambda/alpha is 1.67509679687173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33721096673214085
the lambda is 0.5162276216497541
the regulation term lambda/alpha is 1.5308743563485965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012833520888024
the lambda is 0.5508672249093429
the regulation term lambda/alpha is 1.8284024692707759
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3199933398761527
the lambda is 0.49870601003569354
the regulation term lambda/alpha is 1.5584887180111566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.330741323675405
the lambda is 0.5022760304251062
the regulation term lambda/alpha is 1.5186370570314587
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30587592553558923
the lambda is 0.5585315784961953
the regulation term lambda/alpha is 1.8260069912929748
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31005647848331847
the lambda is 0.5173433339553198
the regulation term lambda/alpha is 1.6685454743147827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34350949588786744
the lambda is 0.5779660641967215
the regulation term lambda/alpha is 1.682533004518129
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3132082164228173
the lambda is 0.5577395861256753
the regulation term lambda/alpha is 1.7807310181567888
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32502488780093286
the lambda is 0.5586601419192198
the regulation term lambda/alpha is 1.7188226590862816
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3547045963383583
the lambda is 0.47513751716861535
the regulation term lambda/alpha is 1.339530195191985
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.340736062362093
the lambda is 0.5232330342169398
the regulation term lambda/alpha is 1.5355962928893365
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3824391198242669
the lambda is 0.5230485364956295
the regulation term lambda/alpha is 1.3676648370490276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3078449550049373
the lambda is 0.4887971396357372
the regulation term lambda/alpha is 1.5878029887736758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31551299033305674
the lambda is 0.5361113209417865
the regulation term lambda/alpha is 1.6991735280879094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3608318420405703
the lambda is 0.5232859465635591
the regulation term lambda/alpha is 1.4502210880400161
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31201614690204754
the lambda is 0.5078998822125739
the regulation term lambda/alpha is 1.6277999945048385
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3003327670708384
the lambda is 0.5129006745928464
the regulation term lambda/alpha is 1.70777461145913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3375714258353575
the lambda is 0.5184568785873743
the regulation term lambda/alpha is 1.5358434953562672
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320811234397303
the lambda is 0.5248207143461315
the regulation term lambda/alpha is 1.6359175056076014
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30436477012816654
the lambda is 0.5066888683991886
the regulation term lambda/alpha is 1.6647421716574633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28207430359632557
the lambda is 0.5095543734168757
the regulation term lambda/alpha is 1.806454423250461
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3154362134060902
the lambda is 0.5473999058796895
the regulation term lambda/alpha is 1.7353743248717324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3125311683197986
the lambda is 0.5249681589067576
the regulation term lambda/alpha is 1.679730574486517
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29541377343423897
the lambda is 0.49858609424328415
the regulation term lambda/alpha is 1.6877550712924787
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28535185784512485
the lambda is 0.4943376906971824
the regulation term lambda/alpha is 1.7323794364972558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30560779335693417
the lambda is 0.49135968227856697
the regulation term lambda/alpha is 1.6078113613571503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29003307290192715
the lambda is 0.4917800659438452
the regulation term lambda/alpha is 1.695599957009515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3241412734531583
the lambda is 0.5075515913062874
the regulation term lambda/alpha is 1.565834507587426
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3108081326687144
the lambda is 0.5155553249054388
the regulation term lambda/alpha is 1.6587575121625318
1310
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30762909331862853
the lambda is 0.5026176603006814
the regulation term lambda/alpha is 1.6338430636665837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32831084064777627
the lambda is 0.5134349065775969
the regulation term lambda/alpha is 1.5638682705833296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32011863967349213
the lambda is 0.4954285957628496
the regulation term lambda/alpha is 1.5476405755946183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31167746756606673
the lambda is 0.5104305325306984
the regulation term lambda/alpha is 1.637688269597165
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3288209615700708
the lambda is 0.5147517787341516
the regulation term lambda/alpha is 1.5654469723471673
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32116672110674077
the lambda is 0.483903553500483
the regulation term lambda/alpha is 1.5067051524919859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33908923610399183
the lambda is 0.5311995933275888
the regulation term lambda/alpha is 1.5665480846011892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31266446951920346
the lambda is 0.48662042482672224
the regulation term lambda/alpha is 1.556366240062447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32253916144965733
the lambda is 0.4914111588697725
the regulation term lambda/alpha is 1.5235705229129923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3121844342869707
the lambda is 0.5012562313590543
the regulation term lambda/alpha is 1.6056413334762305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30946902891887346
the lambda is 0.5092594245789048
the regulation term lambda/alpha is 1.645590921837952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3101335997963776
the lambda is 0.49486679364055663
the regulation term lambda/alpha is 1.595656820046161
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3260125406263793
the lambda is 0.5248066302496377
the regulation term lambda/alpha is 1.6097743640208084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31501859496827933
the lambda is 0.4960566444635766
the regulation term lambda/alpha is 1.5746900417530172
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30567508126377985
the lambda is 0.47869018461088236
the regulation term lambda/alpha is 1.5660098383937306
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29801075748249045
the lambda is 0.5492420607581819
the regulation term lambda/alpha is 1.8430276322842223
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2713935292616438
the lambda is 0.4644314639545256
the regulation term lambda/alpha is 1.7112842197014164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31209757448870246
the lambda is 0.49335045548087314
the regulation term lambda/alpha is 1.5807570958829473
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3472400311542737
the lambda is 0.5529241859367289
the regulation term lambda/alpha is 1.5923399848189528
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3413183863648405
the lambda is 0.5293388285697078
the regulation term lambda/alpha is 1.550865261632549
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3227633186036701
the lambda is 0.49755784371874123
the regulation term lambda/alpha is 1.541556351171696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3389775238171813
the lambda is 0.5080501373066445
the regulation term lambda/alpha is 1.4987723421469326
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30212362108949725
the lambda is 0.4663685450669063
the regulation term lambda/alpha is 1.5436348319443556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30390239207185266
the lambda is 0.5274080069466334
the regulation term lambda/alpha is 1.7354519763764693
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32856015908241687
the lambda is 0.514457057629115
the regulation term lambda/alpha is 1.5657925752953732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31104516372992624
the lambda is 0.514733636085663
the regulation term lambda/alpha is 1.6548517582243942
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33345946841671376
the lambda is 0.5057998533075183
the regulation term lambda/alpha is 1.5168255851575827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33585081830111746
the lambda is 0.5159766374144519
the regulation term lambda/alpha is 1.5363268728195774
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32075079913908017
the lambda is 0.5084376881864654
the regulation term lambda/alpha is 1.5851486248862086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30754623032020434
the lambda is 0.483179239783812
the regulation term lambda/alpha is 1.571078401061024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2918435648032062
the lambda is 0.49408320578052
the regulation term lambda/alpha is 1.6929727613274135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.353502096658798
the lambda is 0.5173632573735859
the regulation term lambda/alpha is 1.463536602083997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33142137908027924
the lambda is 0.5332310923272787
the regulation term lambda/alpha is 1.6089218317992566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3379243373312891
the lambda is 0.5252624346927739
the regulation term lambda/alpha is 1.5543788258666469
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146528543757565
the lambda is 0.5246846411015685
the regulation term lambda/alpha is 1.6675031985408064
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35755975617351754
the lambda is 0.551363827492584
the regulation term lambda/alpha is 1.5420186919050718
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3430152467959758
the lambda is 0.5492368786497872
the regulation term lambda/alpha is 1.601202523153355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3181740297032429
the lambda is 0.5312451327170458
the regulation term lambda/alpha is 1.6696684302377909
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30479682363740723
the lambda is 0.5081421781006036
the regulation term lambda/alpha is 1.6671505038553167
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31873670640672674
the lambda is 0.498452071372283
the regulation term lambda/alpha is 1.5638364247142245
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31706151393653376
the lambda is 0.4962335609464844
the regulation term lambda/alpha is 1.5651018465956594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29497826795943133
the lambda is 0.45341871537488226
the regulation term lambda/alpha is 1.5371258313756233
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3065664424635031
the lambda is 0.5192009119257236
the regulation term lambda/alpha is 1.6935999509715898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.333608874582896
the lambda is 0.5677054409878116
the regulation term lambda/alpha is 1.7017096493539072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.339459842590731
the lambda is 0.49802340847326954
the regulation term lambda/alpha is 1.4671055187924258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3081047711429875
the lambda is 0.5141554120990739
the regulation term lambda/alpha is 1.6687680953193058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2979749567431064
the lambda is 0.4832448450508992
the regulation term lambda/alpha is 1.6217632861929392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3264269759432756
the lambda is 0.5040946245634648
the regulation term lambda/alpha is 1.5442799208208307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36091789883845404
the lambda is 0.5476184433295819
the regulation term lambda/alpha is 1.5172936700894808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3106312891219304
the lambda is 0.4758181377375746
the regulation term lambda/alpha is 1.5317778807234204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3297701905214395
the lambda is 0.4817071389184508
the regulation term lambda/alpha is 1.4607358480666957
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2792811976337777
the lambda is 0.5001529443618044
the regulation term lambda/alpha is 1.7908579188265172
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32691288983690886
the lambda is 0.4844948324826715
the regulation term lambda/alpha is 1.4820303742822056
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32020608370809167
the lambda is 0.5291876814163446
the regulation term lambda/alpha is 1.6526471804913179
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30258029658245744
the lambda is 0.5242047043546718
the regulation term lambda/alpha is 1.7324482468798776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3360267467831673
the lambda is 0.5074164417881163
the regulation term lambda/alpha is 1.5100477763918716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.343620911168769
the lambda is 0.48251774996602853
the regulation term lambda/alpha is 1.4042153264911181
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33396895917156005
the lambda is 0.5847319258191355
the regulation term lambda/alpha is 1.7508571074078725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3120554311213915
the lambda is 0.49689828723752055
the regulation term lambda/alpha is 1.5923398142819827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30823160104904457
the lambda is 0.5140922771203571
the regulation term lambda/alpha is 1.667876607624527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3336970195835777
the lambda is 0.527272793617655
the regulation term lambda/alpha is 1.5800944050253776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2808291787836034
the lambda is 0.5043493552270656
the regulation term lambda/alpha is 1.7959293169307686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36143578330788373
the lambda is 0.5068587327967854
the regulation term lambda/alpha is 1.4023479583509453
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3173794715190384
the lambda is 0.47463916192022076
the regulation term lambda/alpha is 1.495494209655425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3086511602474241
the lambda is 0.5107737235471717
the regulation term lambda/alpha is 1.6548576170513014
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26673489731352823
the lambda is 0.4611794878927523
the regulation term lambda/alpha is 1.72898069408094
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3175798251847374
the lambda is 0.5332705578174339
the regulation term lambda/alpha is 1.6791701346495436
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31269735701547874
the lambda is 0.5129528451308738
the regulation term lambda/alpha is 1.6404131139025977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31494944386104873
the lambda is 0.47898398578194357
the regulation term lambda/alpha is 1.520828168197257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3329986324955252
the lambda is 0.5231597826686161
the regulation term lambda/alpha is 1.5710568501378042
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3070932553173436
the lambda is 0.5047312238416517
the regulation term lambda/alpha is 1.6435763895891273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29952685253479294
the lambda is 0.4935255873734815
the regulation term lambda/alpha is 1.6476839495255395
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3353854490890321
the lambda is 0.5224597342218278
the regulation term lambda/alpha is 1.557788913147316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33204023387491916
the lambda is 0.4958681615536503
the regulation term lambda/alpha is 1.4933978203992164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3028257486952132
the lambda is 0.49616853410730705
the regulation term lambda/alpha is 1.6384621725370145
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2936834878046534
the lambda is 0.5001138544246366
the regulation term lambda/alpha is 1.7029008275647164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3169091332415253
the lambda is 0.5167753880257918
the regulation term lambda/alpha is 1.6306736973463711
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3223576769133089
the lambda is 0.4897804984095352
the regulation term lambda/alpha is 1.5193697358144538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3299539891848526
the lambda is 0.5185115348806038
the regulation term lambda/alpha is 1.5714661797591245
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31649461379424887
the lambda is 0.5639181145342377
the regulation term lambda/alpha is 1.7817621215533141
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32866200917640453
the lambda is 0.5288292921276037
the regulation term lambda/alpha is 1.6090368748514594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3616822830772741
the lambda is 0.5070126754311055
the regulation term lambda/alpha is 1.4018178361332154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32391666244054823
the lambda is 0.4721446078319267
the regulation term lambda/alpha is 1.4576113629800822
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3579746771269581
the lambda is 0.532957836685385
the regulation term lambda/alpha is 1.4888143512351517
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31080535062488
the lambda is 0.522778244870311
the regulation term lambda/alpha is 1.6820117279810514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34814036256686853
the lambda is 0.5236734302521473
the regulation term lambda/alpha is 1.5042020017186704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29443203280878694
the lambda is 0.528186514728118
the regulation term lambda/alpha is 1.7939166118896386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28499781603474666
the lambda is 0.5005393014365004
the regulation term lambda/alpha is 1.7562917091809402
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3310263869232179
the lambda is 0.5351857191186737
the regulation term lambda/alpha is 1.6167463992615516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3055136947612273
the lambda is 0.5127891116190264
the regulation term lambda/alpha is 1.678448856506397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28709568412452635
the lambda is 0.47257277641559226
the regulation term lambda/alpha is 1.646046257562744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2993804221121573
the lambda is 0.4875333664176181
the regulation term lambda/alpha is 1.6284744439132788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3323208157358682
the lambda is 0.5283175024424805
the regulation term lambda/alpha is 1.5897815527222117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233673808448067
the lambda is 0.5169957181077105
the regulation term lambda/alpha is 1.5987874743489714
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3290419206961799
the lambda is 0.5646886593773249
the regulation term lambda/alpha is 1.7161602332692707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3069320462284292
the lambda is 0.5066821752725561
the regulation term lambda/alpha is 1.6507959383800093
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3051621150406141
the lambda is 0.5121217135854572
the regulation term lambda/alpha is 1.678195583083106
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3088595264537987
the lambda is 0.5265621593038009
the regulation term lambda/alpha is 1.704859699001603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30575460462014104
the lambda is 0.5020074464073397
the regulation term lambda/alpha is 1.6418638961497127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31142489758153524
the lambda is 0.5086295843489863
the regulation term lambda/alpha is 1.633233528529363
1320
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32150724127377756
the lambda is 0.534180667336954
the regulation term lambda/alpha is 1.6614887590730054
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33114446616711163
the lambda is 0.5409259172397439
the regulation term lambda/alpha is 1.6335043236590472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31425320390096756
the lambda is 0.5153648376660863
the regulation term lambda/alpha is 1.639966852425461
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3637850187670958
the lambda is 0.5515390827162743
the regulation term lambda/alpha is 1.5161126881626297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3622234491443967
the lambda is 0.5252654405757511
the regulation term lambda/alpha is 1.450114402633164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3213626808016776
the lambda is 0.5029168263872732
the regulation term lambda/alpha is 1.564950930620466
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3354286090848174
the lambda is 0.4921905966188518
the regulation term lambda/alpha is 1.4673482919711094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3127711504648776
the lambda is 0.5515534020242367
the regulation term lambda/alpha is 1.7634407815569073
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28258962433754853
the lambda is 0.4979598604210333
the regulation term lambda/alpha is 1.7621307278650424
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3496856317292707
the lambda is 0.5202320036139423
the regulation term lambda/alpha is 1.4877134100171148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33487618195134833
the lambda is 0.5301598818691068
the regulation term lambda/alpha is 1.5831519541934151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29390430867500106
the lambda is 0.5527114118191716
the regulation term lambda/alpha is 1.8805828819282777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2849495961390924
the lambda is 0.4826139375663379
the regulation term lambda/alpha is 1.6936817742698596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31364084248156404
the lambda is 0.531532856501238
the regulation term lambda/alpha is 1.6947182398047596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29241384022375283
the lambda is 0.5123131523654804
the regulation term lambda/alpha is 1.752014035906995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31675243810664705
the lambda is 0.49323714599485263
the regulation term lambda/alpha is 1.5571692168910318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3248612508052414
the lambda is 0.5247815219441312
the regulation term lambda/alpha is 1.6154020236126734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30128678845330886
the lambda is 0.5251490498075232
the regulation term lambda/alpha is 1.7430205038310427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3555264295613292
the lambda is 0.5219180630230722
the regulation term lambda/alpha is 1.4680148074140296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3309635407608071
the lambda is 0.5421413727076299
the regulation term lambda/alpha is 1.6380697748802626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31580358837202627
the lambda is 0.5205931044403951
the regulation term lambda/alpha is 1.6484711498183502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26986943276773906
the lambda is 0.49822342048352664
the regulation term lambda/alpha is 1.8461647003657453
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32759727461366467
the lambda is 0.4961462236933137
the regulation term lambda/alpha is 1.5145004618198326
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3643790567235053
the lambda is 0.53001360265434
the regulation term lambda/alpha is 1.4545665917800539
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246449664092154
the lambda is 0.4964788835262637
the regulation term lambda/alpha is 1.5292979559105542
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3005393792364963
the lambda is 0.49909705192364284
the regulation term lambda/alpha is 1.66067106810286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32384639840058044
the lambda is 0.5281879215237383
the regulation term lambda/alpha is 1.6309828490678424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3054948806413684
the lambda is 0.5251152305639668
the regulation term lambda/alpha is 1.718900262621483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30357645081840384
the lambda is 0.4915835271398144
the regulation term lambda/alpha is 1.6193071821433025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3197483685253545
the lambda is 0.5209555932291705
the regulation term lambda/alpha is 1.6292674005867875
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33586005618744746
the lambda is 0.5089091117039398
the regulation term lambda/alpha is 1.5152415487595572
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34968668864131014
the lambda is 0.5118702266219842
the regulation term lambda/alpha is 1.4637967164573236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28900431686563516
the lambda is 0.5133763013334164
the regulation term lambda/alpha is 1.7763620519623484
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211554926166791
the lambda is 0.49949323907123816
the regulation term lambda/alpha is 1.5553003157489738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30913678613710355
the lambda is 0.5267505650410751
the regulation term lambda/alpha is 1.703940095978933
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3531476647728358
the lambda is 0.5272067654193842
the regulation term lambda/alpha is 1.4928790928251296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32852694213058414
the lambda is 0.5259569313006633
the regulation term lambda/alpha is 1.600955245526268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32063875958099974
the lambda is 0.5328893867298082
the regulation term lambda/alpha is 1.6619618521047508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2999617048647441
the lambda is 0.48790361947602645
the regulation term lambda/alpha is 1.6265530284808434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32625483394358773
the lambda is 0.5163185655797141
the regulation term lambda/alpha is 1.5825621932976173
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31479187668987274
the lambda is 0.5024481879297042
the regulation term lambda/alpha is 1.596128188608587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29691633033846254
the lambda is 0.5318165551499315
the regulation term lambda/alpha is 1.7911327226215554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3286370487512078
the lambda is 0.5244025740377238
the regulation term lambda/alpha is 1.5956891532175328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32132566184965405
the lambda is 0.5284675999378862
the regulation term lambda/alpha is 1.6446479776805139
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257159399292927
the lambda is 0.5319622198884576
the regulation term lambda/alpha is 1.6332090471345595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33226844904551883
the lambda is 0.5184412737757311
the regulation term lambda/alpha is 1.5603084652335066
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35831409763597416
the lambda is 0.5200173609801878
the regulation term lambda/alpha is 1.4512891466204452
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3180528612421065
the lambda is 0.5225474338093874
the regulation term lambda/alpha is 1.6429578145238461
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3302970361000602
the lambda is 0.5442814798167631
the regulation term lambda/alpha is 1.647854568249527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33230953075197434
the lambda is 0.5371651462363871
the regulation term lambda/alpha is 1.6164602472304976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32227183068038573
the lambda is 0.5237676924040913
the regulation term lambda/alpha is 1.6252357250657126
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3130815651298418
the lambda is 0.5300448444186714
the regulation term lambda/alpha is 1.692992828239025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36401965503781364
the lambda is 0.5018298922263282
the regulation term lambda/alpha is 1.3785791104444598
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.336567423688846
the lambda is 0.5183858895829623
the regulation term lambda/alpha is 1.540214094107355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3111210600753476
the lambda is 0.5340272036429257
the regulation term lambda/alpha is 1.7164611213191239
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3017419958913494
the lambda is 0.5232675488796185
the regulation term lambda/alpha is 1.734155523608439
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31811279727465197
the lambda is 0.5219156455269257
the regulation term lambda/alpha is 1.6406622116378253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33929760257977865
the lambda is 0.5184930293130572
the regulation term lambda/alpha is 1.52813643648173
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.333536301101392
the lambda is 0.5278596279645873
the regulation term lambda/alpha is 1.5826152242544742
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33552083870212174
the lambda is 0.5009034740762928
the regulation term lambda/alpha is 1.4929131555998498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33134210460041
the lambda is 0.5276974777151278
the regulation term lambda/alpha is 1.5926061625989767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30305302958732033
the lambda is 0.43926339037386697
the regulation term lambda/alpha is 1.449460482121
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29230139598224547
the lambda is 0.4823051464572157
the regulation term lambda/alpha is 1.650026832189714
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2833191410504658
the lambda is 0.47237875288549075
the regulation term lambda/alpha is 1.6673026437043623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2938404059669212
the lambda is 0.5113955350135093
the regulation term lambda/alpha is 1.7403853405752483
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33080034252357277
the lambda is 0.5551750257939766
the regulation term lambda/alpha is 1.6782782676665908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31819927046749047
the lambda is 0.5051516391551394
the regulation term lambda/alpha is 1.5875323611301282
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34012219709270036
the lambda is 0.5049252380577574
the regulation term lambda/alpha is 1.484540680889874
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33987343278721915
the lambda is 0.5122297777029746
the regulation term lambda/alpha is 1.5071192046471626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3141377297963945
the lambda is 0.5434315030781912
the regulation term lambda/alpha is 1.7299147842903537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33656372510404403
the lambda is 0.5441657296648867
the regulation term lambda/alpha is 1.6168282232336995
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28776128962829095
the lambda is 0.5613756182406316
the regulation term lambda/alpha is 1.9508378592748723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2764176711753378
the lambda is 0.4677603697159655
the regulation term lambda/alpha is 1.6922231047205911
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30751231212704794
the lambda is 0.5424028131190662
the regulation term lambda/alpha is 1.7638409641789363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.296881848563717
the lambda is 0.49211870549883413
the regulation term lambda/alpha is 1.657624768505223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314846079243893
the lambda is 0.5161107589028269
the regulation term lambda/alpha is 1.5569674928030153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33162996524868144
the lambda is 0.5297303770136906
the regulation term lambda/alpha is 1.5973537753636298
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.306085008454268
the lambda is 0.5397939603672157
the regulation term lambda/alpha is 1.7635426285435538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34931572541544026
the lambda is 0.5226776848827333
the regulation term lambda/alpha is 1.4962901663276513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35110397990986486
the lambda is 0.5474912603765193
the regulation term lambda/alpha is 1.5593422225435065
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087006597151676
the lambda is 0.5197109523512013
the regulation term lambda/alpha is 1.6835433809267821
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31084948267692053
the lambda is 0.5546180304365501
the regulation term lambda/alpha is 1.7842012335371615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3030215226384005
the lambda is 0.5244381141650225
the regulation term lambda/alpha is 1.7306959241665527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3284132624716406
the lambda is 0.544370317016947
the regulation term lambda/alpha is 1.6575771420435705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3401897756552978
the lambda is 0.5129175491176073
the regulation term lambda/alpha is 1.5077394613920687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33187870911867995
the lambda is 0.5578315897741551
the regulation term lambda/alpha is 1.6808296960522235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3281853007664531
the lambda is 0.5436188463118073
the regulation term lambda/alpha is 1.6564387406816357
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30716392984157476
the lambda is 0.5220058014769626
the regulation term lambda/alpha is 1.6994371759281643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2819084395052766
the lambda is 0.5110850215347704
the regulation term lambda/alpha is 1.8129468647042906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2934352550017248
the lambda is 0.5256329246986228
the regulation term lambda/alpha is 1.7913080168077729
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3021881737195935
the lambda is 0.6034835305388195
the regulation term lambda/alpha is 1.997045493576476
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29846019067402074
the lambda is 0.5057843257582857
the regulation term lambda/alpha is 1.6946458575130547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2942743386138192
the lambda is 0.5250189623474564
the regulation term lambda/alpha is 1.784113982960801
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3151814562658606
the lambda is 0.5464093963570954
the regulation term lambda/alpha is 1.7336343414067812
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3765042625597387
the lambda is 0.5738409727231456
the regulation term lambda/alpha is 1.5241287544044635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3467758022842593
the lambda is 0.5100272633850392
the regulation term lambda/alpha is 1.4707694712993824
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28492697515917215
the lambda is 0.528932144800796
the regulation term lambda/alpha is 1.8563779175534796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3158943730648968
the lambda is 0.48556841660661787
the regulation term lambda/alpha is 1.537122715721383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29927605626828563
the lambda is 0.46902749129539406
the regulation term lambda/alpha is 1.5672068696165087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161985493678924
the lambda is 0.534962676901309
the regulation term lambda/alpha is 1.691856834798087
1330
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.296381886132637
the lambda is 0.5331766683023215
the regulation term lambda/alpha is 1.7989516001113304
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3032754351660684
the lambda is 0.4827186262432386
the regulation term lambda/alpha is 1.591683896122052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29032214349677005
the lambda is 0.5289134925851328
the regulation term lambda/alpha is 1.8218158842954986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34335354535339596
the lambda is 0.5729047153948276
the regulation term lambda/alpha is 1.668556283014834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3175840104725814
the lambda is 0.5195705093016278
the regulation term lambda/alpha is 1.6360096609664956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2958640169029008
the lambda is 0.5369166087197587
the regulation term lambda/alpha is 1.814741158253011
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32100786978807017
the lambda is 0.5871043807911912
the regulation term lambda/alpha is 1.8289407707630294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2996645877211881
the lambda is 0.5338512599922103
the regulation term lambda/alpha is 1.7814959854012267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34042712674477926
the lambda is 0.5318099681328855
the regulation term lambda/alpha is 1.5621844628486008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.302932948867418
the lambda is 0.5018578414886505
the regulation term lambda/alpha is 1.6566631109787078
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3362144552988759
the lambda is 0.5440387660391249
the regulation term lambda/alpha is 1.6181302066727168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29684829177316413
the lambda is 0.4688798958070824
the regulation term lambda/alpha is 1.5795270136348831
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3358737655172486
the lambda is 0.5195433472868373
the regulation term lambda/alpha is 1.5468411070651376
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31686169374326223
the lambda is 0.5019440554787259
the regulation term lambda/alpha is 1.5841108767329477
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31953872896939217
the lambda is 0.5542827476616032
the regulation term lambda/alpha is 1.7346340127512263
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3204693721153639
the lambda is 0.5317624446467091
the regulation term lambda/alpha is 1.659323763567905
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31296754018477035
the lambda is 0.501609823012973
the regulation term lambda/alpha is 1.6027535082930058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28374623409762617
the lambda is 0.53658194490156
the regulation term lambda/alpha is 1.8910627892842544
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34531128952388873
the lambda is 0.5139101786116074
the regulation term lambda/alpha is 1.4882518880867779
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32024710871573187
the lambda is 0.520572709574067
the regulation term lambda/alpha is 1.6255344557572715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190230500179353
the lambda is 0.4966950366279197
the regulation term lambda/alpha is 1.556925233458823
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3443162249987089
the lambda is 0.4988377630369439
the regulation term lambda/alpha is 1.4487779744878837
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3042050067261354
the lambda is 0.5183124738279974
the regulation term lambda/alpha is 1.7038262433813758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2834216833259305
the lambda is 0.5141423304430307
the regulation term lambda/alpha is 1.8140543250241552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3200349983484342
the lambda is 0.5361980877079675
the regulation term lambda/alpha is 1.675435781945912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3309931432282741
the lambda is 0.48300204833142035
the regulation term lambda/alpha is 1.4592509186763158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3332427506364669
the lambda is 0.5503308039000119
the regulation term lambda/alpha is 1.6514411876895272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3095609558448353
the lambda is 0.5194654534785423
the regulation term lambda/alpha is 1.678071616172809
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317735281746961
the lambda is 0.5104481584023474
the regulation term lambda/alpha is 1.6065202315456415
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3389566847290581
the lambda is 0.5289254588058534
the regulation term lambda/alpha is 1.5604514754699264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3193046041636994
the lambda is 0.5054124747899107
the regulation term lambda/alpha is 1.5828537020743945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34635478831001454
the lambda is 0.5478675145430121
the regulation term lambda/alpha is 1.5818101352553784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.327904090232374
the lambda is 0.5137406689490887
the regulation term lambda/alpha is 1.5667406545158338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3393583587366987
the lambda is 0.5095959817995696
the regulation term lambda/alpha is 1.5016455869736063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3355541311046238
the lambda is 0.5383877641269228
the regulation term lambda/alpha is 1.6044736578106877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28263595897987726
the lambda is 0.49652016978439895
the regulation term lambda/alpha is 1.7567480499526584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33191980968828116
the lambda is 0.5492908007477212
the regulation term lambda/alpha is 1.6548900810216227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27485683319258625
the lambda is 0.4853532251801874
the regulation term lambda/alpha is 1.7658401268128956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.324835410850382
the lambda is 0.5303493685885953
the regulation term lambda/alpha is 1.632671041621359
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3291449358639437
the lambda is 0.5114184851632774
the regulation term lambda/alpha is 1.5537789874266172
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3064302986200839
the lambda is 0.5481534692510729
the regulation term lambda/alpha is 1.7888357375870338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3277016890828618
the lambda is 0.5532005288808388
the regulation term lambda/alpha is 1.6881222993664764
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29365535550671457
the lambda is 0.519664358114952
the regulation term lambda/alpha is 1.769640322813965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33455470212332683
the lambda is 0.5168092372383144
the regulation term lambda/alpha is 1.5447675192076753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33249664325474754
the lambda is 0.5213574605986208
the regulation term lambda/alpha is 1.5680081924892533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3453380232565724
the lambda is 0.5095452180757324
the regulation term lambda/alpha is 1.4754970022433949
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3181814859138291
the lambda is 0.5186935684340898
the regulation term lambda/alpha is 1.6301814888581039
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32584217782069463
the lambda is 0.5048477034052764
the regulation term lambda/alpha is 1.5493626601129749
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29656189020555473
the lambda is 0.5432319890378623
the regulation term lambda/alpha is 1.831766005609602
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2972680265786422
the lambda is 0.5283655535960922
the regulation term lambda/alpha is 1.7774045856099265
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3349680728688609
the lambda is 0.518389465379427
the regulation term lambda/alpha is 1.5475787317269938
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128591559444478
the lambda is 0.5088681921618576
the regulation term lambda/alpha is 1.6265088698641563
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3518130948314962
the lambda is 0.5390050994617533
the regulation term lambda/alpha is 1.5320779907863131
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32925987943057705
the lambda is 0.5442522058197198
the regulation term lambda/alpha is 1.6529563418444757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27810911385479986
the lambda is 0.4785811850854286
the regulation term lambda/alpha is 1.7208396317975208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3540035151281848
the lambda is 0.5195103874657027
the regulation term lambda/alpha is 1.467528895235935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.302755723508331
the lambda is 0.4956995138781725
the regulation term lambda/alpha is 1.6372919663879855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3346541122637182
the lambda is 0.4973715613709616
the regulation term lambda/alpha is 1.4862257571155044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32775645886102966
the lambda is 0.5238092321379519
the regulation term lambda/alpha is 1.598166010086317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36056744987277545
the lambda is 0.5512134799185044
the regulation term lambda/alpha is 1.5287388812079337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30669033995104217
the lambda is 0.5103724580942454
the regulation term lambda/alpha is 1.6641295522242974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3352403877190806
the lambda is 0.5034431615303913
the regulation term lambda/alpha is 1.501737797631527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29776111472108757
the lambda is 0.48898323700337976
the regulation term lambda/alpha is 1.6421997797174077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33206753633624997
the lambda is 0.524050561237249
the regulation term lambda/alpha is 1.578144515477713
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30548812188768804
the lambda is 0.5473436900048556
the regulation term lambda/alpha is 1.7917020361468758
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.42060031293585437
the lambda is 0.5595805121639041
the regulation term lambda/alpha is 1.330432942995089
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3028423254507648
the lambda is 0.5073619428315143
the regulation term lambda/alpha is 1.6753336643955987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33428835035191673
the lambda is 0.554812286851721
the regulation term lambda/alpha is 1.6596817874976835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3160430176905031
the lambda is 0.4999662349664408
the regulation term lambda/alpha is 1.5819562748766416
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.323412763917527
the lambda is 0.541314402082623
the regulation term lambda/alpha is 1.6737570760214733
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3175963574769531
the lambda is 0.5201147581461733
the regulation term lambda/alpha is 1.6376597083104654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34296083160972013
the lambda is 0.5214490499315133
the regulation term lambda/alpha is 1.520433244472966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3453534714281306
the lambda is 0.5083074022783287
the regulation term lambda/alpha is 1.4718468014128807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30098350761052545
the lambda is 0.5026028204106803
the regulation term lambda/alpha is 1.6698683074059044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32540813363173243
the lambda is 0.5086384381030337
the regulation term lambda/alpha is 1.5630784406841678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3093882143037126
the lambda is 0.49120464837025657
the regulation term lambda/alpha is 1.587664383000908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31841506134454217
the lambda is 0.5195013854770673
the regulation term lambda/alpha is 1.6315226524882844
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31567259097194444
the lambda is 0.49928898982384934
the regulation term lambda/alpha is 1.5816672213655187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31776586648095567
the lambda is 0.49731132519803145
the regulation term lambda/alpha is 1.565024370633075
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3079847847944684
the lambda is 0.5507231452167652
the regulation term lambda/alpha is 1.7881504944612334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31391782942596785
the lambda is 0.556105497301913
the regulation term lambda/alpha is 1.7715001990132613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33487808840604
the lambda is 0.5348676325475613
the regulation term lambda/alpha is 1.5972010443962932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320815441520702
the lambda is 0.5197893935246358
the regulation term lambda/alpha is 1.6202131389336325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30060938321138225
the lambda is 0.5016508760079146
the regulation term lambda/alpha is 1.6687798319827034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31347993331897755
the lambda is 0.47144200083132715
the regulation term lambda/alpha is 1.5038984978716876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3350141108374688
the lambda is 0.47907871394968626
the regulation term lambda/alpha is 1.430025477888333
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3408881737880252
the lambda is 0.4878597789095969
the regulation term lambda/alpha is 1.4311431619595087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34852536716464094
the lambda is 0.5514834485505188
the regulation term lambda/alpha is 1.58233374241021
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3313128815365526
the lambda is 0.5349861669222192
the regulation term lambda/alpha is 1.6147460504435476
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3464034153395362
the lambda is 0.5139236985290554
the regulation term lambda/alpha is 1.4835988208295228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3500671170943294
the lambda is 0.5495498196840699
the regulation term lambda/alpha is 1.5698413042776242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3061808896443991
the lambda is 0.5048128317014675
the regulation term lambda/alpha is 1.6487404954886673
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32349825427790413
the lambda is 0.5662440253229298
the regulation term lambda/alpha is 1.7503773755653491
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3370776180982946
the lambda is 0.5540486310443213
the regulation term lambda/alpha is 1.6436826454693774
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3180337806981246
the lambda is 0.46980258352239784
the regulation term lambda/alpha is 1.4772096929172789
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3288973168726676
the lambda is 0.4961912911069309
the regulation term lambda/alpha is 1.5086510763449952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32344590887097696
the lambda is 0.5203347672120298
the regulation term lambda/alpha is 1.6087226733777982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3363611433724699
the lambda is 0.4914791320952074
the regulation term lambda/alpha is 1.461165006063044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3145590037509956
the lambda is 0.5402076469877722
the regulation term lambda/alpha is 1.7173491794734947
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35614084821955644
the lambda is 0.5420160042371768
the regulation term lambda/alpha is 1.5219147338668397
1340
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.337874482667654
the lambda is 0.5494092683501671
the regulation term lambda/alpha is 1.626075056075148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3140204466195782
the lambda is 0.5418550176623029
the regulation term lambda/alpha is 1.725540561117462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3160829931957116
the lambda is 0.5147522836379851
the regulation term lambda/alpha is 1.6285352097993513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3299373969520602
the lambda is 0.529502320412486
the regulation term lambda/alpha is 1.6048569374190176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2974682137868995
the lambda is 0.4586958849955385
the regulation term lambda/alpha is 1.5419996615979257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073937330412597
the lambda is 0.4701474939001488
the regulation term lambda/alpha is 1.5294634970227048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31174837105261427
the lambda is 0.4673705578285426
the regulation term lambda/alpha is 1.4991916597686528
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298201654915869
the lambda is 0.5075348036935358
the regulation term lambda/alpha is 1.7019852013789982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3053261674015501
the lambda is 0.48477922322562206
the regulation term lambda/alpha is 1.5877421426119172
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.387874665528511
the lambda is 0.5194174319670024
the regulation term lambda/alpha is 1.3391372990531711
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31147829701114377
the lambda is 0.5265471563886365
the regulation term lambda/alpha is 1.690477832456488
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3015882996415237
the lambda is 0.524963341483031
the regulation term lambda/alpha is 1.7406621613206386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3383570729709787
the lambda is 0.47809977123853276
the regulation term lambda/alpha is 1.4130036267323425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27928193665637435
the lambda is 0.5136917842496974
the regulation term lambda/alpha is 1.8393305002096807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3008583469906738
the lambda is 0.52500053851707
the regulation term lambda/alpha is 1.7450090508319658
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29408530616021183
the lambda is 0.4889709601127322
the regulation term lambda/alpha is 1.6626840915552257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30399834013515087
the lambda is 0.5024727350469494
the regulation term lambda/alpha is 1.6528798638293922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30927375618960906
the lambda is 0.5524156594909289
the regulation term lambda/alpha is 1.7861704992267586
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30163730493361013
the lambda is 0.4865342849280882
the regulation term lambda/alpha is 1.6129778279088312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3081106594689055
the lambda is 0.4932260997932611
the regulation term lambda/alpha is 1.6008082960954406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3313221052694778
the lambda is 0.5413845853602048
the regulation term lambda/alpha is 1.6340128737256292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30716492614571517
the lambda is 0.5041450579625623
the regulation term lambda/alpha is 1.641284583785462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28027419672165055
the lambda is 0.5070105264303006
the regulation term lambda/alpha is 1.808980392632538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30063656956948914
the lambda is 0.47790067220769383
the regulation term lambda/alpha is 1.58962920875543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33815580965795256
the lambda is 0.49251178858619116
the regulation term lambda/alpha is 1.4564640751976758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3162110835713574
the lambda is 0.49716151827062727
the regulation term lambda/alpha is 1.5722457057974564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235782629435068
the lambda is 0.5066353514442683
the regulation term lambda/alpha is 1.5657273972470804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33336048803988005
the lambda is 0.5345372416849969
the regulation term lambda/alpha is 1.603481098878911
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33185166194727533
the lambda is 0.5203544625368808
the regulation term lambda/alpha is 1.5680333179092374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3306391033785056
the lambda is 0.5172366284586155
the regulation term lambda/alpha is 1.564354074195812
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31758091136987676
the lambda is 0.5929942849401727
the regulation term lambda/alpha is 1.8672226941547203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3060554203075476
the lambda is 0.5000725176119861
the regulation term lambda/alpha is 1.6339279896087953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2984978192526411
the lambda is 0.5266203653117814
the regulation term lambda/alpha is 1.764235218301756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34438637190361165
the lambda is 0.5049574167689922
the regulation term lambda/alpha is 1.466252610339418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128910215951711
the lambda is 0.5599624925555532
the regulation term lambda/alpha is 1.7896406541190286
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32320293775755793
the lambda is 0.5483348170171907
the regulation term lambda/alpha is 1.6965650771049285
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2920429670729173
the lambda is 0.5424522733449624
the regulation term lambda/alpha is 1.8574399472168177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2953579812710441
the lambda is 0.5054529790402182
the regulation term lambda/alpha is 1.7113232453209861
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29011262787164444
the lambda is 0.5230052238487451
the regulation term lambda/alpha is 1.8027661452921664
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.36180626621859113
the lambda is 0.5491391756826077
the regulation term lambda/alpha is 1.5177713239240482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3474122707712988
the lambda is 0.5099515897043619
the regulation term lambda/alpha is 1.4678571616719394
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3036408823060801
the lambda is 0.5409147958148971
the regulation term lambda/alpha is 1.7814294034017362
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3370273672620479
the lambda is 0.5394164341479166
the regulation term lambda/alpha is 1.600512262639211
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36271044330664054
the lambda is 0.5293047507840684
the regulation term lambda/alpha is 1.4593038622176826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233797222168638
the lambda is 0.5213430419934569
the regulation term lambda/alpha is 1.612169861546964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33044118762858393
the lambda is 0.5388484467172268
the regulation term lambda/alpha is 1.6306939536934866
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34744784825134234
the lambda is 0.46273448926492866
the regulation term lambda/alpha is 1.331809915052887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33774750748458815
the lambda is 0.5065757385413636
the regulation term lambda/alpha is 1.4998652168128268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32015029091965513
the lambda is 0.5666912694869766
the regulation term lambda/alpha is 1.7700788834491277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29171381433111726
the lambda is 0.5169501677849173
the regulation term lambda/alpha is 1.7721141145483763
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2977914277895107
the lambda is 0.4704062333924655
the regulation term lambda/alpha is 1.5796500150600876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3376632959821514
the lambda is 0.5385206085029403
the regulation term lambda/alpha is 1.594844968081476
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3045381431765659
the lambda is 0.499204803100905
the regulation term lambda/alpha is 1.63921930400513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3413160311855769
the lambda is 0.5047932829830706
the regulation term lambda/alpha is 1.4789615396313145
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2978130987462927
the lambda is 0.5043012304970068
the regulation term lambda/alpha is 1.693348051579899
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3170721655638387
the lambda is 0.5104703376957941
the regulation term lambda/alpha is 1.6099500149691222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3385741532312495
the lambda is 0.4977550580694971
the regulation term lambda/alpha is 1.4701507877050657
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3008418865098947
the lambda is 0.5211905067906721
the regulation term lambda/alpha is 1.732439963188205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29518429863951173
the lambda is 0.48388485105919987
the regulation term lambda/alpha is 1.639263515333975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3338633910710133
the lambda is 0.5123615561988842
the regulation term lambda/alpha is 1.534644318310132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33994536654284835
the lambda is 0.5475663259248634
the regulation term lambda/alpha is 1.6107480195816863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3088277469003232
the lambda is 0.4763013627825004
the regulation term lambda/alpha is 1.5422881122667735
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3271216779397364
the lambda is 0.543301048500913
the regulation term lambda/alpha is 1.660853086602845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205320123914836
the lambda is 0.4948983104165958
the regulation term lambda/alpha is 1.5439902764287672
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33398109531516224
the lambda is 0.5613302014105538
the regulation term lambda/alpha is 1.6807244759792555
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2973495749083162
the lambda is 0.5392281560011483
the regulation term lambda/alpha is 1.81344855181788
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3491128037579897
the lambda is 0.5323023355092426
the regulation term lambda/alpha is 1.5247287689804772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3436724201693889
the lambda is 0.550629136809638
the regulation term lambda/alpha is 1.6021918096838974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3433666476612073
the lambda is 0.5051663927597436
the regulation term lambda/alpha is 1.4712156704811377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3221275538446961
the lambda is 0.5076734448490302
the regulation term lambda/alpha is 1.5760013037996412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32143338636124075
the lambda is 0.5275391937995413
the regulation term lambda/alpha is 1.6412084624173728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29191583026998313
the lambda is 0.5065991042128911
the regulation term lambda/alpha is 1.7354286807411392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3206681971605262
the lambda is 0.4960695352111869
the regulation term lambda/alpha is 1.5469870090137283
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32877770297899056
the lambda is 0.5323440317646629
the regulation term lambda/alpha is 1.6191609921877232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205080177183634
the lambda is 0.4865525346295007
the regulation term lambda/alpha is 1.5180666558458573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2979091989577458
the lambda is 0.4885952737900316
the regulation term lambda/alpha is 1.6400811908440998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2853628087022243
the lambda is 0.48553321513851583
the regulation term lambda/alpha is 1.7014593364378083
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3348797248413549
the lambda is 0.5333625357120282
the regulation term lambda/alpha is 1.5926987994412083
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30504157077243843
the lambda is 0.5199052690962002
the regulation term lambda/alpha is 1.7043751373941438
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33751460210062656
the lambda is 0.5074928542955808
the regulation term lambda/alpha is 1.5036174765092887
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3076486388665064
the lambda is 0.5266282641407236
the regulation term lambda/alpha is 1.7117848012623125
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30801696622218133
the lambda is 0.5460552510405497
the regulation term lambda/alpha is 1.7728090037957995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3132599963309705
the lambda is 0.515247293634309
the regulation term lambda/alpha is 1.6447912266778284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3065450978057561
the lambda is 0.5466818583219494
the regulation term lambda/alpha is 1.783365195643602
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29276597528620235
the lambda is 0.48009672278612375
the regulation term lambda/alpha is 1.639865159593052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073174936109459
the lambda is 0.5518958620302481
the regulation term lambda/alpha is 1.7958491576432372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33921770432999776
the lambda is 0.5361228253367085
the regulation term lambda/alpha is 1.5804682906973437
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3383953127898039
the lambda is 0.5146480085201122
the regulation term lambda/alpha is 1.5208485137611483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30648414805466606
the lambda is 0.5005451083674396
the regulation term lambda/alpha is 1.633184331211022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.305445966283472
the lambda is 0.5191688411334908
the regulation term lambda/alpha is 1.6997076355288037
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2814540933239563
the lambda is 0.5404824563007412
the regulation term lambda/alpha is 1.920321889504875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32142041654262066
the lambda is 0.5272984070922234
the regulation term lambda/alpha is 1.6405255545498403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29703988413172144
the lambda is 0.5317682031150234
the regulation term lambda/alpha is 1.7902249210385914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2857495201164393
the lambda is 0.49739674181488003
the regulation term lambda/alpha is 1.7406739357329357
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.318413037896056
the lambda is 0.49799893133826206
the regulation term lambda/alpha is 1.564002952356589
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34083828619582035
the lambda is 0.5098937006453028
the regulation term lambda/alpha is 1.4959988982938255
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34413986122618
the lambda is 0.4905276141991909
the regulation term lambda/alpha is 1.4253728482699655
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33665008292415954
the lambda is 0.547395071376612
the regulation term lambda/alpha is 1.6260060494324282
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3407490121267839
the lambda is 0.5528581307518315
the regulation term lambda/alpha is 1.6224790419821595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212495489454078
the lambda is 0.5294403443574305
the regulation term lambda/alpha is 1.6480656427237568
1350
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28939530100030814
the lambda is 0.5247317376775564
the regulation term lambda/alpha is 1.813200614743215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32746129031808513
the lambda is 0.5036432177462561
the regulation term lambda/alpha is 1.5380236768047717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2887584596015824
the lambda is 0.5038509841825054
the regulation term lambda/alpha is 1.744887352833573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34576265032686604
the lambda is 0.5680451614865276
the regulation term lambda/alpha is 1.6428760045352708
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3135878926497185
the lambda is 0.5461343058913276
the regulation term lambda/alpha is 1.7415669376667113
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29763300011329624
the lambda is 0.49406381385371856
the regulation term lambda/alpha is 1.6599765942138454
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2946261506362719
the lambda is 0.47552120392297803
the regulation term lambda/alpha is 1.6139816608133624
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33757545543122786
the lambda is 0.5319920187690005
the regulation term lambda/alpha is 1.5759203171019047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2882555400160444
the lambda is 0.5114505202431024
the regulation term lambda/alpha is 1.7742955442057935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3349078851171722
the lambda is 0.5327819484505989
the regulation term lambda/alpha is 1.5908313065373116
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052209469482201
the lambda is 0.5181600208694157
the regulation term lambda/alpha is 1.6976555051358257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.319526616614664
the lambda is 0.5300404662212701
the regulation term lambda/alpha is 1.6588304030411247
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2937748788034436
the lambda is 0.5129985631954277
the regulation term lambda/alpha is 1.7462301926049313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31751829736336656
the lambda is 0.5109518504548032
the regulation term lambda/alpha is 1.609204429154746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34499109123388055
the lambda is 0.5495223354031897
the regulation term lambda/alpha is 1.5928594951185302
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32844811100238913
the lambda is 0.5337651837650176
the regulation term lambda/alpha is 1.625112661284677
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31115541028065485
the lambda is 0.49430838017477696
the regulation term lambda/alpha is 1.5886221606396702
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.292639180623679
the lambda is 0.5202225607122458
the regulation term lambda/alpha is 1.7776927874235302
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3092782177393186
the lambda is 0.47857509442188045
the regulation term lambda/alpha is 1.5473934696081868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30427556628681424
the lambda is 0.49463336480937703
the regulation term lambda/alpha is 1.625609873462955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190397885425878
the lambda is 0.5204576688737894
the regulation term lambda/alpha is 1.6313252690246027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3168654737790828
the lambda is 0.5047141048498591
the regulation term lambda/alpha is 1.5928340151118627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30204050514025704
the lambda is 0.4930884175095987
the regulation term lambda/alpha is 1.63252414533152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30426206457758054
the lambda is 0.4941431736699595
the regulation term lambda/alpha is 1.624070928316347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32607512368348684
the lambda is 0.5026107151540055
the regulation term lambda/alpha is 1.5413954596606314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3141881618666516
the lambda is 0.5236745273042236
the regulation term lambda/alpha is 1.6667544830237195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2967592560373488
the lambda is 0.5450910182538232
the regulation term lambda/alpha is 1.8368121875370265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33547641070235495
the lambda is 0.5101338851872894
the regulation term lambda/alpha is 1.5206252031827536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3107712888795392
the lambda is 0.472793880795061
the regulation term lambda/alpha is 1.521356372719247
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2903494970483154
the lambda is 0.4799106373884767
the regulation term lambda/alpha is 1.6528722875955852
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3195590775596731
the lambda is 0.4936544810138667
the regulation term lambda/alpha is 1.5447988046018932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30945221692090413
the lambda is 0.5452529684239984
the regulation term lambda/alpha is 1.7619940611489135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205082715904978
the lambda is 0.47668711765085636
the regulation term lambda/alpha is 1.4872849155665562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32889403721251087
the lambda is 0.5180891890980245
the regulation term lambda/alpha is 1.5752465246527636
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34439179130423214
the lambda is 0.523297287873399
the regulation term lambda/alpha is 1.5194824646999894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2958423134538716
the lambda is 0.5000367023421236
the regulation term lambda/alpha is 1.6902136023219358
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3163791993125335
the lambda is 0.5497978357534371
the regulation term lambda/alpha is 1.7377812351384145
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.331760060901979
the lambda is 0.5060719066297164
the regulation term lambda/alpha is 1.5254154018835893
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2856926064482408
the lambda is 0.4957695179870355
the regulation term lambda/alpha is 1.7353249849567056
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.303801114728245
the lambda is 0.487520789094015
the regulation term lambda/alpha is 1.6047366696798009
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.313331369718385
the lambda is 0.522048817504751
the regulation term lambda/alpha is 1.666123688713187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3029064926933859
the lambda is 0.5220869166491897
the regulation term lambda/alpha is 1.7235910396204912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3210073526244804
the lambda is 0.5170594362873742
the regulation term lambda/alpha is 1.6107401654822489
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33359307951703504
the lambda is 0.49551237677577475
the regulation term lambda/alpha is 1.48537966522915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32181973038171857
the lambda is 0.5288146239221102
the regulation term lambda/alpha is 1.6432013764192448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3017215165487949
the lambda is 0.48323829198795476
the regulation term lambda/alpha is 1.6016036824798494
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3143362616104117
the lambda is 0.5176759021580306
the regulation term lambda/alpha is 1.6468857251971711
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29935776921617596
the lambda is 0.4906701280449827
the regulation term lambda/alpha is 1.6390759769814223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29475701418902955
the lambda is 0.5205596170806119
the regulation term lambda/alpha is 1.7660635439425836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159586758905899
the lambda is 0.550909422452657
the regulation term lambda/alpha is 1.7436122647995453
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31171194011959213
the lambda is 0.550118074057746
the regulation term lambda/alpha is 1.7648283663650692
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3157751845319368
the lambda is 0.5295995510580892
the regulation term lambda/alpha is 1.6771411339465994
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33016420063074337
the lambda is 0.5491740478444549
the regulation term lambda/alpha is 1.6633361424264552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31921169490658924
the lambda is 0.5010377097150315
the regulation term lambda/alpha is 1.5696095027522405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3082642229738499
the lambda is 0.5620631674856609
the regulation term lambda/alpha is 1.8233162514397292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33879615105831795
the lambda is 0.5285610627312937
the regulation term lambda/alpha is 1.5601153114644177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34457143205110174
the lambda is 0.5473435465061067
the regulation term lambda/alpha is 1.5884762797890128
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3499514934452049
the lambda is 0.5150596117393016
the regulation term lambda/alpha is 1.471802868073627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3364222054649915
the lambda is 0.5422080096952675
the regulation term lambda/alpha is 1.6116891242236693
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31923230844949463
the lambda is 0.49776010723966674
the regulation term lambda/alpha is 1.559241010589681
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3245023424082795
the lambda is 0.5331105508601399
the regulation term lambda/alpha is 1.6428557861976711
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2962612877373658
the lambda is 0.5174160014788557
the regulation term lambda/alpha is 1.7464853590238305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32887336344295404
the lambda is 0.5262058340971473
the regulation term lambda/alpha is 1.6000257016510318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3348252711886547
the lambda is 0.5137504874276637
the regulation term lambda/alpha is 1.5343838462485557
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3242448038359236
the lambda is 0.5300656722101141
the regulation term lambda/alpha is 1.6347699822457027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3189857989432094
the lambda is 0.5058867534849645
the regulation term lambda/alpha is 1.5859224929791624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3244348928376909
the lambda is 0.4660403901499811
the regulation term lambda/alpha is 1.4364681495067577
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.314307924120269
the lambda is 0.5021883135981094
the regulation term lambda/alpha is 1.5977589970208597
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2978245790695784
the lambda is 0.517641755402131
the regulation term lambda/alpha is 1.7380760077602544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33718886608058507
the lambda is 0.5314077788440784
the regulation term lambda/alpha is 1.575994441990492
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2937603390976951
the lambda is 0.5019766617092912
the regulation term lambda/alpha is 1.708796576321864
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35713955110184026
the lambda is 0.5153498195723595
the regulation term lambda/alpha is 1.442992852464567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3163040382597401
the lambda is 0.4973783871517001
the regulation term lambda/alpha is 1.5724692921665033
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33929525189924764
the lambda is 0.501165172143882
the regulation term lambda/alpha is 1.477076880205506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34788309557523256
the lambda is 0.5073103851543619
the regulation term lambda/alpha is 1.4582783458204909
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3716714012597751
the lambda is 0.5224848072514736
the regulation term lambda/alpha is 1.4057708112072076
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212648228516505
the lambda is 0.5397296430055512
the regulation term lambda/alpha is 1.6800147560966565
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29459711954299617
the lambda is 0.5110169098990376
the regulation term lambda/alpha is 1.734629689155719
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33025804082294596
the lambda is 0.5639191246794145
the regulation term lambda/alpha is 1.707510658254453
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34223370432851896
the lambda is 0.5123775737020462
the regulation term lambda/alpha is 1.4971569638570774
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3197398148874438
the lambda is 0.5227749832759753
the regulation term lambda/alpha is 1.6350012070282982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3108600384463857
the lambda is 0.5286564203327317
the regulation term lambda/alpha is 1.7006252169781855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3373723595215239
the lambda is 0.49057998053707497
the regulation term lambda/alpha is 1.454120252272109
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30972642621529706
the lambda is 0.5338183407054861
the regulation term lambda/alpha is 1.7235156432354861
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33170037012025727
the lambda is 0.487378881755762
the regulation term lambda/alpha is 1.4693347540705601
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32466682398585345
the lambda is 0.5393110747088368
the regulation term lambda/alpha is 1.6611216017942625
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3073249128067373
the lambda is 0.5146576988257743
the regulation term lambda/alpha is 1.6746370937699384
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28799706627301813
the lambda is 0.49341059623687783
the regulation term lambda/alpha is 1.7132486890304983
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3243298320653909
the lambda is 0.4987015678562174
the regulation term lambda/alpha is 1.5376370550941794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2957821232870836
the lambda is 0.5074385434458448
the regulation term lambda/alpha is 1.7155821920763255
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31315890296167603
the lambda is 0.5221791046442068
the regulation term lambda/alpha is 1.6674573186511334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3000544981001713
the lambda is 0.49131613582451034
the regulation term lambda/alpha is 1.6374229979398194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3618095221741897
the lambda is 0.528152748661325
the regulation term lambda/alpha is 1.4597535893680844
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30929590935186785
the lambda is 0.5261840870354596
the regulation term lambda/alpha is 1.7012319630676096
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30075926971924655
the lambda is 0.5422340988828922
the regulation term lambda/alpha is 1.8028840786488747
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29991947864185564
the lambda is 0.557135363100556
the regulation term lambda/alpha is 1.8576164696720177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33465956339140734
the lambda is 0.49771682115145904
the regulation term lambda/alpha is 1.4872332232422865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35445611936645677
the lambda is 0.5470946458239591
the regulation term lambda/alpha is 1.5434763738931014
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105432081872396
the lambda is 0.512887048036992
the regulation term lambda/alpha is 1.651580309970105
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34512706904194257
the lambda is 0.5763269315535602
the regulation term lambda/alpha is 1.6698977949003484
1360
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29862493593610123
the lambda is 0.49367408604732166
the regulation term lambda/alpha is 1.6531576122395766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30449466920244433
the lambda is 0.495507440767123
the regulation term lambda/alpha is 1.6273107245686562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3136348542800146
the lambda is 0.5469350210123689
the regulation term lambda/alpha is 1.7438591838522606
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3260941526213367
the lambda is 0.5276688687903623
the regulation term lambda/alpha is 1.6181488215861877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3559005707927067
the lambda is 0.5604751798499553
the regulation term lambda/alpha is 1.5748083196427423
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3649426460704437
the lambda is 0.5272799834866321
the regulation term lambda/alpha is 1.4448297264355696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32079979583166507
the lambda is 0.5438344302675582
the regulation term lambda/alpha is 1.6952455622912155
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33771990674432045
the lambda is 0.5026744518995855
the regulation term lambda/alpha is 1.4884359549469737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32739440413994736
the lambda is 0.5036264572953776
the regulation term lambda/alpha is 1.5382866992439443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30754968659410253
the lambda is 0.5186665359039045
the regulation term lambda/alpha is 1.686447941624566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34212198971014773
the lambda is 0.5222915120489248
the regulation term lambda/alpha is 1.5266236247819676
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28133654751381665
the lambda is 0.5393530260398235
the regulation term lambda/alpha is 1.9171097065280345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28658778900797693
the lambda is 0.4899675748334012
the regulation term lambda/alpha is 1.7096596352881015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3160529432281806
the lambda is 0.4946177441549747
the regulation term lambda/alpha is 1.5649838255038042
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30265712332334666
the lambda is 0.5203883549367523
the regulation term lambda/alpha is 1.719398999179644
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3139609148122893
the lambda is 0.4823488080181674
the regulation term lambda/alpha is 1.536333936046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3302736246747116
the lambda is 0.504706039181614
the regulation term lambda/alpha is 1.528145154426733
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32210216498568905
the lambda is 0.52921863526227
the regulation term lambda/alpha is 1.6430148343951152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32278715167256633
the lambda is 0.49852875949496017
the regulation term lambda/alpha is 1.544450443308429
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2880421825484029
the lambda is 0.4820457258400176
the regulation term lambda/alpha is 1.6735247649326992
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3022671124377394
the lambda is 0.5309716742640475
the regulation term lambda/alpha is 1.7566306502280042
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3074460199746509
the lambda is 0.5263081886425084
the regulation term lambda/alpha is 1.7118718553777434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31219219794561187
the lambda is 0.5400416747819682
the regulation term lambda/alpha is 1.7298371911140802
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282727073864502
the lambda is 0.522468765906277
the regulation term lambda/alpha is 1.5915693085359506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33521639323992053
the lambda is 0.5393327754311346
the regulation term lambda/alpha is 1.608909308457132
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32211605932469717
the lambda is 0.5536450401062626
the regulation term lambda/alpha is 1.7187750317912005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31654966576658394
the lambda is 0.49311344621615577
the regulation term lambda/alpha is 1.5577759181074786
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3183525987802588
the lambda is 0.5131834654847564
the regulation term lambda/alpha is 1.6119970983462226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30149796619689273
the lambda is 0.5053738656782943
the regulation term lambda/alpha is 1.676209866531109
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29650956493611935
the lambda is 0.5127669795862002
the regulation term lambda/alpha is 1.7293438061489579
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31438801714766185
the lambda is 0.5265475194364074
the regulation term lambda/alpha is 1.6748332974443438
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32576352193519625
the lambda is 0.5610521541843982
the regulation term lambda/alpha is 1.7222681988808055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2982211447688561
the lambda is 0.4954987035140309
the regulation term lambda/alpha is 1.661514323198242
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30723150123952664
the lambda is 0.5017573763684734
the regulation term lambda/alpha is 1.6331573238555661
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31638803553066336
the lambda is 0.4856797526652215
the regulation term lambda/alpha is 1.5350762295755362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32521171533557464
the lambda is 0.5338977604634677
the regulation term lambda/alpha is 1.6416928889310067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33544786894675344
the lambda is 0.5355128565167971
the regulation term lambda/alpha is 1.596411562244268
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2837433259351537
the lambda is 0.518892070058519
the regulation term lambda/alpha is 1.8287375336437193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32822640678231774
the lambda is 0.48851717155308233
the regulation term lambda/alpha is 1.4883542623585149
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32530623720923013
the lambda is 0.4993348737807901
the regulation term lambda/alpha is 1.5349686438985441
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34538681546520955
the lambda is 0.5132653902334222
the regulation term lambda/alpha is 1.4860595924661835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2976919594653308
the lambda is 0.5188571963633941
the regulation term lambda/alpha is 1.7429331893790039
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34557028172992593
the lambda is 0.503911465692556
the regulation term lambda/alpha is 1.458202549044361
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31424382808670875
the lambda is 0.5016976076763504
the regulation term lambda/alpha is 1.5965233453619903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3393209992826421
the lambda is 0.5402087883361097
the regulation term lambda/alpha is 1.5920287558923973
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33335905350095446
the lambda is 0.5349345535325167
the regulation term lambda/alpha is 1.6046798426939533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3262961611838995
the lambda is 0.5294828882632792
the regulation term lambda/alpha is 1.622706458887404
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31474281863545045
the lambda is 0.5430085319121745
the regulation term lambda/alpha is 1.725245183564019
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3153068121192373
the lambda is 0.5545952339008888
the regulation term lambda/alpha is 1.7589066032964793
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3179587995075625
the lambda is 0.47690133108563226
the regulation term lambda/alpha is 1.4998840473175499
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.348913792717077
the lambda is 0.4950752274749303
the regulation term lambda/alpha is 1.4189041471237307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35286555980848994
the lambda is 0.4845431502799255
the regulation term lambda/alpha is 1.373166456207573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3054642729246753
the lambda is 0.48569385018314504
the regulation term lambda/alpha is 1.5900185168394887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3419039905861372
the lambda is 0.5179137770270487
the regulation term lambda/alpha is 1.5147930158380782
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3155019956737107
the lambda is 0.5323740063994554
the regulation term lambda/alpha is 1.6873871281309796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36963242813576264
the lambda is 0.5218174174350165
the regulation term lambda/alpha is 1.4117197997664797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2834193512994329
the lambda is 0.48867139724105546
the regulation term lambda/alpha is 1.7241991240209054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29207483306062937
the lambda is 0.48934283270525863
the regulation term lambda/alpha is 1.6754022507775603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3121573165309926
the lambda is 0.48269743681212324
the regulation term lambda/alpha is 1.546327480567634
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34511900494566444
the lambda is 0.5388870888573264
the regulation term lambda/alpha is 1.561452951401992
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33930147889123524
the lambda is 0.5424185051833861
the regulation term lambda/alpha is 1.598632894132657
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3131465744453069
the lambda is 0.5200802174770137
the regulation term lambda/alpha is 1.6608203950442675
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3373353399517816
the lambda is 0.5579151771347086
the regulation term lambda/alpha is 1.6538889083321555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2715345611192714
the lambda is 0.492907280663642
the regulation term lambda/alpha is 1.815265351975334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3032188736294979
the lambda is 0.5038015869402035
the regulation term lambda/alpha is 1.6615113066998493
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27578836348389274
the lambda is 0.4859238474910127
the regulation term lambda/alpha is 1.7619447077193044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080274409331287
the lambda is 0.5170437439763559
the regulation term lambda/alpha is 1.6785639045990177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33994276688569763
the lambda is 0.5099030815621688
the regulation term lambda/alpha is 1.4999674393237454
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3413631598828682
the lambda is 0.49952416208878647
the regulation term lambda/alpha is 1.4633218249449882
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33847171536618276
the lambda is 0.5434969362928476
the regulation term lambda/alpha is 1.6057381211450827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33790917904960455
the lambda is 0.5146726846084458
the regulation term lambda/alpha is 1.5231095114255322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3088417638332266
the lambda is 0.5294800617039348
the regulation term lambda/alpha is 1.7144056397432443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.286579691466318
the lambda is 0.4898334681268283
the regulation term lambda/alpha is 1.7092399870365516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176528408782741
the lambda is 0.5350301151341914
the regulation term lambda/alpha is 1.684323406820143
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178148605800184
the lambda is 0.5081649960742651
the regulation term lambda/alpha is 1.59893403079659
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33349588049754997
the lambda is 0.5486863298939996
the regulation term lambda/alpha is 1.6452566942518214
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33474826731691754
the lambda is 0.5511600501316216
the regulation term lambda/alpha is 1.6464911216697045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137137643585504
the lambda is 0.512725665816763
the regulation term lambda/alpha is 1.6343741463341006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3411114274343462
the lambda is 0.5212439672352567
the regulation term lambda/alpha is 1.528075359878058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3438488673316828
the lambda is 0.5225872405092437
the regulation term lambda/alpha is 1.5198166699358258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28224344224931597
the lambda is 0.5179724387077335
the regulation term lambda/alpha is 1.835197425951847
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3021262245959866
the lambda is 0.5023492704014885
the regulation term lambda/alpha is 1.662713228794511
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35845815361500727
the lambda is 0.5289164337546997
the regulation term lambda/alpha is 1.4755318812548723
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29647744813352106
the lambda is 0.520771188690248
the regulation term lambda/alpha is 1.7565288421388272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3432833670040134
the lambda is 0.5111688188520034
the regulation term lambda/alpha is 1.489057927021635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215979477227475
the lambda is 0.5045348071719136
the regulation term lambda/alpha is 1.5688371481987116
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3237455749781051
the lambda is 0.4735837825999003
the regulation term lambda/alpha is 1.46282704445282
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34439524335641475
the lambda is 0.5331271227137703
the regulation term lambda/alpha is 1.5480095413572157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2997483884896125
the lambda is 0.48223312265182344
the regulation term lambda/alpha is 1.6087930449992554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29179746442900767
the lambda is 0.5323522203504056
the regulation term lambda/alpha is 1.8243894661391868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089144790716991
the lambda is 0.5106297646446993
the regulation term lambda/alpha is 1.6529810003699505
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33843600851229394
the lambda is 0.5056032267566508
the regulation term lambda/alpha is 1.4939404024388392
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.308226863380109
the lambda is 0.5267777823582248
the regulation term lambda/alpha is 1.7090586348685521
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3099794283784472
the lambda is 0.5187118155724681
the regulation term lambda/alpha is 1.6733749664806274
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30181430956423866
the lambda is 0.5110152025549468
the regulation term lambda/alpha is 1.6931443816986467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2946097710234023
the lambda is 0.4938919531034625
the regulation term lambda/alpha is 1.676427605872686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3358932774644488
the lambda is 0.5232101684966401
the regulation term lambda/alpha is 1.5576678772680026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29174736783790745
the lambda is 0.4905721740294976
the regulation term lambda/alpha is 1.6814964867208524
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3461211417575916
the lambda is 0.5531160194241158
the regulation term lambda/alpha is 1.5980417047494155
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31056474291963754
the lambda is 0.47340663455948107
the regulation term lambda/alpha is 1.5243412053440364
1370
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047281927877659
the lambda is 0.5023170461749561
the regulation term lambda/alpha is 1.6484101506315332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31760945044630845
the lambda is 0.5053730158882062
the regulation term lambda/alpha is 1.5911775143278961
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3301912201642039
the lambda is 0.5306364836769869
the regulation term lambda/alpha is 1.6070581265398327
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32869235814090375
the lambda is 0.5081777602252329
the regulation term lambda/alpha is 1.5460589442952226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29374893524455975
the lambda is 0.5105248468595129
the regulation term lambda/alpha is 1.7379632250734018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29687836196525386
the lambda is 0.5119999467224058
the regulation term lambda/alpha is 1.7246118690938121
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32819127886805405
the lambda is 0.49228937817394863
the regulation term lambda/alpha is 1.5000074952383746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29225551589611165
the lambda is 0.5117007712061622
the regulation term lambda/alpha is 1.7508677967537727
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34562745484004054
the lambda is 0.5307941613315184
the regulation term lambda/alpha is 1.535740734419303
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.324899296178172
the lambda is 0.5335630840438657
the regulation term lambda/alpha is 1.6422414277907953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3533744785583124
the lambda is 0.5263339882988921
the regulation term lambda/alpha is 1.4894510504726182
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3472083998517399
the lambda is 0.5232181192262223
the regulation term lambda/alpha is 1.5069281718116256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3397024620594745
the lambda is 0.5185774211483433
the regulation term lambda/alpha is 1.5265636227786645
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33333598033844036
the lambda is 0.48788778649535147
the regulation term lambda/alpha is 1.4636517366051893
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3114521794536382
the lambda is 0.5089945188172924
the regulation term lambda/alpha is 1.6342621833958295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33684713161145813
the lambda is 0.49952843306168426
the regulation term lambda/alpha is 1.4829529070708358
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30951189950992763
the lambda is 0.5130715088154405
the regulation term lambda/alpha is 1.6576794288937626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300056245809069
the lambda is 0.540219888783918
the regulation term lambda/alpha is 1.6370020646465475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233930037132265
the lambda is 0.4932800957649663
the regulation term lambda/alpha is 1.5253270482078507
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3100088743150436
the lambda is 0.5308152395272108
the regulation term lambda/alpha is 1.7122582077691582
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2805220749294697
the lambda is 0.4735156012408756
the regulation term lambda/alpha is 1.6879798189141777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205900214568386
the lambda is 0.4847488735518677
the regulation term lambda/alpha is 1.5120522820674565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30107975397825926
the lambda is 0.5056645122278987
the regulation term lambda/alpha is 1.6795035386684032
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31966009252088645
the lambda is 0.5237138572389904
the regulation term lambda/alpha is 1.6383460728829364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3162935547711958
the lambda is 0.5098284653695597
the regulation term lambda/alpha is 1.6118838265242728
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3069945120290981
the lambda is 0.5195524561864758
the regulation term lambda/alpha is 1.6923835307428254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.295789790280198
the lambda is 0.5129427053228168
the regulation term lambda/alpha is 1.7341460800148396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30666548896024404
the lambda is 0.500189277928024
the regulation term lambda/alpha is 1.6310582570732906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3239661456877453
the lambda is 0.52902700683304
the regulation term lambda/alpha is 1.6329700305875252
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3048481872411645
the lambda is 0.4864263014182574
the regulation term lambda/alpha is 1.5956345544329806
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28219784418792043
the lambda is 0.5163743952679901
the regulation term lambda/alpha is 1.8298311128278055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30604973693978227
the lambda is 0.5095779652468067
the regulation term lambda/alpha is 1.6650168379235373
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3249299233739449
the lambda is 0.47711249958796215
the regulation term lambda/alpha is 1.468355067559839
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31544100313345436
the lambda is 0.5602400216662434
the regulation term lambda/alpha is 1.7760532590914357
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3190355170066382
the lambda is 0.5287262646468875
the regulation term lambda/alpha is 1.6572645879922088
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3480422844667587
the lambda is 0.5233960612342256
the regulation term lambda/alpha is 1.5038289443368331
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30151247019483957
the lambda is 0.5171447691507279
the regulation term lambda/alpha is 1.7151687584150175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31904893478307106
the lambda is 0.4994961790580938
the regulation term lambda/alpha is 1.5655785824757982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3252454724674135
the lambda is 0.540117660343027
the regulation term lambda/alpha is 1.6606462074491803
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2966602740910719
the lambda is 0.49937766401277417
the regulation term lambda/alpha is 1.6833317691180654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.296586286494636
the lambda is 0.4709514845547753
the regulation term lambda/alpha is 1.5879071487794256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224340192965618
the lambda is 0.5161402220858518
the regulation term lambda/alpha is 1.6007622992508332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28925754156617894
the lambda is 0.49928938624306585
the regulation term lambda/alpha is 1.7261067197753042
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34462147382998376
the lambda is 0.5266920298310594
the regulation term lambda/alpha is 1.52832040318793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3093172133554239
the lambda is 0.4835679657597469
the regulation term lambda/alpha is 1.5633399787683284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2942441500172688
the lambda is 0.5070497107237588
the regulation term lambda/alpha is 1.7232278388338418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3019901710643509
the lambda is 0.543542562961176
the regulation term lambda/alpha is 1.799868389906481
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31357411130740603
the lambda is 0.5143624387594937
the regulation term lambda/alpha is 1.6403217619430608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3041208746920388
the lambda is 0.5114236554283054
the regulation term lambda/alpha is 1.6816460098182575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29796981676906115
the lambda is 0.5484961538996499
the regulation term lambda/alpha is 1.840777565483275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3221981624836135
the lambda is 0.5027417307601961
the regulation term lambda/alpha is 1.560349465946333
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32507584418943347
the lambda is 0.5030510350399665
the regulation term lambda/alpha is 1.5474882063116953
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3319583333425517
the lambda is 0.5227970353669672
the regulation term lambda/alpha is 1.574887517065242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3310968166523816
the lambda is 0.49758108786184374
the regulation term lambda/alpha is 1.5028265535523222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3264630999501739
the lambda is 0.5046061967815222
the regulation term lambda/alpha is 1.5456760560643368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3396150554275662
the lambda is 0.5494315759122566
the regulation term lambda/alpha is 1.6178068879206107
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3077740588762802
the lambda is 0.5170131257956516
the regulation term lambda/alpha is 1.6798463381979893
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.318191972715346
the lambda is 0.5353497757914699
the regulation term lambda/alpha is 1.6824741718748288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33706197511442987
the lambda is 0.47138275066430896
the regulation term lambda/alpha is 1.3985046830164638
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3075164437286191
the lambda is 0.5047457822297623
the regulation term lambda/alpha is 1.6413619255924947
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30136320923609344
the lambda is 0.5047869835869453
the regulation term lambda/alpha is 1.6750119726508685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33230481293694253
the lambda is 0.5077475441022382
the regulation term lambda/alpha is 1.5279572378585662
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3502594247996852
the lambda is 0.5934362561922769
the regulation term lambda/alpha is 1.694276339692117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3032179460412044
the lambda is 0.4783580678680505
the regulation term lambda/alpha is 1.5776047365054253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29353180233432025
the lambda is 0.49172068565877985
the regulation term lambda/alpha is 1.675187089604454
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31691728998338287
the lambda is 0.5622386949633094
the regulation term lambda/alpha is 1.7740865289892818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3219360184025105
the lambda is 0.49127492277951057
the regulation term lambda/alpha is 1.5260017354295499
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3308607924609513
the lambda is 0.5704578654750213
the regulation term lambda/alpha is 1.7241627852969241
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33500797778344465
the lambda is 0.5303223488460898
the regulation term lambda/alpha is 1.5830140892611815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32179492502594415
the lambda is 0.4972614891199883
the regulation term lambda/alpha is 1.5452744914479228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27969220769084274
the lambda is 0.5114716148040049
the regulation term lambda/alpha is 1.8286945461468098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32574635508790883
the lambda is 0.5166574179665879
the regulation term lambda/alpha is 1.5860727523018887
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.342397199785767
the lambda is 0.562921198080969
the regulation term lambda/alpha is 1.6440590005793876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3269441438942042
the lambda is 0.54158487398324
the regulation term lambda/alpha is 1.6565058102355592
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3038724205990383
the lambda is 0.5098361978786912
the regulation term lambda/alpha is 1.6777968756546797
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32257050930127
the lambda is 0.5407209182650495
the regulation term lambda/alpha is 1.676287517530111
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3121452807092417
the lambda is 0.5386815491974112
the regulation term lambda/alpha is 1.725739847719128
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3140931612249896
the lambda is 0.5599810824635864
the regulation term lambda/alpha is 1.782850286455182
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3658391783429817
the lambda is 0.5277153603643333
the regulation term lambda/alpha is 1.442479077157749
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30577624905896733
the lambda is 0.495133501366755
the regulation term lambda/alpha is 1.619267365894305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34465684670242186
the lambda is 0.517631232038853
the regulation term lambda/alpha is 1.501874217765875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33499454207338136
the lambda is 0.5355855100759559
the regulation term lambda/alpha is 1.5987887646200356
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31568507799025186
the lambda is 0.5102612499160353
the regulation term lambda/alpha is 1.6163616385180923
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3089542505717778
the lambda is 0.5845347700833632
the regulation term lambda/alpha is 1.8919784045746966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3713545850860325
the lambda is 0.52847973423864
the regulation term lambda/alpha is 1.4231135293945705
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3345717825466743
the lambda is 0.506940517609747
the regulation term lambda/alpha is 1.5151920874828304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3351056366945615
the lambda is 0.5080748958384997
the regulation term lambda/alpha is 1.5161633831351944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30912756538897584
the lambda is 0.49467368297608355
the regulation term lambda/alpha is 1.600225079745427
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3627522809209243
the lambda is 0.5108673676203881
the regulation term lambda/alpha is 1.408309180919392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3166839164928006
the lambda is 0.5226429110085059
the regulation term lambda/alpha is 1.6503613975621259
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3426448081530444
the lambda is 0.47770163159177254
the regulation term lambda/alpha is 1.3941598419854189
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32159122713102023
the lambda is 0.5274450683205266
the regulation term lambda/alpha is 1.64011025122162
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32844783012358586
the lambda is 0.5127101829080339
the regulation term lambda/alpha is 1.5610094994846373
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3459723835861532
the lambda is 0.5410019968138945
the regulation term lambda/alpha is 1.5637143959473734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3370626035943321
the lambda is 0.5073596191009305
the regulation term lambda/alpha is 1.5052385334077507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.301514782863919
the lambda is 0.49707710718475623
the regulation term lambda/alpha is 1.648599456594801
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3212473730500476
the lambda is 0.5056134294694392
the regulation term lambda/alpha is 1.5739068141443415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3036720515543882
the lambda is 0.5428573839187923
the regulation term lambda/alpha is 1.7876435488221596
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29397640253114515
the lambda is 0.5040981726158548
the regulation term lambda/alpha is 1.714757267166872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31147944367755503
the lambda is 0.5015764083152872
the regulation term lambda/alpha is 1.610303403631738
1380
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3255807653163206
the lambda is 0.5286156751622443
the regulation term lambda/alpha is 1.6236084298427873
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3213144936560265
the lambda is 0.5152512256330694
the regulation term lambda/alpha is 1.6035729349472045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33367867822249986
the lambda is 0.5297079424332275
the regulation term lambda/alpha is 1.5874791438726978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3193724998352448
the lambda is 0.5203260627142331
the regulation term lambda/alpha is 1.6292137331255965
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30341840282523963
the lambda is 0.5161322259090422
the regulation term lambda/alpha is 1.7010577509575768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32419659915325066
the lambda is 0.5168161917513695
the regulation term lambda/alpha is 1.5941443960276271
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2979954376386801
the lambda is 0.5388315330777891
the regulation term lambda/alpha is 1.8081871902049826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31296912863326054
the lambda is 0.5202468518236028
the regulation term lambda/alpha is 1.6622944700505324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30076649174315534
the lambda is 0.479995398546673
the regulation term lambda/alpha is 1.5959071629447779
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2857359699788579
the lambda is 0.5160475819392046
the regulation term lambda/alpha is 1.8060294683143598
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34094458789329585
the lambda is 0.5395985130146594
the regulation term lambda/alpha is 1.5826575114415236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3396744669142889
the lambda is 0.4935442607216289
the regulation term lambda/alpha is 1.452991934322124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3141388183269966
the lambda is 0.49115873619957956
the regulation term lambda/alpha is 1.5635085750157678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.337646159141678
the lambda is 0.5489893470067452
the regulation term lambda/alpha is 1.6259309698718845
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3150565646720608
the lambda is 0.5301317019550125
the regulation term lambda/alpha is 1.682655628860872
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3126681362836841
the lambda is 0.5622086467571451
the regulation term lambda/alpha is 1.7981002267754354
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3742294909195218
the lambda is 0.5604818053296851
the regulation term lambda/alpha is 1.497695448727254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33870226893058325
the lambda is 0.5132796093054668
the regulation term lambda/alpha is 1.5154300882781007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30622988431373616
the lambda is 0.49174050014048143
the regulation term lambda/alpha is 1.6057887401893391
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2785756466014764
the lambda is 0.5142206264880275
the regulation term lambda/alpha is 1.8458922478017583
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3502978695173971
the lambda is 0.5192253282813982
the regulation term lambda/alpha is 1.4822394695027157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34507529858274855
the lambda is 0.5057735906462858
the regulation term lambda/alpha is 1.4656905108060119
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33864273489378216
the lambda is 0.545547823278395
the regulation term lambda/alpha is 1.610983396556581
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30239778299549774
the lambda is 0.4825662092227381
the regulation term lambda/alpha is 1.5957994282978019
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36398721116906935
the lambda is 0.534562913131946
the regulation term lambda/alpha is 1.4686310307854349
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246318639655638
the lambda is 0.5027099219815375
the regulation term lambda/alpha is 1.5485538475510334
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3119902657790296
the lambda is 0.5713836961763057
the regulation term lambda/alpha is 1.8314151396665503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3239156817192986
the lambda is 0.5190290738478461
the regulation term lambda/alpha is 1.6023585863238028
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29814558143192826
the lambda is 0.517130509208118
the regulation term lambda/alpha is 1.734489931812683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2779901017131471
the lambda is 0.5071468422889762
the regulation term lambda/alpha is 1.8243341729206308
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31639648762443506
the lambda is 0.5112296726369255
the regulation term lambda/alpha is 1.6157880780388398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30254236472396
the lambda is 0.5073955840777634
the regulation term lambda/alpha is 1.6771058973532904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33242336187311994
the lambda is 0.5010913383959129
the regulation term lambda/alpha is 1.507389058255089
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27518115457592374
the lambda is 0.48191373963228795
the regulation term lambda/alpha is 1.7512599668206048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.25936977696493996
the lambda is 0.4820553191636376
the regulation term lambda/alpha is 1.8585639576225526
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34290819120491683
the lambda is 0.5441719401913032
the regulation term lambda/alpha is 1.586931878994148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.294124591651102
the lambda is 0.48764288047318516
the regulation term lambda/alpha is 1.6579466468129922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33738422550906744
the lambda is 0.5424348749548183
the regulation term lambda/alpha is 1.6077659651584393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30942070596194277
the lambda is 0.5122854873434267
the regulation term lambda/alpha is 1.655627685777549
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3685995661125738
the lambda is 0.5700431785531261
the regulation term lambda/alpha is 1.5465107150425392
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32606539191112177
the lambda is 0.542010172754024
the regulation term lambda/alpha is 1.662274458436742
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.313586917792492
the lambda is 0.5600997807802328
the regulation term lambda/alpha is 1.7861069738593633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30957140205392214
the lambda is 0.5255458477888666
the regulation term lambda/alpha is 1.6976563219406338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35060679411360396
the lambda is 0.5134590261645959
the regulation term lambda/alpha is 1.4644868119647003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3362093821467404
the lambda is 0.5050221666564584
the regulation term lambda/alpha is 1.5021061084965164
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29050918673064774
the lambda is 0.5425582107693404
the regulation term lambda/alpha is 1.8676111997531621
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3225920945473412
the lambda is 0.5242328481012766
the regulation term lambda/alpha is 1.625064150554824
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29495476810327464
the lambda is 0.46834723548374957
the regulation term lambda/alpha is 1.5878612117223472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2807875163215933
the lambda is 0.4949114849819607
the regulation term lambda/alpha is 1.7625836485377275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31237264527053976
the lambda is 0.4729999527021039
the regulation term lambda/alpha is 1.514216945252834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3133829437707956
the lambda is 0.5056756224500983
the regulation term lambda/alpha is 1.6136028858671492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32137857194303215
the lambda is 0.49133180768955004
the regulation term lambda/alpha is 1.5288256610233615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3503681488656585
the lambda is 0.5269151176309742
the regulation term lambda/alpha is 1.5038898922088064
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236707991196941
the lambda is 0.5206907996363661
the regulation term lambda/alpha is 1.608704897236694
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026249253187787
the lambda is 0.4864695464014029
the regulation term lambda/alpha is 1.6074999304467936
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29871659655101745
the lambda is 0.5258669492954853
the regulation term lambda/alpha is 1.7604209319707922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3386092405033076
the lambda is 0.5191491643608197
the regulation term lambda/alpha is 1.5331807353785094
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2970096335400911
the lambda is 0.4982323897538786
the regulation term lambda/alpha is 1.677495722328569
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32958161727583607
the lambda is 0.5636221519846898
the regulation term lambda/alpha is 1.7101140428987538
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34133740601609147
the lambda is 0.5291317258419432
the regulation term lambda/alpha is 1.550172106883002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32782962568347584
the lambda is 0.499759394392843
the regulation term lambda/alpha is 1.5244485404603665
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30655037568665816
the lambda is 0.5263474823462087
the regulation term lambda/alpha is 1.71700158959915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31232340109061674
the lambda is 0.5245104899189328
the regulation term lambda/alpha is 1.679382614582737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.283587875234114
the lambda is 0.5397010257716086
the regulation term lambda/alpha is 1.9031174211029374
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3135457308555315
the lambda is 0.5055426180130774
the regulation term lambda/alpha is 1.612340938700294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3671079068993728
the lambda is 0.5097303562555437
the regulation term lambda/alpha is 1.3885027989747574
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31358782576588345
the lambda is 0.49097558645350875
the regulation term lambda/alpha is 1.5656717069751884
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3681505444638745
the lambda is 0.5428953870560131
the regulation term lambda/alpha is 1.474655939587469
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32586241332252947
the lambda is 0.5494501293193873
the regulation term lambda/alpha is 1.6861414721542525
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3283321739210723
the lambda is 0.5327136135955992
the regulation term lambda/alpha is 1.622483740273526
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31833576833919947
the lambda is 0.5252154544873837
the regulation term lambda/alpha is 1.6498788597571157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3110761674048704
the lambda is 0.5463725067446892
the regulation term lambda/alpha is 1.7563946196931797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105294425184307
the lambda is 0.49513899498340885
the regulation term lambda/alpha is 1.5944993523569706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30103739090967097
the lambda is 0.5250850699779926
the regulation term lambda/alpha is 1.7442519960437382
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3004899265955982
the lambda is 0.5145674730475479
the regulation term lambda/alpha is 1.7124283628317998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35343113998976444
the lambda is 0.5201177519042923
the regulation term lambda/alpha is 1.4716240111704793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3225975788547849
the lambda is 0.48266318976676886
the regulation term lambda/alpha is 1.4961773472702855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3104137569104937
the lambda is 0.48227591469581893
the regulation term lambda/alpha is 1.553655094077808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2857303388703261
the lambda is 0.5059898007112826
the regulation term lambda/alpha is 1.7708648045978679
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367343865320216
the lambda is 0.5616392254782887
the regulation term lambda/alpha is 1.6678998282965078
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31310604389054913
the lambda is 0.5377350932773557
the regulation term lambda/alpha is 1.7174216332448982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3431480226848905
the lambda is 0.5699445055193386
the regulation term lambda/alpha is 1.6609290097606455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34873920090931093
the lambda is 0.5085942634024209
the regulation term lambda/alpha is 1.4583799643868542
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3376224718369537
the lambda is 0.5447518579261366
the regulation term lambda/alpha is 1.6134940750899152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282289567578683
the lambda is 0.5170976144278979
the regulation term lambda/alpha is 1.5754174145255455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3263592863732095
the lambda is 0.5186016660569256
the regulation term lambda/alpha is 1.5890513544752531
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2969412810193791
the lambda is 0.5112412909295896
the regulation term lambda/alpha is 1.7216915383894527
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3287113205275472
the lambda is 0.5257254796509709
the regulation term lambda/alpha is 1.5993531309090196
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.307712832313006
the lambda is 0.5514550931538977
the regulation term lambda/alpha is 1.7921095100543507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29257751950372934
the lambda is 0.4822806509416221
the regulation term lambda/alpha is 1.6483858765351065
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33416863988519674
the lambda is 0.5314528327227045
the regulation term lambda/alpha is 1.5903731508297263
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29098603303891757
the lambda is 0.4833003312254035
the regulation term lambda/alpha is 1.6609055980386698
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3157893726168636
the lambda is 0.5081046227784249
the regulation term lambda/alpha is 1.608998487086172
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31118537985313716
the lambda is 0.5071027466504979
the regulation term lambda/alpha is 1.629584098359066
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32817018138412
the lambda is 0.52868878810556
the regulation term lambda/alpha is 1.611020190425939
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257602363804891
the lambda is 0.5091595501392369
the regulation term lambda/alpha is 1.562988644030012
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236811452502424
the lambda is 0.4885035951120765
the regulation term lambda/alpha is 1.509212390899098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30348178713681345
the lambda is 0.49816886598400845
the regulation term lambda/alpha is 1.6415115736728794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3266099381770132
the lambda is 0.5410577521838403
the regulation term lambda/alpha is 1.6565869220139975
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3449002790787569
the lambda is 0.5563133968676368
the regulation term lambda/alpha is 1.61296882204205
1390
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28838223710156236
the lambda is 0.49328010994646615
the regulation term lambda/alpha is 1.7105079525849678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34024981975209484
the lambda is 0.540603245656973
the regulation term lambda/alpha is 1.5888421220938638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3067018427729398
the lambda is 0.5076442832013743
the regulation term lambda/alpha is 1.6551719370567914
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3095524423563556
the lambda is 0.5147471568832813
the regulation term lambda/alpha is 1.6628754500043852
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31454800680864997
the lambda is 0.5231634121045913
the regulation term lambda/alpha is 1.6632227856488977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35638036117816013
the lambda is 0.5249487156889097
the regulation term lambda/alpha is 1.473001244943684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30144075699903305
the lambda is 0.49610077306223016
the regulation term lambda/alpha is 1.6457654167310278
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3171517569071374
the lambda is 0.5411649572682362
the regulation term lambda/alpha is 1.7063281078612793
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3440384973736238
the lambda is 0.5201257336329261
the regulation term lambda/alpha is 1.511824222008715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3036078509836419
the lambda is 0.507287013715928
the regulation term lambda/alpha is 1.6708626343897153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2993281758174127
the lambda is 0.5225011386175439
the regulation term lambda/alpha is 1.7455795372109055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3109181668190527
the lambda is 0.5442777293101653
the regulation term lambda/alpha is 1.7505497825314353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3637751114039034
the lambda is 0.5083180198715687
the regulation term lambda/alpha is 1.3973413901512843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37794302465672214
the lambda is 0.5834241560480201
the regulation term lambda/alpha is 1.5436828251505164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2978885447773581
the lambda is 0.5083863907233326
the regulation term lambda/alpha is 1.706632898902845
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31541441993961566
the lambda is 0.5243993382170095
the regulation term lambda/alpha is 1.6625724921435197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2906464986194013
the lambda is 0.5487256890876541
the regulation term lambda/alpha is 1.8879487339230083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.306116441665717
the lambda is 0.4874341403647799
the regulation term lambda/alpha is 1.5923161059642268
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3151998662289868
the lambda is 0.5334798690778625
the regulation term lambda/alpha is 1.692512993296448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34358446840246176
the lambda is 0.5010175130082852
the regulation term lambda/alpha is 1.4582076871455447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30922715029244513
the lambda is 0.5408041225762583
the regulation term lambda/alpha is 1.7488895204214898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3337947731032106
the lambda is 0.5335518534169293
the regulation term lambda/alpha is 1.59844280501047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3129308915377413
the lambda is 0.5174152729547589
the regulation term lambda/alpha is 1.6534490104578108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29811127761802697
the lambda is 0.48609250375382546
the regulation term lambda/alpha is 1.6305740179902244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33244374213395067
the lambda is 0.5327188169610013
the regulation term lambda/alpha is 1.602432981717413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33941085750061584
the lambda is 0.5132764231806108
the regulation term lambda/alpha is 1.51225693532706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3100861410116178
the lambda is 0.5002605685968041
the regulation term lambda/alpha is 1.6132954764271814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34108848438078065
the lambda is 0.5145245509476006
the regulation term lambda/alpha is 1.5084782234195901
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3051543951890033
the lambda is 0.521183427565451
the regulation term lambda/alpha is 1.7079335437480623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29061923152043617
the lambda is 0.4809410332282194
the regulation term lambda/alpha is 1.6548837140339074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3231192784833306
the lambda is 0.5040529294456056
the regulation term lambda/alpha is 1.5599593184645255
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2985446632215497
the lambda is 0.49489003754784355
the regulation term lambda/alpha is 1.6576750433505023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2975942600965804
the lambda is 0.5416651764530883
the regulation term lambda/alpha is 1.82014658574832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235746425915212
the lambda is 0.5232456633649402
the regulation term lambda/alpha is 1.6170787029980052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32631585048752365
the lambda is 0.5017406389094483
the regulation term lambda/alpha is 1.5375919930332402
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30879114401207836
the lambda is 0.4997086165807976
the regulation term lambda/alpha is 1.618273795317302
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3165800813149827
the lambda is 0.5420364848582231
the regulation term lambda/alpha is 1.7121623148454548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32912059818181905
the lambda is 0.5094343756023482
the regulation term lambda/alpha is 1.5478653673354008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31619494023781397
the lambda is 0.5067950019541915
the regulation term lambda/alpha is 1.6027928896427783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38543538398254124
the lambda is 0.5918003635962888
the regulation term lambda/alpha is 1.535407459173741
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28580818388836393
the lambda is 0.506364715701131
the regulation term lambda/alpha is 1.77169424896145
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29619319422894574
the lambda is 0.5081131949673853
the regulation term lambda/alpha is 1.7154789673345217
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3285347035969714
the lambda is 0.5387363050758137
the regulation term lambda/alpha is 1.6398155177442266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32020769378198816
the lambda is 0.4896940296006249
the regulation term lambda/alpha is 1.5293012601190985
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31750822520258504
the lambda is 0.5164691274685753
the regulation term lambda/alpha is 1.6266322774442896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3051626515058649
the lambda is 0.5287575523933041
the regulation term lambda/alpha is 1.7327072948936608
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.37208982220216763
the lambda is 0.5516385746263223
the regulation term lambda/alpha is 1.4825414233625567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3101116879026459
the lambda is 0.5049247370927417
the regulation term lambda/alpha is 1.6282028597750042
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3023401734686472
the lambda is 0.5538224031175086
the regulation term lambda/alpha is 1.8317856894890623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32691907141457344
the lambda is 0.5447947419516895
the regulation term lambda/alpha is 1.666451392983504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30973382856987364
the lambda is 0.5105239283486754
the regulation term lambda/alpha is 1.6482666123552114
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3036703116057457
the lambda is 0.5332643873436446
the regulation term lambda/alpha is 1.75606362216923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32292148621665756
the lambda is 0.530293499130055
the regulation term lambda/alpha is 1.6421747135595226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30192663700897393
the lambda is 0.518533489824485
the regulation term lambda/alpha is 1.7174155117988912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31702619146753763
the lambda is 0.5179053164811674
the regulation term lambda/alpha is 1.6336357386869063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.315753604724057
the lambda is 0.5485786000669562
the regulation term lambda/alpha is 1.737362905314634
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3139616600719579
the lambda is 0.5091691119385474
the regulation term lambda/alpha is 1.6217557004312222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34558437369061656
the lambda is 0.5178788231658203
the regulation term lambda/alpha is 1.498559722580078
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29070643396851564
the lambda is 0.5076175686962013
the regulation term lambda/alpha is 1.7461518197811123
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32466391454619076
the lambda is 0.50071767546922
the regulation term lambda/alpha is 1.5422646405564164
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3185425157291712
the lambda is 0.5373266732054127
the regulation term lambda/alpha is 1.6868287486693128
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3039830319114794
the lambda is 0.49972856275794175
the regulation term lambda/alpha is 1.6439357144890374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31393452794653415
the lambda is 0.4825050770560741
the regulation term lambda/alpha is 1.5369608440720768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31982804338883625
the lambda is 0.5303743921654642
the regulation term lambda/alpha is 1.658311092878909
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3143412307602397
the lambda is 0.522938022784389
the regulation term lambda/alpha is 1.6635998450462712
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3108304776572651
the lambda is 0.47482269414289147
the regulation term lambda/alpha is 1.527593747310877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3025725344528763
the lambda is 0.4954527404746867
the regulation term lambda/alpha is 1.6374676616652732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3405387217706557
the lambda is 0.5174025804704467
the regulation term lambda/alpha is 1.5193648985941295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3180091972633448
the lambda is 0.5379373758564959
the regulation term lambda/alpha is 1.6915780439237662
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33054476634927044
the lambda is 0.5451691654608399
the regulation term lambda/alpha is 1.6493050895405388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30639106587981485
the lambda is 0.4470266747622594
the regulation term lambda/alpha is 1.4590068854605909
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30396477350216844
the lambda is 0.5328609520448957
the regulation term lambda/alpha is 1.7530352149213577
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3630992545024964
the lambda is 0.5175469440014027
the regulation term lambda/alpha is 1.4253594233084397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31036876161159166
the lambda is 0.5401807723028855
the regulation term lambda/alpha is 1.7404482638587517
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29660840650150566
the lambda is 0.5024591525532225
the regulation term lambda/alpha is 1.694015211772738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33340857492589177
the lambda is 0.5056743320148989
the regulation term lambda/alpha is 1.5166806436436058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31756871210695453
the lambda is 0.5127463009317541
the regulation term lambda/alpha is 1.61459955399846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28292112501482847
the lambda is 0.46930753219390026
the regulation term lambda/alpha is 1.6587928249235644
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29169047229246886
the lambda is 0.5292632939046001
the regulation term lambda/alpha is 1.814468912011375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31546302700704487
the lambda is 0.48465030841621093
the regulation term lambda/alpha is 1.5363141380285676
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30736580559979265
the lambda is 0.5124798411008183
the regulation term lambda/alpha is 1.6673287391249225
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2925766796701849
the lambda is 0.48181437255316534
the regulation term lambda/alpha is 1.646796911826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3265511587780013
the lambda is 0.5250797954769054
the regulation term lambda/alpha is 1.6079556950335905
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203147781739819
the lambda is 0.5320968799922066
the regulation term lambda/alpha is 1.6611686885804353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3044700658376569
the lambda is 0.5217119315264099
the regulation term lambda/alpha is 1.7135081246528392
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33940528825945676
the lambda is 0.5392935494882335
the regulation term lambda/alpha is 1.5889367907431458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.39816748105990596
the lambda is 0.5342632234538783
the regulation term lambda/alpha is 1.341805267551461
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3527605055867728
the lambda is 0.5471435487029348
the regulation term lambda/alpha is 1.5510340302773697
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33248842129668243
the lambda is 0.5268302628511697
the regulation term lambda/alpha is 1.5845070959059784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2984254076468701
the lambda is 0.5187292532991854
the regulation term lambda/alpha is 1.7382208083066546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32943054269926697
the lambda is 0.4801118827759603
the regulation term lambda/alpha is 1.4573994227798375
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3340466875588412
the lambda is 0.5171342647155309
the regulation term lambda/alpha is 1.548089784977854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3164836537103396
the lambda is 0.5072161793831812
the regulation term lambda/alpha is 1.6026615385558232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35560448478126705
the lambda is 0.5717571555476402
the regulation term lambda/alpha is 1.6078457387828757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30852787541236926
the lambda is 0.497677976962194
the regulation term lambda/alpha is 1.6130729720840047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089268783894787
the lambda is 0.48822427067010987
the regulation term lambda/alpha is 1.5803878031440906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3568472227779676
the lambda is 0.5309418850618804
the regulation term lambda/alpha is 1.4878689006702333
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087768606363891
the lambda is 0.49337218175399883
the regulation term lambda/alpha is 1.597827572756452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2689884721814845
the lambda is 0.5176165768307811
the regulation term lambda/alpha is 1.9243076576216587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31211192879423627
the lambda is 0.5266343598550465
the regulation term lambda/alpha is 1.6873253191236943
1400
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33874286715038837
the lambda is 0.5041392151247654
the regulation term lambda/alpha is 1.4882651828678881
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3229144153351871
the lambda is 0.5449672246389667
the regulation term lambda/alpha is 1.687652203675353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32173811515476114
the lambda is 0.4719829585372496
the regulation term lambda/alpha is 1.4669786895165289
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32946770662825536
the lambda is 0.5157730968169004
the regulation term lambda/alpha is 1.5654739036346799
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2937171829045676
the lambda is 0.4594316440269838
the regulation term lambda/alpha is 1.5641973666084728
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3035178275910081
the lambda is 0.5635699837367245
the regulation term lambda/alpha is 1.856793679006355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31501186534308295
the lambda is 0.5619422813873293
the regulation term lambda/alpha is 1.7838765558094507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31561317390298343
the lambda is 0.5095012877189793
the regulation term lambda/alpha is 1.6143219923880467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29047132832044736
the lambda is 0.4916553765513163
the regulation term lambda/alpha is 1.6926124151190685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3141925806359207
the lambda is 0.4940871422781842
the regulation term lambda/alpha is 1.5725614566650803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34278594306903054
the lambda is 0.5411868869207778
the regulation term lambda/alpha is 1.5787896145198494
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3091574173940468
the lambda is 0.5111666839631154
the regulation term lambda/alpha is 1.653418793156727
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3309487431426459
the lambda is 0.5211229428215209
the regulation term lambda/alpha is 1.574633394503952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3152271764578182
the lambda is 0.5034306633459479
the regulation term lambda/alpha is 1.59704080404157
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30976869632276727
the lambda is 0.5056610701829399
the regulation term lambda/alpha is 1.63238273003564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30276097017753534
the lambda is 0.5092800678112044
the regulation term lambda/alpha is 1.6821192887331837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3044984090540056
the lambda is 0.5341129395353446
the regulation term lambda/alpha is 1.754074647531622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33770185675202047
the lambda is 0.5050713681980901
the regulation term lambda/alpha is 1.4956132401989473
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.342827328453843
the lambda is 0.46984473331101617
the regulation term lambda/alpha is 1.3704996489924646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3453095711999859
the lambda is 0.5119170915165707
the regulation term lambda/alpha is 1.4824874090156457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31471085350508804
the lambda is 0.4860317930620772
the regulation term lambda/alpha is 1.5443756948605505
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35879572068993715
the lambda is 0.5503559309915974
the regulation term lambda/alpha is 1.533897700711994
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31668372736190625
the lambda is 0.5011104567825941
the regulation term lambda/alpha is 1.5823688225379668
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.275696299369744
the lambda is 0.4747587669610635
the regulation term lambda/alpha is 1.72203532672142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3478610290189267
the lambda is 0.5382052549690197
the regulation term lambda/alpha is 1.5471846802929357
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3556997796391262
the lambda is 0.5613964870936905
the regulation term lambda/alpha is 1.57828741885433
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3577966211399992
the lambda is 0.5399941518459975
the regulation term lambda/alpha is 1.5092209370940588
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3584382353055269
the lambda is 0.5371185380522362
the regulation term lambda/alpha is 1.4984967705646837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33720336776260085
the lambda is 0.48803054753058706
the regulation term lambda/alpha is 1.4472884739222773
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3023922627448946
the lambda is 0.5504079894583793
the regulation term lambda/alpha is 1.8201788116606565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3025222367108804
the lambda is 0.5412519678414756
the regulation term lambda/alpha is 1.789131184954012
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3317287375340503
the lambda is 0.5098730316404906
the regulation term lambda/alpha is 1.5370179726685713
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32367315646760325
the lambda is 0.5484498593807532
the regulation term lambda/alpha is 1.6944558064877648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3256512371708428
the lambda is 0.5570308274407828
the regulation term lambda/alpha is 1.710513469195125
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2911695229329148
the lambda is 0.4760030115431832
the regulation term lambda/alpha is 1.6347968247104414
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3344607284845536
the lambda is 0.5162413566322657
the regulation term lambda/alpha is 1.5435036542895864
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34613968996322797
the lambda is 0.5681907225696409
the regulation term lambda/alpha is 1.6415069957161006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30201086201374855
the lambda is 0.5025608299606087
the regulation term lambda/alpha is 1.6640488577451575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33191202261077885
the lambda is 0.5037136855811719
the regulation term lambda/alpha is 1.517612051588317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35634918505541113
the lambda is 0.5011674851997081
the regulation term lambda/alpha is 1.4063943632192626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34573844723072955
the lambda is 0.5475853820990153
the regulation term lambda/alpha is 1.5838139682902626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3231273671053956
the lambda is 0.4955674659177832
the regulation term lambda/alpha is 1.5336598393293697
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3060687164953225
the lambda is 0.5282771707701356
the regulation term lambda/alpha is 1.726008384062371
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29861901953999936
the lambda is 0.5204510884790999
the regulation term lambda/alpha is 1.7428598127500938
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31721855660295334
the lambda is 0.5393313595748811
the regulation term lambda/alpha is 1.7001885556459904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3207630574715159
the lambda is 0.554385418525643
the regulation term lambda/alpha is 1.7283331281841054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31978509957292567
the lambda is 0.49178573675694137
the regulation term lambda/alpha is 1.5378632006735875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34149459718934166
the lambda is 0.5027812641085897
the regulation term lambda/alpha is 1.4722963942818184
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2950307053769815
the lambda is 0.5114242802246535
the regulation term lambda/alpha is 1.733461198796819
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35317185464916057
the lambda is 0.5598292013642718
the regulation term lambda/alpha is 1.5851467040611258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314564691490186
the lambda is 0.545961177480233
the regulation term lambda/alpha is 1.6471580080543722
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321929669341007
the lambda is 0.5107956122970985
the regulation term lambda/alpha is 1.586668334554879
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2833595065852322
the lambda is 0.5058265067857968
the regulation term lambda/alpha is 1.7851051227520696
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33809874646030746
the lambda is 0.5442464907389897
the regulation term lambda/alpha is 1.6097264377254465
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33194061936763364
the lambda is 0.5484537475806529
the regulation term lambda/alpha is 1.6522646388546527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33625702823521725
the lambda is 0.5147729069745203
the regulation term lambda/alpha is 1.5308911450154976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32978889907669356
the lambda is 0.5609850312459138
the regulation term lambda/alpha is 1.7010427968209287
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.304042893435657
the lambda is 0.5544118679171922
the regulation term lambda/alpha is 1.823465964464384
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30848438256415905
the lambda is 0.5692721460134086
the regulation term lambda/alpha is 1.8453840070656105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32846362268083695
the lambda is 0.5310928232979449
the regulation term lambda/alpha is 1.6168999749905324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2966000561017737
the lambda is 0.547339851052306
the regulation term lambda/alpha is 1.8453801332542392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3568941321206877
the lambda is 0.5141228224584498
the regulation term lambda/alpha is 1.4405471432200332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3662778518589862
the lambda is 0.5512376757879625
the regulation term lambda/alpha is 1.5049713571001946
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3164250605500165
the lambda is 0.5022062397429511
the regulation term lambda/alpha is 1.5871253650706614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3269631866368345
the lambda is 0.48143472630976397
the regulation term lambda/alpha is 1.4724432168093118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2998776446082932
the lambda is 0.5146851197152866
the regulation term lambda/alpha is 1.7163170678747317
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3364068118779534
the lambda is 0.5418950525505296
the regulation term lambda/alpha is 1.6108325795350609
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31704472394768
the lambda is 0.539464748869356
the regulation term lambda/alpha is 1.701541480180508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28546862415498936
the lambda is 0.48890422527122673
the regulation term lambda/alpha is 1.7126373405078177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2968437765657282
the lambda is 0.48501034822919703
the regulation term lambda/alpha is 1.6338909100282395
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3357671321766894
the lambda is 0.48467951032740353
the regulation term lambda/alpha is 1.4434989725925662
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3072773999655864
the lambda is 0.518344208439408
the regulation term lambda/alpha is 1.6868933689801464
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3111920928347508
the lambda is 0.5256498547404548
the regulation term lambda/alpha is 1.689149135995513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.280291650815319
the lambda is 0.490785003546364
the regulation term lambda/alpha is 1.7509797459851444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3308830925075504
the lambda is 0.5403898740406793
the regulation term lambda/alpha is 1.6331746356255668
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3098804949427316
the lambda is 0.518875668412652
the regulation term lambda/alpha is 1.674437974899144
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33991413475979815
the lambda is 0.5024509032572121
the regulation term lambda/alpha is 1.4781700784884138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32320334179906257
the lambda is 0.5314746545093515
the regulation term lambda/alpha is 1.6443971511896447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.373346783108737
the lambda is 0.5295409555791617
the regulation term lambda/alpha is 1.4183621756958684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29701907665062866
the lambda is 0.5244559509091087
the regulation term lambda/alpha is 1.7657315375941482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3386210890051187
the lambda is 0.513638244095439
the regulation term lambda/alpha is 1.5168524961174956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3372614712501829
the lambda is 0.5414327766912228
the regulation term lambda/alpha is 1.6053798694650898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30341434614668994
the lambda is 0.5008394403211991
the regulation term lambda/alpha is 1.6506781788065525
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32710371336039323
the lambda is 0.5353998599676215
the regulation term lambda/alpha is 1.636789305958547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34578425166099136
the lambda is 0.5433510694588128
the regulation term lambda/alpha is 1.5713586343183639
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3211565881511949
the lambda is 0.5586954188372977
the regulation term lambda/alpha is 1.7396355530289593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32541803690081794
the lambda is 0.5150870878348542
the regulation term lambda/alpha is 1.582847382217613
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3194170756927353
the lambda is 0.5393749241291959
the regulation term lambda/alpha is 1.6886226979551024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3033965138989645
the lambda is 0.5223424289571199
the regulation term lambda/alpha is 1.721649409363575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3175962397770592
the lambda is 0.5042131337868453
the regulation term lambda/alpha is 1.587591635659113
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3260839972824524
the lambda is 0.4974974328362113
the regulation term lambda/alpha is 1.5256726395109828
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30737876781867823
the lambda is 0.522767284856739
the regulation term lambda/alpha is 1.7007267241214192
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32167074431270837
the lambda is 0.5170606443487835
the regulation term lambda/alpha is 1.60742204098651
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2876059003682833
the lambda is 0.5122438158201034
the regulation term lambda/alpha is 1.7810615678056956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31521931062913006
the lambda is 0.5022298573680266
the regulation term lambda/alpha is 1.5932712255656285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3572182269969415
the lambda is 0.4992365830322583
the regulation term lambda/alpha is 1.3975674960072313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2832363760187418
the lambda is 0.4947631973112815
the regulation term lambda/alpha is 1.7468208154115872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3202580644212746
the lambda is 0.513156526848754
the regulation term lambda/alpha is 1.6023219517549339
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3421963832335199
the lambda is 0.5026176064486363
the regulation term lambda/alpha is 1.4687987105510771
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2841418397393742
the lambda is 0.49562942933008164
the regulation term lambda/alpha is 1.744302879803594
1410
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36086576084690475
the lambda is 0.5117800272475833
the regulation term lambda/alpha is 1.4182005686726902
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3282542331965392
the lambda is 0.5163954258829907
the regulation term lambda/alpha is 1.5731569425756764
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28619762931612114
the lambda is 0.5218933290429579
the regulation term lambda/alpha is 1.8235417612998388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.311914481371463
the lambda is 0.519326657407891
the regulation term lambda/alpha is 1.6649648811573392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3506440087657865
the lambda is 0.5272519626764152
the regulation term lambda/alpha is 1.503667393412087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3545975985334913
the lambda is 0.5755889014293324
the regulation term lambda/alpha is 1.6232171447573092
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.300138466676092
the lambda is 0.5050897213661221
the regulation term lambda/alpha is 1.6828556731157438
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2902176378008746
the lambda is 0.5382926654418451
the regulation term lambda/alpha is 1.854789631397871
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3094335777316895
the lambda is 0.4846780978090867
the regulation term lambda/alpha is 1.5663397015993916
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.327575279873777
the lambda is 0.5634434451581585
the regulation term lambda/alpha is 1.7200426276832228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29801867981461877
the lambda is 0.5207418752682456
the regulation term lambda/alpha is 1.7473464267144958
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31267468089889855
the lambda is 0.5312370834094291
the regulation term lambda/alpha is 1.6990089567923838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3238075909146662
the lambda is 0.5261651822964158
the regulation term lambda/alpha is 1.624931586100702
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3280341435739709
the lambda is 0.5152326802713265
the regulation term lambda/alpha is 1.570667841639304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29054220720659873
the lambda is 0.538840711935229
the regulation term lambda/alpha is 1.854603904595762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32942286270537674
the lambda is 0.5001806902186081
the regulation term lambda/alpha is 1.518354512831584
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2998893527974071
the lambda is 0.5066217334685188
the regulation term lambda/alpha is 1.689362188896288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33039289203451516
the lambda is 0.5270698700603236
the regulation term lambda/alpha is 1.5952821103828776
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2912201908111595
the lambda is 0.5021916411275439
the regulation term lambda/alpha is 1.7244396404272253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236609583698657
the lambda is 0.5064004480706661
the regulation term lambda/alpha is 1.5646015837720335
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3150814349668626
the lambda is 0.5254174477287948
the regulation term lambda/alpha is 1.6675607935581906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31922468491558004
the lambda is 0.5250376716336992
the regulation term lambda/alpha is 1.6447276681392826
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30593785514378724
the lambda is 0.5114961525115607
the regulation term lambda/alpha is 1.6718955954998227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33931608056184837
the lambda is 0.539347018746634
the regulation term lambda/alpha is 1.5895121087499575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176071047774225
the lambda is 0.4976995617386528
the regulation term lambda/alpha is 1.5670290565050118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32788012268554245
the lambda is 0.5622623383520289
the regulation term lambda/alpha is 1.7148411856954002
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33205434121686145
the lambda is 0.5299138392969804
the regulation term lambda/alpha is 1.5958648134369635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34051752276349445
the lambda is 0.48131256996928995
the regulation term lambda/alpha is 1.4134737210090194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3255276664225762
the lambda is 0.5267662707736429
the regulation term lambda/alpha is 1.618192015943227
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32987065107879493
the lambda is 0.4921739182937925
the regulation term lambda/alpha is 1.492020938159269
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3315769449015831
the lambda is 0.530761548904451
the regulation term lambda/alpha is 1.6007191002438026
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3184056127920744
the lambda is 0.5185128865810922
the regulation term lambda/alpha is 1.6284665400031502
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32421711879880544
the lambda is 0.46807092202131356
the regulation term lambda/alpha is 1.4436958904436423
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29580497270813894
the lambda is 0.4976344237116565
the regulation term lambda/alpha is 1.6823058083024724
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32110159166391355
the lambda is 0.5657736555616721
the regulation term lambda/alpha is 1.7619771133176094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3417315072787439
the lambda is 0.4780149854485159
the regulation term lambda/alpha is 1.3988027889351395
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29825339876518203
the lambda is 0.49811191064568255
the regulation term lambda/alpha is 1.670096343270345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31351311263667325
the lambda is 0.5093285418325205
the regulation term lambda/alpha is 1.6245844952034767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32175515480017036
the lambda is 0.4973815166431007
the regulation term lambda/alpha is 1.5458385335022995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3049399482110097
the lambda is 0.49236444259630263
the regulation term lambda/alpha is 1.6146275536703394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3106353011603976
the lambda is 0.5175325116308327
the regulation term lambda/alpha is 1.666045390519228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29828940785031977
the lambda is 0.5101759313849052
the regulation term lambda/alpha is 1.71033874471637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3325975688738849
the lambda is 0.5283896970956233
the regulation term lambda/alpha is 1.5886757647828127
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3091166457380279
the lambda is 0.5276161178063358
the regulation term lambda/alpha is 1.7068512002860021
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31210620952435314
the lambda is 0.5412912748713086
the regulation term lambda/alpha is 1.734317544326437
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3126739377201513
the lambda is 0.557434587374988
the regulation term lambda/alpha is 1.7827983727697247
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3164305791304636
the lambda is 0.49504020780525343
the regulation term lambda/alpha is 1.5644512270767281
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32976955885181375
the lambda is 0.5277871486262479
the regulation term lambda/alpha is 1.6004726162835907
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30248956721933307
the lambda is 0.5346958517651283
the regulation term lambda/alpha is 1.7676505562832325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3346575450810761
the lambda is 0.5144844494925859
the regulation term lambda/alpha is 1.5373460334442597
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3288788602681125
the lambda is 0.5172116489719969
the regulation term lambda/alpha is 1.5726509406848146
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3164928304315305
the lambda is 0.5024632678842997
the regulation term lambda/alpha is 1.5875976311981632
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3172207191064768
the lambda is 0.5121758281873928
the regulation term lambda/alpha is 1.6145724328160238
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35496795739662323
the lambda is 0.5473809000381613
the regulation term lambda/alpha is 1.542057215678613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31242833510401036
the lambda is 0.5093555572443734
the regulation term lambda/alpha is 1.6303116587514515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2873728232221753
the lambda is 0.4898981705921444
the regulation term lambda/alpha is 1.7047477388402577
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3244052866537639
the lambda is 0.5486576402661562
the regulation term lambda/alpha is 1.6912721920334661
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.302407770970295
the lambda is 0.5142461921760916
the regulation term lambda/alpha is 1.700505878291749
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3170388445322536
the lambda is 0.5103057217865946
the regulation term lambda/alpha is 1.6095999925166242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3082293118198093
the lambda is 0.5361553790850807
the regulation term lambda/alpha is 1.7394691501582982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33750688833065773
the lambda is 0.501945607844203
the regulation term lambda/alpha is 1.4872158915833549
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31311263713440457
the lambda is 0.5328037778640039
the regulation term lambda/alpha is 1.7016361356098708
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33284469235085634
the lambda is 0.5348770570403157
the regulation term lambda/alpha is 1.6069868900793352
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3234121042525367
the lambda is 0.5162440065258074
the regulation term lambda/alpha is 1.5962420692909431
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34542132174892237
the lambda is 0.5303159803365552
the regulation term lambda/alpha is 1.5352728593923566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29717479097199706
the lambda is 0.5272683796117338
the regulation term lambda/alpha is 1.7742702127833534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3225051240137792
the lambda is 0.4871931566481957
the regulation term lambda/alpha is 1.510652452850269
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32403206766539694
the lambda is 0.5393823256866388
the regulation term lambda/alpha is 1.6645955123294078
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31562766222745897
the lambda is 0.5128996451482555
the regulation term lambda/alpha is 1.6250148720444892
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3436261928579514
the lambda is 0.5008868114413205
the regulation term lambda/alpha is 1.4576502660505213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32399299851394936
the lambda is 0.5083336836836001
the regulation term lambda/alpha is 1.5689650270689848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3017424719847396
the lambda is 0.49714164813602035
the regulation term lambda/alpha is 1.647569349008193
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3392558450334865
the lambda is 0.5184831282412348
the regulation term lambda/alpha is 1.5282953435630786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29260160836194554
the lambda is 0.47378667347311293
the regulation term lambda/alpha is 1.6192210156515718
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3124122019583059
the lambda is 0.5035653157526366
the regulation term lambda/alpha is 1.611861869018297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32324068123006655
the lambda is 0.5014293247599384
the regulation term lambda/alpha is 1.551256861765633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34927830395384996
the lambda is 0.5295557526702436
the regulation term lambda/alpha is 1.516142705331659
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27249592707556536
the lambda is 0.48381806475000505
the regulation term lambda/alpha is 1.7755056743135773
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35213846503840934
the lambda is 0.550077021420787
the regulation term lambda/alpha is 1.5621043312061564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2933866255755431
the lambda is 0.4683494557332713
the regulation term lambda/alpha is 1.5963558489229006
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32382863875394907
the lambda is 0.549657273850697
the regulation term lambda/alpha is 1.6973707945217797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3127682656942895
the lambda is 0.5241913694793126
the regulation term lambda/alpha is 1.6759736423888838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33225582456808267
the lambda is 0.5072320472935746
the regulation term lambda/alpha is 1.5266310167863966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3201490184180536
the lambda is 0.4781988119802308
the regulation term lambda/alpha is 1.4936757087157277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32068461246905444
the lambda is 0.5167219205912328
the regulation term lambda/alpha is 1.611308745414455
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2882414200140294
the lambda is 0.5236741735241305
the regulation term lambda/alpha is 1.8167901528470196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3114023209628503
the lambda is 0.5383766230185626
the regulation term lambda/alpha is 1.7288780037152962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3044372242333322
the lambda is 0.48599196265962596
the regulation term lambda/alpha is 1.596361824292365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33567884912428697
the lambda is 0.5386556154811208
the regulation term lambda/alpha is 1.604675471470294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30500168871329775
the lambda is 0.5098510084507638
the regulation term lambda/alpha is 1.6716333952171158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2871876238385127
the lambda is 0.4885005219221915
the regulation term lambda/alpha is 1.7009804092284917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32894966941989917
the lambda is 0.5307768493994789
the regulation term lambda/alpha is 1.6135503353309362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.323874531167357
the lambda is 0.4654639388484125
the regulation term lambda/alpha is 1.4371736399608757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3228423495782542
the lambda is 0.5270852237694168
the regulation term lambda/alpha is 1.6326396597533617
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30221284997879044
the lambda is 0.5137643448338864
the regulation term lambda/alpha is 1.7000082718850071
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31016350684091193
the lambda is 0.4949588975521999
the regulation term lambda/alpha is 1.5957999140307393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36140118144899436
the lambda is 0.5119678806875173
the regulation term lambda/alpha is 1.4166192778751967
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3452447220375266
the lambda is 0.47955824248095874
the regulation term lambda/alpha is 1.3890385916713097
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32860030189370903
the lambda is 0.5179120895299234
the regulation term lambda/alpha is 1.576115683842099
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31848460516456134
the lambda is 0.5459075872834523
the regulation term lambda/alpha is 1.7140784151917838
1420
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3401052612406638
the lambda is 0.536555660126074
the regulation term lambda/alpha is 1.5776164654694913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3060507577953382
the lambda is 0.4455697843742048
the regulation term lambda/alpha is 1.455868913979836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33499809184539026
the lambda is 0.5426283063868936
the regulation term lambda/alpha is 1.6197952155420925
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30795667049561487
the lambda is 0.5134812119982962
the regulation term lambda/alpha is 1.6673813597605054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34410075655502825
the lambda is 0.5409833430917831
the regulation term lambda/alpha is 1.5721655148563138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3038471687437148
the lambda is 0.5081002143424193
the regulation term lambda/alpha is 1.6722229680243794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257859179915312
the lambda is 0.5297109191712437
the regulation term lambda/alpha is 1.6259478691924723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.337939052434837
the lambda is 0.5251377112074463
the regulation term lambda/alpha is 1.5539420715772583
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3124813274180297
the lambda is 0.5241597409993625
the regulation term lambda/alpha is 1.6774114003239453
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33817033168296046
the lambda is 0.5406062164124968
the regulation term lambda/alpha is 1.5986210668513727
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2955601532566282
the lambda is 0.5697663313686985
the regulation term lambda/alpha is 1.927750832075064
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32409062445047476
the lambda is 0.5609939017843049
the regulation term lambda/alpha is 1.7309784963249746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2906476377125348
the lambda is 0.4996144571189338
the regulation term lambda/alpha is 1.7189696123148186
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3130789441359324
the lambda is 0.5106789069212949
the regulation term lambda/alpha is 1.6311505979129939
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32177556440484073
the lambda is 0.5079171553961297
the regulation term lambda/alpha is 1.5784826804222325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052114844935966
the lambda is 0.5117394260896537
the regulation term lambda/alpha is 1.6766715935959158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3503547138249906
the lambda is 0.5203892615178488
the regulation term lambda/alpha is 1.4853211359325222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3219542661159443
the lambda is 0.509549781644154
the regulation term lambda/alpha is 1.5826775268157234
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30453949504331057
the lambda is 0.4735237263557064
the regulation term lambda/alpha is 1.5548844536186135
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3196359498028959
the lambda is 0.523135796985518
the regulation term lambda/alpha is 1.6366613245728796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3272485665454811
the lambda is 0.5248148060976862
the regulation term lambda/alpha is 1.6037191900877195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30477900598275826
the lambda is 0.49010923423471026
the regulation term lambda/alpha is 1.6080806899883267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32436458571064214
the lambda is 0.5298121022620845
the regulation term lambda/alpha is 1.6333845481353417
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3345000279205161
the lambda is 0.5252100654413397
the regulation term lambda/alpha is 1.570134593729063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30317008572103754
the lambda is 0.5069793799926123
the regulation term lambda/alpha is 1.6722605688052952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33048191903818397
the lambda is 0.5166568892720965
the regulation term lambda/alpha is 1.563343891174881
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29470412017013714
the lambda is 0.49730922422632207
the regulation term lambda/alpha is 1.6874864998128223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3348268646116266
the lambda is 0.5348189679023027
the regulation term lambda/alpha is 1.5973000509461854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33385329712759776
the lambda is 0.5393012566197316
the regulation term lambda/alpha is 1.615383946361363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34733334615865813
the lambda is 0.5436096588110532
the regulation term lambda/alpha is 1.5650949291886824
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34297286666500393
the lambda is 0.5301521624538751
the regulation term lambda/alpha is 1.5457554051110902
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32912111791545173
the lambda is 0.49351627228753464
the regulation term lambda/alpha is 1.4994974355134347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26243267794113667
the lambda is 0.4620259363937662
the regulation term lambda/alpha is 1.760550324824251
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3194110534494505
the lambda is 0.521208098691085
the regulation term lambda/alpha is 1.6317785282079182
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30890824508094755
the lambda is 0.5086420876124321
the regulation term lambda/alpha is 1.6465798362848667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3241119718691683
the lambda is 0.5392486089534644
the regulation term lambda/alpha is 1.6637725716936447
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3053997633963042
the lambda is 0.4791408540368263
the regulation term lambda/alpha is 1.5688972666788408
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32668325405860554
the lambda is 0.4888750010735877
the regulation term lambda/alpha is 1.4964801378704453
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34420785661195413
the lambda is 0.543973485964105
the regulation term lambda/alpha is 1.5803633633422798
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3355067509697074
the lambda is 0.543274216011373
the regulation term lambda/alpha is 1.6192646330995133
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3355551966851014
the lambda is 0.5302885428751518
the regulation term lambda/alpha is 1.5803317847966338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3104125797218543
the lambda is 0.4888299392429215
the regulation term lambda/alpha is 1.5747749001697622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3289296801230283
the lambda is 0.5054662219440929
the regulation term lambda/alpha is 1.5366999467942062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33805173609835193
the lambda is 0.5741380634815801
the regulation term lambda/alpha is 1.6983733617464454
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32277895701302184
the lambda is 0.4986668400471864
the regulation term lambda/alpha is 1.5449174402873753
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3329946471600187
the lambda is 0.5273345206349768
the regulation term lambda/alpha is 1.5836126049845154
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32032916800262334
the lambda is 0.5409360017790223
the regulation term lambda/alpha is 1.6886879366995151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3448311107106983
the lambda is 0.49898305965219225
the regulation term lambda/alpha is 1.4470360827472504
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3125428907895942
the lambda is 0.545252732443849
the regulation term lambda/alpha is 1.7445693007649197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3278475630989096
the lambda is 0.4856812163812293
the regulation term lambda/alpha is 1.4814239025918952
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32896994373086036
the lambda is 0.5201285238326285
the regulation term lambda/alpha is 1.5810822044525759
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3121328675834612
the lambda is 0.5135358266795818
the regulation term lambda/alpha is 1.6452475212091127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34632498894803976
the lambda is 0.5418947051775418
the regulation term lambda/alpha is 1.5646999854776404
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36385103709184885
the lambda is 0.5085385590256095
the regulation term lambda/alpha is 1.3976559283442043
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3347259921529064
the lambda is 0.5477052107179504
the regulation term lambda/alpha is 1.6362792957762087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30711519004946836
the lambda is 0.5368079180827198
the regulation term lambda/alpha is 1.7479041593359605
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3057810692262424
the lambda is 0.5002091603448019
the regulation term lambda/alpha is 1.635840837402218
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3123032993085145
the lambda is 0.49212008074841335
the regulation term lambda/alpha is 1.5757761184016936
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3107546962380315
the lambda is 0.5285955703818183
the regulation term lambda/alpha is 1.7010058955856464
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3158651245624929
the lambda is 0.5086393960845206
the regulation term lambda/alpha is 1.6103056543169834
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2971489214983884
the lambda is 0.5239388268162769
the regulation term lambda/alpha is 1.763219681815734
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2974886642292913
the lambda is 0.5283693720323043
the regulation term lambda/alpha is 1.7760991781019937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.291246006365495
the lambda is 0.4861011392868434
the regulation term lambda/alpha is 1.6690396732060857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29606939897145446
the lambda is 0.5169863424506516
the regulation term lambda/alpha is 1.7461660821640566
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3086814341185785
the lambda is 0.49258603786491295
the regulation term lambda/alpha is 1.595774748395423
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32187983980974405
the lambda is 0.5048744110527991
the regulation term lambda/alpha is 1.568518274866854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3501224838087355
the lambda is 0.518584319895815
the regulation term lambda/alpha is 1.4811511510329243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29363030772472987
the lambda is 0.4950538263993385
the regulation term lambda/alpha is 1.6859765949754666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3373659132761471
the lambda is 0.5248747867296278
the regulation term lambda/alpha is 1.5558026643314062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36771103907313707
the lambda is 0.5022374824492852
the regulation term lambda/alpha is 1.365848258771995
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3097054592504631
the lambda is 0.5109077855734431
the regulation term lambda/alpha is 1.6496570219004918
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3084826299202259
the lambda is 0.525138235725841
the regulation term lambda/alpha is 1.702326759408277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28044097971644233
the lambda is 0.4600530576896162
the regulation term lambda/alpha is 1.6404630241799256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.335523595084201
the lambda is 0.5342438768378536
the regulation term lambda/alpha is 1.5922691717218365
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3160145169732471
the lambda is 0.5176354439809049
the regulation term lambda/alpha is 1.6380115981340388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2940195945689686
the lambda is 0.5029789554991811
the regulation term lambda/alpha is 1.7106987588243772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3145356173282444
the lambda is 0.4952112797135112
the regulation term lambda/alpha is 1.5744203595127877
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3429344825869978
the lambda is 0.5317905151917479
the regulation term lambda/alpha is 1.550705870054464
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3348248920820821
the lambda is 0.5008296127843571
the regulation term lambda/alpha is 1.495795637146294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31163205823721324
the lambda is 0.5126303262305273
the regulation term lambda/alpha is 1.644985850076807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3151184695205592
the lambda is 0.48278991276430855
the regulation term lambda/alpha is 1.532090180238737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3243749361945131
the lambda is 0.5296419609226662
the regulation term lambda/alpha is 1.632807907837441
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32047118663984153
the lambda is 0.49630308483685986
the regulation term lambda/alpha is 1.5486667929202176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37903597531305977
the lambda is 0.5252260335800852
the regulation term lambda/alpha is 1.3856891371492686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3094273253935377
the lambda is 0.5485316527345049
the regulation term lambda/alpha is 1.7727317780899543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33835946605303846
the lambda is 0.5341551526827301
the regulation term lambda/alpha is 1.578661767361343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3077191663989512
the lambda is 0.5214240130255273
the regulation term lambda/alpha is 1.6944801298126242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33848672888287185
the lambda is 0.5300637769748561
the regulation term lambda/alpha is 1.565980972796947
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146770876069903
the lambda is 0.557315284790549
the regulation term lambda/alpha is 1.7710704297816462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2892699381896748
the lambda is 0.494593629449981
the regulation term lambda/alpha is 1.709799616736099
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32292994811811354
the lambda is 0.49021046244004
the regulation term lambda/alpha is 1.5180086743170151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29941300621863526
the lambda is 0.47879814969233897
the regulation term lambda/alpha is 1.599122749339467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3291221538942184
the lambda is 0.5049736708449126
the regulation term lambda/alpha is 1.5343047098774574
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34726770991190703
the lambda is 0.5259796517588993
the regulation term lambda/alpha is 1.5146229745700426
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33802787068590756
the lambda is 0.5555186785053858
the regulation term lambda/alpha is 1.6434108743109197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3051433004672326
the lambda is 0.4408675559738892
the regulation term lambda/alpha is 1.4447885806401022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.375720640549322
the lambda is 0.5503368617925275
the regulation term lambda/alpha is 1.4647501425205387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3510210906991823
the lambda is 0.5091757503304327
the regulation term lambda/alpha is 1.4505560031057667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3230494250711711
the lambda is 0.5370115418379611
the regulation term lambda/alpha is 1.6623200667193632
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31717650601227093
the lambda is 0.5081227342577355
the regulation term lambda/alpha is 1.602018827454002
1430
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3071572247944588
the lambda is 0.4993382255068261
the regulation term lambda/alpha is 1.6256763155773712
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105120040114608
the lambda is 0.5029868266551264
the regulation term lambda/alpha is 1.6198627433307264
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3304717285357479
the lambda is 0.5219622968456964
the regulation term lambda/alpha is 1.5794461425139261
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3485158935743461
the lambda is 0.528897318091079
the regulation term lambda/alpha is 1.517570153449124
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.298351874996695
the lambda is 0.4786608154315997
the regulation term lambda/alpha is 1.6043499489885964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32722239857643826
the lambda is 0.543371538539737
the regulation term lambda/alpha is 1.6605572873484298
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33132176629677124
the lambda is 0.5157155081535088
the regulation term lambda/alpha is 1.5565397767787237
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3266628426138755
the lambda is 0.5347037039316723
the regulation term lambda/alpha is 1.6368672348930327
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3331506390510101
the lambda is 0.4907563855147895
the regulation term lambda/alpha is 1.4730765245197315
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35948708302900334
the lambda is 0.527983454620635
the regulation term lambda/alpha is 1.4687132849722933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34453455174916187
the lambda is 0.5115483512759635
the regulation term lambda/alpha is 1.484751960808842
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29337233986391
the lambda is 0.49769000283546827
the regulation term lambda/alpha is 1.696444876385884
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32079159855392053
the lambda is 0.5149210767950733
the regulation term lambda/alpha is 1.605157613591686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3078117583924655
the lambda is 0.49909746095850066
the regulation term lambda/alpha is 1.621437282204608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3152470982387435
the lambda is 0.4597327838073087
the regulation term lambda/alpha is 1.4583251880058323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2784953569976744
the lambda is 0.47350977362169533
the regulation term lambda/alpha is 1.7002429725449584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3187503120351328
the lambda is 0.500809859016598
the regulation term lambda/alpha is 1.5711666470820538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3712369831144918
the lambda is 0.5419630341165498
the regulation term lambda/alpha is 1.4598842754559422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3111793033101914
the lambda is 0.492593686714917
the regulation term lambda/alpha is 1.5829898758526597
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30413211182175853
the lambda is 0.5033538423218524
the regulation term lambda/alpha is 1.6550499692608946
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3267275062420213
the lambda is 0.5156579654534496
the regulation term lambda/alpha is 1.5782508530869734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36349900530323254
the lambda is 0.49928497935087107
the regulation term lambda/alpha is 1.3735525326523665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.333705725707196
the lambda is 0.49210048229075315
the regulation term lambda/alpha is 1.4746539971643693
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2845153724825212
the lambda is 0.5279664521533279
the regulation term lambda/alpha is 1.8556693353564326
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31888970246724696
the lambda is 0.5195640122044101
the regulation term lambda/alpha is 1.6292906549962185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3304022014678724
the lambda is 0.4877376612425026
the regulation term lambda/alpha is 1.4761937392536688
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30978328314160036
the lambda is 0.5191871859551772
the regulation term lambda/alpha is 1.675969021601012
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32526880276766185
the lambda is 0.5120885420527627
the regulation term lambda/alpha is 1.5743549264346306
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2758685722325331
the lambda is 0.4813829003998358
the regulation term lambda/alpha is 1.7449718773839598
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3347229013737087
the lambda is 0.5481743537418129
the regulation term lambda/alpha is 1.6376959911977809
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3133356003041239
the lambda is 0.5167375626918128
the regulation term lambda/alpha is 1.6491505024972162
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2989428298280581
the lambda is 0.5280665520099537
the regulation term lambda/alpha is 1.7664466222979152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30755107370092377
the lambda is 0.5110187102709242
the regulation term lambda/alpha is 1.6615734880114945
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31356471144610115
the lambda is 0.535390020771964
the regulation term lambda/alpha is 1.7074307191738713
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29514053933868695
the lambda is 0.46409939399968536
the regulation term lambda/alpha is 1.5724691533043198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3683709169945949
the lambda is 0.492717671517575
the regulation term lambda/alpha is 1.337558555212448
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3246753790223254
the lambda is 0.5302382882990646
the regulation term lambda/alpha is 1.633133654592898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3312882561939576
the lambda is 0.48201524824768416
the regulation term lambda/alpha is 1.4549723367359007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30631858944306073
the lambda is 0.46463618396984263
the regulation term lambda/alpha is 1.5168396564329647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32246916839850187
the lambda is 0.4878077527099826
the regulation term lambda/alpha is 1.512726798449017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3018284648594724
the lambda is 0.5106759394444274
the regulation term lambda/alpha is 1.691940949579397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3110869687342437
the lambda is 0.5023496153906232
the regulation term lambda/alpha is 1.6148205032007366
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32185747797824754
the lambda is 0.5061830911546771
the regulation term lambda/alpha is 1.57269327509267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31844639993160373
the lambda is 0.5165194193030789
the regulation term lambda/alpha is 1.621997985890302
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196684006263115
the lambda is 0.5401119364841463
the regulation term lambda/alpha is 1.689600646876357
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29798608202046667
the lambda is 0.5290174674021683
the regulation term lambda/alpha is 1.7753093158419178
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3109574377355198
the lambda is 0.47788072405324544
the regulation term lambda/alpha is 1.536804289144226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3160612871003552
the lambda is 0.5449828677808396
the regulation term lambda/alpha is 1.724294907423438
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29106451979479836
the lambda is 0.5202743232462784
the regulation term lambda/alpha is 1.7874879549492115
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29329091432823273
the lambda is 0.5390769614547058
the regulation term lambda/alpha is 1.8380281662984106
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257524237262117
the lambda is 0.5074105568877085
the regulation term lambda/alpha is 1.557657042374539
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3122276427430541
the lambda is 0.549205838892345
the regulation term lambda/alpha is 1.7589917217685647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2846505628204263
the lambda is 0.5108417373484202
the regulation term lambda/alpha is 1.794627533094632
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29975973073183515
the lambda is 0.544644393888343
the regulation term lambda/alpha is 1.816936492966033
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3356515428457221
the lambda is 0.5492480532290107
the regulation term lambda/alpha is 1.6363638569105745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30530028941260273
the lambda is 0.525524033188837
the regulation term lambda/alpha is 1.7213348673856301
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3198550084725032
the lambda is 0.5124014645438003
the regulation term lambda/alpha is 1.6019804316675244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35354377878026044
the lambda is 0.5062132343376058
the regulation term lambda/alpha is 1.4318261689798666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3782227654240323
the lambda is 0.5052784807432447
the regulation term lambda/alpha is 1.3359282595714932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235770892917137
the lambda is 0.52596330986186
the regulation term lambda/alpha is 1.6254652361610482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3051223437153941
the lambda is 0.496360396521283
the regulation term lambda/alpha is 1.6267585994432059
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31909975231013904
the lambda is 0.5440659857136264
the regulation term lambda/alpha is 1.7050028455830277
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29755295294152867
the lambda is 0.5207099159783007
the regulation term lambda/alpha is 1.7499739486054573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3198406609906462
the lambda is 0.5283439017069806
the regulation term lambda/alpha is 1.6518972292970349
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32638681293980404
the lambda is 0.5181251109206679
the regulation term lambda/alpha is 1.5874572451437443
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31449877372878277
the lambda is 0.5158579399029757
the regulation term lambda/alpha is 1.6402542171685568
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3103485945398528
the lambda is 0.48485980321497496
the regulation term lambda/alpha is 1.5623070693581396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27503417689752674
the lambda is 0.4753233894804853
the regulation term lambda/alpha is 1.7282339047542556
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32363713002846667
the lambda is 0.5396935836912855
the regulation term lambda/alpha is 1.6675885849185932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3021567039509193
the lambda is 0.5272531988373339
the regulation term lambda/alpha is 1.7449660786708145
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3396276505724376
the lambda is 0.5185624226767291
the regulation term lambda/alpha is 1.526855725093936
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3473345822461986
the lambda is 0.5438464771610706
the regulation term lambda/alpha is 1.5657711755738157
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3529825603351606
the lambda is 0.5327731039857122
the regulation term lambda/alpha is 1.5093468172473976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3044725891675617
the lambda is 0.4881151146013215
the regulation term lambda/alpha is 1.603149616639858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3123461056550598
the lambda is 0.4922245414203077
the regulation term lambda/alpha is 1.575894600600198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27025091501882637
the lambda is 0.49363884644324135
the regulation term lambda/alpha is 1.8265945423676113
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3419830991677032
the lambda is 0.5277199538760682
the regulation term lambda/alpha is 1.543117058007836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156471717032293
the lambda is 0.56722769230935
the regulation term lambda/alpha is 1.7970308089522693
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34539610002493315
the lambda is 0.5571371772487534
the regulation term lambda/alpha is 1.61303841360263
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32920630508551174
the lambda is 0.5193537550784162
the regulation term lambda/alpha is 1.5775935851031573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233857549783946
the lambda is 0.4846603081261949
the regulation term lambda/alpha is 1.4987064231031917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3346865185762968
the lambda is 0.523713384175098
the regulation term lambda/alpha is 1.5647878092099183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30467024213112587
the lambda is 0.5291822385068127
the regulation term lambda/alpha is 1.7369016245408697
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30275273125317725
the lambda is 0.5248396902037593
the regulation term lambda/alpha is 1.7335588948489506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37034204023171996
the lambda is 0.5355806947483299
the regulation term lambda/alpha is 1.446178496001214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31230017025384144
the lambda is 0.4877702167085512
the regulation term lambda/alpha is 1.5618634351434568
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32601461047193425
the lambda is 0.526716210183254
the regulation term lambda/alpha is 1.615621488315468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33486623656427444
the lambda is 0.4872768725468522
the regulation term lambda/alpha is 1.4551388564768726
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3328503050402476
the lambda is 0.5243932623366668
the regulation term lambda/alpha is 1.5754627662824532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32478621667126567
the lambda is 0.4887445638128975
the regulation term lambda/alpha is 1.504819289506929
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31666521461278235
the lambda is 0.5092451462622007
the regulation term lambda/alpha is 1.608149941208114
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30470905251480257
the lambda is 0.4672690483796245
the regulation term lambda/alpha is 1.533492505467736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203311037201077
the lambda is 0.5222187967690239
the regulation term lambda/alpha is 1.6302469248359894
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3325615079558501
the lambda is 0.5640404872848814
the regulation term lambda/alpha is 1.696048621958263
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31943134999069284
the lambda is 0.5257099704797376
the regulation term lambda/alpha is 1.645768239388698
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3503417570141565
the lambda is 0.5283631473777249
the regulation term lambda/alpha is 1.5081363748380556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31156903121582247
the lambda is 0.483429708442433
the regulation term lambda/alpha is 1.5515974310924483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3229668102743972
the lambda is 0.5390230762264653
the regulation term lambda/alpha is 1.668973588241168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3131109622298564
the lambda is 0.5047024384990317
the regulation term lambda/alpha is 1.6118964181411413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32256797649716956
the lambda is 0.531003992088901
the regulation term lambda/alpha is 1.6461770255534354
1440
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3245753680127902
the lambda is 0.5129674079371084
the regulation term lambda/alpha is 1.580426176754406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35818363344445703
the lambda is 0.5729223241685307
the regulation term lambda/alpha is 1.5995212250739896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33491681681881413
the lambda is 0.5127338254456513
the regulation term lambda/alpha is 1.530928874565991
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31903432931718445
the lambda is 0.5165453515642286
the regulation term lambda/alpha is 1.6190901859049733
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3026845150180923
the lambda is 0.5198057823488361
the regulation term lambda/alpha is 1.717318714892851
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3068860636900947
the lambda is 0.521253951781883
the regulation term lambda/alpha is 1.6985259790365237
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3298127904397691
the lambda is 0.5437395983122656
the regulation term lambda/alpha is 1.6486310236399524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3566864326207198
the lambda is 0.5355021377425927
the regulation term lambda/alpha is 1.5013246615747098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3457003865666138
the lambda is 0.5288402240968768
the regulation term lambda/alpha is 1.5297646304337396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156535669243594
the lambda is 0.5401080522568329
the regulation term lambda/alpha is 1.7110785647680005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31133030779947224
the lambda is 0.49818477770273334
the regulation term lambda/alpha is 1.6001807894129407
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32792694615199774
the lambda is 0.5105296619377416
the regulation term lambda/alpha is 1.5568396190934108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3126329622636889
the lambda is 0.5080562457950214
the regulation term lambda/alpha is 1.6250885450987844
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29249397039654274
the lambda is 0.4995022578792473
the regulation term lambda/alpha is 1.7077352302410107
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2957796073300095
the lambda is 0.483796935253489
the regulation term lambda/alpha is 1.635666973868497
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31318475243390026
the lambda is 0.5217510681706776
the regulation term lambda/alpha is 1.6659529690251975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087341990952229
the lambda is 0.5070675990741523
the regulation term lambda/alpha is 1.642408261087258
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31033175493202436
the lambda is 0.5389200432709946
the regulation term lambda/alpha is 1.7365932899423737
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3005708797510863
the lambda is 0.5115433084864307
the regulation term lambda/alpha is 1.7019057498519428
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2937731455891258
the lambda is 0.49445964370963813
the regulation term lambda/alpha is 1.683134252172915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3352481607047999
the lambda is 0.5178939349271687
the regulation term lambda/alpha is 1.544807684666751
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32926160899553325
the lambda is 0.5154246769622568
the regulation term lambda/alpha is 1.5653956090861751
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32869852245126335
the lambda is 0.5182333941866542
the regulation term lambda/alpha is 1.5766222200268436
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3171380573061339
the lambda is 0.49684412101090025
the regulation term lambda/alpha is 1.566649317433687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26774595414483765
the lambda is 0.5289635702389729
the regulation term lambda/alpha is 1.9756174166233307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3444435280422892
the lambda is 0.5031147246000176
the regulation term lambda/alpha is 1.4606595381819671
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2985765471857466
the lambda is 0.4956622717322416
the regulation term lambda/alpha is 1.6600844118673745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2806854665553191
the lambda is 0.5021798691350456
the regulation term lambda/alpha is 1.789119598167984
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32961849888345807
the lambda is 0.5704823329198313
the regulation term lambda/alpha is 1.730735182801541
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3029637911628025
the lambda is 0.5671062628073045
the regulation term lambda/alpha is 1.8718615205820446
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2949348624107738
the lambda is 0.5466357741635122
the regulation term lambda/alpha is 1.8534118676081741
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3244872371563444
the lambda is 0.528985188433589
the regulation term lambda/alpha is 1.6302187816980716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3259349469251764
the lambda is 0.5246206233537444
the regulation term lambda/alpha is 1.6095869077646943
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34265096438321
the lambda is 0.5408328849483873
the regulation term lambda/alpha is 1.5783784117517816
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3269669497609502
the lambda is 0.5316965272978277
the regulation term lambda/alpha is 1.6261476203835217
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3623201597138923
the lambda is 0.5541799878604736
the regulation term lambda/alpha is 1.5295311977619028
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3549695459526335
the lambda is 0.48821232198886744
the regulation term lambda/alpha is 1.375363964473768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.303633760947666
the lambda is 0.4888836992974326
the regulation term lambda/alpha is 1.6101098170756318
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34455649323243653
the lambda is 0.5777248506041337
the regulation term lambda/alpha is 1.67672025328631
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3051794451903878
the lambda is 0.5403761515478274
the regulation term lambda/alpha is 1.770683314568289
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3515678545061679
the lambda is 0.5110934632056017
the regulation term lambda/alpha is 1.453754820455677
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178339787595137
the lambda is 0.5570755778450927
the regulation term lambda/alpha is 1.75272505482052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32662451310226615
the lambda is 0.5054470813841814
the regulation term lambda/alpha is 1.5474866738673894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30095936244343086
the lambda is 0.503420201912564
the regulation term lambda/alpha is 1.6727181963218978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29402739110845694
the lambda is 0.5674578427967975
the regulation term lambda/alpha is 1.9299489093772257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32456092967392275
the lambda is 0.564943332193279
the regulation term lambda/alpha is 1.7406387539031938
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.340370570316378
the lambda is 0.5520794709781223
the regulation term lambda/alpha is 1.6219953166484358
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3109792490649345
the lambda is 0.5258002660889405
the regulation term lambda/alpha is 1.6907889117037191
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28001000108081353
the lambda is 0.5106301225576696
the regulation term lambda/alpha is 1.8236138730284028
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32622761753477003
the lambda is 0.5162621287399882
the regulation term lambda/alpha is 1.582521224417684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080917521730234
the lambda is 0.5277553401117634
the regulation term lambda/alpha is 1.71298107264935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32416249524270013
the lambda is 0.5111634030426899
the regulation term lambda/alpha is 1.5768739769231552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026606299459996
the lambda is 0.5392072454549514
the regulation term lambda/alpha is 1.7815572694445132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32762212407529656
the lambda is 0.5455681042728124
the regulation term lambda/alpha is 1.6652358439243435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3384932590011655
the lambda is 0.5190011355431197
the regulation term lambda/alpha is 1.5332687483189513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3466467603522195
the lambda is 0.5289805549505234
the regulation term lambda/alpha is 1.525993072639822
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.322261521509355
the lambda is 0.5087248025343434
the regulation term lambda/alpha is 1.57860857899405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3307705060998838
the lambda is 0.49525016405850153
the regulation term lambda/alpha is 1.4972621649312026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3622588380163282
the lambda is 0.534627799018546
the regulation term lambda/alpha is 1.4758171310493977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30783361704462714
the lambda is 0.5167660939116493
the regulation term lambda/alpha is 1.678718844526759
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3077412976390714
the lambda is 0.5132483595685573
the regulation term lambda/alpha is 1.6677916272729538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32184953060939897
the lambda is 0.5403805705019457
the regulation term lambda/alpha is 1.678985112946332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32479919365499854
the lambda is 0.4907606827634932
the regulation term lambda/alpha is 1.5109664443464685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31266504499703973
the lambda is 0.5204869028411474
the regulation term lambda/alpha is 1.6646788989350418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32660742280035165
the lambda is 0.4804851569922239
the regulation term lambda/alpha is 1.471139733667151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3210428251864322
the lambda is 0.5022285135801889
the regulation term lambda/alpha is 1.5643661037699277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30698160046380435
the lambda is 0.5115797932287268
the regulation term lambda/alpha is 1.666483569229571
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3252599396111367
the lambda is 0.5420471904059592
the regulation term lambda/alpha is 1.6665046149058556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30597320428364305
the lambda is 0.500981109224555
the regulation term lambda/alpha is 1.637336545196735
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30153851807307486
the lambda is 0.5304413406297614
the regulation term lambda/alpha is 1.759116361052137
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298849223099072
the lambda is 0.5009177848904884
the regulation term lambda/alpha is 1.676155553278545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33622368633493405
the lambda is 0.543552912176309
the regulation term lambda/alpha is 1.61664074920302
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3352386079177939
the lambda is 0.556117817491836
the regulation term lambda/alpha is 1.6588716345827486
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3370493845909947
the lambda is 0.4941247171118325
the regulation term lambda/alpha is 1.4660306165858952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2935552283165659
the lambda is 0.5037004132152925
the regulation term lambda/alpha is 1.715862517945376
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3041683305578736
the lambda is 0.4991685010729138
the regulation term lambda/alpha is 1.641092944020146
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29482636712215715
the lambda is 0.525074088759192
the regulation term lambda/alpha is 1.7809604136988026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3350592100230246
the lambda is 0.5035831336153342
the regulation term lambda/alpha is 1.50296759065578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33559265811197414
the lambda is 0.5344914715106898
the regulation term lambda/alpha is 1.5926792752788737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30362764883364773
the lambda is 0.5243589794610479
the regulation term lambda/alpha is 1.7269803375131196
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3237117582573619
the lambda is 0.5167079699444731
the regulation term lambda/alpha is 1.596197718383997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3169743896755795
the lambda is 0.5145547651722795
the regulation term lambda/alpha is 1.6233323004389149
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2715016584009282
the lambda is 0.48504113687283473
the regulation term lambda/alpha is 1.786512611855105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3366469429959214
the lambda is 0.5374477412438549
the regulation term lambda/alpha is 1.59647295906194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3343497460580182
the lambda is 0.5355276034656399
the regulation term lambda/alpha is 1.601698849122835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32201372716387844
the lambda is 0.5178004044404593
the regulation term lambda/alpha is 1.6080072393216378
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31155976406638286
the lambda is 0.5362182821430282
the regulation term lambda/alpha is 1.7210768012675033
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33700559834546895
the lambda is 0.5580283799094243
the regulation term lambda/alpha is 1.6558430561660342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3435095971593557
the lambda is 0.5399428911318788
the regulation term lambda/alpha is 1.5718422297278547
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30285529988475507
the lambda is 0.529875020835374
the regulation term lambda/alpha is 1.749597979751407
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30261511104237004
the lambda is 0.5058565304424238
the regulation term lambda/alpha is 1.6716168888591865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3124471916731462
the lambda is 0.5008301013869957
the regulation term lambda/alpha is 1.602927197729204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2693146304801951
the lambda is 0.4763528828634041
the regulation term lambda/alpha is 1.7687597662780308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31402523243521835
the lambda is 0.4945395859177518
the regulation term lambda/alpha is 1.5748402830010566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33676337353639263
the lambda is 0.5649705308637859
the regulation term lambda/alpha is 1.6776483883355915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137901129703891
the lambda is 0.5129401035129042
the regulation term lambda/alpha is 1.6346598643830053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3275522164989813
the lambda is 0.5320155125756527
the regulation term lambda/alpha is 1.6242158830798425
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3016058602515968
the lambda is 0.5285293057514527
the regulation term lambda/alpha is 1.7523840727450006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32247052421101563
the lambda is 0.5471498627299204
the regulation term lambda/alpha is 1.6967438002856996
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2946859532519333
the lambda is 0.46079844692573646
the regulation term lambda/alpha is 1.5636932871781304
1450
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3184441760870931
the lambda is 0.5009351693461531
the regulation term lambda/alpha is 1.5730705943548158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080179873265637
the lambda is 0.49637244054055013
the regulation term lambda/alpha is 1.6115047203859922
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2908286896639658
the lambda is 0.5245793254742431
the regulation term lambda/alpha is 1.803739947665966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30778233734746363
the lambda is 0.5200876267284561
the regulation term lambda/alpha is 1.6897903603263478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190809443470327
the lambda is 0.4940506760366682
the regulation term lambda/alpha is 1.5483553148173532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3347223377663428
the lambda is 0.5294029487292049
the regulation term lambda/alpha is 1.5816182220224615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29906054553238737
the lambda is 0.4991522690292374
the regulation term lambda/alpha is 1.6690676068307404
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2801557382240478
the lambda is 0.4909190608794277
the regulation term lambda/alpha is 1.7523077128151734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3277689335685768
the lambda is 0.5180988148364525
the regulation term lambda/alpha is 1.5806831025615011
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31834005208945965
the lambda is 0.5622431679917812
the regulation term lambda/alpha is 1.7661716277968695
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33760077159414686
the lambda is 0.5097858052526918
the regulation term lambda/alpha is 1.5100255927896409
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29510990422778915
the lambda is 0.513201410467433
the regulation term lambda/alpha is 1.739017915411282
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30165374175531307
the lambda is 0.47817445705770856
the regulation term lambda/alpha is 1.58517661433678
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.331183431158608
the lambda is 0.5345612248300284
the regulation term lambda/alpha is 1.6140941077877178
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3242083065663473
the lambda is 0.5320207121465419
the regulation term lambda/alpha is 1.6409842109880273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3152580831939833
the lambda is 0.46787095834681464
the regulation term lambda/alpha is 1.484088698398024
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3367376594688439
the lambda is 0.49939364498130184
the regulation term lambda/alpha is 1.4830347332372174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31036292456575326
the lambda is 0.49841381264567447
the regulation term lambda/alpha is 1.6059064185679848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3184692002260024
the lambda is 0.4973907502185266
the regulation term lambda/alpha is 1.5618174374964742
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3148804306775746
the lambda is 0.5092625709327505
the regulation term lambda/alpha is 1.6173204852295686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35999972581510475
the lambda is 0.5434901892352069
the regulation term lambda/alpha is 1.5096961199196648
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.36721708249526447
the lambda is 0.5589038244869818
the regulation term lambda/alpha is 1.5219984339758739
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3675791821606614
the lambda is 0.5282736889743074
the regulation term lambda/alpha is 1.4371697707935203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3000044542655391
the lambda is 0.483713742144697
the regulation term lambda/alpha is 1.6123552009549618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3104168883308775
the lambda is 0.4916222860805821
the regulation term lambda/alpha is 1.583748515501371
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36320385742874406
the lambda is 0.5147636738696042
the regulation term lambda/alpha is 1.4172858116480611
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3029400762599446
the lambda is 0.5030446306881879
the regulation term lambda/alpha is 1.660541704810753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30330065984666005
the lambda is 0.4879920523542668
the regulation term lambda/alpha is 1.6089383142159377
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.326612307552092
the lambda is 0.5153308729175033
the regulation term lambda/alpha is 1.5778060440521284
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.310976953361886
the lambda is 0.5448286454254297
the regulation term lambda/alpha is 1.7519904273787419
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30091224798034494
the lambda is 0.47686207512993833
the regulation term lambda/alpha is 1.5847213874826596
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31217732089866673
the lambda is 0.5318505623537223
the regulation term lambda/alpha is 1.70368097471873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33559692591994505
the lambda is 0.5083552415371385
the regulation term lambda/alpha is 1.5147791957379373
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3218699919611009
the lambda is 0.5222713485855989
the regulation term lambda/alpha is 1.62261584375569
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3027303896330649
the lambda is 0.49610377958035173
the regulation term lambda/alpha is 1.638764381011341
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33608269116842526
the lambda is 0.5131297661659213
the regulation term lambda/alpha is 1.5267961714480864
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3186790278523535
the lambda is 0.5062267285762626
the regulation term lambda/alpha is 1.588515981072973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31742426724413164
the lambda is 0.5370230404328181
the regulation term lambda/alpha is 1.6918146967629057
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3242769005769043
the lambda is 0.5285543949506549
the regulation term lambda/alpha is 1.6299477206373045
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34239913169362207
the lambda is 0.569945428926945
the regulation term lambda/alpha is 1.6645644692724595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2932128133416863
the lambda is 0.520789139205633
the regulation term lambda/alpha is 1.7761472742964604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.352854349743236
the lambda is 0.5460562097088707
the regulation term lambda/alpha is 1.5475399696963443
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.290053836038099
the lambda is 0.49960941312284574
the regulation term lambda/alpha is 1.7224713175564461
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30902784285251106
the lambda is 0.5225538554252112
the regulation term lambda/alpha is 1.6909604345088385
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28414984767113327
the lambda is 0.46949550670289
the regulation term lambda/alpha is 1.6522813950133464
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3077680628418246
the lambda is 0.5168098700837772
the regulation term lambda/alpha is 1.6792186470283248
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026093468903686
the lambda is 0.5650897676174399
the regulation term lambda/alpha is 1.867390328237827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3157021340648068
the lambda is 0.5369819369238372
the regulation term lambda/alpha is 1.7009132311205932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3366285853612753
the lambda is 0.5248116458960242
the regulation term lambda/alpha is 1.5590228183764838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3056109456503298
the lambda is 0.49269608835973866
the regulation term lambda/alpha is 1.6121676771468312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317174538508201
the lambda is 0.5205372041658264
the regulation term lambda/alpha is 1.6411695800492736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29283129198143043
the lambda is 0.5108209189278728
the regulation term lambda/alpha is 1.7444205346751875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3173549262571773
the lambda is 0.491265482994864
the regulation term lambda/alpha is 1.5480001800783565
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3539170894991966
the lambda is 0.5556559843485808
the regulation term lambda/alpha is 1.5700173877866448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3116807558134507
the lambda is 0.5325421249906261
the regulation term lambda/alpha is 1.7086140708326787
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33286078895006527
the lambda is 0.5146795900143003
the regulation term lambda/alpha is 1.5462307580227208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3143479869070317
the lambda is 0.4897624873186473
the regulation term lambda/alpha is 1.5580264793090417
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3379141783689253
the lambda is 0.5083721185487516
the regulation term lambda/alpha is 1.5044415153060702
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3401526112780479
the lambda is 0.506745736702922
the regulation term lambda/alpha is 1.4897599486269926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089264517655313
the lambda is 0.5235606935478201
the regulation term lambda/alpha is 1.6947745670713614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3093361660070355
the lambda is 0.47143741121864313
the regulation term lambda/alpha is 1.5240293991615608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3231315137942356
the lambda is 0.5546456373524493
the regulation term lambda/alpha is 1.7164702719328013
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3206862735785102
the lambda is 0.5338837277396314
the regulation term lambda/alpha is 1.6648162759885836
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3271096729775739
the lambda is 0.5492597543913437
the regulation term lambda/alpha is 1.6791302727052038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3504729930496852
the lambda is 0.5391708222046943
the regulation term lambda/alpha is 1.5384090440550953
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2991527725676686
the lambda is 0.4992796077382863
the regulation term lambda/alpha is 1.6689787076111717
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3246504650165113
the lambda is 0.5623419613009798
the regulation term lambda/alpha is 1.7321458673172694
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31321725486506713
the lambda is 0.5169537046774603
the regulation term lambda/alpha is 1.6504636850232344
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32628660179307906
the lambda is 0.5442800120934882
the regulation term lambda/alpha is 1.6681040812048233
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089734112183099
the lambda is 0.5187985214604369
the regulation term lambda/alpha is 1.6791040996530018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32356385685256356
the lambda is 0.5209339654085341
the regulation term lambda/alpha is 1.6099881194267782
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090627311631792
the lambda is 0.5243187612427134
the regulation term lambda/alpha is 1.696480061731814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2926912775722634
the lambda is 0.4878322220497791
the regulation term lambda/alpha is 1.6667125378525736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34077227186671205
the lambda is 0.5393556735690552
the regulation term lambda/alpha is 1.5827451882001011
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2857783145894546
the lambda is 0.5109753140373053
the regulation term lambda/alpha is 1.7880129035380654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3348386985517037
the lambda is 0.4812894949030038
the regulation term lambda/alpha is 1.4373771519981169
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32106280013081073
the lambda is 0.5218513046451553
the regulation term lambda/alpha is 1.6253870097455614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28577550149305236
the lambda is 0.5227892268464849
the regulation term lambda/alpha is 1.8293703418072549
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32027722678460574
the lambda is 0.49034822716869686
the regulation term lambda/alpha is 1.5310118427448107
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3354476680873196
the lambda is 0.5387554437996148
the regulation term lambda/alpha is 1.6060789656745287
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28974482226841775
the lambda is 0.4726160132629504
the regulation term lambda/alpha is 1.6311456735027414
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2979605850025245
the lambda is 0.4928116636392959
the regulation term lambda/alpha is 1.6539491746370432
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33046420778873625
the lambda is 0.5296097295621258
the regulation term lambda/alpha is 1.6026235733846919
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212250748493267
the lambda is 0.49744664404024164
the regulation term lambda/alpha is 1.5485921959036764
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3098569066285454
the lambda is 0.5468135518839605
the regulation term lambda/alpha is 1.764729267563099
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32841738958387334
the lambda is 0.5211424205062887
the regulation term lambda/alpha is 1.5868295560311552
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30062597257599055
the lambda is 0.5255657429652862
the regulation term lambda/alpha is 1.7482379797787986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33446467991857076
the lambda is 0.5224970237040027
the regulation term lambda/alpha is 1.5621889397445812
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3485718483550684
the lambda is 0.5721178363451762
the regulation term lambda/alpha is 1.6413196850090874
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.288650940869427
the lambda is 0.5296419348201205
the regulation term lambda/alpha is 1.8348872628816657
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3273026968405823
the lambda is 0.5032903010982299
the regulation term lambda/alpha is 1.5376906635858398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34413850133177215
the lambda is 0.5360702401752325
the regulation term lambda/alpha is 1.557716553366476
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33384358579374757
the lambda is 0.5199654052702032
the regulation term lambda/alpha is 1.5575120427547882
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3194539630734261
the lambda is 0.5072387151720906
the regulation term lambda/alpha is 1.5878304037677642
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2971521197014072
the lambda is 0.46831490276785
the regulation term lambda/alpha is 1.576010641413009
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31853527384832975
the lambda is 0.5377011257355176
the regulation term lambda/alpha is 1.6880426435646292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3014427561628247
the lambda is 0.48675335205631576
the regulation term lambda/alpha is 1.6147455598282658
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3179703798111667
the lambda is 0.4995766520095516
the regulation term lambda/alpha is 1.57114210545723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33974978911587883
the lambda is 0.5324558005931208
the regulation term lambda/alpha is 1.567199797176373
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32765076382517744
the lambda is 0.49499847050281276
the regulation term lambda/alpha is 1.5107502412749632
1460
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32561433197231315
the lambda is 0.5909217131356088
the regulation term lambda/alpha is 1.8147902445088155
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.324230821067328
the lambda is 0.5637156376541795
the regulation term lambda/alpha is 1.7386244645049382
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3084456648013981
the lambda is 0.5029830126615684
the regulation term lambda/alpha is 1.6307021626821339
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3004704382956251
the lambda is 0.5117620332038425
the regulation term lambda/alpha is 1.7032026049109465
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26182527756174223
the lambda is 0.5074726997808179
the regulation term lambda/alpha is 1.9382112548745352
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3287894694374416
the lambda is 0.520611041454136
the regulation term lambda/alpha is 1.5834176269236995
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3110933891632538
the lambda is 0.4893242492514795
the regulation term lambda/alpha is 1.5729175427597877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32751200684620274
the lambda is 0.49096513096579775
the regulation term lambda/alpha is 1.4990752116039257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31383597145802977
the lambda is 0.4823001215591367
the regulation term lambda/alpha is 1.5367904428496533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3389282234186873
the lambda is 0.5204749623861978
the regulation term lambda/alpha is 1.5356495163969892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30469251309997464
the lambda is 0.5162946826942504
the regulation term lambda/alpha is 1.6944777455849254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33514866595596116
the lambda is 0.5212788826644247
the regulation term lambda/alpha is 1.5553661273797856
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3060229519566256
the lambda is 0.516142430009396
the regulation term lambda/alpha is 1.6866134605568794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3055723706154589
the lambda is 0.49326116971280864
the regulation term lambda/alpha is 1.6142204503611446
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33601659624874664
the lambda is 0.5147209564103423
the regulation term lambda/alpha is 1.5318319456736127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32643982415759143
the lambda is 0.5119372894513959
the regulation term lambda/alpha is 1.5682439811763105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32591003022066345
the lambda is 0.5123458239719849
the regulation term lambda/alpha is 1.5720468118918944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3173238704456383
the lambda is 0.5016472320872796
the regulation term lambda/alpha is 1.580868251048319
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32374105262630326
the lambda is 0.5036166477821329
the regulation term lambda/alpha is 1.5556156492870288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.319506858602776
the lambda is 0.48438066310310385
the regulation term lambda/alpha is 1.5160258694330744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3139345335716042
the lambda is 0.5014061172380259
the regulation term lambda/alpha is 1.5971677646723816
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32026350715997376
the lambda is 0.5037029029108331
the regulation term lambda/alpha is 1.5727764532948492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3348391539808571
the lambda is 0.5235115843976346
the regulation term lambda/alpha is 1.5634718287084308
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3071038015600223
the lambda is 0.5475146379105243
the regulation term lambda/alpha is 1.782832498748846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27952011696782114
the lambda is 0.494966901738124
the regulation term lambda/alpha is 1.7707738072931098
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3259540904885012
the lambda is 0.5110265402881918
the regulation term lambda/alpha is 1.5677868607886651
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3017964829205951
the lambda is 0.5098618257685326
the regulation term lambda/alpha is 1.6894226892056958
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3061637101154798
the lambda is 0.48108061003356256
the regulation term lambda/alpha is 1.5713182004885786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31001741818257417
the lambda is 0.5102453238822167
the regulation term lambda/alpha is 1.6458601806099975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3302049650060913
the lambda is 0.5316546426855381
the regulation term lambda/alpha is 1.6100746476532557
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33777475701971293
the lambda is 0.5084833215279172
the regulation term lambda/alpha is 1.5053917172923656
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34917816228074006
the lambda is 0.548882633823182
the regulation term lambda/alpha is 1.5719271509937072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32813784195944684
the lambda is 0.5380088053317691
the regulation term lambda/alpha is 1.6395817139501372
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29402087316126235
the lambda is 0.5262006519883545
the regulation term lambda/alpha is 1.7896710744741853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32575100017143477
the lambda is 0.5067544966230164
the regulation term lambda/alpha is 1.555649856351397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34179654126411174
the lambda is 0.5430583172590896
the regulation term lambda/alpha is 1.5888350281445933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31107053195343226
the lambda is 0.483714664581789
the regulation term lambda/alpha is 1.5549999594760775
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3121880055192673
the lambda is 0.5149888344001292
the regulation term lambda/alpha is 1.6496112127803888
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3023251752610072
the lambda is 0.5086087290774413
the regulation term lambda/alpha is 1.6823234407731433
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3209176336183353
the lambda is 0.5164952636692047
the regulation term lambda/alpha is 1.6094324822408117
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3071569135074914
the lambda is 0.5064654383530492
the regulation term lambda/alpha is 1.6488817802263038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.309081864807488
the lambda is 0.5076868966065071
the regulation term lambda/alpha is 1.6425644931407428
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32478863048249057
the lambda is 0.4778773077835749
the regulation term lambda/alpha is 1.4713486339520663
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28046874067322203
the lambda is 0.47454095296074916
the regulation term lambda/alpha is 1.6919566573504294
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33823402191996016
the lambda is 0.5344512412309878
the regulation term lambda/alpha is 1.5801226564885908
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3483834248769352
the lambda is 0.5450107170710572
the regulation term lambda/alpha is 1.5643991021202563
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29725439961732875
the lambda is 0.5219147052112033
the regulation term lambda/alpha is 1.7557846271849689
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3130973928032174
the lambda is 0.553677764285755
the regulation term lambda/alpha is 1.7683882939061808
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31403186705643577
the lambda is 0.5210664313857291
the regulation term lambda/alpha is 1.6592788377495664
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3127468534450835
the lambda is 0.48927079935271717
the regulation term lambda/alpha is 1.5644307655316834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28026359196160927
the lambda is 0.49612206373240114
the regulation term lambda/alpha is 1.7701980491292653
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30910029851285187
the lambda is 0.4705944039264983
the regulation term lambda/alpha is 1.5224650580754189
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31000797425106963
the lambda is 0.5285000504059251
the regulation term lambda/alpha is 1.7047950191690966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30142538431495414
the lambda is 0.47682165240564633
the regulation term lambda/alpha is 1.581889506384186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3044495485025471
the lambda is 0.5096223728733453
the regulation term lambda/alpha is 1.6739140372516654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30013946046915335
the lambda is 0.5070960169211051
the regulation term lambda/alpha is 1.6895346454226785
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3535020240314854
the lambda is 0.5373026883292915
the regulation term lambda/alpha is 1.5199423250867596
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3157314704759081
the lambda is 0.5214364915702764
the regulation term lambda/alpha is 1.6515189023897592
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31969300438466836
the lambda is 0.5279286136827198
the regulation term lambda/alpha is 1.6513611697536348
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30883246019893656
the lambda is 0.5447698844425467
the regulation term lambda/alpha is 1.7639657570050422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33259199981974114
the lambda is 0.5154676370980369
the regulation term lambda/alpha is 1.549849778038591
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3484163251317434
the lambda is 0.5521761049124889
the regulation term lambda/alpha is 1.5848169706275954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3626638466132385
the lambda is 0.5553993067030107
the regulation term lambda/alpha is 1.5314438201922955
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3241055788313056
the lambda is 0.5064031358708617
the regulation term lambda/alpha is 1.562463496299274
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.315034139238531
the lambda is 0.5505875828697807
the regulation term lambda/alpha is 1.7477076744780928
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.315790284848762
the lambda is 0.4645703199076646
the regulation term lambda/alpha is 1.471135567486366
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36835363582862224
the lambda is 0.5383364551288067
the regulation term lambda/alpha is 1.4614663811253095
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3079378469073986
the lambda is 0.5005717966895297
the regulation term lambda/alpha is 1.6255611374721954
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3218654760860704
the lambda is 0.49570660762639324
the regulation term lambda/alpha is 1.540104933446903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3028751415562763
the lambda is 0.4966417452227292
the regulation term lambda/alpha is 1.6397573688973404
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2942059008335431
the lambda is 0.4882011971125485
the regulation term lambda/alpha is 1.6593861500716969
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3083506230770596
the lambda is 0.49523886590460925
the regulation term lambda/alpha is 1.60609004438705
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32576571613096966
the lambda is 0.53316963982791
the regulation term lambda/alpha is 1.636665902600863
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3302396476566351
the lambda is 0.529108901722303
the regulation term lambda/alpha is 1.6021967849010095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31738777002530555
the lambda is 0.49206035830247546
the regulation term lambda/alpha is 1.5503444202126728
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34457931741482867
the lambda is 0.55215258109806
the regulation term lambda/alpha is 1.6023961775782964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3644920554204326
the lambda is 0.5139601338925538
the regulation term lambda/alpha is 1.410072253288795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3471858524910532
the lambda is 0.5468180566936024
the regulation term lambda/alpha is 1.5750009764804387
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29686468331510335
the lambda is 0.5410405553136328
the regulation term lambda/alpha is 1.8225157309781845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3048299999291969
the lambda is 0.4611058717714231
the regulation term lambda/alpha is 1.5126656558689253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30695793444151676
the lambda is 0.5450475243223251
the regulation term lambda/alpha is 1.7756424029696174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3239994088635583
the lambda is 0.5552006347453625
the regulation term lambda/alpha is 1.7135853324324026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2960132560736714
the lambda is 0.49134502182737627
the regulation term lambda/alpha is 1.6598750621664422
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3561459269198884
the lambda is 0.5278589181159252
the regulation term lambda/alpha is 1.48214222939762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33009181655939507
the lambda is 0.508185894991089
the regulation term lambda/alpha is 1.5395289113435158
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31041107383454436
the lambda is 0.5139816898188708
the regulation term lambda/alpha is 1.655809773374367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35641478329173293
the lambda is 0.5244501250258277
the regulation term lambda/alpha is 1.4714600785696206
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33003754380072814
the lambda is 0.5019152375311836
the regulation term lambda/alpha is 1.5207822472289174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33344590782821865
the lambda is 0.5149783107521609
the regulation term lambda/alpha is 1.5444133475989825
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3189985495573917
the lambda is 0.4847344002492973
the regulation term lambda/alpha is 1.519550483605217
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33933881375788244
the lambda is 0.5347978234321342
the regulation term lambda/alpha is 1.5759995666564433
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31455975491365334
the lambda is 0.557109582193384
the regulation term lambda/alpha is 1.7710771117122424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3183845994209244
the lambda is 0.5023126719101663
the regulation term lambda/alpha is 1.5776914864091067
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34601292854167603
the lambda is 0.5395968540961773
the regulation term lambda/alpha is 1.5594702093080455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3076430310440702
the lambda is 0.5075572662117218
the regulation term lambda/alpha is 1.649825333241544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34406207396891714
the lambda is 0.5389638277076166
the regulation term lambda/alpha is 1.5664726468989054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31015650427763825
the lambda is 0.49672109755783234
the regulation term lambda/alpha is 1.6015175909810675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3155307679270536
the lambda is 0.5085875888970518
the regulation term lambda/alpha is 1.6118478468465247
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3486931911803933
the lambda is 0.5205708020067461
the regulation term lambda/alpha is 1.4929193204046058
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30130639087438027
the lambda is 0.5136586493452666
the regulation term lambda/alpha is 1.7047718365835114
1470
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3408717698128068
the lambda is 0.537795125751076
the regulation term lambda/alpha is 1.5777050884748
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3408954989625222
the lambda is 0.5080966083983526
the regulation term lambda/alpha is 1.49047614281998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31280163906591696
the lambda is 0.4981183320834156
the regulation term lambda/alpha is 1.592441566389768
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3595594156825715
the lambda is 0.5409958025941253
the regulation term lambda/alpha is 1.5046075252044868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3629275671597922
the lambda is 0.540607244760759
the regulation term lambda/alpha is 1.4895733851012118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3204654718829077
the lambda is 0.49836798197370724
the regulation term lambda/alpha is 1.5551378407337497
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.323589897085558
the lambda is 0.5512943027274495
the regulation term lambda/alpha is 1.7036820608206005
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3585476114603273
the lambda is 0.559578498039648
the regulation term lambda/alpha is 1.5606811484827432
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3413733847637056
the lambda is 0.5418557036229962
the regulation term lambda/alpha is 1.587281632978101
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31455240946324386
the lambda is 0.5046246519123411
the regulation term lambda/alpha is 1.604262554445025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3377098843970505
the lambda is 0.5343217556986272
the regulation term lambda/alpha is 1.5821916395861755
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31233957811622304
the lambda is 0.5071223758893637
the regulation term lambda/alpha is 1.623625090831944
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31639878946445926
the lambda is 0.5403697834957888
the regulation term lambda/alpha is 1.7078756350819981
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32196974114973687
the lambda is 0.5080893889754862
the regulation term lambda/alpha is 1.5780656503966053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3259030118092267
the lambda is 0.535895760623587
the regulation term lambda/alpha is 1.6443412340640884
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35442318654370075
the lambda is 0.5376703538151065
the regulation term lambda/alpha is 1.5170292865385409
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3439899026868438
the lambda is 0.5381892963836503
the regulation term lambda/alpha is 1.5645496922437248
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2997361301047878
the lambda is 0.5343007576951566
the regulation term lambda/alpha is 1.782570414545504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3202328439364062
the lambda is 0.5256321521506425
the regulation term lambda/alpha is 1.6414061271461142
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3064983237380614
the lambda is 0.4895270067144619
the regulation term lambda/alpha is 1.5971604697349662
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32052676358918225
the lambda is 0.5231055443357238
the regulation term lambda/alpha is 1.6320183016173522
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34538053206681835
the lambda is 0.544884526966002
the regulation term lambda/alpha is 1.5776353221338688
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31518033343020624
the lambda is 0.4982932614408787
the regulation term lambda/alpha is 1.580978280014483
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3386798861920745
the lambda is 0.5358803476991354
the regulation term lambda/alpha is 1.5822620992473795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35860540025905285
the lambda is 0.575077058834542
the regulation term lambda/alpha is 1.6036486299958457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30282351410612085
the lambda is 0.5494449635259576
the regulation term lambda/alpha is 1.8144065369157933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3573012976133222
the lambda is 0.5216672395509963
the regulation term lambda/alpha is 1.4600205569797673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3447493853917242
the lambda is 0.5116157351122615
the regulation term lambda/alpha is 1.4840221818841945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37530094205921655
the lambda is 0.5406250245917591
the regulation term lambda/alpha is 1.4405107048904158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33140651902941165
the lambda is 0.5166487816081304
the regulation term lambda/alpha is 1.5589578114553593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3626154939292115
the lambda is 0.4892453198396932
the regulation term lambda/alpha is 1.3492123972375045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3409358978042151
the lambda is 0.4940470751108253
the regulation term lambda/alpha is 1.4490908064909473
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31574435776291637
the lambda is 0.5031703907799322
the regulation term lambda/alpha is 1.5936005772041342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3167693381962945
the lambda is 0.5214937372082498
the regulation term lambda/alpha is 1.646288558664388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34682876809889973
the lambda is 0.5154741271682433
the regulation term lambda/alpha is 1.4862496268511773
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35422104244474695
the lambda is 0.5328543850543564
the regulation term lambda/alpha is 1.504299070932449
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31532725206329437
the lambda is 0.506204774507541
the regulation term lambda/alpha is 1.6053315125643899
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2799821362901086
the lambda is 0.5201485811064978
the regulation term lambda/alpha is 1.8577920291583758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30321290116402666
the lambda is 0.5035529603836765
the regulation term lambda/alpha is 1.660724060389744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34460708696703635
the lambda is 0.5516013754929883
the regulation term lambda/alpha is 1.600667532254646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31481124897071805
the lambda is 0.5087006821958338
the regulation term lambda/alpha is 1.6158910580833477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2862006729591032
the lambda is 0.5136289136175293
the regulation term lambda/alpha is 1.7946460723064916
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176102726872473
the lambda is 0.5560604745003257
the regulation term lambda/alpha is 1.7507635058387476
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30349822170879837
the lambda is 0.4985503980632114
the regulation term lambda/alpha is 1.6426797997569897
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3152475616681599
the lambda is 0.536272395245872
the regulation term lambda/alpha is 1.7011151249137024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3072092935740873
the lambda is 0.5144212089362887
the regulation term lambda/alpha is 1.6744975484025508
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31879922906653196
the lambda is 0.5333306752094236
the regulation term lambda/alpha is 1.6729359000366963
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31090782623452273
the lambda is 0.5577941835570627
the regulation term lambda/alpha is 1.7940821571223802
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31918854844604366
the lambda is 0.49750634511016245
the regulation term lambda/alpha is 1.558659756223247
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3053474893292236
the lambda is 0.5158474555585958
the regulation term lambda/alpha is 1.6893784084872974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33945184023379454
the lambda is 0.5489351889723898
the regulation term lambda/alpha is 1.6171224424481405
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3087747706247111
the lambda is 0.5296472110484163
the regulation term lambda/alpha is 1.7153189361191574
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3418180190024886
the lambda is 0.5611858555151765
the regulation term lambda/alpha is 1.6417679125075346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3306111291932467
the lambda is 0.5306773523073118
the regulation term lambda/alpha is 1.6051406182310448
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3200141882276888
the lambda is 0.5139778173198698
the regulation term lambda/alpha is 1.6061094671033045
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3195422361108875
the lambda is 0.5192911482637282
the regulation term lambda/alpha is 1.6251095773252457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29008212087634466
the lambda is 0.5122836265821032
the regulation term lambda/alpha is 1.7659951776224014
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34857108831413003
the lambda is 0.5749613469530933
the regulation term lambda/alpha is 1.6494808841832052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29658372323032406
the lambda is 0.5049122599223107
the regulation term lambda/alpha is 1.7024274104557002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35202336823473135
the lambda is 0.5275113055822916
the regulation term lambda/alpha is 1.498512181812157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29938802738256454
the lambda is 0.5129795896703784
the regulation term lambda/alpha is 1.7134272006638458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32174360272788816
the lambda is 0.5372019029164432
the regulation term lambda/alpha is 1.6696583812756551
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2929586977114906
the lambda is 0.5308080281467175
the regulation term lambda/alpha is 1.8118869051959805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30649976783372335
the lambda is 0.5265467847028397
the regulation term lambda/alpha is 1.7179353460016067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026912650256163
the lambda is 0.49627250846222554
the regulation term lambda/alpha is 1.6395336298198986
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3259793701268896
the lambda is 0.5396313950203713
the regulation term lambda/alpha is 1.6554157853925426
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2892430686552292
the lambda is 0.507181465896405
the regulation term lambda/alpha is 1.7534783746225329
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2850501642771859
the lambda is 0.5149574844178783
the regulation term lambda/alpha is 1.8065503863984025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3037308072833182
the lambda is 0.5253170304557446
the regulation term lambda/alpha is 1.7295480664420457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32760675729290806
the lambda is 0.549474746640603
the regulation term lambda/alpha is 1.677238745565087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3351229022996293
the lambda is 0.5182267195279119
the regulation term lambda/alpha is 1.5463781077682708
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3101671906976803
the lambda is 0.5081767051249353
the regulation term lambda/alpha is 1.6383960662694808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35920924982453983
the lambda is 0.5488684059184714
the regulation term lambda/alpha is 1.5279907357245754
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31595316736714374
the lambda is 0.5175544757987388
the regulation term lambda/alpha is 1.6380733895201955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367862485012919
the lambda is 0.5435113855753533
the regulation term lambda/alpha is 1.6138170367525215
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3064412537115908
the lambda is 0.5417216188197664
the regulation term lambda/alpha is 1.7677829347663852
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3479393254794915
the lambda is 0.5594162385222062
the regulation term lambda/alpha is 1.6077982497416197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3462803193447323
the lambda is 0.49281217391324605
the regulation term lambda/alpha is 1.4231596379655551
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32655074623326413
the lambda is 0.5125187868958961
the regulation term lambda/alpha is 1.569492009458738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33590659876832296
the lambda is 0.5188781193336774
the regulation term lambda/alpha is 1.544709515193392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3037373369922427
the lambda is 0.5112193550204084
the regulation term lambda/alpha is 1.6830968496752992
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32832061157709136
the lambda is 0.5311264080451117
the regulation term lambda/alpha is 1.617706562782765
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3230050761915151
the lambda is 0.5251426046883886
the regulation term lambda/alpha is 1.6258029467531427
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31395489424749423
the lambda is 0.49749644648306485
the regulation term lambda/alpha is 1.5846112151731029
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3338380183017944
the lambda is 0.4937234841510705
the regulation term lambda/alpha is 1.478931269310188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30905588861778716
the lambda is 0.49824555547480587
the regulation term lambda/alpha is 1.612153574239097
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32384860951985334
the lambda is 0.5294566512762157
the regulation term lambda/alpha is 1.634889376431791
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29114835335908673
the lambda is 0.4778986359845539
the regulation term lambda/alpha is 1.641426545851487
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3262939128375798
the lambda is 0.5199771591161407
the regulation term lambda/alpha is 1.593585226871735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31820892943580203
the lambda is 0.5270497880613662
the regulation term lambda/alpha is 1.6563010629395216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35484377418824103
the lambda is 0.5166083586807093
the regulation term lambda/alpha is 1.4558755042624865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3590702930664162
the lambda is 0.5212437198703366
the regulation term lambda/alpha is 1.4516481311193394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3487011645220158
the lambda is 0.5190198370271235
the regulation term lambda/alpha is 1.4884373493233756
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31468103644666934
the lambda is 0.5217199845982565
the regulation term lambda/alpha is 1.6579327133577533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29878346626671237
the lambda is 0.5111615554114057
the regulation term lambda/alpha is 1.7108093757608116
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3072396188395108
the lambda is 0.5140209041255234
the regulation term lambda/alpha is 1.6730293640743856
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2969694093772209
the lambda is 0.5034069907855698
the regulation term lambda/alpha is 1.6951476310010258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3260720862033831
the lambda is 0.5443412905541319
the regulation term lambda/alpha is 1.6693894190458434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32960197453781614
the lambda is 0.47867321357382525
the regulation term lambda/alpha is 1.452276535190798
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224516642494672
the lambda is 0.5341217674793428
the regulation term lambda/alpha is 1.6564397914414715
1480
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29279796053753887
the lambda is 0.5422988386313271
the regulation term lambda/alpha is 1.8521264206749841
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34351857691962434
the lambda is 0.5301617047289722
the regulation term lambda/alpha is 1.5433276112255732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33722847305019465
the lambda is 0.5011333165579364
the regulation term lambda/alpha is 1.486035007735973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2894979353621767
the lambda is 0.5260995458653589
the regulation term lambda/alpha is 1.8172825488623312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3086858237517348
the lambda is 0.4899166684507269
the regulation term lambda/alpha is 1.5871045274976725
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2867292322489576
the lambda is 0.5218238625261389
the regulation term lambda/alpha is 1.8199185985789421
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3556408379218836
the lambda is 0.5042243635917839
the regulation term lambda/alpha is 1.4177909560052735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31284014579009
the lambda is 0.4616717217263486
the regulation term lambda/alpha is 1.4757432124332337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3192190214853328
the lambda is 0.5095458734679851
the regulation term lambda/alpha is 1.5962265378079834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3562597918549247
the lambda is 0.5079195640757914
the regulation term lambda/alpha is 1.4256999405720905
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3213910333112405
the lambda is 0.5381660138205158
the regulation term lambda/alpha is 1.6744898209383043
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38386930648591544
the lambda is 0.5535331960069562
the regulation term lambda/alpha is 1.4419834736832908
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29952257544970656
the lambda is 0.5657104704409791
the regulation term lambda/alpha is 1.8887072855580753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30123323194522383
the lambda is 0.4946799727531274
the regulation term lambda/alpha is 1.6421826023600208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2998854028367766
the lambda is 0.5315223315485047
the regulation term lambda/alpha is 1.7724181521359503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32128761745222806
the lambda is 0.5017384585196902
the regulation term lambda/alpha is 1.5616489128912452
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3109601273779153
the lambda is 0.5202873813895847
the regulation term lambda/alpha is 1.6731642920806704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3102203919405966
the lambda is 0.5065528832216947
the regulation term lambda/alpha is 1.632880675744531
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30449869611322516
the lambda is 0.5303516949460012
the regulation term lambda/alpha is 1.741720742044802
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300155396619261
the lambda is 0.4901142278933768
the regulation term lambda/alpha is 1.4851246956293593
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3232750021354435
the lambda is 0.5422571635344832
the regulation term lambda/alpha is 1.677386621150781
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31369651344326693
the lambda is 0.5012807855272673
the regulation term lambda/alpha is 1.597980098742556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3255739101351014
the lambda is 0.5286116123081481
the regulation term lambda/alpha is 1.623630136975022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31091899950230717
the lambda is 0.504914488655611
the regulation term lambda/alpha is 1.6239422147370708
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3254551269098758
the lambda is 0.518385906346259
the regulation term lambda/alpha is 1.5928030117952607
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32718340862249135
the lambda is 0.5190499523252553
the regulation term lambda/alpha is 1.5864189278746166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3029301183639503
the lambda is 0.4988471470834898
the regulation term lambda/alpha is 1.646740013101498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31328773024733464
the lambda is 0.498023245424358
the regulation term lambda/alpha is 1.5896672526280498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3123682965558614
the lambda is 0.5284417384944212
the regulation term lambda/alpha is 1.691726543061386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32611543606295823
the lambda is 0.5412277853780175
the regulation term lambda/alpha is 1.6596202618067142
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3156150443191737
the lambda is 0.5006430614495383
the regulation term lambda/alpha is 1.5862458728147646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3311397614535875
the lambda is 0.5485083178976112
the regulation term lambda/alpha is 1.656425418348591
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33362116782208345
the lambda is 0.5129620890696261
the regulation term lambda/alpha is 1.5375585800454463
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3392793016013327
the lambda is 0.5302735171154577
the regulation term lambda/alpha is 1.5629409593001082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3169027705517147
the lambda is 0.5263626102339197
the regulation term lambda/alpha is 1.6609593198492525
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33244702435128587
the lambda is 0.5355550298079286
the regulation term lambda/alpha is 1.6109484837560921
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31255686631290575
the lambda is 0.5016779290299508
the regulation term lambda/alpha is 1.6050772934474997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298571653560663
the lambda is 0.5217139176980573
the regulation term lambda/alpha is 1.747365871730542
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33034691719996034
the lambda is 0.5003628062743417
the regulation term lambda/alpha is 1.5146586216558215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2926325635543331
the lambda is 0.49963142784804604
the regulation term lambda/alpha is 1.7073678396535643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30920364164694186
the lambda is 0.5118630070222466
the regulation term lambda/alpha is 1.6554236046375785
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34749856932089096
the lambda is 0.5114181267324095
the regulation term lambda/alpha is 1.4717128986512464
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3570752309766675
the lambda is 0.533076742246842
the regulation term lambda/alpha is 1.492897563319577
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31012181820420015
the lambda is 0.5024894512897962
the regulation term lambda/alpha is 1.620296998771403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35217421788947856
the lambda is 0.4944337820116137
the regulation term lambda/alpha is 1.4039465608092296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203277561796822
the lambda is 0.5430455918217059
the regulation term lambda/alpha is 1.6952811030121726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3297840670995949
the lambda is 0.48198783239226334
the regulation term lambda/alpha is 1.4615255267826595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3601481077430441
the lambda is 0.5455193483248619
the regulation term lambda/alpha is 1.5147083563578658
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3172845593975189
the lambda is 0.5369227592932965
the regulation term lambda/alpha is 1.6922435819531882
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3345618372041898
the lambda is 0.4753914130682484
the regulation term lambda/alpha is 1.4209373580708413
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2865948266132581
the lambda is 0.4829221895551573
the regulation term lambda/alpha is 1.685034566959685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29923340047839564
the lambda is 0.5457010380696804
the regulation term lambda/alpha is 1.8236635255197038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3496131065429161
the lambda is 0.4914682279016585
the regulation term lambda/alpha is 1.405748865542972
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3349657921731845
the lambda is 0.5303649036442262
the regulation term lambda/alpha is 1.5833404963633306
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29748617409298
the lambda is 0.5438833874242227
the regulation term lambda/alpha is 1.8282644196238533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3114309523577413
the lambda is 0.5108510683719735
the regulation term lambda/alpha is 1.6403349265848113
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.355270588448474
the lambda is 0.5048258844815238
the regulation term lambda/alpha is 1.4209616582284021
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2958630971476507
the lambda is 0.4870702543100818
the regulation term lambda/alpha is 1.6462690312033372
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3244244987047151
the lambda is 0.5116839976302016
the regulation term lambda/alpha is 1.5772051730776546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31601793142515117
the lambda is 0.5070721436468789
the regulation term lambda/alpha is 1.6045676312104427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.38950956860206876
the lambda is 0.525700615401013
the regulation term lambda/alpha is 1.3496474997718988
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3225635388953572
the lambda is 0.5129471177311514
the regulation term lambda/alpha is 1.590220393438691
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3535442657089128
the lambda is 0.5367057312173785
the regulation term lambda/alpha is 1.5180722282150376
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2988881186579739
the lambda is 0.5180060822575822
the regulation term lambda/alpha is 1.7331103176113574
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2966636407214831
the lambda is 0.5043329231250103
the regulation term lambda/alpha is 1.7000159571239588
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3157117389614938
the lambda is 0.5259047963313842
the regulation term lambda/alpha is 1.6657752355401865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3353061069239478
the lambda is 0.5103028265100171
the regulation term lambda/alpha is 1.521901378986101
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3139210583937009
the lambda is 0.5181561232017173
the regulation term lambda/alpha is 1.6505937061153673
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2779735724455255
the lambda is 0.5034714218606412
the regulation term lambda/alpha is 1.8112204603885735
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.321746129890541
the lambda is 0.49567253972421926
the regulation term lambda/alpha is 1.5405703244755375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30920593272204727
the lambda is 0.5326763697718192
the regulation term lambda/alpha is 1.7227236394932142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3027817769174481
the lambda is 0.5229971383126112
the regulation term lambda/alpha is 1.727307183533716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27003004016321785
the lambda is 0.5072116624777591
the regulation term lambda/alpha is 1.8783527276120033
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3266890406032139
the lambda is 0.489267659318629
the regulation term lambda/alpha is 1.4976555638818563
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.348689602016846
the lambda is 0.5077964163824935
the regulation term lambda/alpha is 1.4562992800627323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3436391140769164
the lambda is 0.5324136427486454
the regulation term lambda/alpha is 1.5493394696317249
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31797547655222114
the lambda is 0.5408949847757663
the regulation term lambda/alpha is 1.7010588069263732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2996467069851753
the lambda is 0.4993264595918872
the regulation term lambda/alpha is 1.666383937990651
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2926432566772506
the lambda is 0.4794593526240223
the regulation term lambda/alpha is 1.6383748529452937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33413979955672823
the lambda is 0.5371577730183856
the regulation term lambda/alpha is 1.6075839326263504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3113766383226221
the lambda is 0.5343875043594503
the regulation term lambda/alpha is 1.716209370228229
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33302452457589776
the lambda is 0.5440719500645844
the regulation term lambda/alpha is 1.6337293800132369
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36798228159579255
the lambda is 0.5138824356815965
the regulation term lambda/alpha is 1.3964869000026119
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3134056341617728
the lambda is 0.5157516939846822
the regulation term lambda/alpha is 1.6456363184538765
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3138967195145222
the lambda is 0.5059741471528777
the regulation term lambda/alpha is 1.6119128225851662
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137537888862653
the lambda is 0.505006629355512
the regulation term lambda/alpha is 1.6095634451081486
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3074450055610816
the lambda is 0.5521374015633947
the regulation term lambda/alpha is 1.795889969185721
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.323786344562614
the lambda is 0.5276911300779875
the regulation term lambda/alpha is 1.6297510347164819
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.325310614976002
the lambda is 0.5214521784386309
the regulation term lambda/alpha is 1.6029362536389973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32982865248095794
the lambda is 0.5188015760805567
the regulation term lambda/alpha is 1.5729427148859019
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35750048968567366
the lambda is 0.5408288045253423
the regulation term lambda/alpha is 1.5128057726602193
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.360041273050141
the lambda is 0.5197868678030523
the regulation term lambda/alpha is 1.4436868956706093
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.313883528245893
the lambda is 0.5222868815579106
the regulation term lambda/alpha is 1.6639512257194862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3038658898632397
the lambda is 0.4945178875841348
the regulation term lambda/alpha is 1.6274215174552873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2902842109246229
the lambda is 0.5060283177395357
the regulation term lambda/alpha is 1.7432168154365595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3315937495224026
the lambda is 0.5253780407374421
the regulation term lambda/alpha is 1.5844027262098537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3123855743904461
the lambda is 0.520148423267044
the regulation term lambda/alpha is 1.6650846450960575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31117378639872617
the lambda is 0.4914232836799077
the regulation term lambda/alpha is 1.5792566892193698
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3206147826823422
the lambda is 0.563631759168716
the regulation term lambda/alpha is 1.7579718391436412
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32956874113377915
the lambda is 0.5497589812758699
the regulation term lambda/alpha is 1.668116276393794
1490
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3106495221413044
the lambda is 0.5058376453229098
the regulation term lambda/alpha is 1.6283226249188323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2999103073574504
the lambda is 0.5080966356033828
the regulation term lambda/alpha is 1.694161964889736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3329964073894831
the lambda is 0.482989622277191
the regulation term lambda/alpha is 1.4504349343092795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3118661896577235
the lambda is 0.495881154610471
the regulation term lambda/alpha is 1.5900446122572822
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.315412856076646
the lambda is 0.5055714068786245
the regulation term lambda/alpha is 1.6028877616699604
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.326776099944535
the lambda is 0.5503263867705426
the regulation term lambda/alpha is 1.6841084365225965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3173831066005163
the lambda is 0.5613206440263435
the regulation term lambda/alpha is 1.7685901749423183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3590878467086633
the lambda is 0.5005789583422202
the regulation term lambda/alpha is 1.3940292408402006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31347810275881705
the lambda is 0.4992398523844574
the regulation term lambda/alpha is 1.5925828566359586
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3142182361090339
the lambda is 0.475788241391552
the regulation term lambda/alpha is 1.5141967801844998
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2755218555349956
the lambda is 0.504166052071719
the regulation term lambda/alpha is 1.8298586552879907
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3068085432291769
the lambda is 0.48300612000053905
the regulation term lambda/alpha is 1.5742916247275025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34079108433025135
the lambda is 0.5565016583432143
the regulation term lambda/alpha is 1.6329701213777168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31988058915207057
the lambda is 0.5337343809775342
the regulation term lambda/alpha is 1.6685425720652216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33912725348146694
the lambda is 0.5311981275785254
the regulation term lambda/alpha is 1.5663681468394723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31869235895047604
the lambda is 0.5267483884255493
the regulation term lambda/alpha is 1.6528428549722605
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30779008149653975
the lambda is 0.46985065514951735
the regulation term lambda/alpha is 1.526529551780893
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3310400781019096
the lambda is 0.491078250042502
the regulation term lambda/alpha is 1.4834404730031665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233694337751494
the lambda is 0.5068709041259325
the regulation term lambda/alpha is 1.56746696250326
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3066241365543364
the lambda is 0.5621393073159178
the regulation term lambda/alpha is 1.8333172125094657
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31300005763877253
the lambda is 0.49150045459770597
the regulation term lambda/alpha is 1.5702887031571648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3343427349464663
the lambda is 0.516099996200331
the regulation term lambda/alpha is 1.5436255741670801
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.306142913409257
the lambda is 0.535564019704808
the regulation term lambda/alpha is 1.7493921833456163
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30622640041964405
the lambda is 0.5382591941256019
the regulation term lambda/alpha is 1.7577164914193766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29888518790756835
the lambda is 0.5132416668878861
the regulation term lambda/alpha is 1.7171866912541964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212292718420855
the lambda is 0.4800744832306066
the regulation term lambda/alpha is 1.4944917082980174
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2791086036342573
the lambda is 0.49472413012470384
the regulation term lambda/alpha is 1.7725147977630533
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34934975203038415
the lambda is 0.5631168318759402
the regulation term lambda/alpha is 1.6118999043313018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3074497882741855
the lambda is 0.4932859924067747
the regulation term lambda/alpha is 1.6044440790665282
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314536439544705
the lambda is 0.5495816459961292
the regulation term lambda/alpha is 1.658095048946336
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30055046695730664
the lambda is 0.4719823813712074
the regulation term lambda/alpha is 1.5703931061875633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3218173951897885
the lambda is 0.5233415132666291
the regulation term lambda/alpha is 1.6262064173317723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3195729614833147
the lambda is 0.5170981067456658
the regulation term lambda/alpha is 1.6180909184103929
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35639553399379237
the lambda is 0.5649227556971798
the regulation term lambda/alpha is 1.58510054648165
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33069723650052224
the lambda is 0.5190165720900137
the regulation term lambda/alpha is 1.5694614735288062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30975432742911424
the lambda is 0.5213723462427073
the regulation term lambda/alpha is 1.6831801853099884
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2887043327923308
the lambda is 0.5167097001594099
the regulation term lambda/alpha is 1.7897538812868685
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32740448833742114
the lambda is 0.548954672864086
the regulation term lambda/alpha is 1.6766864609941954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3409061269559027
the lambda is 0.5179293247449518
the regulation term lambda/alpha is 1.5192725615399325
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3307310270102774
the lambda is 0.5267112672112312
the regulation term lambda/alpha is 1.5925668419215586
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3560334011853768
the lambda is 0.5355623285815331
the regulation term lambda/alpha is 1.5042474295906876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32177914183044487
the lambda is 0.5106770477910737
the regulation term lambda/alpha is 1.5870421087149422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3107684013765301
the lambda is 0.5091877574811371
the regulation term lambda/alpha is 1.6384798300783485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321221616124741
the lambda is 0.46921519684536556
the regulation term lambda/alpha is 1.4607211136848082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35581504881161113
the lambda is 0.5301259242438999
the regulation term lambda/alpha is 1.4898918019754104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3402494955234752
the lambda is 0.5434312705826623
the regulation term lambda/alpha is 1.5971552573401793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33484134727238324
the lambda is 0.5219593960421995
the regulation term lambda/alpha is 1.5588259941434337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246112940615616
the lambda is 0.5294920694171972
the regulation term lambda/alpha is 1.6311572613267749
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33847161679508087
the lambda is 0.521730326638581
the regulation term lambda/alpha is 1.5414300660679903
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.338325363237276
the lambda is 0.5307307147274674
the regulation term lambda/alpha is 1.5686991647600852
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300468787376279
the lambda is 0.48975963346355234
the regulation term lambda/alpha is 1.4839093020264214
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33349222782802884
the lambda is 0.49871341743540887
the regulation term lambda/alpha is 1.495427406759774
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34970864517750466
the lambda is 0.5125749624612712
the regulation term lambda/alpha is 1.4657200201644975
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2957403838263685
the lambda is 0.5220536922508974
the regulation term lambda/alpha is 1.7652431686752634
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3005436127582727
the lambda is 0.5169076771475973
the regulation term lambda/alpha is 1.719909042164028
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30304638534167944
the lambda is 0.533918351371235
the regulation term lambda/alpha is 1.7618370559650514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3384187597212963
the lambda is 0.5371343083988511
the regulation term lambda/alpha is 1.5871883368439927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3338559401374856
the lambda is 0.513366798043467
the regulation term lambda/alpha is 1.5376895730297828
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33675436029873057
the lambda is 0.5086145175223575
the regulation term lambda/alpha is 1.5103427824102174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2927427635060858
the lambda is 0.4923160741055929
the regulation term lambda/alpha is 1.681736102403632
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3226575061728838
the lambda is 0.5533209720840064
the regulation term lambda/alpha is 1.7148864089575229
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32197779288994827
the lambda is 0.49704223615179216
the regulation term lambda/alpha is 1.543715893231434
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3174187210075804
the lambda is 0.5180368078223104
the regulation term lambda/alpha is 1.6320297875875411
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30656108835001117
the lambda is 0.49708956596694326
the regulation term lambda/alpha is 1.6215024830529023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30726291590716676
the lambda is 0.5241287838439693
the regulation term lambda/alpha is 1.705799029786999
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32995408777374136
the lambda is 0.5286095413097743
the regulation term lambda/alpha is 1.6020699876046285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30402215915791186
the lambda is 0.4735012165338677
the regulation term lambda/alpha is 1.5574562651794301
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3268548659005309
the lambda is 0.4867200821083035
the regulation term lambda/alpha is 1.489101533695457
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3130781404213403
the lambda is 0.5172066711108424
the regulation term lambda/alpha is 1.6520050566762217
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33151750846226624
the lambda is 0.5291404227580779
the regulation term lambda/alpha is 1.5961160700455295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.301717633314108
the lambda is 0.48751310016658816
the regulation term lambda/alpha is 1.615792536921615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3189180679440882
the lambda is 0.5524946428710205
the regulation term lambda/alpha is 1.7324030790500153
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3141670943903674
the lambda is 0.5206762592904813
the regulation term lambda/alpha is 1.6573227068889544
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30208516267335456
the lambda is 0.5102170076985691
the regulation term lambda/alpha is 1.6889840043228739
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3381397542265359
the lambda is 0.47751580414639966
the regulation term lambda/alpha is 1.4121847495828281
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34270194332711645
the lambda is 0.5431280494986062
the regulation term lambda/alpha is 1.5848408801702611
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36797122909573027
the lambda is 0.5428439551299749
the regulation term lambda/alpha is 1.4752347798059784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29840792840598424
the lambda is 0.49682451062791455
the regulation term lambda/alpha is 1.6649172603483389
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32231424290452937
the lambda is 0.5392888208892292
the regulation term lambda/alpha is 1.6731771330656602
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3145296267794006
the lambda is 0.512445825866534
the regulation term lambda/alpha is 1.6292450129855158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.282495245457476
the lambda is 0.5005060593576458
the regulation term lambda/alpha is 1.771732683667368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30804341499075427
the lambda is 0.47846716537153205
the regulation term lambda/alpha is 1.5532458805713893
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28334818150037244
the lambda is 0.4882091045080055
the regulation term lambda/alpha is 1.723000662728318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3330705980859819
the lambda is 0.5451444145495326
the regulation term lambda/alpha is 1.6367233183662881
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28046740700497996
the lambda is 0.47387039950044046
the regulation term lambda/alpha is 1.6895738601527643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30614249251762227
the lambda is 0.5101512148520784
the regulation term lambda/alpha is 1.6663848610388932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3546586999314852
the lambda is 0.5491226940487212
the regulation term lambda/alpha is 1.5483130518292756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30415613037422307
the lambda is 0.47126514504594746
the regulation term lambda/alpha is 1.5494185320746925
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3245427380110295
the lambda is 0.5303042442779252
the regulation term lambda/alpha is 1.6340043457077846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3325745777967667
the lambda is 0.531133847843896
the regulation term lambda/alpha is 1.5970368251311953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3206190774679017
the lambda is 0.5079448379214516
the regulation term lambda/alpha is 1.5842626768592825
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3119685400540612
the lambda is 0.5531628837219699
the regulation term lambda/alpha is 1.773136751629225
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3422352193921926
the lambda is 0.5043869998668891
the regulation term lambda/alpha is 1.4738021433407027
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32701284471455583
the lambda is 0.5090437171944839
the regulation term lambda/alpha is 1.556647469425306
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3387397520037059
the lambda is 0.5194300716278805
the regulation term lambda/alpha is 1.5334192947693892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3168287795978997
the lambda is 0.4805188476025508
the regulation term lambda/alpha is 1.516651511937763
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3689188991692922
the lambda is 0.5304141490379688
the regulation term lambda/alpha is 1.4377527153862846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3022182744584009
the lambda is 0.5193607907078958
the regulation term lambda/alpha is 1.7184956523182837
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32847297928037233
the lambda is 0.5423984689174137
the regulation term lambda/alpha is 1.6512727168783115
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2994642106369117
the lambda is 0.5312417414676952
the regulation term lambda/alpha is 1.7739740596641929
1500
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3078722920426374
the lambda is 0.5000375053277458
the regulation term lambda/alpha is 1.6241718343997498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30518903251609836
the lambda is 0.5567168815723595
the regulation term lambda/alpha is 1.8241706688558457
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31132367418263823
the lambda is 0.5042373416860122
the regulation term lambda/alpha is 1.6196562725589607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32030668330783857
the lambda is 0.4871692426879131
the regulation term lambda/alpha is 1.520946230833739
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3331819970998963
the lambda is 0.534209783059528
the regulation term lambda/alpha is 1.603357287336742
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3186884209156856
the lambda is 0.52972659882363
the regulation term lambda/alpha is 1.6622084897266416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30358903838498774
the lambda is 0.5250434025902073
the regulation term lambda/alpha is 1.729454414373119
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35289191319649044
the lambda is 0.5065723606326799
the regulation term lambda/alpha is 1.4354887196029908
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3380592441432346
the lambda is 0.5189129249028289
the regulation term lambda/alpha is 1.5349762915607987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33213020715396807
the lambda is 0.4895116110029981
the regulation term lambda/alpha is 1.4738545319247989
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32307543071016387
the lambda is 0.5644879240610785
the regulation term lambda/alpha is 1.7472325977257295
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30810131141140085
the lambda is 0.5548201273414245
the regulation term lambda/alpha is 1.8007717162897288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34387426624333106
the lambda is 0.4901741430616472
the regulation term lambda/alpha is 1.425445842216038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314542047415211
the lambda is 0.5453273291608498
the regulation term lambda/alpha is 1.6452569355278326
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30722001558772594
the lambda is 0.4789958597116962
the regulation term lambda/alpha is 1.5591297292116701
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3275438337754947
the lambda is 0.5210402782707929
the regulation term lambda/alpha is 1.590749770083978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2976303138824215
the lambda is 0.5417168066431515
the regulation term lambda/alpha is 1.8200995710979764
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34481337602472734
the lambda is 0.5277777382882679
the regulation term lambda/alpha is 1.5306185171030597
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3023681511554903
the lambda is 0.4908645421033684
the regulation term lambda/alpha is 1.623400282825903
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3017888897994161
the lambda is 0.5256099863328055
the regulation term lambda/alpha is 1.7416479005643717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3312646064043022
the lambda is 0.5454289575821736
the regulation term lambda/alpha is 1.646505382819219
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35949588727089254
the lambda is 0.5183501379265361
the regulation term lambda/alpha is 1.4418805785556632
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30592641774096707
the lambda is 0.5068593527465708
the regulation term lambda/alpha is 1.6568015161598006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31541140040742466
the lambda is 0.4894985586951859
the regulation term lambda/alpha is 1.5519367976645377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34127281840913565
the lambda is 0.5185405843619881
the regulation term lambda/alpha is 1.5194312479358805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32991828509937804
the lambda is 0.5355617009342881
the regulation term lambda/alpha is 1.6233162122947085
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.351058929282163
the lambda is 0.5433788436319695
the regulation term lambda/alpha is 1.5478280092264218
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3402784924869331
the lambda is 0.5338104434192664
the regulation term lambda/alpha is 1.5687457632655555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3473457609723251
the lambda is 0.5434018164609002
the regulation term lambda/alpha is 1.5644406165768523
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.38504026963171245
the lambda is 0.5414133128843202
the regulation term lambda/alpha is 1.4061212698665964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29792338650929556
the lambda is 0.4833409573413887
the regulation term lambda/alpha is 1.622366619165387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33275797937704804
the lambda is 0.5409114211259336
the regulation term lambda/alpha is 1.6255400460676164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3389270964188603
the lambda is 0.5228935455800762
the regulation term lambda/alpha is 1.5427906210657834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2955940301015449
the lambda is 0.5047628415688652
the regulation term lambda/alpha is 1.7076219076395587
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2971370485109406
the lambda is 0.564162832571835
the regulation term lambda/alpha is 1.8986620328870316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3269187921049877
the lambda is 0.5299010109401087
the regulation term lambda/alpha is 1.620894924785892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30853089703118686
the lambda is 0.5189167046634826
the regulation term lambda/alpha is 1.6818954265414447
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31737486917148905
the lambda is 0.5426518184498936
the regulation term lambda/alpha is 1.7098134451114317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3508626047393346
the lambda is 0.5327023776440296
the regulation term lambda/alpha is 1.5182649004153312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3217187887297933
the lambda is 0.5092635131290889
the regulation term lambda/alpha is 1.5829461348519858
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3372062613169897
the lambda is 0.5406267239564936
the regulation term lambda/alpha is 1.6032523294348888
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3147904265638442
the lambda is 0.49150349060892007
the regulation term lambda/alpha is 1.5613673388165628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33100609205207804
the lambda is 0.5057446127261576
the regulation term lambda/alpha is 1.527901222575044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32184643487940934
the lambda is 0.5223309696642299
the regulation term lambda/alpha is 1.6229198557378424
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30756898851061804
the lambda is 0.5117814835920022
the regulation term lambda/alpha is 1.6639567144602883
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156915079024068
the lambda is 0.5556528174094012
the regulation term lambda/alpha is 1.7601132862312416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33053962953259647
the lambda is 0.5108560017749866
the regulation term lambda/alpha is 1.5455211905978374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31843400808143685
the lambda is 0.5002005258503505
the regulation term lambda/alpha is 1.57081377351639
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3334008413191514
the lambda is 0.556328484084074
the regulation term lambda/alpha is 1.668647511154667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30982148836034507
the lambda is 0.5290562603881246
the regulation term lambda/alpha is 1.7076164186933136
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28531423698939035
the lambda is 0.4730824965613818
the regulation term lambda/alpha is 1.6581103752595907
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29423644883668726
the lambda is 0.5523496633835792
the regulation term lambda/alpha is 1.877230593175609
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31048125472301175
the lambda is 0.48237439305667296
the regulation term lambda/alpha is 1.5536345132559177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31088942162197625
the lambda is 0.5230878798795564
the regulation term lambda/alpha is 1.6825528419413425
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30197804411374235
the lambda is 0.5217164518616317
the regulation term lambda/alpha is 1.727663523991576
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3003787517740826
the lambda is 0.5006393077072103
the regulation term lambda/alpha is 1.6666934819801948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32286373151182557
the lambda is 0.5325571777414038
the regulation term lambda/alpha is 1.649479720895494
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34194725557985944
the lambda is 0.5160263434505586
the regulation term lambda/alpha is 1.5090816932438993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.328284358765323
the lambda is 0.524154672321757
the regulation term lambda/alpha is 1.5966483273619918
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33255916960268506
the lambda is 0.5346776691323505
the regulation term lambda/alpha is 1.607767032167961
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3085365625857834
the lambda is 0.5399392342716304
the regulation term lambda/alpha is 1.7500008094551498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3414092844565298
the lambda is 0.549056271294392
the regulation term lambda/alpha is 1.6082054480984715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3465731168510377
the lambda is 0.5133843456243876
the regulation term lambda/alpha is 1.4813161225227054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3164361678597017
the lambda is 0.5088024812744668
the regulation term lambda/alpha is 1.6079150645638414
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33329856987408135
the lambda is 0.5152634867503163
the regulation term lambda/alpha is 1.5459516881364972
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30686126485532206
the lambda is 0.4819190203649667
the regulation term lambda/alpha is 1.5704785046499117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28597200427780023
the lambda is 0.48729247024429967
the regulation term lambda/alpha is 1.7039866244072333
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33850891965632396
the lambda is 0.5522565919639062
the regulation term lambda/alpha is 1.6314388185829567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.334495217522593
the lambda is 0.5417126737592942
the regulation term lambda/alpha is 1.6194930312350582
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3218947836117841
the lambda is 0.5381049332665054
the regulation term lambda/alpha is 1.6716795694194226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30177896445027336
the lambda is 0.5190000612660199
the regulation term lambda/alpha is 1.719801982260231
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28450089206465706
the lambda is 0.45924761682199894
the regulation term lambda/alpha is 1.614222062676795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3262261314651759
the lambda is 0.5218239161623959
the regulation term lambda/alpha is 1.5995773049164816
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3062836734342316
the lambda is 0.49712985829552087
the regulation term lambda/alpha is 1.6231027031947551
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3093362627187441
the lambda is 0.5279853505044991
the regulation term lambda/alpha is 1.706833029739407
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3412424229461613
the lambda is 0.5561616049293978
the regulation term lambda/alpha is 1.6298137849558783
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3314479629274871
the lambda is 0.5235991552993748
the regulation term lambda/alpha is 1.5797326092299013
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31800306091164143
the lambda is 0.5134413830733292
the regulation term lambda/alpha is 1.614580003102521
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29533949951383
the lambda is 0.49233309680810244
the regulation term lambda/alpha is 1.6670072835450436
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3184472407405997
the lambda is 0.4943222072862315
the regulation term lambda/alpha is 1.5522891834032118
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34006070357812973
the lambda is 0.5197307075339792
the regulation term lambda/alpha is 1.5283468570915602
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3216502758438391
the lambda is 0.5156945620576707
the regulation term lambda/alpha is 1.603277226188483
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3414480879210836
the lambda is 0.5350447492744167
the regulation term lambda/alpha is 1.566987100534233
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3192431343488943
the lambda is 0.5028132320034804
the regulation term lambda/alpha is 1.575016587369945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27895501164680975
the lambda is 0.4957795049222202
the regulation term lambda/alpha is 1.7772740557532485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3491759306626671
the lambda is 0.5243366761841276
the regulation term lambda/alpha is 1.5016403770702063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128040368219212
the lambda is 0.5294044260988761
the regulation term lambda/alpha is 1.6924475511173314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30732440008152434
the lambda is 0.5018497467210539
the regulation term lambda/alpha is 1.6329642117187166
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35985936156675224
the lambda is 0.543024838046848
the regulation term lambda/alpha is 1.5089918341505182
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33671879040239877
the lambda is 0.533789938774572
the regulation term lambda/alpha is 1.5852692335246918
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3316715450010082
the lambda is 0.5577193348832521
the regulation term lambda/alpha is 1.6815411007946333
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3278586114790786
the lambda is 0.5171608042719329
the regulation term lambda/alpha is 1.577389722779736
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33654275744407924
the lambda is 0.5487666313395991
the regulation term lambda/alpha is 1.6306000328376804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30204667753029524
the lambda is 0.4848563919048892
the regulation term lambda/alpha is 1.6052366338519257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3531972068194326
the lambda is 0.5140866783442641
the regulation term lambda/alpha is 1.4555230574263407
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31044148620224005
the lambda is 0.5463375979945455
the regulation term lambda/alpha is 1.7598730268886444
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3068263517314248
the lambda is 0.5606365548747589
the regulation term lambda/alpha is 1.8272112278201664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33861754875802474
the lambda is 0.49231698400316626
the regulation term lambda/alpha is 1.4539027460593152
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2693903519089583
the lambda is 0.5233458396529596
the regulation term lambda/alpha is 1.942704465636641
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34813791955931994
the lambda is 0.5154637631394345
the regulation term lambda/alpha is 1.4806309056822051
1510
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3055636539117987
the lambda is 0.5464478580425209
the regulation term lambda/alpha is 1.7883274108256795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3535828807022271
the lambda is 0.5860030132067324
the regulation term lambda/alpha is 1.6573285789258558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3237979495239179
the lambda is 0.5126068224832261
the regulation term lambda/alpha is 1.5831070679629535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236801927919051
the lambda is 0.5227050055805904
the regulation term lambda/alpha is 1.6148810375821758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29826683083544087
the lambda is 0.5305105422124679
the regulation term lambda/alpha is 1.7786441111353746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31123978879997916
the lambda is 0.5208220540647912
the regulation term lambda/alpha is 1.673378767132829
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3166969754338324
the lambda is 0.5269572963605256
the regulation term lambda/alpha is 1.663916416121956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3095647697342718
the lambda is 0.5232630417049121
the regulation term lambda/alpha is 1.6903184498484027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3319388100006815
the lambda is 0.5214133986247743
the regulation term lambda/alpha is 1.5708117969806057
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3479613580660678
the lambda is 0.511047422800883
the regulation term lambda/alpha is 1.4686901604282445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012879304080466
the lambda is 0.5307660620888401
the regulation term lambda/alpha is 1.761657233895835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3298790889336185
the lambda is 0.5165651609256734
the regulation term lambda/alpha is 1.5659227221572134
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31763970502827976
the lambda is 0.499136940744357
the regulation term lambda/alpha is 1.5713934147493254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31116538663362714
the lambda is 0.5123611581507622
the regulation term lambda/alpha is 1.6465878923545803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30208137833312165
the lambda is 0.4960229491055689
the regulation term lambda/alpha is 1.6420176306219618
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30428678497115136
the lambda is 0.49340053104217607
the regulation term lambda/alpha is 1.6214983870855715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3424106635732319
the lambda is 0.5254667249523935
the regulation term lambda/alpha is 1.534609697808115
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3498579079795272
the lambda is 0.5072558075179213
the regulation term lambda/alpha is 1.4498909298560279
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.307449546254946
the lambda is 0.4836777826924524
the regulation term lambda/alpha is 1.5731940039728431
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3265107563649045
the lambda is 0.49778382869712434
the regulation term lambda/alpha is 1.5245556815310768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367524492458952
the lambda is 0.5497122771226413
the regulation term lambda/alpha is 1.6323928106644405
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31716262330697326
the lambda is 0.5154938098574532
the regulation term lambda/alpha is 1.6253296321064934
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31646549315071043
the lambda is 0.5098429618353818
the regulation term lambda/alpha is 1.6110538838197415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3180388127597036
the lambda is 0.49500760865981575
the regulation term lambda/alpha is 1.5564377327550338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33214653022336416
the lambda is 0.5043231823050708
the regulation term lambda/alpha is 1.518375585516188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33350442161385685
the lambda is 0.5096846787637273
the regulation term lambda/alpha is 1.528269629222062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32988701408392185
the lambda is 0.4830554623138451
the regulation term lambda/alpha is 1.464305782557897
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3125439481275751
the lambda is 0.5256546112854513
the regulation term lambda/alpha is 1.6818582296493167
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2828876969997261
the lambda is 0.5050404501056202
the regulation term lambda/alpha is 1.785303692815277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2970902027895225
the lambda is 0.4811481644045044
the regulation term lambda/alpha is 1.619535615401563
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30891839825613415
the lambda is 0.5257811738077769
the regulation term lambda/alpha is 1.7020066683494677
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30711124925702776
the lambda is 0.4909198291797085
the regulation term lambda/alpha is 1.5985081313932838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.312698091828475
the lambda is 0.4800959821889308
the regulation term lambda/alpha is 1.5353339042832372
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32158226346766156
the lambda is 0.5304283355736804
the regulation term lambda/alpha is 1.649432807189071
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105586808730756
the lambda is 0.5167168666125784
the regulation term lambda/alpha is 1.6638300535020596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34335790433074487
the lambda is 0.5581200209800995
the regulation term lambda/alpha is 1.6254759652845552
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31518473793822105
the lambda is 0.5475451704638565
the regulation term lambda/alpha is 1.737219809707855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3470198383576841
the lambda is 0.5283225525537136
the regulation term lambda/alpha is 1.522456338675241
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2972624685979463
the lambda is 0.5053273596928828
the regulation term lambda/alpha is 1.6999366320150848
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2856117550921683
the lambda is 0.509515325813825
the regulation term lambda/alpha is 1.783943821392792
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31491707387254486
the lambda is 0.5608145624629394
the regulation term lambda/alpha is 1.780832507957049
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32478110299113677
the lambda is 0.5277565929486217
the regulation term lambda/alpha is 1.6249608985502584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3055317627453151
the lambda is 0.5286615108975946
the regulation term lambda/alpha is 1.7302996786565714
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30193554514309345
the lambda is 0.4994109755620065
the regulation term lambda/alpha is 1.6540317415272368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3407961102406192
the lambda is 0.4867227641622543
the regulation term lambda/alpha is 1.4281934257365894
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3232898911935256
the lambda is 0.5390280760357674
the regulation term lambda/alpha is 1.6673211588700685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3279938717909594
the lambda is 0.4862337854707913
the regulation term lambda/alpha is 1.4824477750629532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3435696121995159
the lambda is 0.5058174271975379
the regulation term lambda/alpha is 1.472241459188778
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31150289998084363
the lambda is 0.5175481607818067
the regulation term lambda/alpha is 1.6614553534289218
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2815143316503708
the lambda is 0.4950986531149296
the regulation term lambda/alpha is 1.7586978617124962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3285674843138759
the lambda is 0.5013104306771213
the regulation term lambda/alpha is 1.5257457131644425
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3404834771652412
the lambda is 0.5178171944199699
the regulation term lambda/alpha is 1.520829141934151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.306085153776038
the lambda is 0.4975388676955116
the regulation term lambda/alpha is 1.6254916697448185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3292430030763804
the lambda is 0.5231692954812475
the regulation term lambda/alpha is 1.5890065714164274
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3119506845582472
the lambda is 0.502338403658351
the regulation term lambda/alpha is 1.6103135159639463
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32278557782073214
the lambda is 0.4826860080302339
the regulation term lambda/alpha is 1.4953766252168395
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2918080672898637
the lambda is 0.5176836049624599
the regulation term lambda/alpha is 1.7740551512862246
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31702191653191997
the lambda is 0.5428067664339671
the regulation term lambda/alpha is 1.7122058070055024
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3249794033524273
the lambda is 0.5348484542559253
the regulation term lambda/alpha is 1.645791852463657
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34039263614657217
the lambda is 0.498188698261012
the regulation term lambda/alpha is 1.4635707279122607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3378305614252332
the lambda is 0.507551536853849
the regulation term lambda/alpha is 1.5023849077259326
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29198106053415457
the lambda is 0.5071443501181034
the regulation term lambda/alpha is 1.73690837751711
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31113851949066496
the lambda is 0.4983138760455345
the regulation term lambda/alpha is 1.601582076244614
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3437766808265366
the lambda is 0.5238818355761286
the regulation term lambda/alpha is 1.5239016047178304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30629183190531856
the lambda is 0.521733956622042
the regulation term lambda/alpha is 1.7033884102509183
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3317059623581142
the lambda is 0.5344290459427146
the regulation term lambda/alpha is 1.6111529685611674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2853091257357631
the lambda is 0.49424240532308966
the regulation term lambda/alpha is 1.732304930830809
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32945964592448396
the lambda is 0.5193309001099169
the regulation term lambda/alpha is 1.5763111098254312
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3011466873158945
the lambda is 0.5200434202158724
the regulation term lambda/alpha is 1.7268774392007882
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32607998514922865
the lambda is 0.46633534539950344
the regulation term lambda/alpha is 1.4301256337033006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.325503703958907
the lambda is 0.5418082444200947
the regulation term lambda/alpha is 1.6645225164273243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3123498609407056
the lambda is 0.4988553130930052
the regulation term lambda/alpha is 1.5971043226675377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30981717692400723
the lambda is 0.5004433524844062
the regulation term lambda/alpha is 1.615286013038445
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35680998223268023
the lambda is 0.5569469558942447
the regulation term lambda/alpha is 1.5609063188457901
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32473568036597183
the lambda is 0.5137483023112914
the regulation term lambda/alpha is 1.5820506749745067
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3331587872157086
the lambda is 0.5186189474204956
the regulation term lambda/alpha is 1.5566719754106564
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33805834303402027
the lambda is 0.5113328153549379
the regulation term lambda/alpha is 1.5125578939002262
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32747794279947057
the lambda is 0.5250111280697514
the regulation term lambda/alpha is 1.60319538953266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3056692747085371
the lambda is 0.4965259084460082
the regulation term lambda/alpha is 1.6243893303291848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3324612207461951
the lambda is 0.5193258373431331
the regulation term lambda/alpha is 1.562064400105156
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31773235614526274
the lambda is 0.49057895891128683
the regulation term lambda/alpha is 1.5440006326802962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2885068147238489
the lambda is 0.5285475353756675
the regulation term lambda/alpha is 1.8320105744523891
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.300232275175293
the lambda is 0.5101903903053071
the regulation term lambda/alpha is 1.6993189356721505
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32886202789289715
the lambda is 0.5324592708437969
the regulation term lambda/alpha is 1.6190962339294663
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31637500818100606
the lambda is 0.5148341842344105
the regulation term lambda/alpha is 1.6272909393015678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34446902947351576
the lambda is 0.5533887429861346
the regulation term lambda/alpha is 1.6064978144245083
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3219054144375182
the lambda is 0.513949451055968
the regulation term lambda/alpha is 1.5965852949507489
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29954709805356167
the lambda is 0.49187033272888714
the regulation term lambda/alpha is 1.6420467296295969
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3352888603084337
the lambda is 0.5014821743424765
the regulation term lambda/alpha is 1.495672041955587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2879142021712844
the lambda is 0.4602768746206622
the regulation term lambda/alpha is 1.5986598477932559
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3251526679755356
the lambda is 0.545114035530177
the regulation term lambda/alpha is 1.6764864299720008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34171194499443575
the lambda is 0.5172057503747546
the regulation term lambda/alpha is 1.513572346390105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32805470756049704
the lambda is 0.5470121039351837
the regulation term lambda/alpha is 1.6674417142278273
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31740879332926614
the lambda is 0.5126036376098584
the regulation term lambda/alpha is 1.6149635686939068
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3125664433211905
the lambda is 0.47639664020837974
the regulation term lambda/alpha is 1.524145187008571
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3376443056041074
the lambda is 0.5238180623041182
the regulation term lambda/alpha is 1.5513901866845108
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33951736766403434
the lambda is 0.5797568259807351
the regulation term lambda/alpha is 1.7075910724968482
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2981559249647452
the lambda is 0.5277309969333095
the regulation term lambda/alpha is 1.769983262937706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.290638022648146
the lambda is 0.4751365919567406
the regulation term lambda/alpha is 1.6348053418046868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29141860641929446
the lambda is 0.4950858571186656
the regulation term lambda/alpha is 1.6988821105208833
1520
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32489305602074653
the lambda is 0.5547400182513159
the regulation term lambda/alpha is 1.7074542159986705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3028980217898596
the lambda is 0.5006456207476251
the regulation term lambda/alpha is 1.6528520648277991
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35082584514332205
the lambda is 0.5485175196671722
the regulation term lambda/alpha is 1.5635037362856994
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34600117337546793
the lambda is 0.5107301611817705
the regulation term lambda/alpha is 1.4760937259237115
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3134005948780263
the lambda is 0.5023174229612577
the regulation term lambda/alpha is 1.602796648030476
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31856880704017637
the lambda is 0.5492146430634657
the regulation term lambda/alpha is 1.7240063399998902
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3330853989722718
the lambda is 0.5602694321956108
the regulation term lambda/alpha is 1.6820594175677188
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3060183804696367
the lambda is 0.5395210835685929
the regulation term lambda/alpha is 1.7630348959451618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3296683130270424
the lambda is 0.5140511319595228
the regulation term lambda/alpha is 1.5592979720721767
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.325230580880857
the lambda is 0.49369081681702637
the regulation term lambda/alpha is 1.517971697126114
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2881596733220062
the lambda is 0.5363429776134889
the regulation term lambda/alpha is 1.861270077906246
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.334256511851789
the lambda is 0.5164191810299894
the regulation term lambda/alpha is 1.5449786697318622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3202900014967483
the lambda is 0.5417052309819804
the regulation term lambda/alpha is 1.691296101815654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3008094225609435
the lambda is 0.5128828125262092
the regulation term lambda/alpha is 1.7050091322265675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2950069892103494
the lambda is 0.46796167053547777
the regulation term lambda/alpha is 1.5862731652157778
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32400891714264285
the lambda is 0.5316619986263225
the regulation term lambda/alpha is 1.640886933961332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3336435181788154
the lambda is 0.4940532751899229
the regulation term lambda/alpha is 1.480781877276382
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3254692571383104
the lambda is 0.492136551142813
the regulation term lambda/alpha is 1.5120830626828643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2933311915789611
the lambda is 0.517302347918401
the regulation term lambda/alpha is 1.7635436079396611
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3021010420885548
the lambda is 0.5083556266335743
the regulation term lambda/alpha is 1.6827337738363712
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32024358838304695
the lambda is 0.5082278993397512
the regulation term lambda/alpha is 1.5870041361510543
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3399961374809315
the lambda is 0.5181331536998052
the regulation term lambda/alpha is 1.5239383527669175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3358494507381024
the lambda is 0.5336196727390229
the regulation term lambda/alpha is 1.5888657002900475
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30077684768659524
the lambda is 0.5493062234106888
the regulation term lambda/alpha is 1.8262915767474805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35900135390614657
the lambda is 0.5432333277729519
the regulation term lambda/alpha is 1.5131790503357514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3330198102264236
the lambda is 0.5121961155282019
the regulation term lambda/alpha is 1.53803497509639
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33886703106497307
the lambda is 0.5440992883881752
the regulation term lambda/alpha is 1.6056424452925069
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3470723588467702
the lambda is 0.4917305868779734
the regulation term lambda/alpha is 1.4167955884238788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2960156478871559
the lambda is 0.5365468579092225
the regulation term lambda/alpha is 1.8125624835676237
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.330273203922869
the lambda is 0.5076214870218378
the regulation term lambda/alpha is 1.536974483526027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33186634500816714
the lambda is 0.5011590205371239
the regulation term lambda/alpha is 1.510123060308482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3331456725785643
the lambda is 0.48816403509075335
the regulation term lambda/alpha is 1.4653170527845645
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33550570743537506
the lambda is 0.529625152272524
the regulation term lambda/alpha is 1.5785876083033257
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3188930512200349
the lambda is 0.5186863822970276
the regulation term lambda/alpha is 1.6265214319114658
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34565838230858176
the lambda is 0.5212588977919568
the regulation term lambda/alpha is 1.508017523864386
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3130092347540364
the lambda is 0.5512561918153274
the regulation term lambda/alpha is 1.7611499298048063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28872723401067074
the lambda is 0.48529395116092183
the regulation term lambda/alpha is 1.6808042124041074
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31092757199635374
the lambda is 0.513320604960537
the regulation term lambda/alpha is 1.6509330506287707
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2984088712293727
the lambda is 0.5113552506788586
the regulation term lambda/alpha is 1.7136060619518383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3579474170117134
the lambda is 0.5671054099082762
the regulation term lambda/alpha is 1.5843260293444674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28296224170025247
the lambda is 0.511031080006541
the regulation term lambda/alpha is 1.8060044935178536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31173365480364085
the lambda is 0.5405972564990074
the regulation term lambda/alpha is 1.7341639190017077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2929040609612399
the lambda is 0.5142060202616576
the regulation term lambda/alpha is 1.7555441825359421
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28882523459406956
the lambda is 0.4944750968245492
the regulation term lambda/alpha is 1.7120217958777424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.316375244794131
the lambda is 0.5762975289434941
the regulation term lambda/alpha is 1.8215632810288223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2908253603068835
the lambda is 0.5046463970693639
the regulation term lambda/alpha is 1.735221428203005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2963792790329127
the lambda is 0.5446674449870363
the regulation term lambda/alpha is 1.8377379375653025
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30185366694164595
the lambda is 0.4813215224935378
the regulation term lambda/alpha is 1.594552510725624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3020390034172996
the lambda is 0.5023263411844304
the regulation term lambda/alpha is 1.6631174633112273
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3157693416700212
the lambda is 0.5303955794081506
the regulation term lambda/alpha is 1.6796930842083262
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31185642117673396
the lambda is 0.5269871930590913
the regulation term lambda/alpha is 1.6898391608247159
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2823607497020648
the lambda is 0.4907586855890215
the regulation term lambda/alpha is 1.738055611861243
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3180627037142068
the lambda is 0.5375315587804592
the regulation term lambda/alpha is 1.6900175735896867
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3249598615878865
the lambda is 0.5413498667925577
the regulation term lambda/alpha is 1.6658976408572472
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30074504469193003
the lambda is 0.4971239221970952
the regulation term lambda/alpha is 1.6529746074663576
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3388258025087676
the lambda is 0.5566541884133023
the regulation term lambda/alpha is 1.6428919648139786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3365705021547604
the lambda is 0.5390665461953901
the regulation term lambda/alpha is 1.6016452503835847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3116599178013639
the lambda is 0.516638158803474
the regulation term lambda/alpha is 1.6576984376051616
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32299480320325136
the lambda is 0.5315531848645145
the regulation term lambda/alpha is 1.6457019728890911
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33242814151632644
the lambda is 0.48697175459853154
the regulation term lambda/alpha is 1.4648932920578719
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012316641266185
the lambda is 0.526985168611189
the regulation term lambda/alpha is 1.7494348415831817
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3255021574876192
the lambda is 0.5098003760719674
the regulation term lambda/alpha is 1.566196611435235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2876786742924529
the lambda is 0.5067373152049233
the regulation term lambda/alpha is 1.761469863733369
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32341035498766807
the lambda is 0.4988121724366102
the regulation term lambda/alpha is 1.542350653724833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2836248005491955
the lambda is 0.4952977146854092
the regulation term lambda/alpha is 1.7463131352630021
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33664188330868283
the lambda is 0.5186923899801775
the regulation term lambda/alpha is 1.5407838884520617
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31848228848459564
the lambda is 0.5545299404363409
the regulation term lambda/alpha is 1.7411641415756856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32167792006079604
the lambda is 0.5399090478672882
the regulation term lambda/alpha is 1.678415005186701
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33021165452430445
the lambda is 0.515802219270576
the regulation term lambda/alpha is 1.5620351741177312
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.334387460816201
the lambda is 0.5483123621064673
the regulation term lambda/alpha is 1.639751564750964
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3376012492001118
the lambda is 0.5410798929703575
the regulation term lambda/alpha is 1.6027188710123361
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2984793101363533
the lambda is 0.5153547014293985
the regulation term lambda/alpha is 1.7266010873382505
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.351326539443369
the lambda is 0.5821744772296135
the regulation term lambda/alpha is 1.6570751476731387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3442118686741875
the lambda is 0.5072020823448548
the regulation term lambda/alpha is 1.4735171227490271
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34478106439639805
the lambda is 0.5329894961221243
the regulation term lambda/alpha is 1.5458780981931806
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3474223513249445
the lambda is 0.5336107006590485
the regulation term lambda/alpha is 1.5359135606101573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29976479711755344
the lambda is 0.5435126460660157
the regulation term lambda/alpha is 1.8131303318210377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3148344552666642
the lambda is 0.5576753747529866
the regulation term lambda/alpha is 1.7713289172261548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3055922689429275
the lambda is 0.4708300797279758
the regulation term lambda/alpha is 1.5407133215660902
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29431614825486446
the lambda is 0.4747899759901575
the regulation term lambda/alpha is 1.6131971650397208
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3070944071613093
the lambda is 0.5106944429357138
the regulation term lambda/alpha is 1.6629884199338683
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3282351122628527
the lambda is 0.5239481608769022
the regulation term lambda/alpha is 1.5962587221848505
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31939687652804694
the lambda is 0.4783882315876573
the regulation term lambda/alpha is 1.4977861924884823
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31510270704918475
the lambda is 0.5163054113818097
the regulation term lambda/alpha is 1.6385305483942385
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2933764859749951
the lambda is 0.5167810773031846
the regulation term lambda/alpha is 1.7614945369112867
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29616719310551937
the lambda is 0.5152023303317543
the regulation term lambda/alpha is 1.7395658341813587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32654021653989157
the lambda is 0.5125979414049217
the regulation term lambda/alpha is 1.5697850232248514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30437490329252825
the lambda is 0.5130344882777692
the regulation term lambda/alpha is 1.685534788604771
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3365642098146557
the lambda is 0.4939900059524981
the regulation term lambda/alpha is 1.4677437218429614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3244954620789812
the lambda is 0.4825150187443436
the regulation term lambda/alpha is 1.4869700046125789
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3269403056607107
the lambda is 0.5369923061659934
the regulation term lambda/alpha is 1.6424781431606925
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29710104661165854
the lambda is 0.47156863162579177
the regulation term lambda/alpha is 1.587233155197128
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29955264894125083
the lambda is 0.5437326881833363
the regulation term lambda/alpha is 1.8151489900193631
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3302919025167203
the lambda is 0.5519092569739558
the regulation term lambda/alpha is 1.6709742284584665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31415078684819303
the lambda is 0.48287218072104465
the regulation term lambda/alpha is 1.5370713712532664
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.344219548776437
the lambda is 0.5285381194951924
the regulation term lambda/alpha is 1.5354680504751523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3263156847617713
the lambda is 0.5007158092337434
the regulation term lambda/alpha is 1.5344521658506667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31805898207434996
the lambda is 0.5331386078116175
the regulation term lambda/alpha is 1.6762255992097408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3035403811733419
the lambda is 0.5242316709666546
the regulation term lambda/alpha is 1.7270574311734923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2967573864761227
the lambda is 0.4737611168732676
the regulation term lambda/alpha is 1.5964593922968342
1530
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3321034592556321
the lambda is 0.5427903719493988
the regulation term lambda/alpha is 1.6344014397380706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.297961875546142
the lambda is 0.5285523560667735
the regulation term lambda/alpha is 1.7738925662821
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32962362972593234
the lambda is 0.5075006397229127
the regulation term lambda/alpha is 1.5396367067035739
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31792787288264446
the lambda is 0.54069018193597
the regulation term lambda/alpha is 1.700669328025709
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31459617496893927
the lambda is 0.5178073662911236
the regulation term lambda/alpha is 1.6459429817995967
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3250906649507862
the lambda is 0.528991869978501
the regulation term lambda/alpha is 1.6272133500313901
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31920867301600664
the lambda is 0.4962134265754467
the regulation term lambda/alpha is 1.55451110362081
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3148062826585761
the lambda is 0.5455684582831705
the regulation term lambda/alpha is 1.733029130409281
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30158973261531685
the lambda is 0.5103401014286111
the regulation term lambda/alpha is 1.6921666961373618
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30224058824562355
the lambda is 0.5418607934946769
the regulation term lambda/alpha is 1.7928127940722502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.313700123161914
the lambda is 0.4908464329529591
the regulation term lambda/alpha is 1.5646995226062197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29945707709978764
the lambda is 0.523706611716311
the regulation term lambda/alpha is 1.7488536814302675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2972742216261549
the lambda is 0.4796971090236534
the regulation term lambda/alpha is 1.6136518881442377
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34329313313078874
the lambda is 0.5037082156959589
the regulation term lambda/alpha is 1.467283109050873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3218345955109435
the lambda is 0.5179415841531331
the regulation term lambda/alpha is 1.609340920390646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32585262161241285
the lambda is 0.5333464458198311
the regulation term lambda/alpha is 1.6367719958203157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3409473587584467
the lambda is 0.5437289228361043
the regulation term lambda/alpha is 1.5947591581764493
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3063383636946847
the lambda is 0.5026030233197929
the regulation term lambda/alpha is 1.6406793365936936
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29077087484161196
the lambda is 0.4978897536994411
the regulation term lambda/alpha is 1.7123095769844572
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3114762616702523
the lambda is 0.49605646422868743
the regulation term lambda/alpha is 1.5925979770292833
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3023543581288228
the lambda is 0.5375457921761784
the regulation term lambda/alpha is 1.7778668563035849
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3289948099612904
the lambda is 0.5490748610950769
the regulation term lambda/alpha is 1.6689468784011552
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31366008030445813
the lambda is 0.5207320175610337
the regulation term lambda/alpha is 1.6601794434777246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36112957006662905
the lambda is 0.536287267500993
the regulation term lambda/alpha is 1.4850272920105851
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3305594674997784
the lambda is 0.5385930466016284
the regulation term lambda/alpha is 1.6293378334474402
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3338780192971118
the lambda is 0.5386919910434584
the regulation term lambda/alpha is 1.61343951955126
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30470145002308824
the lambda is 0.5300615862547825
the regulation term lambda/alpha is 1.7396096612425638
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3327367379377899
the lambda is 0.5258357389909137
the regulation term lambda/alpha is 1.580335679942942
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29136405744278304
the lambda is 0.48154419481337507
the regulation term lambda/alpha is 1.652723397112696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3035938354319904
the lambda is 0.5256023176953974
the regulation term lambda/alpha is 1.7312680837129193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31927551967290635
the lambda is 0.4782690905100044
the regulation term lambda/alpha is 1.497982341395873
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320884577632986
the lambda is 0.5163714122029537
the regulation term lambda/alpha is 1.6092123093355928
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.271469384070729
the lambda is 0.5192654258674717
the regulation term lambda/alpha is 1.9127955354707018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.336893993281508
the lambda is 0.50290891405816
the regulation term lambda/alpha is 1.492780886829081
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33048055317545216
the lambda is 0.5246657282740383
the regulation term lambda/alpha is 1.5875842715486295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2975682389838671
the lambda is 0.5494521910570759
the regulation term lambda/alpha is 1.8464745865800043
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3416801542887746
the lambda is 0.5217621668428535
the regulation term lambda/alpha is 1.5270484992870867
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3189671673404877
the lambda is 0.5164693443699908
the regulation term lambda/alpha is 1.6191928112108027
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3102960159169191
the lambda is 0.5153326031859574
the regulation term lambda/alpha is 1.6607773762842521
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3243297339624661
the lambda is 0.5381025466103606
the regulation term lambda/alpha is 1.6591218450314331
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29698520878797463
the lambda is 0.4978611628013672
the regulation term lambda/alpha is 1.6763836988151255
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2918370343885928
the lambda is 0.4876672032797632
the regulation term lambda/alpha is 1.6710257637501025
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3382311441195669
the lambda is 0.545530985880479
the regulation term lambda/alpha is 1.6128940086239671
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3265777003399991
the lambda is 0.5022475169740616
the regulation term lambda/alpha is 1.5379112427185724
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3253323466053272
the lambda is 0.5204324257217607
the regulation term lambda/alpha is 1.5996946849958227
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30799969149063555
the lambda is 0.5211973304928408
the regulation term lambda/alpha is 1.6922008199761047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29013736623718694
the lambda is 0.48727688223815646
the regulation term lambda/alpha is 1.6794695855886697
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31041705406035874
the lambda is 0.5072160266702302
the regulation term lambda/alpha is 1.633982476270795
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3263234393633421
the lambda is 0.5100334979089634
the regulation term lambda/alpha is 1.5629692396722712
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31333909599118814
the lambda is 0.5177305672078029
the regulation term lambda/alpha is 1.652301209238067
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31559804525945806
the lambda is 0.5090669389091709
the regulation term lambda/alpha is 1.6130231050406507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236638518388246
the lambda is 0.508664317311181
the regulation term lambda/alpha is 1.5715821041531735
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3136530943682167
the lambda is 0.5281405184604238
the regulation term lambda/alpha is 1.6838364675605817
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31356332438657947
the lambda is 0.5061844333685062
the regulation term lambda/alpha is 1.6142973173241777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3163370772789288
the lambda is 0.49115181865562096
the regulation term lambda/alpha is 1.5526217251560115
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215850031887801
the lambda is 0.4928367704762028
the regulation term lambda/alpha is 1.5325241089892887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3437231181478727
the lambda is 0.5498248606365537
the regulation term lambda/alpha is 1.5996155964115693
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2819262533842037
the lambda is 0.5059965919104517
the regulation term lambda/alpha is 1.794783514612558
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3360253668390848
the lambda is 0.539672113547932
the regulation term lambda/alpha is 1.6060457537015924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31855087344633604
the lambda is 0.5196462430619772
the regulation term lambda/alpha is 1.6312818026208245
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32644251209903613
the lambda is 0.5424202752225813
the regulation term lambda/alpha is 1.6616104064841342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2990108260001163
the lambda is 0.5377421253314044
the regulation term lambda/alpha is 1.798403531152398
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30456015880631054
the lambda is 0.4935154765683029
the regulation term lambda/alpha is 1.6204203415922214
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3000257771942424
the lambda is 0.5153388313824204
the regulation term lambda/alpha is 1.7176485174098233
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2960647902263389
the lambda is 0.5157410146835532
the regulation term lambda/alpha is 1.7419869964586931
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3238451118883144
the lambda is 0.5007505380493
the regulation term lambda/alpha is 1.5462655438257646
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30892557987412245
the lambda is 0.5531184754651828
the regulation term lambda/alpha is 1.7904586460291223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30685940281026186
the lambda is 0.5267003193636906
the regulation term lambda/alpha is 1.7164222915774927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3248602328931974
the lambda is 0.5261386509286315
the regulation term lambda/alpha is 1.6195846633576951
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34865733703732654
the lambda is 0.5595524550358792
the regulation term lambda/alpha is 1.6048779004354488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.349623218460634
the lambda is 0.48517823446761726
the regulation term lambda/alpha is 1.387717430792561
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3427185843262734
the lambda is 0.5318902400267534
the regulation term lambda/alpha is 1.551973731078399
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30849338145188276
the lambda is 0.5151280113573141
the regulation term lambda/alpha is 1.6698186811429574
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3271905879874726
the lambda is 0.5338179881896378
the regulation term lambda/alpha is 1.631520000233248
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34874830712319893
the lambda is 0.5042464008959384
the regulation term lambda/alpha is 1.445874834649185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29524042814767504
the lambda is 0.5398162257949835
the regulation term lambda/alpha is 1.8283953494504996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3318431294048949
the lambda is 0.5630616483713361
the regulation term lambda/alpha is 1.6967705475207304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32810782726293714
the lambda is 0.5031479554544164
the regulation term lambda/alpha is 1.5334835491480263
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3069958920278953
the lambda is 0.4894653758315014
the regulation term lambda/alpha is 1.5943710927149017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31006131653865293
the lambda is 0.46186288682615084
the regulation term lambda/alpha is 1.4895856470653088
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30743853290109213
the lambda is 0.5130748317787236
the regulation term lambda/alpha is 1.6688696336701163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3708995671588315
the lambda is 0.514918664162679
the regulation term lambda/alpha is 1.3882967513471745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28050889398802464
the lambda is 0.4979863989359328
the regulation term lambda/alpha is 1.7752962904527105
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.355617893234596
the lambda is 0.5638071755799358
the regulation term lambda/alpha is 1.5854297162938318
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2717371606280071
the lambda is 0.5290549620635298
the regulation term lambda/alpha is 1.9469363735193224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2934470172163951
the lambda is 0.47064523111236994
the regulation term lambda/alpha is 1.6038507924764642
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34003305706261616
the lambda is 0.5254474318154669
the regulation term lambda/alpha is 1.5452833802529593
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29513849453730645
the lambda is 0.5089625737032811
the regulation term lambda/alpha is 1.724487259790324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34082639960451583
the lambda is 0.5311399042317552
the regulation term lambda/alpha is 1.558388390242285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3125406365082783
the lambda is 0.5219699077998252
the regulation term lambda/alpha is 1.670086532206828
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2870745552057876
the lambda is 0.5338445498381315
the regulation term lambda/alpha is 1.8596024626963135
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28577862896023903
the lambda is 0.5173081830492982
the regulation term lambda/alpha is 1.8101709877027659
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33333971134689555
the lambda is 0.5212457373990067
the regulation term lambda/alpha is 1.56370729215807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31344834935246496
the lambda is 0.5189503080851628
the regulation term lambda/alpha is 1.6556166563238652
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3142333032956407
the lambda is 0.5007305999254691
the regulation term lambda/alpha is 1.5934994625772234
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33619398998112726
the lambda is 0.5412484742137063
the regulation term lambda/alpha is 1.609929059838607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31192099863084993
the lambda is 0.5292994736161787
the regulation term lambda/alpha is 1.6969023436687258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3208032398402102
the lambda is 0.5202979648501118
the regulation term lambda/alpha is 1.6218600694596117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3106841329315454
the lambda is 0.47277721194445627
the regulation term lambda/alpha is 1.5217295054093594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3127976891759253
the lambda is 0.5050412721813348
the regulation term lambda/alpha is 1.6145940000767933
1540
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32569624550691806
the lambda is 0.5066453466381206
the regulation term lambda/alpha is 1.5555762574099399
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31065286476128023
the lambda is 0.530296380112118
the regulation term lambda/alpha is 1.7070384350700316
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33891006116331207
the lambda is 0.5084862933679112
the regulation term lambda/alpha is 1.5003576217906516
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3007030671961833
the lambda is 0.5128685153870203
the regulation term lambda/alpha is 1.705564629483533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32661006233717255
the lambda is 0.5365403146449345
the regulation term lambda/alpha is 1.642755005175078
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3245144078433226
the lambda is 0.5528445030457085
the regulation term lambda/alpha is 1.7036054168436954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29226865956852754
the lambda is 0.5125612055045246
the regulation term lambda/alpha is 1.7537330422673854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3172058439987127
the lambda is 0.5142997269641322
the regulation term lambda/alpha is 1.6213437951862555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3269338656856984
the lambda is 0.4916976791824511
the regulation term lambda/alpha is 1.5039667981510068
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3030015279636022
the lambda is 0.487893121151725
the regulation term lambda/alpha is 1.61020020074068
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3361004722007558
the lambda is 0.5237341272412223
the regulation term lambda/alpha is 1.558266561816644
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3089037994430472
the lambda is 0.5593982808591857
the regulation term lambda/alpha is 1.8109142129937525
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29567300518971446
the lambda is 0.5148619567183091
the regulation term lambda/alpha is 1.7413221622581174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3182075100024248
the lambda is 0.5121288319624911
the regulation term lambda/alpha is 1.609417803993968
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3042699808253521
the lambda is 0.5239401831570715
the regulation term lambda/alpha is 1.721958182453128
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32343380700526064
the lambda is 0.5170316796409984
the regulation term lambda/alpha is 1.5985703053997349
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2830215710300574
the lambda is 0.523608128533624
the regulation term lambda/alpha is 1.8500643842373978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32874426267814727
the lambda is 0.5306585574437723
the regulation term lambda/alpha is 1.6141986878210757
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3154671240820144
the lambda is 0.5634153760995789
the regulation term lambda/alpha is 1.7859717640596475
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32945989746044557
the lambda is 0.5287113645597412
the regulation term lambda/alpha is 1.6047821559928017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3003551308560167
the lambda is 0.4860473195522625
the regulation term lambda/alpha is 1.6182421061595325
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3147217041589356
the lambda is 0.5572401267386782
the regulation term lambda/alpha is 1.7705805458439878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3253921096742707
the lambda is 0.5230842724227008
the regulation term lambda/alpha is 1.6075505732032875
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32449221344735246
the lambda is 0.4915621998999676
the regulation term lambda/alpha is 1.5148659336928019
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32638070610484093
the lambda is 0.5343214899810759
the regulation term lambda/alpha is 1.6371111404160013
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31709047840454074
the lambda is 0.5255706246634524
the regulation term lambda/alpha is 1.6574784184876559
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33764039056570216
the lambda is 0.5145752063794229
the regulation term lambda/alpha is 1.5240333229009537
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33778864230434213
the lambda is 0.5198441591077281
the regulation term lambda/alpha is 1.5389628128448347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2984061490194308
the lambda is 0.5416927181125039
the regulation term lambda/alpha is 1.81528671541293
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3294052380630534
the lambda is 0.5321978171345569
the regulation term lambda/alpha is 1.6156325268655438
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29325473772657323
the lambda is 0.47162720222217386
the regulation term lambda/alpha is 1.6082509216335754
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29431147181772893
the lambda is 0.5301179680633202
the regulation term lambda/alpha is 1.8012140838044854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3209123349064729
the lambda is 0.5367465473303051
the regulation term lambda/alpha is 1.672564401386239
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33982996643981767
the lambda is 0.5398655010247944
the regulation term lambda/alpha is 1.588634182796243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28793774093417673
the lambda is 0.4955008407852059
the regulation term lambda/alpha is 1.7208610416182941
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31016993999544523
the lambda is 0.5285767247703982
the regulation term lambda/alpha is 1.7041520038278377
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31026821968441043
the lambda is 0.5157029249246023
the regulation term lambda/alpha is 1.662119715158549
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28581891776429275
the lambda is 0.46788081186109265
the regulation term lambda/alpha is 1.6369833582777102
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2874768771162773
the lambda is 0.5385486374282247
the regulation term lambda/alpha is 1.8733633217060275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3210634982239457
the lambda is 0.5018377208184152
the regulation term lambda/alpha is 1.5630481932529658
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32888508131045996
the lambda is 0.5520735191209114
the regulation term lambda/alpha is 1.6786213498074931
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2825873791390944
the lambda is 0.5028822312783864
the regulation term lambda/alpha is 1.779563662080107
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30683689270124287
the lambda is 0.4946615665078664
the regulation term lambda/alpha is 1.6121319771983948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3434692468904932
the lambda is 0.5278227369889777
the regulation term lambda/alpha is 1.5367394366962384
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3041713454191196
the lambda is 0.5177883840668792
the regulation term lambda/alpha is 1.7022917900218884
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2654991577733179
the lambda is 0.5516008175137519
the regulation term lambda/alpha is 2.0775991236277536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34844503427547885
the lambda is 0.5374766694960611
the regulation term lambda/alpha is 1.5425005858201866
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2979584517750339
the lambda is 0.5150803088876246
the regulation term lambda/alpha is 1.728698433688074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31181547336647897
the lambda is 0.46505132318972253
the regulation term lambda/alpha is 1.4914311922011143
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3250029103208256
the lambda is 0.5126519426804792
the regulation term lambda/alpha is 1.577376467719678
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30742413625664117
the lambda is 0.5051452377708551
the regulation term lambda/alpha is 1.6431541255080704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31035457819870466
the lambda is 0.485153878616989
the regulation term lambda/alpha is 1.56322449448891
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32649219211701963
the lambda is 0.4863400071588377
the regulation term lambda/alpha is 1.489591539709857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33254095538172546
the lambda is 0.5096561174892507
the regulation term lambda/alpha is 1.5326115753297629
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30429793861563753
the lambda is 0.4889334549654793
the regulation term lambda/alpha is 1.6067590112171517
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31818405835155794
the lambda is 0.4847532019661619
the regulation term lambda/alpha is 1.5234993370741523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31265892675689316
the lambda is 0.5098004636766027
the regulation term lambda/alpha is 1.6305322511165536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31451606289570905
the lambda is 0.5062341654358263
the regulation term lambda/alpha is 1.6095653772815077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3234411535523939
the lambda is 0.4719053266202846
the regulation term lambda/alpha is 1.4590144804929444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3049647067633416
the lambda is 0.536800121842136
the regulation term lambda/alpha is 1.7602040824307683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32592280082155484
the lambda is 0.5087977648134868
the regulation term lambda/alpha is 1.561099019556037
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3358826620765708
the lambda is 0.543473627657133
the regulation term lambda/alpha is 1.6180460887654806
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32271364193168595
the lambda is 0.5125178182979452
the regulation term lambda/alpha is 1.588150458189921
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33413380404701903
the lambda is 0.5413490899546508
the regulation term lambda/alpha is 1.6201566061196029
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3080779011049618
the lambda is 0.5183471987727295
the regulation term lambda/alpha is 1.6825198980959337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3132493345758412
the lambda is 0.5429785986063238
the regulation term lambda/alpha is 1.7333751062601621
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32090224639270415
the lambda is 0.5242951674797297
the regulation term lambda/alpha is 1.63381582202489
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3163219224134215
the lambda is 0.5239650277809267
the regulation term lambda/alpha is 1.6564297023211785
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3618645832236834
the lambda is 0.5552847615517859
the regulation term lambda/alpha is 1.5345098340517658
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30901509518491715
the lambda is 0.5137237670313908
the regulation term lambda/alpha is 1.6624552490679274
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3058448446415002
the lambda is 0.5136798397507817
the regulation term lambda/alpha is 1.6795438888397738
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3417431347899035
the lambda is 0.5092044737652623
the regulation term lambda/alpha is 1.490021077024153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34277694398470104
the lambda is 0.5453777000418745
the regulation term lambda/alpha is 1.591057128002798
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3163116971537264
the lambda is 0.5365973360222602
the regulation term lambda/alpha is 1.6964195154676045
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31397481142019784
the lambda is 0.5224452315672484
the regulation term lambda/alpha is 1.6639717982601192
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32952916459542414
the lambda is 0.5329721427337705
the regulation term lambda/alpha is 1.617374727326855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3101913612555265
the lambda is 0.4925777446749675
the regulation term lambda/alpha is 1.5879802154425458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31727310052096264
the lambda is 0.5096040992172107
the regulation term lambda/alpha is 1.60620014233933
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30748705374120894
the lambda is 0.5284037999135214
the regulation term lambda/alpha is 1.7184586911364506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3473428830053748
the lambda is 0.5140685623195791
the regulation term lambda/alpha is 1.4800031538623015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28937400359188864
the lambda is 0.4735869078862313
the regulation term lambda/alpha is 1.636591062112624
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32258715153217943
the lambda is 0.4867746106142184
the regulation term lambda/alpha is 1.508970857339495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3467238749826557
the lambda is 0.5298518778265725
the regulation term lambda/alpha is 1.5281666941830223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33481404661839276
the lambda is 0.5404675708229925
the regulation term lambda/alpha is 1.6142320678648083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3229292522735441
the lambda is 0.4979919956673132
the regulation term lambda/alpha is 1.5421086574265455
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33993646277409506
the lambda is 0.5263089264856173
the regulation term lambda/alpha is 1.548256760073944
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3673673148126536
the lambda is 0.5949758220731154
the regulation term lambda/alpha is 1.6195665702500925
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3328320703793639
the lambda is 0.5688262938155167
the regulation term lambda/alpha is 1.7090489301922296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2839767492545434
the lambda is 0.48991231021450266
the regulation term lambda/alpha is 1.725184584655444
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3448842740975062
the lambda is 0.5701126833332882
the regulation term lambda/alpha is 1.6530550278790186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3231897107612095
the lambda is 0.5235188366962316
the regulation term lambda/alpha is 1.6198499496261387
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3500601194616295
the lambda is 0.5363572046157983
the regulation term lambda/alpha is 1.532185972628593
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31109178601243237
the lambda is 0.5249874125999527
the regulation term lambda/alpha is 1.6875643659038053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31720998619280266
the lambda is 0.47848553489899237
the regulation term lambda/alpha is 1.5084188888308365
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3185013774078104
the lambda is 0.5323432297338783
the regulation term lambda/alpha is 1.6714000864500622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3262855444749652
the lambda is 0.5484118811483227
the regulation term lambda/alpha is 1.6807728397247477
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32358971500054334
the lambda is 0.49885291923850933
the regulation term lambda/alpha is 1.541621677430853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3009527078148834
the lambda is 0.5036714453951764
the regulation term lambda/alpha is 1.6735900103779284
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3367272943244141
the lambda is 0.5255430249848766
the regulation term lambda/alpha is 1.5607378250678758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3109783964858681
the lambda is 0.5144933525237809
the regulation term lambda/alpha is 1.6544343862393065
1550
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3171091546847891
the lambda is 0.5155610408696389
the regulation term lambda/alpha is 1.6258156954885574
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32322615224466505
the lambda is 0.5510354949560912
the regulation term lambda/alpha is 1.704798609671245
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3648771596031948
the lambda is 0.5316286575252481
the regulation term lambda/alpha is 1.457007224303643
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3387607000238987
the lambda is 0.5321096548266081
the regulation term lambda/alpha is 1.570753794017633
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3315913950988656
the lambda is 0.556197590699894
the regulation term lambda/alpha is 1.6773583359545896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3222478019146859
the lambda is 0.49366978461013106
the regulation term lambda/alpha is 1.5319570270981355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3445489601516634
the lambda is 0.5255323168633427
the regulation term lambda/alpha is 1.525276165779209
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3284851420110217
the lambda is 0.5681044219194347
the regulation term lambda/alpha is 1.729467635709298
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3078656309163712
the lambda is 0.5235672448235691
the regulation term lambda/alpha is 1.7006355768429091
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3385921996294467
the lambda is 0.5372780353201476
the regulation term lambda/alpha is 1.5867998019686853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30887236562103715
the lambda is 0.5172544850525977
the regulation term lambda/alpha is 1.6746544612774765
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161805457288642
the lambda is 0.5006757888684745
the regulation term lambda/alpha is 1.58351231798373
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31105894635327624
the lambda is 0.47035734049378924
the regulation term lambda/alpha is 1.5121164204021782
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30720261734639565
the lambda is 0.48536146124162616
the regulation term lambda/alpha is 1.5799392122181761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3368268685402209
the lambda is 0.49616944220000664
the regulation term lambda/alpha is 1.4730696643957262
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3289267468183084
the lambda is 0.5630529480866505
the regulation term lambda/alpha is 1.711788273629411
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3245491674659552
the lambda is 0.5286253106696897
the regulation term lambda/alpha is 1.6287988497925874
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31362506455871236
the lambda is 0.49057545037141703
the regulation term lambda/alpha is 1.564209962177875
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3041571489663207
the lambda is 0.4944109629230104
the regulation term lambda/alpha is 1.625511564016391
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3184285936821984
the lambda is 0.5195502634083071
the regulation term lambda/alpha is 1.6316068145778215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320497306146278
the lambda is 0.5054363782633047
the regulation term lambda/alpha is 1.5770378364198128
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32229024730329453
the lambda is 0.5510627013313252
the regulation term lambda/alpha is 1.7098336233945732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30089567121442634
the lambda is 0.4715893671629342
the regulation term lambda/alpha is 1.5672853160684619
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3168059571361792
the lambda is 0.5265907948896772
the regulation term lambda/alpha is 1.662187162292917
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.311479380227917
the lambda is 0.5395321919056144
the regulation term lambda/alpha is 1.7321602203999047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3379164879647936
the lambda is 0.5547319598825279
the regulation term lambda/alpha is 1.6416244239029956
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3335729760891306
the lambda is 0.5624637767997243
the regulation term lambda/alpha is 1.6861790885885015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31170628670969547
the lambda is 0.5161532876336354
the regulation term lambda/alpha is 1.6558963025161877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.323283226054426
the lambda is 0.4902650472452321
the regulation term lambda/alpha is 1.5165186676363285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3109149255727255
the lambda is 0.5201529653034503
the regulation term lambda/alpha is 1.6729752177232882
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2893507976893509
the lambda is 0.4789331224906605
the regulation term lambda/alpha is 1.6551989015245312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3346821394542172
the lambda is 0.518680975402387
the regulation term lambda/alpha is 1.5497719007301252
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3153216713352779
the lambda is 0.527245789653686
the regulation term lambda/alpha is 1.6720886560729649
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3014094267640783
the lambda is 0.540943877538898
the regulation term lambda/alpha is 1.7947145294905131
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30745652373792925
the lambda is 0.492871133102765
the regulation term lambda/alpha is 1.6030596037145077
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3106818353582815
the lambda is 0.5407485513733017
the regulation term lambda/alpha is 1.7405219418435098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.329751541149863
the lambda is 0.5131325956415544
the regulation term lambda/alpha is 1.5561188701415343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30766676195706283
the lambda is 0.5057023962972002
the regulation term lambda/alpha is 1.6436692513693587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2895022593393872
the lambda is 0.5011962962363371
the regulation term lambda/alpha is 1.7312344897757024
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3189448126992778
the lambda is 0.5277515385972978
the regulation term lambda/alpha is 1.6546797990876772
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2998401917312839
the lambda is 0.4859152748981648
the regulation term lambda/alpha is 1.6205808570641556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246553690182268
the lambda is 0.5368555685745661
the regulation term lambda/alpha is 1.6536167881592185
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34032187952876547
the lambda is 0.49460470307377935
the regulation term lambda/alpha is 1.4533438277863449
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3188701872340405
the lambda is 0.50928706480237
the regulation term lambda/alpha is 1.5971611181968843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3167659912292252
the lambda is 0.486345224099734
the regulation term lambda/alpha is 1.5353454523714767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28037835781164483
the lambda is 0.4677898410066539
the regulation term lambda/alpha is 1.6684234997941962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3120580942796849
the lambda is 0.5189294247417839
the regulation term lambda/alpha is 1.662925699586849
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33034781685852993
the lambda is 0.472829978804733
the regulation term lambda/alpha is 1.4313095309699608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33874106886853067
the lambda is 0.5049178653879834
the regulation term lambda/alpha is 1.4905717428197285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29415039248693
the lambda is 0.49232378472710037
the regulation term lambda/alpha is 1.6737145259766255
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32722738631287535
the lambda is 0.5083744181453754
the regulation term lambda/alpha is 1.5535815136795978
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30165123664316723
the lambda is 0.5191142751818607
the regulation term lambda/alpha is 1.7209088249021083
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2824296365044633
the lambda is 0.5368536521553684
the regulation term lambda/alpha is 1.900840360805706
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33329998113416753
the lambda is 0.5341074381684521
the regulation term lambda/alpha is 1.6024826534672107
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2973556096551026
the lambda is 0.5416376090284826
the regulation term lambda/alpha is 1.8215146828967452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2954453313830276
the lambda is 0.5184027164745548
the regulation term lambda/alpha is 1.7546485302300345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2774265996579617
the lambda is 0.4739518229558672
the regulation term lambda/alpha is 1.7083863751356243
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.27854133166893447
the lambda is 0.5331647629400905
the regulation term lambda/alpha is 1.9141315931302918
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33180335113504367
the lambda is 0.5323819487185777
the regulation term lambda/alpha is 1.6045104634940794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32817099382756454
the lambda is 0.4855743765359785
the regulation term lambda/alpha is 1.4796383156005575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32593710969330203
the lambda is 0.49049314426098906
the regulation term lambda/alpha is 1.5048705092909789
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31855457371634066
the lambda is 0.5385966878746598
the regulation term lambda/alpha is 1.6907517025772083
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3204678415175417
the lambda is 0.5500473178395506
the regulation term lambda/alpha is 1.7163885001217578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31699060843722565
the lambda is 0.5009937708793755
the regulation term lambda/alpha is 1.5804688137269793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.330297842372053
the lambda is 0.4926640454062792
the regulation term lambda/alpha is 1.4915751246456348
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3411697283937231
the lambda is 0.5140726676543981
the regulation term lambda/alpha is 1.5067944922157286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30253400849223094
the lambda is 0.5196496950417797
the regulation term lambda/alpha is 1.7176571243398717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3369734952075369
the lambda is 0.5190521400114538
the regulation term lambda/alpha is 1.5403352115031406
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30819624643523214
the lambda is 0.5052802103829598
the regulation term lambda/alpha is 1.6394755491908468
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3231418929608091
the lambda is 0.5064204489692203
the regulation term lambda/alpha is 1.5671767109151626
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.314263838969295
the lambda is 0.5391947778602081
the regulation term lambda/alpha is 1.7157391688099688
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2931541986205552
the lambda is 0.5454975171732174
the regulation term lambda/alpha is 1.8607869842563072
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3185131366986992
the lambda is 0.5674043685232952
the regulation term lambda/alpha is 1.781415907689978
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2855122294573262
the lambda is 0.5051459960686352
the regulation term lambda/alpha is 1.7692622029843257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30796973037688885
the lambda is 0.5441513783540113
the regulation term lambda/alpha is 1.7668989016813008
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32936907933868215
the lambda is 0.5104486842574617
the regulation term lambda/alpha is 1.5497771839492553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3038490747306465
the lambda is 0.5091865475126437
the regulation term lambda/alpha is 1.67578771784651
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2932699926936585
the lambda is 0.5401264293959015
the regulation term lambda/alpha is 1.841737794020073
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2885443229706785
the lambda is 0.49264100303067687
the regulation term lambda/alpha is 1.707332162902191
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3334371388512485
the lambda is 0.5106861172550785
the regulation term lambda/alpha is 1.5315813919663688
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32311453120969263
the lambda is 0.4768107957288827
the regulation term lambda/alpha is 1.475671161998732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3339725477213758
the lambda is 0.5175307431389603
the regulation term lambda/alpha is 1.5496206100470333
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34683549135253716
the lambda is 0.5631928756318246
the regulation term lambda/alpha is 1.6238040502590128
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3548113036413306
the lambda is 0.5469732495959594
the regulation term lambda/alpha is 1.5415891319766977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3341808532904769
the lambda is 0.5368776814700279
the regulation term lambda/alpha is 1.6065482991730908
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2776925219005115
the lambda is 0.49287759536919223
the regulation term lambda/alpha is 1.7749040989507623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.328541655217729
the lambda is 0.48269232557738806
the regulation term lambda/alpha is 1.4691967301908835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3069435705054893
the lambda is 0.49337136786900004
the regulation term lambda/alpha is 1.607368308958199
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32037863684835954
the lambda is 0.551155614541027
the regulation term lambda/alpha is 1.720325736955732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3210195276601371
the lambda is 0.49167015664417174
the regulation term lambda/alpha is 1.5315895585165218
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32317829850818686
the lambda is 0.5341191732263404
the regulation term lambda/alpha is 1.6527074240190973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2920141528797193
the lambda is 0.546894318535347
the regulation term lambda/alpha is 1.8728349744082877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32820927776950337
the lambda is 0.56513160976155
the regulation term lambda/alpha is 1.7218636036194983
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3065486425107028
the lambda is 0.4954734048393914
the regulation term lambda/alpha is 1.6162961961969624
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30551044836295665
the lambda is 0.5122885775235622
the regulation term lambda/alpha is 1.676828338502342
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30674330099192326
the lambda is 0.5202561298268573
the regulation term lambda/alpha is 1.696063542853234
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3123578616774936
the lambda is 0.5619426426119397
the regulation term lambda/alpha is 1.7990347340517396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3106812803893199
the lambda is 0.4763350436597608
the regulation term lambda/alpha is 1.5331951866004203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31796576385190534
the lambda is 0.5204781577190092
the regulation term lambda/alpha is 1.636899996445609
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2894651936515493
the lambda is 0.4743367508517116
the regulation term lambda/alpha is 1.6386659303249629
1560
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3108522341512158
the lambda is 0.5236864636242982
the regulation term lambda/alpha is 1.6846797484156022
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31571272223285846
the lambda is 0.5110086414157157
the regulation term lambda/alpha is 1.6185874227735868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32516206900522215
the lambda is 0.5132919060152309
the regulation term lambda/alpha is 1.5785725179617656
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3086119192598999
the lambda is 0.5069165185576076
the regulation term lambda/alpha is 1.6425694761669394
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31461953574823304
the lambda is 0.532312479142075
the regulation term lambda/alpha is 1.6919244314442243
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33861600421490884
the lambda is 0.4850155854766299
the regulation term lambda/alpha is 1.4323469045745572
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3192689963175504
the lambda is 0.49795083828970016
the regulation term lambda/alpha is 1.5596592341663822
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2895748173882324
the lambda is 0.5080221857859654
the regulation term lambda/alpha is 1.7543728089617028
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30168561529250626
the lambda is 0.4782274038464738
the regulation term lambda/alpha is 1.5851846412458126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3256722136055042
the lambda is 0.5072427232837279
the regulation term lambda/alpha is 1.5575253340408253
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3155114129253792
the lambda is 0.5293303121293479
the regulation term lambda/alpha is 1.6776899042144584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32524424527399065
the lambda is 0.5538085953097458
the regulation term lambda/alpha is 1.7027467921629453
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3583421114983502
the lambda is 0.5336911661061238
the regulation term lambda/alpha is 1.4893342115850676
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3539634897974188
the lambda is 0.5318381585400922
the regulation term lambda/alpha is 1.5025226439158317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2954062064799933
the lambda is 0.4823647894487525
the regulation term lambda/alpha is 1.6328864420166511
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3330153478214386
the lambda is 0.5233708436154649
the regulation term lambda/alpha is 1.5716117801756517
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33266826207745104
the lambda is 0.513227696318338
the regulation term lambda/alpha is 1.5427612273961064
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30631649775567005
the lambda is 0.521351353514579
the regulation term lambda/alpha is 1.7020022014303293
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31872605511879876
the lambda is 0.4972442871330825
the regulation term lambda/alpha is 1.5600992738034694
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.310033450461988
the lambda is 0.4963412828137627
the regulation term lambda/alpha is 1.600928164603378
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3257923189185377
the lambda is 0.5220332189039033
the regulation term lambda/alpha is 1.602349682880137
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3204750439802603
the lambda is 0.5350855733954172
the regulation term lambda/alpha is 1.669663780211154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31105223083112904
the lambda is 0.49807875822299413
the regulation term lambda/alpha is 1.6012704904643562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3441030076689753
the lambda is 0.5015397286686375
the regulation term lambda/alpha is 1.457527884066376
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31793763069767694
the lambda is 0.5427250746277897
the regulation term lambda/alpha is 1.707017421740368
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32903846706258494
the lambda is 0.5345050364946303
the regulation term lambda/alpha is 1.6244454372350468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3204800744368889
the lambda is 0.5097820582939517
the regulation term lambda/alpha is 1.5906825383440224
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.330440338640751
the lambda is 0.5073421943636822
the regulation term lambda/alpha is 1.5353518775903927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32777544767273714
the lambda is 0.5120595290959222
the regulation term lambda/alpha is 1.5622266180448665
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28324668808150066
the lambda is 0.489973941627813
the regulation term lambda/alpha is 1.7298487934546622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2926400448288697
the lambda is 0.48127887290856874
the regulation term lambda/alpha is 1.644610440071561
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3247174842996498
the lambda is 0.5096172436458539
the regulation term lambda/alpha is 1.5694173190119272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32105498844755215
the lambda is 0.5160998508947047
the regulation term lambda/alpha is 1.6075123248832972
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2831279433658627
the lambda is 0.49410455753313776
the regulation term lambda/alpha is 1.7451635174513576
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3417172764083984
the lambda is 0.5073784701429292
the regulation term lambda/alpha is 1.484790220370782
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3144778626441608
the lambda is 0.5101443364150231
the regulation term lambda/alpha is 1.622194745683144
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3245449400021759
the lambda is 0.49904726974864977
the regulation term lambda/alpha is 1.5376831009761052
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31894858265049236
the lambda is 0.5767258142595187
the regulation term lambda/alpha is 1.8082093654935651
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3340443140341772
the lambda is 0.5260032379658046
the regulation term lambda/alpha is 1.574651074324191
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31111274952497203
the lambda is 0.5282846019035511
the regulation term lambda/alpha is 1.6980487064904017
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31407782856491734
the lambda is 0.5454797893770605
the regulation term lambda/alpha is 1.7367663036562109
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28562752462792057
the lambda is 0.5093614489216152
the regulation term lambda/alpha is 1.7833065968874915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33312014872704365
the lambda is 0.5414107307270564
the regulation term lambda/alpha is 1.6252716408657844
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3256815493966482
the lambda is 0.5186804690613446
the regulation term lambda/alpha is 1.5926001028373966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32690875934643143
the lambda is 0.5120641215960697
the regulation term lambda/alpha is 1.5663823833286328
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28691412954920265
the lambda is 0.5338200013968932
the regulation term lambda/alpha is 1.8605566837563114
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3376619702438673
the lambda is 0.5185491417668607
the regulation term lambda/alpha is 1.53570489857757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31599975291474613
the lambda is 0.5366521679215249
the regulation term lambda/alpha is 1.6982676820836275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3258669513001811
the lambda is 0.5460826046438296
the regulation term lambda/alpha is 1.675783943308786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28610138208821045
the lambda is 0.5026016012855808
the regulation term lambda/alpha is 1.7567255272140534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34016010112836975
the lambda is 0.504985913242881
the regulation term lambda/alpha is 1.4845536309748133
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31834682834695044
the lambda is 0.513319704052506
the regulation term lambda/alpha is 1.6124542742202674
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32636113134604877
the lambda is 0.49289400193032024
the regulation term lambda/alpha is 1.5102717651989401
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3231079785253339
the lambda is 0.5306797354959497
the regulation term lambda/alpha is 1.6424222574693887
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3013827296934207
the lambda is 0.4953805940285051
the regulation term lambda/alpha is 1.643692704397585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3053014483918623
the lambda is 0.5148558743942364
the regulation term lambda/alpha is 1.6863852992056743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31245091107111
the lambda is 0.4839517826087697
the regulation term lambda/alpha is 1.5488890109161122
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33618427051262983
the lambda is 0.5519249798298864
the regulation term lambda/alpha is 1.6417335022494801
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31614237358160946
the lambda is 0.5222496749841006
the regulation term lambda/alpha is 1.6519445624054767
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32687140399723646
the lambda is 0.49191704158763916
the regulation term lambda/alpha is 1.504925287351836
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2997303883361262
the lambda is 0.5143541088380553
the regulation term lambda/alpha is 1.7160559251044107
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3275964370285864
the lambda is 0.5607268329463029
the regulation term lambda/alpha is 1.7116389849422364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2726589287766407
the lambda is 0.486551933537575
the regulation term lambda/alpha is 1.7844709348805265
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3011834691724593
the lambda is 0.4800381760353521
the regulation term lambda/alpha is 1.593839719538125
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30744970487976486
the lambda is 0.5132244357666571
the regulation term lambda/alpha is 1.6692955876063211
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32756342996072896
the lambda is 0.5287904704049933
the regulation term lambda/alpha is 1.614314731251865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3316206394949119
the lambda is 0.530554922017951
the regulation term lambda/alpha is 1.5998851061442796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32219187287872386
the lambda is 0.49631324800629023
the regulation term lambda/alpha is 1.5404275830169911
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2925018364283604
the lambda is 0.4943719304144423
the regulation term lambda/alpha is 1.6901498344456511
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3754740795239105
the lambda is 0.5157869318752495
the regulation term lambda/alpha is 1.373695176320164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3046320077395548
the lambda is 0.47944027635184583
the regulation term lambda/alpha is 1.5738342136448886
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3043516249605167
the lambda is 0.5168589888242521
the regulation term lambda/alpha is 1.6982297659534553
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3348231659633945
the lambda is 0.5224206816270323
the regulation term lambda/alpha is 1.5602883394398923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3162751077531678
the lambda is 0.519764312583284
the regulation term lambda/alpha is 1.643393045616876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3413024044958559
the lambda is 0.49270366702069346
the regulation term lambda/alpha is 1.443598581581853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2951288132827455
the lambda is 0.5274035004120494
the regulation term lambda/alpha is 1.7870281608416705
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3463790557602655
the lambda is 0.5102349816253545
the regulation term lambda/alpha is 1.4730537921972289
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3188521962413694
the lambda is 0.5124663844842626
the regulation term lambda/alpha is 1.607222376151765
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29749786872078005
the lambda is 0.5105992827820495
the regulation term lambda/alpha is 1.7163124057916466
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3364126964374809
the lambda is 0.5373897777414698
the regulation term lambda/alpha is 1.5974122957673167
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31692196747496465
the lambda is 0.5152579477827561
the regulation term lambda/alpha is 1.6258196043903428
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31625008886483835
the lambda is 0.5018686127688982
the regulation term lambda/alpha is 1.5869358790390444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3312544043378833
the lambda is 0.5115240480640955
the regulation term lambda/alpha is 1.5442030094257557
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3154727204477674
the lambda is 0.502759436936316
the regulation term lambda/alpha is 1.59367008412874
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3320400358162382
the lambda is 0.5087171527132027
the regulation term lambda/alpha is 1.5320958253201231
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3091912733174731
the lambda is 0.5024241103584596
the regulation term lambda/alpha is 1.6249621309414441
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33092496608117317
the lambda is 0.5792544579689667
the regulation term lambda/alpha is 1.7504102661957526
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3070193130628036
the lambda is 0.5532528267550317
the regulation term lambda/alpha is 1.8020131086732605
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3048201155543863
the lambda is 0.505657235486006
the regulation term lambda/alpha is 1.6588709526808973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32181365461108574
the lambda is 0.4915038768817129
the regulation term lambda/alpha is 1.5272934191549425
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2810794220924754
the lambda is 0.4607046749353926
the regulation term lambda/alpha is 1.6390551521193193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3422488588632057
the lambda is 0.5384249367628262
the regulation term lambda/alpha is 1.5731971716464672
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3178298671235081
the lambda is 0.5374637801405623
the regulation term lambda/alpha is 1.691042396376502
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28737681986431773
the lambda is 0.5221061562775335
the regulation term lambda/alpha is 1.816799825831607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30609830412729666
the lambda is 0.47821691060875243
the regulation term lambda/alpha is 1.5622984647764564
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32947240441921183
the lambda is 0.5325330884977904
the regulation term lambda/alpha is 1.6163207642125001
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34291738997528054
the lambda is 0.5033378774541939
the regulation term lambda/alpha is 1.467810884395444
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32215031842208786
the lambda is 0.5133691653995017
the regulation term lambda/alpha is 1.593570256003519
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30931190967196276
the lambda is 0.5186307035985146
the regulation term lambda/alpha is 1.676724003768696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3221418082262006
the lambda is 0.5167046321038392
the regulation term lambda/alpha is 1.603966386570417
1570
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3422647932850381
the lambda is 0.49153951779911115
the regulation term lambda/alpha is 1.4361381230051233
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33533800747004555
the lambda is 0.5220169042359204
the regulation term lambda/alpha is 1.5566887516696124
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3051206075595934
the lambda is 0.5028932509394858
the regulation term lambda/alpha is 1.6481785840743817
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196239028867389
the lambda is 0.4958022369387273
the regulation term lambda/alpha is 1.551205127216091
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233045646969595
the lambda is 0.49834441700523174
the regulation term lambda/alpha is 1.5414085398773782
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35009653393522633
the lambda is 0.5289760722086437
the regulation term lambda/alpha is 1.5109434711127792
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29145572708036843
the lambda is 0.47621326865398617
the regulation term lambda/alpha is 1.6339128876430387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31752451836013884
the lambda is 0.5145136634780707
the regulation term lambda/alpha is 1.6203903438237963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300602107455867
the lambda is 0.5415638462598009
the regulation term lambda/alpha is 1.6408031887165067
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3260535875643371
the lambda is 0.5404329530693213
the regulation term lambda/alpha is 1.6574973368838724
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3359520006486065
the lambda is 0.4931672627104083
the regulation term lambda/alpha is 1.4679694175307003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3375307543651177
the lambda is 0.5030601473327446
the regulation term lambda/alpha is 1.490412772249395
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30351046371977225
the lambda is 0.5144797038153034
the regulation term lambda/alpha is 1.6950970899320184
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.299908010978907
the lambda is 0.5052953481656005
the regulation term lambda/alpha is 1.6848344481239572
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3064102969414013
the lambda is 0.5057243096547689
the regulation term lambda/alpha is 1.650480792267516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2820870920479748
the lambda is 0.5280899421896948
the regulation term lambda/alpha is 1.8720812014322235
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3451098919034786
the lambda is 0.5441446254771451
the regulation term lambda/alpha is 1.576728567459704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3153204987688718
the lambda is 0.5019681399321717
the regulation term lambda/alpha is 1.5919299312668904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3179916790123486
the lambda is 0.5025684396630716
the regulation term lambda/alpha is 1.5804452532343003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.333639512531794
the lambda is 0.5245751045884912
the regulation term lambda/alpha is 1.5722811144513409
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3177983233778444
the lambda is 0.5279186677707997
the regulation term lambda/alpha is 1.6611751193637794
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3332925705684499
the lambda is 0.5194968032682911
the regulation term lambda/alpha is 1.5586810182484985
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30211061335215167
the lambda is 0.5009247240105088
the regulation term lambda/alpha is 1.658083833773201
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.307772833795436
the lambda is 0.5224969195942262
the regulation term lambda/alpha is 1.6976706915643778
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.323199071393905
the lambda is 0.5113588081361768
the regulation term lambda/alpha is 1.5821790759817764
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3254441011881351
the lambda is 0.5323429796478754
the regulation term lambda/alpha is 1.6357432127495672
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052171587565254
the lambda is 0.5080003858807128
the regulation term lambda/alpha is 1.6643899967824205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33756838934877037
the lambda is 0.5245573236769212
the regulation term lambda/alpha is 1.5539290414273856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35188858885146074
the lambda is 0.5168689735752294
the regulation term lambda/alpha is 1.4688426676814184
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.27858243435099816
the lambda is 0.5158429998618835
the regulation term lambda/alpha is 1.8516709463883514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31152037783305114
the lambda is 0.510913484355009
the regulation term lambda/alpha is 1.6400644089768532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3063877114450575
the lambda is 0.5313707590954749
the regulation term lambda/alpha is 1.7343083264968417
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2878005844303992
the lambda is 0.4779877399200501
the regulation term lambda/alpha is 1.6608296361387174
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3523271577553316
the lambda is 0.5617229453243849
the regulation term lambda/alpha is 1.5943220184986853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2877578494685449
the lambda is 0.46321180579708876
the regulation term lambda/alpha is 1.6097277855411654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33116748597645895
the lambda is 0.5120027510577059
the regulation term lambda/alpha is 1.5460538028002593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3248476948144709
the lambda is 0.5059563049641574
the regulation term lambda/alpha is 1.557518532656119
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32356612417179326
the lambda is 0.5389688676062223
the regulation term lambda/alpha is 1.66571475609747
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3077342024914614
the lambda is 0.4976300960481134
the regulation term lambda/alpha is 1.6170776339426263
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30540595255219477
the lambda is 0.4936237834750636
the regulation term lambda/alpha is 1.6162873688282215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33163119685391257
the lambda is 0.5275240396835195
the regulation term lambda/alpha is 1.5906948582883171
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3059815325432465
the lambda is 0.5157115167405276
the regulation term lambda/alpha is 1.685433471929024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3170804449895769
the lambda is 0.5266620742437801
the regulation term lambda/alpha is 1.660973051369007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29862274125633703
the lambda is 0.5263310843424008
the regulation term lambda/alpha is 1.762528473645614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161916373956882
the lambda is 0.5094823446030776
the regulation term lambda/alpha is 1.6113087265666732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32089575487074806
the lambda is 0.5369985987470552
the regulation term lambda/alpha is 1.67343628139721
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29646150137175553
the lambda is 0.5073658885742428
the regulation term lambda/alpha is 1.7114056504018655
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3030140765245703
the lambda is 0.5208445685024261
the regulation term lambda/alpha is 1.7188791176841343
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31760856539296983
the lambda is 0.5351845898730521
the regulation term lambda/alpha is 1.6850445743202183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3106554377605041
the lambda is 0.505163467969525
the regulation term lambda/alpha is 1.6261214405619853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28220102077445364
the lambda is 0.5146058282473616
the regulation term lambda/alpha is 1.8235434685356973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30622040559076835
the lambda is 0.4926321115154971
the regulation term lambda/alpha is 1.6087501111008538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30552980484062897
the lambda is 0.4938352667439975
the regulation term lambda/alpha is 1.6163243615515441
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32834086329039147
the lambda is 0.507022454386189
the regulation term lambda/alpha is 1.5441954111504173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30539911506199985
the lambda is 0.5054451174298982
the regulation term lambda/alpha is 1.6550313753439871
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32418476211991637
the lambda is 0.513220932870166
the regulation term lambda/alpha is 1.5831124495614786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146277880073984
the lambda is 0.521456725271026
the regulation term lambda/alpha is 1.6573765736762074
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33284967417795075
the lambda is 0.5129901863844584
the regulation term lambda/alpha is 1.5412068155133583
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3217944596494301
the lambda is 0.5081984790508891
the regulation term lambda/alpha is 1.579264228490856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3014704959137763
the lambda is 0.4816638968517637
the regulation term lambda/alpha is 1.5977148788368485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257216958171119
the lambda is 0.4831362471067954
the regulation term lambda/alpha is 1.4832792942907602
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32302692846345565
the lambda is 0.5049114766237758
the regulation term lambda/alpha is 1.563063113733247
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33759429020969406
the lambda is 0.5112458250983718
the regulation term lambda/alpha is 1.51437935985474
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31175620143532407
the lambda is 0.5418189117276054
the regulation term lambda/alpha is 1.7379571255778514
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3207026622042744
the lambda is 0.5085132999341421
the regulation term lambda/alpha is 1.585622322056809
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3512847596943361
the lambda is 0.5186579314894578
the regulation term lambda/alpha is 1.4764601001784377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3387602570168876
the lambda is 0.4888182181285797
the regulation term lambda/alpha is 1.4429621184996666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34359795923494585
the lambda is 0.5146700451065704
the regulation term lambda/alpha is 1.49788446430978
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2990617684954258
the lambda is 0.5084143016024075
the regulation term lambda/alpha is 1.7000310810714134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.324567848453696
the lambda is 0.5445782245739733
the regulation term lambda/alpha is 1.6778563470425345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3053984971786798
the lambda is 0.5097847048152854
the regulation term lambda/alpha is 1.6692443136582469
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33592449053766904
the lambda is 0.551117939918813
the regulation term lambda/alpha is 1.6406006571200356
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.314371722489527
the lambda is 0.5291281342531041
the regulation term lambda/alpha is 1.6831289088691224
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3283728535146052
the lambda is 0.5419886196392434
the regulation term lambda/alpha is 1.650528092801487
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35524501299634287
the lambda is 0.5366210589901965
the regulation term lambda/alpha is 1.5105660582368847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3362769556286266
the lambda is 0.4959702208196558
the regulation term lambda/alpha is 1.474886139291059
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3229375913509831
the lambda is 0.48089651846724624
the regulation term lambda/alpha is 1.489131433895493
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28627245880869795
the lambda is 0.5422571160901848
the regulation term lambda/alpha is 1.8941993873485015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3355698512276969
the lambda is 0.5246376312300048
the regulation term lambda/alpha is 1.5634230229878974
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32251657184770577
the lambda is 0.49199903636337255
the regulation term lambda/alpha is 1.525500018633763
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3451401083186417
the lambda is 0.5459055868524233
the regulation term lambda/alpha is 1.5816926914458462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.292629294292921
the lambda is 0.48345644424109097
the regulation term lambda/alpha is 1.6521122583071008
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31221920430550426
the lambda is 0.49379688924546233
the regulation term lambda/alpha is 1.5815711603770715
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.27502338967481654
the lambda is 0.5363543839122978
the regulation term lambda/alpha is 1.9502137056287288
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.272034307024245
the lambda is 0.4887524906469414
the regulation term lambda/alpha is 1.796657546591656
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33097425765878086
the lambda is 0.5009429353194184
the regulation term lambda/alpha is 1.5135404755129547
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33130379590110226
the lambda is 0.49628326042213305
the regulation term lambda/alpha is 1.4979703419102355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29821151329072
the lambda is 0.5109747098793128
the regulation term lambda/alpha is 1.7134640585830587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32508897445144047
the lambda is 0.5167727521754657
the regulation term lambda/alpha is 1.5896348162759903
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3083385957628128
the lambda is 0.5196941274198895
the regulation term lambda/alpha is 1.6854657008935086
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33444634380444516
the lambda is 0.5502604514187865
the regulation term lambda/alpha is 1.6452876869855408
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3180045027945633
the lambda is 0.5456380666848106
the regulation term lambda/alpha is 1.7158186814647172
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3335852306250356
the lambda is 0.5162498182136639
the regulation term lambda/alpha is 1.547579961038357
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29208156563724696
the lambda is 0.4818472653141808
the regulation term lambda/alpha is 1.6497010493042032
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2872666343728392
the lambda is 0.50680450604171
the regulation term lambda/alpha is 1.764230319153375
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27304479307260965
the lambda is 0.5016636045836405
the regulation term lambda/alpha is 1.8372941631237596
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3005297169852367
the lambda is 0.5023144459790199
the regulation term lambda/alpha is 1.6714302033688593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3260148501406851
the lambda is 0.5011387548251904
the regulation term lambda/alpha is 1.5371654224000353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31317759719657867
the lambda is 0.5042927312433784
the regulation term lambda/alpha is 1.6102452274925607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.304525991253085
the lambda is 0.5425815447246266
the regulation term lambda/alpha is 1.7817249112037166
1580
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34990535593206734
the lambda is 0.5386795766850675
the regulation term lambda/alpha is 1.5395008037249074
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3302264706537014
the lambda is 0.5190809094165302
the regulation term lambda/alpha is 1.5718937018858028
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3132035386176818
the lambda is 0.5361298712825966
the regulation term lambda/alpha is 1.7117618582752805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3342180375173225
the lambda is 0.5147223710853511
the regulation term lambda/alpha is 1.5400795687416275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314450810374
the lambda is 0.5670440124994126
the regulation term lambda/alpha is 1.7108234363430719
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3082305234625307
the lambda is 0.51902707827032
the regulation term lambda/alpha is 1.683892537441751
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30260675468000864
the lambda is 0.5178905208181808
the regulation term lambda/alpha is 1.7114308018861768
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32243263375117126
the lambda is 0.518253419478332
the regulation term lambda/alpha is 1.6073230970729848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34623001155768257
the lambda is 0.5449275890344029
the regulation term lambda/alpha is 1.5738889490913381
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30200358284202555
the lambda is 0.519651959573581
the regulation term lambda/alpha is 1.7206814392179073
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3474030538996503
the lambda is 0.5529438713007057
the regulation term lambda/alpha is 1.5916494259156029
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31376364006899365
the lambda is 0.5174551806997607
the regulation term lambda/alpha is 1.6491878427531539
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31450509502778273
the lambda is 0.5187174828057003
the regulation term lambda/alpha is 1.6493134483556708
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3234808941408683
the lambda is 0.5170201921839763
the regulation term lambda/alpha is 1.5983020992851165
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33075975381557576
the lambda is 0.5554514152193996
the regulation term lambda/alpha is 1.6793198350519598
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.330054017137348
the lambda is 0.5477894965603276
the regulation term lambda/alpha is 1.6596964985048845
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3182284939368051
the lambda is 0.5207860120829014
the regulation term lambda/alpha is 1.6365159688884456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089783124789937
the lambda is 0.5249063876420501
the regulation term lambda/alpha is 1.6988454090211802
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29974296558219793
the lambda is 0.4815252233194951
the regulation term lambda/alpha is 1.6064604631645556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3227740359979459
the lambda is 0.5315685245491757
the regulation term lambda/alpha is 1.646875105383503
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33551101391734167
the lambda is 0.5272598091781094
the regulation term lambda/alpha is 1.5715126696496706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2936583676054535
the lambda is 0.4729234985857769
the regulation term lambda/alpha is 1.610454700957734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2981582285095723
the lambda is 0.5164630427503559
the regulation term lambda/alpha is 1.7321777276852013
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31128573313056235
the lambda is 0.529965693740927
the regulation term lambda/alpha is 1.7025055675090763
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31548491652999555
the lambda is 0.5116670946380462
the regulation term lambda/alpha is 1.6218432889465828
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31415713728690675
the lambda is 0.5127990166999681
the regulation term lambda/alpha is 1.6323010233940662
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30535910314866965
the lambda is 0.5146968470471576
the regulation term lambda/alpha is 1.6855461053557261
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2785268286791796
the lambda is 0.5079030237073993
the regulation term lambda/alpha is 1.823533575260809
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3342941101377087
the lambda is 0.5498816737648605
the regulation term lambda/alpha is 1.644903864858232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.292880135363384
the lambda is 0.5182742786698643
the regulation term lambda/alpha is 1.769578117774454
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34339589729532094
the lambda is 0.46567249808908906
the regulation term lambda/alpha is 1.356080552379489
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2936133321923856
the lambda is 0.5367664497895727
the regulation term lambda/alpha is 1.8281405881047144
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29521332097662345
the lambda is 0.5232096417808169
the regulation term lambda/alpha is 1.7723104094691153
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30297958697023203
the lambda is 0.481545725900793
the regulation term lambda/alpha is 1.5893668966817398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2928694388026578
the lambda is 0.4912457923572462
the regulation term lambda/alpha is 1.6773542311741818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3171642161056086
the lambda is 0.5186623969058312
the regulation term lambda/alpha is 1.6353118371119402
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33510687346514034
the lambda is 0.5287117177746722
the regulation term lambda/alpha is 1.5777405945380338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32741333682910095
the lambda is 0.5071988763833121
the regulation term lambda/alpha is 1.5491087849242173
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3102083156072677
the lambda is 0.525770608934047
the regulation term lambda/alpha is 1.6948952767587544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30519897455231393
the lambda is 0.4996047067803013
the regulation term lambda/alpha is 1.6369802929815034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33941567839703546
the lambda is 0.5158324840880772
the regulation term lambda/alpha is 1.5197662244838206
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3198390073089075
the lambda is 0.5284861411680091
the regulation term lambda/alpha is 1.6523504922512018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31760289847530937
the lambda is 0.5312700446137198
the regulation term lambda/alpha is 1.6727493582840243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33351286546806375
the lambda is 0.4979346858544756
the regulation term lambda/alpha is 1.4929999331679646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3058227982423292
the lambda is 0.5204352061301737
the regulation term lambda/alpha is 1.701754117486653
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32076823949152
the lambda is 0.5150364360926803
the regulation term lambda/alpha is 1.6056341391813391
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30174377152347254
the lambda is 0.5111204281641345
the regulation term lambda/alpha is 1.6938889097313965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3174836784866648
the lambda is 0.5272430907277467
the regulation term lambda/alpha is 1.6606935299506815
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3204497053577859
the lambda is 0.5500201360227267
the regulation term lambda/alpha is 1.7164008168103095
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30283497519755787
the lambda is 0.4978514047551613
the regulation term lambda/alpha is 1.6439693084670364
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30335865692030983
the lambda is 0.5267521787211559
the regulation term lambda/alpha is 1.7364006818487792
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33847543001630986
the lambda is 0.5265119723009908
the regulation term lambda/alpha is 1.5555397101515467
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2943456473662074
the lambda is 0.5083458496084529
the regulation term lambda/alpha is 1.727037087713409
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2993745888692488
the lambda is 0.5102654469934734
the regulation term lambda/alpha is 1.7044380717841445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3095451007732456
the lambda is 0.47600311845203186
the regulation term lambda/alpha is 1.5377504514300924
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30650951901352896
the lambda is 0.514467457732678
the regulation term lambda/alpha is 1.6784713877351718
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31897650107151604
the lambda is 0.5112694259610293
the regulation term lambda/alpha is 1.6028435456642
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3153136376277784
the lambda is 0.49022667129831987
the regulation term lambda/alpha is 1.5547271440159618
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31803734622193947
the lambda is 0.5097758393760595
the regulation term lambda/alpha is 1.6028804334831706
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28522158556483895
the lambda is 0.5046523944282624
the regulation term lambda/alpha is 1.7693345103207154
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3342506832842555
the lambda is 0.5494642257081552
the regulation term lambda/alpha is 1.6438686685970856
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2885804752047152
the lambda is 0.565605973644194
the regulation term lambda/alpha is 1.959959256574654
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3113416348931591
the lambda is 0.5219039120434795
the regulation term lambda/alpha is 1.676306197282537
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33057043369074657
the lambda is 0.5508788840723674
the regulation term lambda/alpha is 1.6664493491505734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3160948235928658
the lambda is 0.4941952134739699
the regulation term lambda/alpha is 1.5634397547442906
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2877113924522422
the lambda is 0.5161435502129839
the regulation term lambda/alpha is 1.7939628521962667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2916166296443698
the lambda is 0.5059658471464453
the regulation term lambda/alpha is 1.7350377026285406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3166285366236357
the lambda is 0.5114159842466003
the regulation term lambda/alpha is 1.6151923313674692
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33577951945221524
the lambda is 0.512727140744328
the regulation term lambda/alpha is 1.5269756225179605
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3097354751775306
the lambda is 0.52021804857238
the regulation term lambda/alpha is 1.6795559122641908
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3125619902519598
the lambda is 0.5388549317804331
the regulation term lambda/alpha is 1.7239937951062314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3229030903069736
the lambda is 0.5465644167872696
the regulation term lambda/alpha is 1.6926577452933893
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3500547164969145
the lambda is 0.5149821061137155
the regulation term lambda/alpha is 1.471147457366868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3289459510810002
the lambda is 0.5072467031009799
the regulation term lambda/alpha is 1.5420366216213877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30798771804060654
the lambda is 0.5583489806561863
the regulation term lambda/alpha is 1.812893657605434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3325033527807141
the lambda is 0.4703608659175634
the regulation term lambda/alpha is 1.4146048813762377
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3142532529018341
the lambda is 0.51565646713676
the regulation term lambda/alpha is 1.6408946045113493
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3101620260456641
the lambda is 0.5120323711748129
the regulation term lambda/alpha is 1.6508544830675955
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3100859223713863
the lambda is 0.5443308397940896
the regulation term lambda/alpha is 1.7554193870889463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28602561097082263
the lambda is 0.5124038349555227
the regulation term lambda/alpha is 1.7914613772393717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32655810566912064
the lambda is 0.49319173882129574
the regulation term lambda/alpha is 1.510272537289317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3401927024241284
the lambda is 0.5360026962303476
the regulation term lambda/alpha is 1.575585520826655
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2900638460977185
the lambda is 0.4946886008658607
the regulation term lambda/alpha is 1.7054472921082586
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30379523717607365
the lambda is 0.5151237945145145
the regulation term lambda/alpha is 1.6956282768052715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31611728210290224
the lambda is 0.5347511715334612
the regulation term lambda/alpha is 1.6916227040044884
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2994200144838424
the lambda is 0.5138537488114177
the regulation term lambda/alpha is 1.7161636629309118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3232618579759945
the lambda is 0.5022188105075994
the regulation term lambda/alpha is 1.5535974879686991
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.337749379707046
the lambda is 0.5495062948509004
the regulation term lambda/alpha is 1.6269646307789705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2997825385185273
the lambda is 0.5365159389627073
the regulation term lambda/alpha is 1.7896837541441704
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32844226035192325
the lambda is 0.5086519341609109
the regulation term lambda/alpha is 1.548679922053558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3446765412840136
the lambda is 0.5124508712910961
the regulation term lambda/alpha is 1.4867587721000033
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32296851784025427
the lambda is 0.5422799222186518
the regulation term lambda/alpha is 1.6790488616196106
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29240731389235053
the lambda is 0.5241771710435077
the regulation term lambda/alpha is 1.7926267440645587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32284726326951285
the lambda is 0.4882128395770148
the regulation term lambda/alpha is 1.5122099367757527
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32684820766657346
the lambda is 0.5077084623000363
the regulation term lambda/alpha is 1.5533463252702404
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32328547681429454
the lambda is 0.515865638639009
the regulation term lambda/alpha is 1.5956969169244144
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3373531049628643
the lambda is 0.511653674325452
the regulation term lambda/alpha is 1.5166710096881266
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.37379080681362514
the lambda is 0.5349769390900876
the regulation term lambda/alpha is 1.4312201620218847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2895610175317491
the lambda is 0.49790199639085875
the regulation term lambda/alpha is 1.7195063086703857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3065657493227524
the lambda is 0.490763979128623
the regulation term lambda/alpha is 1.6008441263017505
1590
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.316727457304992
the lambda is 0.5077727893608754
the regulation term lambda/alpha is 1.6031852548606695
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2827936995008454
the lambda is 0.4836436171785694
the regulation term lambda/alpha is 1.7102347684274473
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3070924391639707
the lambda is 0.5437296375450371
the regulation term lambda/alpha is 1.7705731831929439
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3238809556454356
the lambda is 0.4799758499054506
the regulation term lambda/alpha is 1.4819514440080195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3386173859268884
the lambda is 0.5393379638327934
the regulation term lambda/alpha is 1.59276512739143
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3671758320798058
the lambda is 0.541750409430415
the regulation term lambda/alpha is 1.4754522550184221
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34026900031645124
the lambda is 0.5556989746055596
the regulation term lambda/alpha is 1.6331166638417187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33097428348526103
the lambda is 0.5533420688047679
the regulation term lambda/alpha is 1.671858196890422
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3112711419349976
the lambda is 0.5098537803727136
the regulation term lambda/alpha is 1.6379731741376324
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3001470309778987
the lambda is 0.48480090311032353
the regulation term lambda/alpha is 1.6152113900004623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35032944089058726
the lambda is 0.5291818842557752
the regulation term lambda/alpha is 1.5105264430831722
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2991805736852709
the lambda is 0.5235588196575979
the regulation term lambda/alpha is 1.749975986771007
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3101271809048359
the lambda is 0.5130251986965217
the regulation term lambda/alpha is 1.6542413251225025
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32092488275066244
the lambda is 0.52511922820426
the regulation term lambda/alpha is 1.6362683494761707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29592272962515775
the lambda is 0.48659190931168245
the regulation term lambda/alpha is 1.6443208331041126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3325678914966446
the lambda is 0.5444249462621851
the regulation term lambda/alpha is 1.6370340017255633
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31690960033897425
the lambda is 0.540344585027165
the regulation term lambda/alpha is 1.705043281898684
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2953025945367727
the lambda is 0.48234260133125484
the regulation term lambda/alpha is 1.6333842311405458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3025761664674977
the lambda is 0.5150899053604954
the regulation term lambda/alpha is 1.7023479125075953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31543246584925566
the lambda is 0.5234796910548724
the regulation term lambda/alpha is 1.659561864202786
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33876474172639726
the lambda is 0.5207158170032973
the regulation term lambda/alpha is 1.5371015718744794
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34485659953957687
the lambda is 0.5439427432078205
the regulation term lambda/alpha is 1.5773012432821252
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3183157949173831
the lambda is 0.5410976452717445
the regulation term lambda/alpha is 1.699876832728904
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31201411113299155
the lambda is 0.5163411234196921
the regulation term lambda/alpha is 1.6548646519375179
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3117780905138124
the lambda is 0.49015477857957984
the regulation term lambda/alpha is 1.5721270784993309
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3072892889964195
the lambda is 0.4781946508966195
the regulation term lambda/alpha is 1.556170904812082
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3471480403644297
the lambda is 0.5945339156159966
the regulation term lambda/alpha is 1.7126235682962971
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3423567133747852
the lambda is 0.5636605993202884
the regulation term lambda/alpha is 1.646413162937562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026742418612084
the lambda is 0.5256300201608285
the regulation term lambda/alpha is 1.7366195977847918
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3042535856177706
the lambda is 0.532453304291803
the regulation term lambda/alpha is 1.7500313207835665
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3095008036840445
the lambda is 0.5199066631028763
the regulation term lambda/alpha is 1.6798233055111085
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3380722886365167
the lambda is 0.5575564694232912
the regulation term lambda/alpha is 1.6492226312661669
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3035019816589547
the lambda is 0.5086890617544947
the regulation term lambda/alpha is 1.6760650423894392
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3521773878005806
the lambda is 0.5138433342251044
the regulation term lambda/alpha is 1.4590469235806436
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.279716377944467
the lambda is 0.5383527990155669
the regulation term lambda/alpha is 1.9246381029660258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3413738833014449
the lambda is 0.5430116020639887
the regulation term lambda/alpha is 1.5906653338928411
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33149683618199477
the lambda is 0.5337075146207143
the regulation term lambda/alpha is 1.609992785354078
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31050894505101795
the lambda is 0.536292156779579
the regulation term lambda/alpha is 1.7271391543694945
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159845971427257
the lambda is 0.49236368793246515
the regulation term lambda/alpha is 1.558188887637683
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3023608816715339
the lambda is 0.5045848172904696
the regulation term lambda/alpha is 1.668816463627789
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3061937117395689
the lambda is 0.4997700169311932
the regulation term lambda/alpha is 1.632202092237183
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3200045381099224
the lambda is 0.49146820901428295
the regulation term lambda/alpha is 1.5358163728461323
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3066261076367829
the lambda is 0.5068680399855552
the regulation term lambda/alpha is 1.653049193664784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33024065174611666
the lambda is 0.503872973009952
the regulation term lambda/alpha is 1.5257751289726769
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34490749536133924
the lambda is 0.5539535244142019
the regulation term lambda/alpha is 1.6060930303467527
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3261723484987335
the lambda is 0.5852238392733462
the regulation term lambda/alpha is 1.794216591219162
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2971857789668027
the lambda is 0.5182695694043385
the regulation term lambda/alpha is 1.743924528307366
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3374876921385254
the lambda is 0.5116081036251229
the regulation term lambda/alpha is 1.5159311451723338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31639002112140535
the lambda is 0.5156106376267412
the regulation term lambda/alpha is 1.6296678251710435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3508704363649428
the lambda is 0.541646210591497
the regulation term lambda/alpha is 1.5437214266411632
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32092367675616124
the lambda is 0.5000335090768135
the regulation term lambda/alpha is 1.5581072550678163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3333788387257039
the lambda is 0.5386354044621227
the regulation term lambda/alpha is 1.6156856461585403
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3251542533570013
the lambda is 0.5019843127079568
the regulation term lambda/alpha is 1.5438343725333525
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31202711034591074
the lambda is 0.51180436903643
the regulation term lambda/alpha is 1.6402560933537083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34409892415219967
the lambda is 0.5149962579384614
the regulation term lambda/alpha is 1.4966517527112972
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31610111371010957
the lambda is 0.5022457216284305
the regulation term lambda/alpha is 1.588876786081275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31464939716369106
the lambda is 0.5015043940711337
the regulation term lambda/alpha is 1.593851437796445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29653299887429097
the lambda is 0.47053977295198635
the regulation term lambda/alpha is 1.586804081630935
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29637352271690365
the lambda is 0.5077437049767569
the regulation term lambda/alpha is 1.7131884802737738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3432391060341044
the lambda is 0.49357255821332674
the regulation term lambda/alpha is 1.4379846280227904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31895491551007454
the lambda is 0.5003387262190825
the regulation term lambda/alpha is 1.5686816596600743
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34142134413645103
the lambda is 0.5758050885397701
the regulation term lambda/alpha is 1.6864941176895087
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31141819349781896
the lambda is 0.4895420618353962
the regulation term lambda/alpha is 1.571976435727493
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2921936042596159
the lambda is 0.4690753886611477
the regulation term lambda/alpha is 1.605358166034227
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3089268595398064
the lambda is 0.5050165027691805
the regulation term lambda/alpha is 1.6347445590243577
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3140192374351797
the lambda is 0.5326922411138921
the regulation term lambda/alpha is 1.6963681762454164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2817905867600407
the lambda is 0.507118870471879
the regulation term lambda/alpha is 1.799630272617009
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3155959807416279
the lambda is 0.48878060509242827
the regulation term lambda/alpha is 1.548754213991664
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3096219740270722
the lambda is 0.5577390522780767
the regulation term lambda/alpha is 1.8013548748620474
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31457956149955957
the lambda is 0.4966835902652572
the regulation term lambda/alpha is 1.5788806745664963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34848953363496465
the lambda is 0.5471012186739422
the regulation term lambda/alpha is 1.569921520934454
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2882818551961742
the lambda is 0.5030950879543394
the regulation term lambda/alpha is 1.7451500289950126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3097267363010063
the lambda is 0.5037893913409491
the regulation term lambda/alpha is 1.6265608754271188
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2857928467637164
the lambda is 0.5002224712973741
the regulation term lambda/alpha is 1.7502973813439795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3147402386793364
the lambda is 0.5306105290130014
the regulation term lambda/alpha is 1.6858681026597235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3320768283662505
the lambda is 0.5234257601322194
the regulation term lambda/alpha is 1.5762188608803758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3057881274160373
the lambda is 0.5211346148771531
the regulation term lambda/alpha is 1.7042342986983536
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3326286219324986
the lambda is 0.5418655652280648
the regulation term lambda/alpha is 1.6290407063587793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33856372438200777
the lambda is 0.5496749987475085
the regulation term lambda/alpha is 1.623549598383139
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3139282893418614
the lambda is 0.4701269854940479
the regulation term lambda/alpha is 1.4975617090121158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3020340335362537
the lambda is 0.4872945308217201
the regulation term lambda/alpha is 1.6133762315339515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28568985482773396
the lambda is 0.502734056880691
the regulation term lambda/alpha is 1.759719669373037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33399910986515113
the lambda is 0.48813424897764607
the regulation term lambda/alpha is 1.4614836823209663
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31263266673646195
the lambda is 0.5396799845830736
the regulation term lambda/alpha is 1.7262431025418223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31844846449451264
the lambda is 0.48041459866524894
the regulation term lambda/alpha is 1.5086101904364095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3239964745248912
the lambda is 0.5263004654518059
the regulation term lambda/alpha is 1.6244018279012864
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35258965198536607
the lambda is 0.5495268560917373
the regulation term lambda/alpha is 1.5585450480394274
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3421140082392991
the lambda is 0.4932422882642001
the regulation term lambda/alpha is 1.4417482955541272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2853845436458597
the lambda is 0.4728910352545246
the regulation term lambda/alpha is 1.6570309982917157
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32666412991208127
the lambda is 0.5244216895326085
the regulation term lambda/alpha is 1.605384985715303
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3191716331344531
the lambda is 0.5242864770007852
the regulation term lambda/alpha is 1.6426474741880528
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31735892311626374
the lambda is 0.5287555018087606
the regulation term lambda/alpha is 1.6661119738393246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3373545404786747
the lambda is 0.5038941379487297
the regulation term lambda/alpha is 1.4936634237492428
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3197464611414181
the lambda is 0.49837240551831496
the regulation term lambda/alpha is 1.5586486985320969
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31952026310270787
the lambda is 0.5261302366815123
the regulation term lambda/alpha is 1.6466255741420408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3244242169395332
the lambda is 0.4849085086015284
the regulation term lambda/alpha is 1.494674205199381
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29192402495514364
the lambda is 0.4810503479521988
the regulation term lambda/alpha is 1.647861453082239
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2998842662243457
the lambda is 0.4855610246315254
the regulation term lambda/alpha is 1.6191613876410358
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31251577321389973
the lambda is 0.5106541826551482
the regulation term lambda/alpha is 1.634010908965013
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31967766783816437
the lambda is 0.5171523667207266
the regulation term lambda/alpha is 1.6177306666993487
1600
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246256446780959
the lambda is 0.514528952888996
the regulation term lambda/alpha is 1.58499170143878
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30942744997401356
the lambda is 0.4940484151179265
the regulation term lambda/alpha is 1.596653480999885
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32340846316983557
the lambda is 0.5416890278198621
the regulation term lambda/alpha is 1.6749377011058553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31346007734972386
the lambda is 0.5069087617369076
the regulation term lambda/alpha is 1.6171397838690482
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32642490487823345
the lambda is 0.5469421229550107
the regulation term lambda/alpha is 1.6755526762243738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2839351055656164
the lambda is 0.47721062295578465
the regulation term lambda/alpha is 1.680703138152471
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33601929003728187
the lambda is 0.5472457469987616
the regulation term lambda/alpha is 1.628614080275105
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31372017016356135
the lambda is 0.5587364536498433
the regulation term lambda/alpha is 1.781002647545869
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32166154003038283
the lambda is 0.5102067119481895
the regulation term lambda/alpha is 1.5861601355884742
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3014995283086549
the lambda is 0.5156216225616065
the regulation term lambda/alpha is 1.7101904784200783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2975988348925045
the lambda is 0.5230255732928627
the regulation term lambda/alpha is 1.7574852854574665
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3454864648553005
the lambda is 0.5008843470961015
the regulation term lambda/alpha is 1.449794414683904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30581932214423924
the lambda is 0.5083211904849608
the regulation term lambda/alpha is 1.6621617853341912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3139592683387375
the lambda is 0.518875188185407
the regulation term lambda/alpha is 1.6526831360352812
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.291957014733455
the lambda is 0.5188507983537126
the regulation term lambda/alpha is 1.7771479093502944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30199332606499135
the lambda is 0.48964663428824556
the regulation term lambda/alpha is 1.6213823022793217
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.324602301708005
the lambda is 0.5411718589912302
the regulation term lambda/alpha is 1.667184293345029
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35845358387908205
the lambda is 0.5695104919528886
the regulation term lambda/alpha is 1.588798431835467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3268995717576527
the lambda is 0.5035370237942487
the regulation term lambda/alpha is 1.5403416440311102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026912368241787
the lambda is 0.5079275551363673
the regulation term lambda/alpha is 1.6780385202608368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33051921797711353
the lambda is 0.5272324528809297
the regulation term lambda/alpha is 1.595164287595033
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32072742100353474
the lambda is 0.5622860269268993
the regulation term lambda/alpha is 1.7531585705005945
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32889707263766543
the lambda is 0.5098498970955279
the regulation term lambda/alpha is 1.5501807085319117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32923669070300743
the lambda is 0.49962247835668805
the regulation term lambda/alpha is 1.517517617158227
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3362362243708157
the lambda is 0.5325713429743225
the regulation term lambda/alpha is 1.583920185788727
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3119561822502188
the lambda is 0.5045320352875339
the regulation term lambda/alpha is 1.6173169951248176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2952422615753315
the lambda is 0.48966242852292186
the regulation term lambda/alpha is 1.658510627544369
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31863861980586616
the lambda is 0.5300768973712175
the regulation term lambda/alpha is 1.6635676419078527
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3285929101447987
the lambda is 0.5259795229791011
the regulation term lambda/alpha is 1.600702591992388
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3123477168024459
the lambda is 0.5273172474315976
the regulation term lambda/alpha is 1.68823788062173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3341194667961711
the lambda is 0.5081773635869784
the regulation term lambda/alpha is 1.5209450932620785
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32223310822806667
the lambda is 0.5494293175380438
the regulation term lambda/alpha is 1.7050678639426917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33537639315549556
the lambda is 0.532758146148894
the regulation term lambda/alpha is 1.588538003931253
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32253662293198826
the lambda is 0.5486686310374865
the regulation term lambda/alpha is 1.701104904149696
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3144103439089509
the lambda is 0.5315796774802359
the regulation term lambda/alpha is 1.6907194301284643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29781578668095254
the lambda is 0.5174111093710434
the regulation term lambda/alpha is 1.737352862107815
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32559252686313356
the lambda is 0.510971201693475
the regulation term lambda/alpha is 1.5693578922598166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30667965427761
the lambda is 0.5273624247443313
the regulation term lambda/alpha is 1.7195872546111475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2944722559221672
the lambda is 0.5241188368060147
the regulation term lambda/alpha is 1.7798581233559267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33281265298987145
the lambda is 0.505883001235762
the regulation term lambda/alpha is 1.5200233425354703
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31275974050975025
the lambda is 0.5181415638663049
the regulation term lambda/alpha is 1.6566760255709827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2944447424158959
the lambda is 0.5157428890213334
the regulation term lambda/alpha is 1.7515778505321697
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29395934914109106
the lambda is 0.4863453414004001
the regulation term lambda/alpha is 1.6544646149933129
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2862981128652425
the lambda is 0.5139499790581654
the regulation term lambda/alpha is 1.7951567124023493
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3198193119368828
the lambda is 0.5039082125319648
the regulation term lambda/alpha is 1.5756028286103387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34188702635995705
the lambda is 0.5122936126441728
the regulation term lambda/alpha is 1.4984295195360895
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3417863924321158
the lambda is 0.5241763199903169
the regulation term lambda/alpha is 1.5336371827454385
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31139464336636247
the lambda is 0.49486757035310736
the regulation term lambda/alpha is 1.5891974409170715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31220905744406147
the lambda is 0.5425326021183599
the regulation term lambda/alpha is 1.7377221742375795
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3185263291343038
the lambda is 0.49136209781265083
the regulation term lambda/alpha is 1.54261061918518
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3139607149268872
the lambda is 0.5157304532626902
the regulation term lambda/alpha is 1.642659188691138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3023504759734318
the lambda is 0.5205375603436497
the regulation term lambda/alpha is 1.721636318473633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3011254435011771
the lambda is 0.4970937521954347
the regulation term lambda/alpha is 1.6507862849971746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31305017865449497
the lambda is 0.48612600433625963
the regulation term lambda/alpha is 1.552869276183304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3221010839125027
the lambda is 0.5383140851050839
the regulation term lambda/alpha is 1.671258222935116
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2977168191405111
the lambda is 0.5210782870712636
the regulation term lambda/alpha is 1.7502480665203342
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2951968244202467
the lambda is 0.4963685229317292
the regulation term lambda/alpha is 1.6814832744443462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3148911950744459
the lambda is 0.525631400551396
the regulation term lambda/alpha is 1.6692476918166206
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3078636881594677
the lambda is 0.5390867167295439
the regulation term lambda/alpha is 1.7510565144997126
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2885881749615143
the lambda is 0.5381205952388808
the regulation term lambda/alpha is 1.8646661295482525
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3431350987981986
the lambda is 0.5665870522225702
the regulation term lambda/alpha is 1.6512069275541705
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31312691539420157
the lambda is 0.4994757576486686
the regulation term lambda/alpha is 1.5951224027480002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32297907258729525
the lambda is 0.5475651975030903
the regulation term lambda/alpha is 1.695358133010595
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33907095819705707
the lambda is 0.5430114628256076
the regulation term lambda/alpha is 1.601468511821136
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33060465295113267
the lambda is 0.5440248869175933
the regulation term lambda/alpha is 1.64554516115055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32344204970554036
the lambda is 0.5222407637568897
the regulation term lambda/alpha is 1.6146347212192553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32062133464138176
the lambda is 0.564231833372021
the regulation term lambda/alpha is 1.759807512507301
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2922351543285208
the lambda is 0.49974159079980474
the regulation term lambda/alpha is 1.7100666480324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3070825875244122
the lambda is 0.5057834191493351
the regulation term lambda/alpha is 1.6470599105822852
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35609771799796147
the lambda is 0.511373325048327
the regulation term lambda/alpha is 1.4360477453305511
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3226040183597428
the lambda is 0.5285075005950155
the regulation term lambda/alpha is 1.6382545489736127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3234731522156868
the lambda is 0.48767841945828555
the regulation term lambda/alpha is 1.5076318269935098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2984190720352544
the lambda is 0.5044800824407567
the regulation term lambda/alpha is 1.690508850524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3171176309886564
the lambda is 0.4992780943699064
the regulation term lambda/alpha is 1.5744255304044132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32196086489095327
the lambda is 0.5077168517557598
the regulation term lambda/alpha is 1.5769520681581013
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3328328628514633
the lambda is 0.5022385198155099
the regulation term lambda/alpha is 1.5089811610329147
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30979968298548044
the lambda is 0.5482937047316592
the regulation term lambda/alpha is 1.7698330077289213
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32955653019479875
the lambda is 0.543427826874735
the regulation term lambda/alpha is 1.6489669512951795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28925101715107937
the lambda is 0.5117941135537962
the regulation term lambda/alpha is 1.7693770573207004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205931921889629
the lambda is 0.5115791557833868
the regulation term lambda/alpha is 1.5957268221773515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3207790000737733
the lambda is 0.527982888126739
the regulation term lambda/alpha is 1.6459396905823405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203840879161529
the lambda is 0.4907030953861835
the regulation term lambda/alpha is 1.5316088217046673
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3319915417765604
the lambda is 0.48860486815196985
the regulation term lambda/alpha is 1.4717389049652796
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30639458808972975
the lambda is 0.5006310811434931
the regulation term lambda/alpha is 1.6339423103546458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32170998393859884
the lambda is 0.5044363857769804
the regulation term lambda/alpha is 1.5679848651301305
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34261390766608735
the lambda is 0.541989131400112
the regulation term lambda/alpha is 1.5819239069779278
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32470566722550864
the lambda is 0.5025596696842786
the regulation term lambda/alpha is 1.547739138581927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28545030676126065
the lambda is 0.48704290630314384
the regulation term lambda/alpha is 1.7062265997509938
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28650675971862655
the lambda is 0.4907075503863868
the regulation term lambda/alpha is 1.712725908695147
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29163828320836815
the lambda is 0.47066387634807855
the regulation term lambda/alpha is 1.6138617714046861
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32738756883090697
the lambda is 0.5484892476689173
the regulation term lambda/alpha is 1.675351479066719
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.333665646815978
the lambda is 0.5022698536177079
the regulation term lambda/alpha is 1.5053088575663827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31228442551737373
the lambda is 0.4950530983074318
the regulation term lambda/alpha is 1.585263490125254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29773835425837447
the lambda is 0.5029438856319718
the regulation term lambda/alpha is 1.6892142998665263
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3263792859853688
the lambda is 0.5232506362923852
the regulation term lambda/alpha is 1.6031980544128095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3081988684735834
the lambda is 0.5320391611755888
the regulation term lambda/alpha is 1.7262852515021203
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3150609503109428
the lambda is 0.5472394148612926
the regulation term lambda/alpha is 1.7369318994347163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34992611102537924
the lambda is 0.5768596632356442
the regulation term lambda/alpha is 1.6485184873609104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3412229215486111
the lambda is 0.5205990502523018
the regulation term lambda/alpha is 1.5256860467919549
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3621414947555635
the lambda is 0.5458171430264948
the regulation term lambda/alpha is 1.50719304727813
1610
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3035901393707784
the lambda is 0.4830174671929367
the regulation term lambda/alpha is 1.591018299191271
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2998098825228199
the lambda is 0.5088039437528756
the regulation term lambda/alpha is 1.697088633207907
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3116654229612746
the lambda is 0.5437134243321475
the regulation term lambda/alpha is 1.7445420129255265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33090593529469003
the lambda is 0.5128808683359226
the regulation term lambda/alpha is 1.5499294924377038
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.350217118870258
the lambda is 0.5341289410561222
the regulation term lambda/alpha is 1.5251365860673316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33285936311336184
the lambda is 0.5017360649644829
the regulation term lambda/alpha is 1.5073515140795566
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30411241889912644
the lambda is 0.48610695536084586
the regulation term lambda/alpha is 1.5984449340166103
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3546937110925018
the lambda is 0.5270386340939431
the regulation term lambda/alpha is 1.4858978820644917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34280222027063634
the lambda is 0.5399655892861307
the regulation term lambda/alpha is 1.575151960392314
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2718353929682344
the lambda is 0.4948436399711302
the regulation term lambda/alpha is 1.8203797326309001
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34493135566829103
the lambda is 0.5183384658550131
the regulation term lambda/alpha is 1.5027293324805238
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3233011962649849
the lambda is 0.5100519910292218
the regulation term lambda/alpha is 1.5776371907116973
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30869120401691047
the lambda is 0.5257871338023792
the regulation term lambda/alpha is 1.7032786388483423
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33258480857852224
the lambda is 0.49021853340612004
the regulation term lambda/alpha is 1.4739654992100488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29168449813991404
the lambda is 0.5045170459819196
the regulation term lambda/alpha is 1.7296669833304439
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32676040726059097
the lambda is 0.5086803419862637
the regulation term lambda/alpha is 1.5567379972708622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2927175689120436
the lambda is 0.4993868578026695
the regulation term lambda/alpha is 1.7060365035783909
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32418559271551195
the lambda is 0.5190088285225793
the regulation term lambda/alpha is 1.6009620420671622
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3443653949056695
the lambda is 0.49845516058750566
the regulation term lambda/alpha is 1.447460075725801
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32661617316952735
the lambda is 0.4872426437931567
the regulation term lambda/alpha is 1.491789702466012
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35029897881702576
the lambda is 0.5171594901044586
the regulation term lambda/alpha is 1.4763374185415206
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31267057372406915
the lambda is 0.5683339279961721
the regulation term lambda/alpha is 1.8176764165140948
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3003588260567704
the lambda is 0.5511389763977798
the regulation term lambda/alpha is 1.83493517947633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2989968406758624
the lambda is 0.5138013480481664
the regulation term lambda/alpha is 1.7184173146671138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3395001827145625
the lambda is 0.5190638239326162
the regulation term lambda/alpha is 1.5289058750493316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2908184764005231
the lambda is 0.5637930069437027
the regulation term lambda/alpha is 1.9386423239740507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.307646421203033
the lambda is 0.49755470204340496
the regulation term lambda/alpha is 1.6172939704539613
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2619474550081924
the lambda is 0.4781325986502625
the regulation term lambda/alpha is 1.825299652692976
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3147634534693346
the lambda is 0.5346390908195641
the regulation term lambda/alpha is 1.6985424607804749
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29156378869480065
the lambda is 0.5125590203174998
the regulation term lambda/alpha is 1.7579652899010365
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31944908461650484
the lambda is 0.5346000009226974
the regulation term lambda/alpha is 1.6735061287293371
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3172769994166337
the lambda is 0.5218264696437175
the regulation term lambda/alpha is 1.644703116214481
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31013541610596934
the lambda is 0.5027717671129569
the regulation term lambda/alpha is 1.621136255335528
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3292772227752969
the lambda is 0.5195893228387818
the regulation term lambda/alpha is 1.5779692213735548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34707651171834764
the lambda is 0.5454923176056307
the regulation term lambda/alpha is 1.5716774232429112
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3261359484735872
the lambda is 0.5239962686841291
the regulation term lambda/alpha is 1.6066804997627118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3177100635779244
the lambda is 0.5320714944948909
the regulation term lambda/alpha is 1.674707714646849
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31264084229691363
the lambda is 0.5648019522988273
the regulation term lambda/alpha is 1.8065520427508233
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32140678876595163
the lambda is 0.5211840565521194
the regulation term lambda/alpha is 1.6215714003839712
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.318907666778633
the lambda is 0.5040401221739843
the regulation term lambda/alpha is 1.5805205540068104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3153272046949533
the lambda is 0.5214643010891498
the regulation term lambda/alpha is 1.6537244275945457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3226245902806924
the lambda is 0.51499782464462
the regulation term lambda/alpha is 1.596275795953921
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2987428367630192
the lambda is 0.5137481124145283
the regulation term lambda/alpha is 1.7197001875632059
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3332993972440214
the lambda is 0.5436219062349059
the regulation term lambda/alpha is 1.6310317712242943
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29848891478881046
the lambda is 0.536318110874149
the regulation term lambda/alpha is 1.796777315008866
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3698111729062905
the lambda is 0.5390725994768039
the regulation term lambda/alpha is 1.4576968976905516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3135657664135508
the lambda is 0.5253684850324913
the regulation term lambda/alpha is 1.6754650580688757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3104003982749199
the lambda is 0.5353371849066543
the regulation term lambda/alpha is 1.7246665528840885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2934432624487096
the lambda is 0.4984189747715069
the regulation term lambda/alpha is 1.6985190616145927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3280181767842948
the lambda is 0.5444592524537689
the regulation term lambda/alpha is 1.65984476162675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2921443997394719
the lambda is 0.5102394295350722
the regulation term lambda/alpha is 1.7465316124152737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3056178540707536
the lambda is 0.5153398232980128
the regulation term lambda/alpha is 1.6862228971043898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3302680932229198
the lambda is 0.496018496638142
the regulation term lambda/alpha is 1.501866231756594
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3050878971559443
the lambda is 0.5532570461168618
the regulation term lambda/alpha is 1.8134349191638597
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176205130699029
the lambda is 0.5185729669519767
the regulation term lambda/alpha is 1.6326809686811619
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235300597981466
the lambda is 0.5478135981058184
the regulation term lambda/alpha is 1.6932386389308134
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3283053973222153
the lambda is 0.5698919915453916
the regulation term lambda/alpha is 1.735859343750207
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3303050961677608
the lambda is 0.5232338983204247
the regulation term lambda/alpha is 1.5840927203093347
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31403120585440963
the lambda is 0.5052523690389463
the regulation term lambda/alpha is 1.6089240802176525
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2860038610832264
the lambda is 0.5117037522487995
the regulation term lambda/alpha is 1.7891498048688754
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2896064972065066
the lambda is 0.49039169963646245
the regulation term lambda/alpha is 1.693303514826824
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257194248376203
the lambda is 0.5285708519342334
the regulation term lambda/alpha is 1.6227796429326862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32628635007265444
the lambda is 0.49105392409729676
the regulation term lambda/alpha is 1.5049784460427271
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28608534175319983
the lambda is 0.501160769797349
the regulation term lambda/alpha is 1.7517876544324684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212287456035137
the lambda is 0.5121181397754776
the regulation term lambda/alpha is 1.594247547221614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3150086917494832
the lambda is 0.4902870519627779
the regulation term lambda/alpha is 1.5564238854484949
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3250155520659615
the lambda is 0.5101893314642885
the regulation term lambda/alpha is 1.5697382116679333
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31448042693364303
the lambda is 0.4961548392087303
the regulation term lambda/alpha is 1.5776970415822462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31936361048380746
the lambda is 0.5161189003117952
the regulation term lambda/alpha is 1.616085500567585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31828334311386164
the lambda is 0.5355145425804495
the regulation term lambda/alpha is 1.6825088530909276
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30331535214983424
the lambda is 0.5329950587011479
the regulation term lambda/alpha is 1.7572307333716977
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3055574510927259
the lambda is 0.48752166345915593
the regulation term lambda/alpha is 1.5955155461458876
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33422254723388267
the lambda is 0.5188541237270897
the regulation term lambda/alpha is 1.5524210680017507
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32629517460852503
the lambda is 0.5303085465872323
the regulation term lambda/alpha is 1.6252417683573583
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2742610278806102
the lambda is 0.5022895516792744
the regulation term lambda/alpha is 1.8314288237041403
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3413464274578897
the lambda is 0.5246391112213993
the regulation term lambda/alpha is 1.5369696853971662
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33616682208488446
the lambda is 0.5145943292449886
the regulation term lambda/alpha is 1.5307707228616687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30436949949386904
the lambda is 0.5241642324115308
the regulation term lambda/alpha is 1.722131269010708
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32473410482372517
the lambda is 0.519786128225076
the regulation term lambda/alpha is 1.6006514884145924
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33815115397858675
the lambda is 0.5354185117160406
the regulation term lambda/alpha is 1.583370352034776
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.309896347639337
the lambda is 0.5149132151664118
the regulation term lambda/alpha is 1.661565936768242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3093938112147575
the lambda is 0.5405568213705224
the regulation term lambda/alpha is 1.747148138639752
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3126529055669138
the lambda is 0.5080209609254444
the regulation term lambda/alpha is 1.6248720286295821
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2952244999204275
the lambda is 0.5042203081507647
the regulation term lambda/alpha is 1.7079216267168487
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33862166671238153
the lambda is 0.4964541678384149
the regulation term lambda/alpha is 1.466102782667162
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3295390503513319
the lambda is 0.5403884806735988
the regulation term lambda/alpha is 1.6398313950879986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3055022793041837
the lambda is 0.5142156219945768
the regulation term lambda/alpha is 1.68318096730984
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2776056748150946
the lambda is 0.4938938640847251
the regulation term lambda/alpha is 1.779120201392475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367317981906357
the lambda is 0.5260407687707873
the regulation term lambda/alpha is 1.562195110759861
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30982253732117476
the lambda is 0.46537544813983467
the regulation term lambda/alpha is 1.5020709989777385
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3199594416915013
the lambda is 0.4909628794973537
the regulation term lambda/alpha is 1.53445348229708
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3086669151351236
the lambda is 0.5143871786347345
the regulation term lambda/alpha is 1.6664797988134028
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2949476813335981
the lambda is 0.5214883649280168
the regulation term lambda/alpha is 1.76807073908878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3268327191303854
the lambda is 0.5244659869059414
the regulation term lambda/alpha is 1.604692419722864
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35982416084598534
the lambda is 0.4881338994601715
the regulation term lambda/alpha is 1.3565901142172225
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30005854232648027
the lambda is 0.5362234231539125
the regulation term lambda/alpha is 1.7870626811566384
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3072895168576677
the lambda is 0.5410312117631395
the regulation term lambda/alpha is 1.7606562608959346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34750583743144187
the lambda is 0.5100237555175621
the regulation term lambda/alpha is 1.4676696060341223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3122766014555844
the lambda is 0.5384813798516569
the regulation term lambda/alpha is 1.7243731273546794
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2935950612582631
the lambda is 0.4950037762759195
the regulation term lambda/alpha is 1.6860085253289927
1620
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34052108959295935
the lambda is 0.5232478708936423
the regulation term lambda/alpha is 1.5366092934775488
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2974904490218238
the lambda is 0.5173158240603963
the regulation term lambda/alpha is 1.7389325464443606
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3089922268181064
the lambda is 0.5219179056346265
the regulation term lambda/alpha is 1.6890972016000338
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3192517198646153
the lambda is 0.5313825754862865
the regulation term lambda/alpha is 1.6644626870346362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30246298595252424
the lambda is 0.5156464152578698
the regulation term lambda/alpha is 1.7048248519863771
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30230703824417215
the lambda is 0.4786628469141625
the regulation term lambda/alpha is 1.5833665325633222
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33639036864082417
the lambda is 0.5328888357069181
the regulation term lambda/alpha is 1.5841382078209922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3250970274483199
the lambda is 0.5725669690127023
the regulation term lambda/alpha is 1.761218715245627
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3029347350216076
the lambda is 0.5375185764877854
the regulation term lambda/alpha is 1.7743708936165592
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30992790213174465
the lambda is 0.5187290739169467
the regulation term lambda/alpha is 1.6737088540561427
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31384337301934423
the lambda is 0.530955089954519
the regulation term lambda/alpha is 1.6917836589839121
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3225254176615608
the lambda is 0.5324669636063708
the regulation term lambda/alpha is 1.6509302351019985
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35998531756954527
the lambda is 0.5388882175252788
the regulation term lambda/alpha is 1.4969727686773544
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33001872733046494
the lambda is 0.5151972485142247
the regulation term lambda/alpha is 1.5611151908913667
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3015415782044335
the lambda is 0.5348841690726255
the regulation term lambda/alpha is 1.7738322265793633
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3279866241137504
the lambda is 0.532161267101723
the regulation term lambda/alpha is 1.6225090536532425
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29563801572122345
the lambda is 0.5271705498040384
the regulation term lambda/alpha is 1.7831622517083265
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3022582685878555
the lambda is 0.5142523584727338
the regulation term lambda/alpha is 1.701367379874537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29132466009480407
the lambda is 0.48612663245089094
the regulation term lambda/alpha is 1.6686765627485625
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205832307842541
the lambda is 0.5274424853703229
the regulation term lambda/alpha is 1.6452591237539833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29900090993511874
the lambda is 0.5303017827726887
the regulation term lambda/alpha is 1.7735791603034277
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3189373669232234
the lambda is 0.507449823906092
the regulation term lambda/alpha is 1.5910641916983295
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33511859734646865
the lambda is 0.5157662943858499
the regulation term lambda/alpha is 1.539056019181816
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3234566332355634
the lambda is 0.5046063078080096
the regulation term lambda/alpha is 1.560043158677536
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3333110045045139
the lambda is 0.5339270490825603
the regulation term lambda/alpha is 1.6018884521267869
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2838356683457253
the lambda is 0.5018412083278256
the regulation term lambda/alpha is 1.7680695708636562
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3234831386854084
the lambda is 0.51085559910892
the regulation term lambda/alpha is 1.5792340867748713
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31403000926719643
the lambda is 0.49140294563195
the regulation term lambda/alpha is 1.5648279818182396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3263275526778088
the lambda is 0.47386240714104955
the regulation term lambda/alpha is 1.45210664331769
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3314327519896904
the lambda is 0.5537747379197091
the regulation term lambda/alpha is 1.6708509783515146
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29081179845514676
the lambda is 0.5042787448947272
the regulation term lambda/alpha is 1.7340381221585977
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3041439136926358
the lambda is 0.5185904280529091
the regulation term lambda/alpha is 1.7050823794455092
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33564085741672184
the lambda is 0.49339687155606987
the regulation term lambda/alpha is 1.4700143342307186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2999072346664464
the lambda is 0.5104670321320158
the regulation term lambda/alpha is 1.7020830881247389
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3377599032756389
the lambda is 0.5208444267270195
the regulation term lambda/alpha is 1.542055234134672
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31649618173808447
the lambda is 0.4825206169291332
the regulation term lambda/alpha is 1.524570104698583
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32993878989352315
the lambda is 0.5002916834053045
the regulation term lambda/alpha is 1.5163166585134082
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3237014075125485
the lambda is 0.5498937984604543
the regulation term lambda/alpha is 1.698768635842701
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3094156083862625
the lambda is 0.5408494633017166
the regulation term lambda/alpha is 1.747970847761956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3044497787590308
the lambda is 0.5225752656992689
the regulation term lambda/alpha is 1.7164580241422427
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3123472020971972
the lambda is 0.551044366584048
the regulation term lambda/alpha is 1.7642045867040368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2913305426621732
the lambda is 0.4802776473228087
the regulation term lambda/alpha is 1.648566068404776
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30491010253468404
the lambda is 0.5209362907270305
the regulation term lambda/alpha is 1.708491409095811
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33355924527093245
the lambda is 0.4986269284642682
the regulation term lambda/alpha is 1.4948676600442001
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3541811042188976
the lambda is 0.5314459818136509
the regulation term lambda/alpha is 1.500492193070799
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31208213451129607
the lambda is 0.5003050986242861
the regulation term lambda/alpha is 1.6031199588138458
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3277906247788401
the lambda is 0.5013050832315185
the regulation term lambda/alpha is 1.5293453971410815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3318186396208576
the lambda is 0.522046564194955
the regulation term lambda/alpha is 1.573288844748009
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3140677513135074
the lambda is 0.5170640037283792
the regulation term lambda/alpha is 1.6463454193112548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.304513508700868
the lambda is 0.5170586260715697
the regulation term lambda/alpha is 1.697982556759052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32017986980241275
the lambda is 0.5338555479427295
the regulation term lambda/alpha is 1.667361374942712
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3246993564262566
the lambda is 0.4674112380796279
the regulation term lambda/alpha is 1.4395200631873843
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3198454685339416
the lambda is 0.5351545331966804
the regulation term lambda/alpha is 1.6731659061785036
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32750677444099224
the lambda is 0.49399168526149423
the regulation term lambda/alpha is 1.5083403575534222
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3394516926825331
the lambda is 0.5079436907309549
the regulation term lambda/alpha is 1.4963651726609632
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3291946924081776
the lambda is 0.5108900231395915
the regulation term lambda/alpha is 1.5519388219847872
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2938566715334227
the lambda is 0.4895294368775175
the regulation term lambda/alpha is 1.6658782471162623
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32395244158542663
the lambda is 0.5356826011990587
the regulation term lambda/alpha is 1.6535840834457753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33001278676715934
the lambda is 0.5008101350144243
the regulation term lambda/alpha is 1.5175476681386018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3213957601081498
the lambda is 0.5151870394757626
the regulation term lambda/alpha is 1.6029677532223885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3448375433917236
the lambda is 0.49593988974579767
the regulation term lambda/alpha is 1.438184151493119
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3287258900481719
the lambda is 0.49792208178182523
the regulation term lambda/alpha is 1.514702969421907
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33611203634861586
the lambda is 0.5155247598652152
the regulation term lambda/alpha is 1.5337884518081113
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.296462913456121
the lambda is 0.5443011718071076
the regulation term lambda/alpha is 1.8359840206038744
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32644817956528993
the lambda is 0.5432447614761059
the regulation term lambda/alpha is 1.664107186014975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3207262606031183
the lambda is 0.5212799745623279
the regulation term lambda/alpha is 1.6253111721568199
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32259039637477527
the lambda is 0.5107315241653841
the regulation term lambda/alpha is 1.5832198661364751
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3133020133624938
the lambda is 0.5025951749615016
the regulation term lambda/alpha is 1.6041875044703067
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30386600554770365
the lambda is 0.5125369632460476
the regulation term lambda/alpha is 1.686720310559994
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3259331485058764
the lambda is 0.5153343757769867
the regulation term lambda/alpha is 1.5811045244687516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31976010679925665
the lambda is 0.5152647875356671
the regulation term lambda/alpha is 1.6114104811052838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3017111968324771
the lambda is 0.48851515703880727
the regulation term lambda/alpha is 1.6191482522607594
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2991035149837748
the lambda is 0.504306736670735
the regulation term lambda/alpha is 1.686060883296847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30991998228770234
the lambda is 0.46901875621330635
the regulation term lambda/alpha is 1.513354359248481
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3037239643296972
the lambda is 0.5177451480608221
the regulation term lambda/alpha is 1.704656888709649
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33492506494984847
the lambda is 0.4985192019627905
the regulation term lambda/alpha is 1.4884499672708535
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2843585681851217
the lambda is 0.5053359242211826
the regulation term lambda/alpha is 1.7771081330392735
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3036418687414418
the lambda is 0.522991086746055
the regulation term lambda/alpha is 1.7223945067713775
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2888859222776684
the lambda is 0.5228175854519383
the regulation term lambda/alpha is 1.8097717650271026
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32283653672143
the lambda is 0.4994412907864384
the regulation term lambda/alpha is 1.5470407899258243
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34039698387101575
the lambda is 0.5383794121187366
the regulation term lambda/alpha is 1.5816221577413887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34366300485224316
the lambda is 0.5291213711231493
the regulation term lambda/alpha is 1.5396518206859169
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30294316984626685
the lambda is 0.48116751823925397
the regulation term lambda/alpha is 1.5883095119240676
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30424377296375005
the lambda is 0.49733492452901795
the regulation term lambda/alpha is 1.6346593380837224
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2848685978075267
the lambda is 0.5041116368096972
the regulation term lambda/alpha is 1.7696286663028524
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3448885739598091
the lambda is 0.5402447553656814
the regulation term lambda/alpha is 1.566432744242312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3198767643376406
the lambda is 0.5157744046099407
the regulation term lambda/alpha is 1.6124159742516453
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34297501902643174
the lambda is 0.5197739883848506
the regulation term lambda/alpha is 1.515486433560905
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2776812111661011
the lambda is 0.49549234736735637
the regulation term lambda/alpha is 1.7843927764740508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32622402926597877
the lambda is 0.4890468037942379
the regulation term lambda/alpha is 1.4991133697128902
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3235597094498365
the lambda is 0.5544270448039395
the regulation term lambda/alpha is 1.7135231260612063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34813490609758435
the lambda is 0.5166618462546841
the regulation term lambda/alpha is 1.4840851555111243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3126955148244945
the lambda is 0.514555281805348
the regulation term lambda/alpha is 1.6455473692807865
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3037000194277535
the lambda is 0.5267789217519492
the regulation term lambda/alpha is 1.734537003799117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32543751778686786
the lambda is 0.5129795264708101
the regulation term lambda/alpha is 1.5762765459843673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31265283945958927
the lambda is 0.5204541347228743
the regulation term lambda/alpha is 1.6646390789940149
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32303119218262893
the lambda is 0.5474502843338773
the regulation term lambda/alpha is 1.6947288608103541
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3291524503234528
the lambda is 0.5136506427207994
the regulation term lambda/alpha is 1.5605250461178193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31613415584122406
the lambda is 0.4640749615321852
the regulation term lambda/alpha is 1.4679684335192913
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32420077971840633
the lambda is 0.5563912733482587
the regulation term lambda/alpha is 1.716193507713115
1630
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32312037939338256
the lambda is 0.5283563804270942
the regulation term lambda/alpha is 1.635168853846409
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28252882247765604
the lambda is 0.49804892755036406
the regulation term lambda/alpha is 1.762825198444143
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33588507486841096
the lambda is 0.49606738419139573
the regulation term lambda/alpha is 1.4768961805931362
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32656738406589814
the lambda is 0.4823918260710432
the regulation term lambda/alpha is 1.4771586190423145
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3078546503059605
the lambda is 0.5168302152149273
the regulation term lambda/alpha is 1.6788124353531027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3241344719129882
the lambda is 0.5296471141278646
the regulation term lambda/alpha is 1.634035130549289
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2924932123533851
the lambda is 0.489747435423995
the regulation term lambda/alpha is 1.6743890618298891
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3189307697765722
the lambda is 0.5545540396406443
the regulation term lambda/alpha is 1.7387912744484912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32343298944990206
the lambda is 0.5097938336706166
the regulation term lambda/alpha is 1.5761961528342512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31545687191010646
the lambda is 0.5067675967883931
the regulation term lambda/alpha is 1.6064560385699986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31945346183990325
the lambda is 0.5118972572867956
the regulation term lambda/alpha is 1.602415745750588
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3070602818213297
the lambda is 0.504896395435965
the regulation term lambda/alpha is 1.6442907967164275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3333140846189631
the lambda is 0.5430978913874654
the regulation term lambda/alpha is 1.629387765021458
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29132931824715685
the lambda is 0.5011293203517639
the regulation term lambda/alpha is 1.7201472318917719
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3132001733084481
the lambda is 0.5225247940833498
the regulation term lambda/alpha is 1.6683413312442616
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31363614406602275
the lambda is 0.5280179734436318
the regulation term lambda/alpha is 1.6835367461107418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2970789323541337
the lambda is 0.5230987646124569
the regulation term lambda/alpha is 1.7608073398786006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28258721638909157
the lambda is 0.5044759671942114
the regulation term lambda/alpha is 1.785204488866911
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32031790601340787
the lambda is 0.5207032123436891
the regulation term lambda/alpha is 1.6255825933186936
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32612494874732206
the lambda is 0.5292583004310031
the regulation term lambda/alpha is 1.622869708263462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30495612153414237
the lambda is 0.4905658101107639
the regulation term lambda/alpha is 1.6086439178294736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3221027065954709
the lambda is 0.4754135628776172
the regulation term lambda/alpha is 1.475968854476872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30400792174028324
the lambda is 0.5040901874117385
the regulation term lambda/alpha is 1.6581481973433159
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31857071724000624
the lambda is 0.5115783999957575
the regulation term lambda/alpha is 1.6058550654872095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33262977103005575
the lambda is 0.49324873252128465
the regulation term lambda/alpha is 1.4828760847047442
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3110674190978096
the lambda is 0.5117316090014388
the regulation term lambda/alpha is 1.6450826334870317
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29419355438670164
the lambda is 0.5102211450288701
the regulation term lambda/alpha is 1.734304295321888
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3303522526308246
the lambda is 0.4963705926954871
the regulation term lambda/alpha is 1.5025494415205074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3124360468611498
the lambda is 0.5168101439917133
the regulation term lambda/alpha is 1.6541309787515963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3290243252798912
the lambda is 0.5071749896274963
the regulation term lambda/alpha is 1.5414513476961242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33248055990491016
the lambda is 0.5067422271250173
the regulation term lambda/alpha is 1.5241258835402172
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3011477138553446
the lambda is 0.512567704912524
the regulation term lambda/alpha is 1.702047471490135
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35151139472652815
the lambda is 0.5426234219131798
the regulation term lambda/alpha is 1.5436865776010893
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30325681588132153
the lambda is 0.49805610712048615
the regulation term lambda/alpha is 1.64235750373175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30836065088510894
the lambda is 0.5216683475629175
the regulation term lambda/alpha is 1.6917474589106511
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3030887754547555
the lambda is 0.4931211526945978
the regulation term lambda/alpha is 1.6269858623260365
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3039609027340884
the lambda is 0.5230613021700657
the regulation term lambda/alpha is 1.7208177020965463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28322211366379835
the lambda is 0.4929700321006081
the regulation term lambda/alpha is 1.7405774772438607
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31862016525365316
the lambda is 0.5026504239897027
the regulation term lambda/alpha is 1.577585096001514
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3249889300602327
the lambda is 0.5138788775093879
the regulation term lambda/alpha is 1.5812196354323413
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2921519826600098
the lambda is 0.5179188922419832
the regulation term lambda/alpha is 1.7727721288296316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35711481075162516
the lambda is 0.5201339629885607
the regulation term lambda/alpha is 1.456489474334113
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32034493595538666
the lambda is 0.5524482681296536
the regulation term lambda/alpha is 1.724541911305853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30407022482149587
the lambda is 0.49190070084096293
the regulation term lambda/alpha is 1.6177207128048554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30000248143289077
the lambda is 0.5265665951218991
the regulation term lambda/alpha is 1.7552074656412124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3088555139230583
the lambda is 0.4867672428705283
the regulation term lambda/alpha is 1.5760354629504563
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35584059966967607
the lambda is 0.5465582599714409
the regulation term lambda/alpha is 1.5359637446620944
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32734597504404284
the lambda is 0.5345860744628866
the regulation term lambda/alpha is 1.6330919431374118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3221157959561548
the lambda is 0.4976434082537865
the regulation term lambda/alpha is 1.5449208467923872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2874967629402263
the lambda is 0.49493728987167385
the regulation term lambda/alpha is 1.7215403916550416
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3064582039165325
the lambda is 0.5373370398048889
the regulation term lambda/alpha is 1.753377892768826
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.307962434210162
the lambda is 0.5039966420558413
the regulation term lambda/alpha is 1.6365523390813963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31636297509101385
the lambda is 0.48675289067900257
the regulation term lambda/alpha is 1.538589939416803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3064132352370825
the lambda is 0.5025882396730911
the regulation term lambda/alpha is 1.6402301920288174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3504283289388054
the lambda is 0.5100280687950587
the regulation term lambda/alpha is 1.4554418883301068
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32762892181041703
the lambda is 0.5177100145440636
the regulation term lambda/alpha is 1.5801718959464675
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32340222196259244
the lambda is 0.4991083230791878
the regulation term lambda/alpha is 1.5433051759827396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300447780604853
the lambda is 0.5104984781215975
the regulation term lambda/alpha is 1.5467552043136448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30865376067084443
the lambda is 0.5106363793244069
the regulation term lambda/alpha is 1.6543986965023938
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3491173961621627
the lambda is 0.5268592498385652
the regulation term lambda/alpha is 1.5091177226638188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31991820014479116
the lambda is 0.5335654453062219
the regulation term lambda/alpha is 1.6678183518935044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28173287267491615
the lambda is 0.47665482401619524
the regulation term lambda/alpha is 1.6918679722766827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3291741312327117
the lambda is 0.5367217982265093
the regulation term lambda/alpha is 1.630510259772116
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3350270204478774
the lambda is 0.5301210011183437
the regulation term lambda/alpha is 1.5823231225041399
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3437368494338199
the lambda is 0.5119043351919914
the regulation term lambda/alpha is 1.4892332202240337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31888480651340495
the lambda is 0.5243039653661218
the regulation term lambda/alpha is 1.644179824992953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32093098756971883
the lambda is 0.5396425965506861
the regulation term lambda/alpha is 1.6814910913937675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3065006164860405
the lambda is 0.5021550133055707
the regulation term lambda/alpha is 1.6383491134949846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3139275703484227
the lambda is 0.4925571034114952
the regulation term lambda/alpha is 1.5690151166551403
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31105491550829245
the lambda is 0.5198261889767641
the regulation term lambda/alpha is 1.6711717547601528
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3221119781544023
the lambda is 0.5109926716700806
the regulation term lambda/alpha is 1.5863820855030095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36873220884577584
the lambda is 0.5454738638470622
the regulation term lambda/alpha is 1.4793225293622492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.37231995984240973
the lambda is 0.5510035296680228
the regulation term lambda/alpha is 1.4799193948700566
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3158746189774605
the lambda is 0.5220679326919693
the regulation term lambda/alpha is 1.652769489305571
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31660776126488993
the lambda is 0.4813389681357576
the regulation term lambda/alpha is 1.5203005959574227
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.27741668471871084
the lambda is 0.517228379852112
the regulation term lambda/alpha is 1.8644458258758316
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28451043263458303
the lambda is 0.5283204358494549
the regulation term lambda/alpha is 1.856945739940631
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3271164751605205
the lambda is 0.5224719929158913
the regulation term lambda/alpha is 1.5972047652430443
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3266311197360062
the lambda is 0.5007463173881966
the regulation term lambda/alpha is 1.5330637135644514
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105862499661546
the lambda is 0.5383942657987
the regulation term lambda/alpha is 1.7334774667499615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29376831660686914
the lambda is 0.45440919740270463
the regulation term lambda/alpha is 1.546828475757005
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3261932375682884
the lambda is 0.4821416105748737
the regulation term lambda/alpha is 1.4780858553940366
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3230760151413161
the lambda is 0.5113792627946459
the regulation term lambda/alpha is 1.5828450235495333
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.328709025221738
the lambda is 0.5146483229091312
the regulation term lambda/alpha is 1.5656653253191442
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3079956317467581
the lambda is 0.4866251089747468
the regulation term lambda/alpha is 1.5799740607193495
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3052498630396706
the lambda is 0.4984648997137221
the regulation term lambda/alpha is 1.6329733771213553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34035340654030904
the lambda is 0.521537879344298
the regulation term lambda/alpha is 1.5323421752869417
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30428539344235045
the lambda is 0.5304153796169008
the regulation term lambda/alpha is 1.7431509728954264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3002909739027519
the lambda is 0.5281221656716666
the regulation term lambda/alpha is 1.7587014315078846
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3536412274770275
the lambda is 0.570225866602702
the regulation term lambda/alpha is 1.6124417129497264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3081722693902627
the lambda is 0.5337965500985942
the regulation term lambda/alpha is 1.7321368699226007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29726165319077535
the lambda is 0.5151088076743809
the regulation term lambda/alpha is 1.7328464742937986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090765578094078
the lambda is 0.5627844977320636
the regulation term lambda/alpha is 1.82085791857144
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.36053834685284253
the lambda is 0.5588404368734793
the regulation term lambda/alpha is 1.5500166397045578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3078484416489136
the lambda is 0.5494555457057612
the regulation term lambda/alpha is 1.7848248403101836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3251462385303905
the lambda is 0.541630878385351
the regulation term lambda/alpha is 1.6658069945186411
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2973570374290254
the lambda is 0.4774987384233738
the regulation term lambda/alpha is 1.6058094422512044
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3139419332922679
the lambda is 0.5065983159366894
the regulation term lambda/alpha is 1.6136688419544953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3263725932371878
the lambda is 0.5251681417794346
the regulation term lambda/alpha is 1.609106134098013
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31138165439752385
the lambda is 0.5354310998218862
the regulation term lambda/alpha is 1.7195332231690525
1640
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30765317798206976
the lambda is 0.501441659682049
the regulation term lambda/alpha is 1.629892669957316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3386468226524974
the lambda is 0.5302172614707232
the regulation term lambda/alpha is 1.5656938911096943
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31241871880594074
the lambda is 0.5361593649281728
the regulation term lambda/alpha is 1.7161563397269062
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3306822354367506
the lambda is 0.5057823882881806
the regulation term lambda/alpha is 1.5295118215835373
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32881213445610163
the lambda is 0.4928397915728519
the regulation term lambda/alpha is 1.4988491601384284
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3337587994021842
the lambda is 0.5255126311057868
the regulation term lambda/alpha is 1.5745281683870647
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31367610448929417
the lambda is 0.5319629842474869
the regulation term lambda/alpha is 1.695898975516775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3208768815521853
the lambda is 0.5313434417171611
the regulation term lambda/alpha is 1.6559106382076543
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3066493332010992
the lambda is 0.5062568985774616
the regulation term lambda/alpha is 1.6509310269572988
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3066430664575914
the lambda is 0.5318031070619741
the regulation term lambda/alpha is 1.7342740313860066
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32535897693969545
the lambda is 0.5295522878690048
the regulation term lambda/alpha is 1.6275939051995363
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34781478090989154
the lambda is 0.5392079937744791
the regulation term lambda/alpha is 1.550273373557899
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2870754575137468
the lambda is 0.5281176662751649
the regulation term lambda/alpha is 1.839647564612435
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3428011440601181
the lambda is 0.5461873331477916
the regulation term lambda/alpha is 1.5933066228390562
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3241311238860141
the lambda is 0.5167909829962704
the regulation term lambda/alpha is 1.5943886437083041
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32110480857189766
the lambda is 0.5163140532603487
the regulation term lambda/alpha is 1.607929995058739
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29082998108413327
the lambda is 0.4910285884787638
the regulation term lambda/alpha is 1.6883699082479249
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2772755036311848
the lambda is 0.47467899065005553
the regulation term lambda/alpha is 1.711939873640785
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3190485010455227
the lambda is 0.5317736852474314
the regulation term lambda/alpha is 1.6667487341416989
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3015322849262597
the lambda is 0.5298341659964135
the regulation term lambda/alpha is 1.7571390941636165
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2864924735502408
the lambda is 0.5386696980450421
the regulation term lambda/alpha is 1.880222860202218
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3082493241913114
the lambda is 0.48126993100296167
the regulation term lambda/alpha is 1.561300847181313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30474942220660334
the lambda is 0.5429754489947688
the regulation term lambda/alpha is 1.7817111680253206
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3305922409308694
the lambda is 0.5404543003995014
the regulation term lambda/alpha is 1.6348063671358715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3034377168053488
the lambda is 0.48374587157132254
the regulation term lambda/alpha is 1.5942180051454808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.328411762049691
the lambda is 0.5462785055098832
the regulation term lambda/alpha is 1.6633950687406482
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30221150537932395
the lambda is 0.5075439493027224
the regulation term lambda/alpha is 1.6794329145929545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30745575238659123
the lambda is 0.510560237904103
the regulation term lambda/alpha is 1.6605974483838266
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34750278986858674
the lambda is 0.5304075960085282
the regulation term lambda/alpha is 1.5263405401985681
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3246614171669954
the lambda is 0.5237546748559142
the regulation term lambda/alpha is 1.613233501615967
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.294676258760652
the lambda is 0.5057885177529321
the regulation term lambda/alpha is 1.7164209966563815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31467586746799303
the lambda is 0.5070963549289742
the regulation term lambda/alpha is 1.6114879066172847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2890657338319642
the lambda is 0.5137211012725372
the regulation term lambda/alpha is 1.7771774414852182
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3323254908844457
the lambda is 0.5663802905440114
the regulation term lambda/alpha is 1.704293850696364
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31683765092162486
the lambda is 0.5346868951707358
the regulation term lambda/alpha is 1.6875737262141222
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3250010753847342
the lambda is 0.538976074555291
the regulation term lambda/alpha is 1.6583824343265772
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3229472111222673
the lambda is 0.5573145838468665
the regulation term lambda/alpha is 1.7257141868795023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31565774847282246
the lambda is 0.5202528147424524
the regulation term lambda/alpha is 1.6481547412014352
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3266193053392068
the lambda is 0.48659562837122555
the regulation term lambda/alpha is 1.4897944500429243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146020580157277
the lambda is 0.5363190575500968
the regulation term lambda/alpha is 1.7047538116336318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.330147892126502
the lambda is 0.5402080906846429
the regulation term lambda/alpha is 1.636260910845533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3510771547713778
the lambda is 0.5278300730258596
the regulation term lambda/alpha is 1.5034589002795802
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2950626950168162
the lambda is 0.5071626619586388
the regulation term lambda/alpha is 1.7188301690585948
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33907965680406454
the lambda is 0.5447189284792305
the regulation term lambda/alpha is 1.6064630170190175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3387819203910957
the lambda is 0.4970969739682521
the regulation term lambda/alpha is 1.4673066773881993
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30795533436982275
the lambda is 0.52055886812268
the regulation term lambda/alpha is 1.6903713299459924
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33341338426537737
the lambda is 0.5117795998606275
the regulation term lambda/alpha is 1.5349701722030484
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2991338959646458
the lambda is 0.4904421599925047
the regulation term lambda/alpha is 1.6395405756707335
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31478543957545874
the lambda is 0.5227496739341572
the regulation term lambda/alpha is 1.660653919187537
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31029234305560305
the lambda is 0.5329309151038948
the regulation term lambda/alpha is 1.7175122977765387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28563888005668364
the lambda is 0.4832015820289432
the regulation term lambda/alpha is 1.691651997560886
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32347928216429245
the lambda is 0.5503704393341656
the regulation term lambda/alpha is 1.7014086208298096
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3028565853463972
the lambda is 0.519752866151776
the regulation term lambda/alpha is 1.7161682832727578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2824467453593004
the lambda is 0.474066807205833
the regulation term lambda/alpha is 1.6784289958900844
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3319459330981068
the lambda is 0.5269094414355109
the regulation term lambda/alpha is 1.5873351317118938
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3356831852841918
the lambda is 0.5330116076936291
the regulation term lambda/alpha is 1.5878412475214618
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.305985801431771
the lambda is 0.5413443855070289
the regulation term lambda/alpha is 1.7691813900317148
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3116822960765964
the lambda is 0.5099543320191023
the regulation term lambda/alpha is 1.6361350594445705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321775989892356
the lambda is 0.5312302883894583
the regulation term lambda/alpha is 1.6509320305942379
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3407730559679741
the lambda is 0.5452656969547309
the regulation term lambda/alpha is 1.6000845354568616
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31393750490935846
the lambda is 0.506887038441311
the regulation term lambda/alpha is 1.6146112857323685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3041663221331197
the lambda is 0.5321309704623799
the regulation term lambda/alpha is 1.749473665363552
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3276611833446731
the lambda is 0.5470041531527012
the regulation term lambda/alpha is 1.669420062422521
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2954274014736824
the lambda is 0.5113667438806464
the regulation term lambda/alpha is 1.7309387732139685
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3557146406046743
the lambda is 0.5506209110580562
the regulation term lambda/alpha is 1.5479287277073093
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2976816873680177
the lambda is 0.4970675110574346
the regulation term lambda/alpha is 1.6697953960564604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320680303903409
the lambda is 0.5166371631838439
the regulation term lambda/alpha is 1.6110660894828712
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31268223330050277
the lambda is 0.5212900066274787
the regulation term lambda/alpha is 1.6671558250209049
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3253992898815875
the lambda is 0.527470755288512
the regulation term lambda/alpha is 1.6209954099176371
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33418685743291154
the lambda is 0.5125817198740136
the regulation term lambda/alpha is 1.5338177084863818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3216085525207485
the lambda is 0.4874831372589173
the regulation term lambda/alpha is 1.5157654653088477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34089038182026843
the lambda is 0.5257294228066246
the regulation term lambda/alpha is 1.5422242774916748
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.313468983989321
the lambda is 0.49264839109418923
the regulation term lambda/alpha is 1.5716017094404862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3315753684506958
the lambda is 0.487657217847145
the regulation term lambda/alpha is 1.470728118695156
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32032110839059563
the lambda is 0.5362576628174542
the regulation term lambda/alpha is 1.6741252723300026
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.27676731700582796
the lambda is 0.5096651713504499
the regulation term lambda/alpha is 1.8414933412810361
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28747459394814706
the lambda is 0.49610849799179507
the regulation term lambda/alpha is 1.725747277970867
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3070686325337203
the lambda is 0.5202113003873453
the regulation term lambda/alpha is 1.6941206143229854
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29824673815868513
the lambda is 0.4846492671278474
the regulation term lambda/alpha is 1.6249943591000313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33543020633735227
the lambda is 0.5680198435935311
the regulation term lambda/alpha is 1.6934069528081095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2927473950759378
the lambda is 0.5174424048233145
the regulation term lambda/alpha is 1.7675388868587252
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047577952346015
the lambda is 0.4965073244854959
the regulation term lambda/alpha is 1.6291866270501343
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28876618162457707
the lambda is 0.5248326070249124
the regulation term lambda/alpha is 1.8175002490674053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33010776430222355
the lambda is 0.5002328271547661
the regulation term lambda/alpha is 1.5153621975906875
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3204757368992084
the lambda is 0.529565220805396
the regulation term lambda/alpha is 1.6524346770499745
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3305097755919519
the lambda is 0.535041289411293
the regulation term lambda/alpha is 1.6188365032562795
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3013545793544971
the lambda is 0.5173596954421794
the regulation term lambda/alpha is 1.716780599619114
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3287940470726606
the lambda is 0.5176984618761705
the regulation term lambda/alpha is 1.5745372110151488
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3104012850443644
the lambda is 0.5326851743629344
the regulation term lambda/alpha is 1.7161178127429462
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3081003127392428
the lambda is 0.49144543727575657
the regulation term lambda/alpha is 1.5950825655009504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2975255234363988
the lambda is 0.5040612000862534
the regulation term lambda/alpha is 1.69417801291258
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3548706027456378
the lambda is 0.5442438449646991
the regulation term lambda/alpha is 1.5336402642368188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3096633481711826
the lambda is 0.5311500292196805
the regulation term lambda/alpha is 1.715249907218789
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3118138383783365
the lambda is 0.5246823545927569
the regulation term lambda/alpha is 1.682678220188991
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3264066518318763
the lambda is 0.5379380665007029
the regulation term lambda/alpha is 1.6480609800126897
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3094667496691239
the lambda is 0.4949377786317108
the regulation term lambda/alpha is 1.599324577392851
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31176348214592764
the lambda is 0.549553489058252
the regulation term lambda/alpha is 1.762725657525924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32410358519614524
the lambda is 0.49831790229101247
the regulation term lambda/alpha is 1.5375266583041158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2920086175294053
the lambda is 0.5299413903867896
the regulation term lambda/alpha is 1.8148142163421748
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30000049389914185
the lambda is 0.501820690148675
the regulation term lambda/alpha is 1.6727328799578036
1650
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3372626116990419
the lambda is 0.5632603262613155
the regulation term lambda/alpha is 1.6700941839469114
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33566763672328875
the lambda is 0.48603970941164115
the regulation term lambda/alpha is 1.4479790609432903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30860094029490864
the lambda is 0.5007887946256379
the regulation term lambda/alpha is 1.6227714476406603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35158102893033527
the lambda is 0.4887419475173936
the regulation term lambda/alpha is 1.3901260514663216
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3453641330074611
the lambda is 0.5138234284344017
the regulation term lambda/alpha is 1.487772988931949
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3016373604445821
the lambda is 0.47425327764196584
the regulation term lambda/alpha is 1.5722630543609246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3051690508745241
the lambda is 0.5187020177765463
the regulation term lambda/alpha is 1.6997202576411337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3287573937080076
the lambda is 0.4706212970783664
the regulation term lambda/alpha is 1.4315154764134614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3198431199520279
the lambda is 0.5284454767583329
the regulation term lambda/alpha is 1.6522021072005315
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32247507871928166
the lambda is 0.5514915972218998
the regulation term lambda/alpha is 1.7101836191874527
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29465987221321355
the lambda is 0.4854600819803618
the regulation term lambda/alpha is 1.6475269548379046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3315929463537902
the lambda is 0.5296677233731141
the regulation term lambda/alpha is 1.5973431558100446
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34078011144301285
the lambda is 0.5213145293816858
the regulation term lambda/alpha is 1.5297680582772593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3230794367364394
the lambda is 0.5020462730589667
the regulation term lambda/alpha is 1.5539406597038368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2963401115097698
the lambda is 0.5015961687791785
the regulation term lambda/alpha is 1.69263676869016
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35021927215455523
the lambda is 0.535379106136373
the regulation term lambda/alpha is 1.528696872798322
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30529525380369066
the lambda is 0.521692399850469
the regulation term lambda/alpha is 1.708812676747097
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29543834313437684
the lambda is 0.5160727487517953
the regulation term lambda/alpha is 1.7468035573062546
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30219477929164706
the lambda is 0.50983091213209
the regulation term lambda/alpha is 1.6870937126284833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3071532019173879
the lambda is 0.5262672253267734
the regulation term lambda/alpha is 1.7133704680321664
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32300259442323026
the lambda is 0.4979156893289317
the regulation term lambda/alpha is 1.5415222599621379
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31116189947180023
the lambda is 0.5302446826080198
the regulation term lambda/alpha is 1.704079720261749
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.351876046762387
the lambda is 0.5219488121852115
the regulation term lambda/alpha is 1.483331465689878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34794457500410836
the lambda is 0.532887641453903
the regulation term lambda/alpha is 1.5315302485966649
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3104061763535084
the lambda is 0.5218213670300634
the regulation term lambda/alpha is 1.6810920876644646
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3299727782057309
the lambda is 0.5226603289864123
the regulation term lambda/alpha is 1.5839498392214189
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3500713838541495
the lambda is 0.5039807918362224
the regulation term lambda/alpha is 1.4396514970392331
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30059276006448316
the lambda is 0.5204162445346348
the regulation term lambda/alpha is 1.73129999678966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31193845100173245
the lambda is 0.515123443574727
the regulation term lambda/alpha is 1.6513624464073076
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3356281039733213
the lambda is 0.5195359603563614
the regulation term lambda/alpha is 1.547951301472831
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2887548963064036
the lambda is 0.49390193816621464
the regulation term lambda/alpha is 1.7104538987353668
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.310379649902679
the lambda is 0.48718708115824194
the regulation term lambda/alpha is 1.5696489164511969
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33884689174296007
the lambda is 0.5024775041813012
the regulation term lambda/alpha is 1.4829042745431669
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28194019564471057
the lambda is 0.5231579078888337
the regulation term lambda/alpha is 1.8555633995093617
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3140711461921387
the lambda is 0.5251534081508673
the regulation term lambda/alpha is 1.672084222055837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32803667366558403
the lambda is 0.5155651339428884
the regulation term lambda/alpha is 1.5716691922942727
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3254306539261712
the lambda is 0.5123860577061586
the regulation term lambda/alpha is 1.5744861509647492
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3328870084750237
the lambda is 0.520724368354593
the regulation term lambda/alpha is 1.5642676196348546
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32225081786623017
the lambda is 0.5154819750155683
the regulation term lambda/alpha is 1.599629687300128
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3054849109984585
the lambda is 0.5148001262222639
the regulation term lambda/alpha is 1.685190029647198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31793650777700994
the lambda is 0.501069930247832
the regulation term lambda/alpha is 1.5760062716649883
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30718337446165167
the lambda is 0.5169168669769627
the regulation term lambda/alpha is 1.6827631634780869
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30193801900362904
the lambda is 0.536387248781328
the regulation term lambda/alpha is 1.776481314116594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30551482986587497
the lambda is 0.545704251962107
the regulation term lambda/alpha is 1.7861792574903104
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36347754054265236
the lambda is 0.526555617001725
the regulation term lambda/alpha is 1.4486606688699553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3204650122174818
the lambda is 0.5126555433293744
the regulation term lambda/alpha is 1.599723913016325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34041132046970707
the lambda is 0.5040875813039961
the regulation term lambda/alpha is 1.4808190885322055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28745849158818193
the lambda is 0.5159262757039091
the regulation term lambda/alpha is 1.7947853022308144
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29971997121311056
the lambda is 0.49603469001934775
the regulation term lambda/alpha is 1.6549937864055482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3136395932691959
the lambda is 0.5351632518061333
the regulation term lambda/alpha is 1.7063000440343141
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2922115851423556
the lambda is 0.5114396040336677
the regulation term lambda/alpha is 1.7502372597051947
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3223094462746024
the lambda is 0.49272483385394983
the regulation term lambda/alpha is 1.5287322154193281
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3012375812849615
the lambda is 0.5056120736324637
the regulation term lambda/alpha is 1.6784495197303098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31747145132133453
the lambda is 0.5600069242237312
the regulation term lambda/alpha is 1.7639599462973758
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3328807749043312
the lambda is 0.5340494653830298
the regulation term lambda/alpha is 1.6043265506592075
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30989608034324223
the lambda is 0.5393166168867828
the regulation term lambda/alpha is 1.7403144185929469
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2836015232035838
the lambda is 0.507882358791482
the regulation term lambda/alpha is 1.7908308568106592
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.37495747511410554
the lambda is 0.5438875956864863
the regulation term lambda/alpha is 1.4505314116513415
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32400661224143473
the lambda is 0.5467763246454725
the regulation term lambda/alpha is 1.6875468091930177
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3444813364501596
the lambda is 0.48763080785291796
the regulation term lambda/alpha is 1.415550731653265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.316661342833371
the lambda is 0.5228788759262467
the regulation term lambda/alpha is 1.65122421084846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2970486804248799
the lambda is 0.5067975094901506
the regulation term lambda/alpha is 1.7061092773253832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32936469600244733
the lambda is 0.5207889491736409
the regulation term lambda/alpha is 1.5811923848989913
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3121792749619273
the lambda is 0.504901042385254
the regulation term lambda/alpha is 1.6173432475516851
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30364672003435
the lambda is 0.5176082951047147
the regulation term lambda/alpha is 1.704639836208869
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29405885209708726
the lambda is 0.4888126819270511
the regulation term lambda/alpha is 1.6622954161762944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.302574671718723
the lambda is 0.4975239564538337
the regulation term lambda/alpha is 1.644301400469957
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3194157689521862
the lambda is 0.5094704121776107
the regulation term lambda/alpha is 1.595007077605721
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32289848122587866
the lambda is 0.5348147300363353
the regulation term lambda/alpha is 1.656293730481234
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3041879864624608
the lambda is 0.5029264616270317
the regulation term lambda/alpha is 1.6533409733756752
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33044177033436545
the lambda is 0.5074872862894899
the regulation term lambda/alpha is 1.5357843101251294
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3628334981231538
the lambda is 0.5534738070290585
the regulation term lambda/alpha is 1.525420915907817
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30172205320197987
the lambda is 0.49713146720571194
the regulation term lambda/alpha is 1.6476471041144627
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34780391850819803
the lambda is 0.4945531225812172
the regulation term lambda/alpha is 1.421930853172835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3220826412387081
the lambda is 0.5099397293324441
the regulation term lambda/alpha is 1.5832574129771488
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31333840600499463
the lambda is 0.5334888008957422
the regulation term lambda/alpha is 1.7025962686720197
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3494907266820822
the lambda is 0.5302721807529893
the regulation term lambda/alpha is 1.5172711041210454
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3423302410103342
the lambda is 0.5247107004760538
the regulation term lambda/alpha is 1.5327617534677982
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30766410397095206
the lambda is 0.5077732545029331
the regulation term lambda/alpha is 1.650414357571185
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317114900793676
the lambda is 0.5022931957722827
the regulation term lambda/alpha is 1.583947000015269
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3058010075361482
the lambda is 0.4696207359249275
the regulation term lambda/alpha is 1.5357069609046807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33147897275860566
the lambda is 0.5687552204410767
the regulation term lambda/alpha is 1.715810857345886
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34101235050143014
the lambda is 0.5114748946793989
the regulation term lambda/alpha is 1.4998720542740398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33295686275665076
the lambda is 0.5403032626575076
the regulation term lambda/alpha is 1.6227425324234892
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3229985450470464
the lambda is 0.5115810150062323
the regulation term lambda/alpha is 1.5838492861685118
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3561750078656968
the lambda is 0.5490332846519609
the regulation term lambda/alpha is 1.5414705482620088
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28714100717543234
the lambda is 0.5146959881725474
the regulation term lambda/alpha is 1.7924851390455963
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35772561538726616
the lambda is 0.5211554346286138
the regulation term lambda/alpha is 1.4568580280850785
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3441803915925235
the lambda is 0.5139635892389133
the regulation term lambda/alpha is 1.4932971249779876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29809227191565113
the lambda is 0.5157147151971365
the regulation term lambda/alpha is 1.7300506044083703
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.342445750992274
the lambda is 0.5339191555555833
the regulation term lambda/alpha is 1.559134998780082
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3480698334650826
the lambda is 0.5536697422721107
the regulation term lambda/alpha is 1.5906858022146104
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3262909671013296
the lambda is 0.5420893194505478
the regulation term lambda/alpha is 1.6613678406923293
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.333903334943974
the lambda is 0.5145824501240747
the regulation term lambda/alpha is 1.541112041335008
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2887257240893413
the lambda is 0.502186520888417
the regulation term lambda/alpha is 1.7393203271802131
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31073746941062114
the lambda is 0.4964635549763271
the regulation term lambda/alpha is 1.597694529462361
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3193007739713235
the lambda is 0.5317306790710946
the regulation term lambda/alpha is 1.6652971818942397
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3160220162835563
the lambda is 0.4995271261602649
the regulation term lambda/alpha is 1.5806719165795569
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3394950623863187
the lambda is 0.5005749212757108
the regulation term lambda/alpha is 1.4744689297015339
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3100406689428481
the lambda is 0.5064813790352892
the regulation term lambda/alpha is 1.6335965883516153
1660
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3212228168792216
the lambda is 0.5332964074485294
the regulation term lambda/alpha is 1.6602071192503318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31438387076277247
the lambda is 0.5233778565491258
the regulation term lambda/alpha is 1.664773244502915
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3168209170962698
the lambda is 0.49785560705305637
the regulation term lambda/alpha is 1.5714101569303172
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178899526769346
the lambda is 0.49582336473019967
the regulation term lambda/alpha is 1.559732733151511
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3002116644172849
the lambda is 0.5183227309966187
the regulation term lambda/alpha is 1.7265242907955975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30837422374578677
the lambda is 0.49831980184932445
the regulation term lambda/alpha is 1.6159580259215256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31586080926332244
the lambda is 0.5428659095181531
the regulation term lambda/alpha is 1.7186871355907412
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.312679352896954
the lambda is 0.511559653526444
the regulation term lambda/alpha is 1.63605191320398
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32216591396949523
the lambda is 0.539684473486779
the regulation term lambda/alpha is 1.67517558526654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.336339412309927
the lambda is 0.49588992104912577
the regulation term lambda/alpha is 1.4743735134798228
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32905191991616173
the lambda is 0.534887539076821
the regulation term lambda/alpha is 1.6255414623111866
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224613341020846
the lambda is 0.5404152123359448
the regulation term lambda/alpha is 1.6759070163893215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3504936952228118
the lambda is 0.5425871324785844
the regulation term lambda/alpha is 1.548065314366517
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3112050004312869
the lambda is 0.54923139384248
the regulation term lambda/alpha is 1.7648540128896437
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3315904675105384
the lambda is 0.542232923874975
the regulation term lambda/alpha is 1.635248829515107
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3209150855284362
the lambda is 0.5325599393667225
the regulation term lambda/alpha is 1.6595042220897172
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31080889497571856
the lambda is 0.5436804170024511
the regulation term lambda/alpha is 1.749243428328926
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29743691589611687
the lambda is 0.5153901070013359
the regulation term lambda/alpha is 1.7327711506440633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30186323627223954
the lambda is 0.481822694973286
the regulation term lambda/alpha is 1.5961622253951704
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3309581650411323
the lambda is 0.5037019938188309
the regulation term lambda/alpha is 1.5219506482223502
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3287084943607178
the lambda is 0.517495739505144
the regulation term lambda/alpha is 1.5743302907689847
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3304997201077803
the lambda is 0.5476791698029728
the regulation term lambda/alpha is 1.657124458757083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32075321097370446
the lambda is 0.5011179026659862
the regulation term lambda/alpha is 1.5623160907563547
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29072142098896675
the lambda is 0.5226902756045145
the regulation term lambda/alpha is 1.7979076802336877
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2910384679566661
the lambda is 0.48302345650340445
the regulation term lambda/alpha is 1.6596550273736452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30852232509393285
the lambda is 0.5165023735572216
the regulation term lambda/alpha is 1.6741166896106046
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3317584559721406
the lambda is 0.5104919223049121
the regulation term lambda/alpha is 1.538745774569739
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31437208750732004
the lambda is 0.5280696023778729
the regulation term lambda/alpha is 1.6797598239874811
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3103802523290228
the lambda is 0.5005339073874918
the regulation term lambda/alpha is 1.6126474014748016
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3150310282751213
the lambda is 0.5165587089984495
the regulation term lambda/alpha is 1.6397074022414422
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3387005819489708
the lambda is 0.5063132117534079
the regulation term lambda/alpha is 1.4948696244923783
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32654283229317826
the lambda is 0.5375097514650767
the regulation term lambda/alpha is 1.646062011805199
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3090553658704164
the lambda is 0.5284353937893972
the regulation term lambda/alpha is 1.7098405403870727
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30797101963541623
the lambda is 0.5070756205439262
the regulation term lambda/alpha is 1.6465043403896085
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29658758489442943
the lambda is 0.5568339278212006
the regulation term lambda/alpha is 1.8774687686924116
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3083668445727286
the lambda is 0.4954308067233625
the regulation term lambda/alpha is 1.6066279998740742
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31716810085233244
the lambda is 0.5226720044016165
the regulation term lambda/alpha is 1.6479337076995737
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29028842869493415
the lambda is 0.5075862956961611
the regulation term lambda/alpha is 1.7485584870817794
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30970750153074367
the lambda is 0.5250375520087748
the regulation term lambda/alpha is 1.695269082646537
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29969303609765985
the lambda is 0.5116912850849753
the regulation term lambda/alpha is 1.707384635117889
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2971929691136033
the lambda is 0.48345098505845935
the regulation term lambda/alpha is 1.6267241667943297
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33123420845772095
the lambda is 0.5195257301738144
the regulation term lambda/alpha is 1.5684543350543674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2962637436147098
the lambda is 0.4840789951185531
the regulation term lambda/alpha is 1.633946122506629
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3371397100607798
the lambda is 0.5323126322680667
the regulation term lambda/alpha is 1.5789081392165312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29301804059344516
the lambda is 0.5129224403832833
the regulation term lambda/alpha is 1.750480753145673
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.27757671124928457
the lambda is 0.49753911779816545
the regulation term lambda/alpha is 1.792438261693137
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30368987824168314
the lambda is 0.5058317037593959
the regulation term lambda/alpha is 1.6656192385735156
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3039687030116315
the lambda is 0.4938767735169318
the regulation term lambda/alpha is 1.6247619199731673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3423617461165278
the lambda is 0.5342231876028734
the regulation term lambda/alpha is 1.560405605073187
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3065006006285329
the lambda is 0.49632183139137276
the regulation term lambda/alpha is 1.6193176469265584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31269563459651
the lambda is 0.531173758422447
the regulation term lambda/alpha is 1.6986925932236068
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30403503824304445
the lambda is 0.5317827031661757
the regulation term lambda/alpha is 1.7490836129915746
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2890486642026331
the lambda is 0.4873981727081459
the regulation term lambda/alpha is 1.6862149287306962
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30423939228905716
the lambda is 0.516818526608615
the regulation term lambda/alpha is 1.698723241326971
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3111132235779712
the lambda is 0.5094900201009877
the regulation term lambda/alpha is 1.6376353735195677
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33482577389294615
the lambda is 0.5198869073341565
the regulation term lambda/alpha is 1.5527087454754305
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33578953181841903
the lambda is 0.5475853729086955
the regulation term lambda/alpha is 1.6307398564312803
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31822450332218627
the lambda is 0.5067766254724739
the regulation term lambda/alpha is 1.5925128963415747
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30275268343695544
the lambda is 0.4992720926887513
the regulation term lambda/alpha is 1.6491087280245977
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.326217809829823
the lambda is 0.5500076944965385
the regulation term lambda/alpha is 1.6860136936835524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32312314204513654
the lambda is 0.5256305260905204
the regulation term lambda/alpha is 1.6267189120644783
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3147536631736881
the lambda is 0.5474632670449064
the regulation term lambda/alpha is 1.739338826194388
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3276970191947854
the lambda is 0.5643446527826558
the regulation term lambda/alpha is 1.7221537570569276
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30714708152465703
the lambda is 0.5328740782708109
the regulation term lambda/alpha is 1.7349149978103668
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32677448317134855
the lambda is 0.5051849310690774
the regulation term lambda/alpha is 1.545974233257916
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32377363435244605
the lambda is 0.4821090255823669
the regulation term lambda/alpha is 1.4890311453142098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30483505827188884
the lambda is 0.5068585283069564
the regulation term lambda/alpha is 1.662730432583245
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29909786254324605
the lambda is 0.46957624522921226
the regulation term lambda/alpha is 1.569975262398664
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3302153465585383
the lambda is 0.5391650613639041
the regulation term lambda/alpha is 1.6327680314770732
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34876221082624215
the lambda is 0.5454222985573236
the regulation term lambda/alpha is 1.563880149931324
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33010366515158185
the lambda is 0.561979038267969
the regulation term lambda/alpha is 1.7024319860547783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3349083272657715
the lambda is 0.507650741238868
the regulation term lambda/alpha is 1.5157901428829332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3582452186984592
the lambda is 0.5094279337396794
the regulation term lambda/alpha is 1.422009023848196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32340880301835173
the lambda is 0.5188246056107387
the regulation term lambda/alpha is 1.604237734930481
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.318118596946501
the lambda is 0.5348945719994099
the regulation term lambda/alpha is 1.681431318802669
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3129075017730624
the lambda is 0.5114712934078125
the regulation term lambda/alpha is 1.6345766416899756
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3079193231615772
the lambda is 0.5508544358739078
the regulation term lambda/alpha is 1.7889570236059953
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34312562843425326
the lambda is 0.5304620446801341
the regulation term lambda/alpha is 1.545970340661326
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2946688131250945
the lambda is 0.515791906412169
the regulation term lambda/alpha is 1.7504122711255568
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32662938512831496
the lambda is 0.47674963888594496
the regulation term lambda/alpha is 1.4596042505442548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33083900767892727
the lambda is 0.5147580765665445
the regulation term lambda/alpha is 1.5559171216778254
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31675525222631634
the lambda is 0.5237002823337614
the regulation term lambda/alpha is 1.653327856927172
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3265618677273547
the lambda is 0.5176604787515894
the regulation term lambda/alpha is 1.5851834825484958
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3149727240833704
the lambda is 0.5122306411428114
the regulation term lambda/alpha is 1.6262698385503012
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3254256433808864
the lambda is 0.5618525465564483
the regulation term lambda/alpha is 1.726515896901345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3050329664587401
the lambda is 0.5428351043471711
the regulation term lambda/alpha is 1.7795948767412881
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28980797232797867
the lambda is 0.5099993331256798
the regulation term lambda/alpha is 1.759783656153214
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3546077260003497
the lambda is 0.5208871364739812
the regulation term lambda/alpha is 1.4689108507282427
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2944213690971738
the lambda is 0.5337453622606237
the regulation term lambda/alpha is 1.812862170627503
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3083613836292174
the lambda is 0.4992559957026716
the regulation term lambda/alpha is 1.6190613423339395
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33322991294680393
the lambda is 0.51256778607726
the regulation term lambda/alpha is 1.5381805959271282
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.335149002502789
the lambda is 0.5295204795611534
the regulation term lambda/alpha is 1.579955409703918
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30090230652447314
the lambda is 0.5221528682875674
the regulation term lambda/alpha is 1.7352903482815256
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33028962926342664
the lambda is 0.525033503540148
the regulation term lambda/alpha is 1.5896154678274834
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3014437833609965
the lambda is 0.5069624986918889
the regulation term lambda/alpha is 1.6817812364197002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31476023847911777
the lambda is 0.5112124954939864
the regulation term lambda/alpha is 1.624133016177969
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2908504098036008
the lambda is 0.5062091394736578
the regulation term lambda/alpha is 1.7404449930652661
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080815454988787
the lambda is 0.49594447811368925
the regulation term lambda/alpha is 1.6097831413777244
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3231672382019957
the lambda is 0.507802877891469
the regulation term lambda/alpha is 1.5713315517895003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3263994926539883
the lambda is 0.5135980708609376
the regulation term lambda/alpha is 1.573525947251995
1670
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3367372965568925
the lambda is 0.511807015448321
the regulation term lambda/alpha is 1.519899995282673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32856393227265085
the lambda is 0.5320157539934403
the regulation term lambda/alpha is 1.6192153238291531
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3294645869188774
the lambda is 0.5128309359846249
the regulation term lambda/alpha is 1.5565585994554765
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29423494001341016
the lambda is 0.48151015531172753
the regulation term lambda/alpha is 1.6364819055472544
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3332595789130409
the lambda is 0.5205696262807449
the regulation term lambda/alpha is 1.5620545041154832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2902405795282763
the lambda is 0.5174937844595916
the regulation term lambda/alpha is 1.7829821911900345
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30194783823285765
the lambda is 0.5035131768261624
the regulation term lambda/alpha is 1.6675501959972985
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3254382107531143
the lambda is 0.5330805973802473
the regulation term lambda/alpha is 1.6380393566773133
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32149837536254283
the lambda is 0.5174904984807126
the regulation term lambda/alpha is 1.609620881900744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3171353810974325
the lambda is 0.4692526079463206
the regulation term lambda/alpha is 1.479660220573603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3329212116150278
the lambda is 0.5209608246217511
the regulation term lambda/alpha is 1.5648171592747961
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30575548017071197
the lambda is 0.507284892251147
the regulation term lambda/alpha is 1.6591195420860991
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205140910702509
the lambda is 0.5119713706670873
the regulation term lambda/alpha is 1.5973443443860083
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32518972047459943
the lambda is 0.46303804217182826
the regulation term lambda/alpha is 1.42390122755432
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3284278355526069
the lambda is 0.5296322594124553
the regulation term lambda/alpha is 1.6126290225105475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30141934433424744
the lambda is 0.5103433065347974
the regulation term lambda/alpha is 1.6931338884768847
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29920228372725105
the lambda is 0.5275747188485859
the regulation term lambda/alpha is 1.7632710294735456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3262609665234238
the lambda is 0.5282038872839201
the regulation term lambda/alpha is 1.6189613269168008
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31934019697693117
the lambda is 0.5293563755581566
the regulation term lambda/alpha is 1.6576565699193728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29672766899008657
the lambda is 0.5206002133764885
the regulation term lambda/alpha is 1.7544714153161138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29667892990690414
the lambda is 0.5029692267191002
the regulation term lambda/alpha is 1.6953318082848976
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3365312330749121
the lambda is 0.5014363550009451
the regulation term lambda/alpha is 1.490014315816342
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3072801737098341
the lambda is 0.5138480201647798
the regulation term lambda/alpha is 1.6722459310050004
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3038471756664261
the lambda is 0.48683330101433836
the regulation term lambda/alpha is 1.6022307923269976
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35762777968725523
the lambda is 0.5410336555399037
the regulation term lambda/alpha is 1.5128401267178868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3037936485099527
the lambda is 0.4762502579955822
the regulation term lambda/alpha is 1.5676768106624175
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3248552788930492
the lambda is 0.5345802013842603
the regulation term lambda/alpha is 1.6455949344762164
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33348137412805545
the lambda is 0.543239545073668
the regulation term lambda/alpha is 1.6289951620058585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3261536919123787
the lambda is 0.5210751764057565
the regulation term lambda/alpha is 1.5976369096129794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3101048929238761
the lambda is 0.5132069097474321
the regulation term lambda/alpha is 1.6549461858165941
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3526999309966199
the lambda is 0.5088084639769904
the regulation term lambda/alpha is 1.4426100468442298
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3219200756395882
the lambda is 0.5442643017449611
the regulation term lambda/alpha is 1.6906814545927935
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29203582465158856
the lambda is 0.5171809590520033
the regulation term lambda/alpha is 1.7709503951065686
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35889844140580995
the lambda is 0.5618195764027222
the regulation term lambda/alpha is 1.565399878032536
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2846779825003285
the lambda is 0.49731999825591716
the regulation term lambda/alpha is 1.7469563114363553
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3061694844220474
the lambda is 0.5082393559509047
the regulation term lambda/alpha is 1.6599935062447595
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31650366160810706
the lambda is 0.5436665695377114
the regulation term lambda/alpha is 1.7177260028380845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30771528673675935
the lambda is 0.5007266448971002
the regulation term lambda/alpha is 1.6272400705443533
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32208520072525526
the lambda is 0.5117576891664636
the regulation term lambda/alpha is 1.5888891759513115
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3619577907641175
the lambda is 0.566513489035404
the regulation term lambda/alpha is 1.5651368847164624
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30185853681670904
the lambda is 0.5166797062927881
the regulation term lambda/alpha is 1.7116617331466106
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28511656120285656
the lambda is 0.5024465431622909
the regulation term lambda/alpha is 1.762249590281804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2858861825176706
the lambda is 0.4874787313523673
the regulation term lambda/alpha is 1.705149675508491
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3108185554290742
the lambda is 0.5188623296058326
the regulation term lambda/alpha is 1.6693415516636745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3311058539029026
the lambda is 0.5213516341213928
the regulation term lambda/alpha is 1.5745769154364762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3356410824333805
the lambda is 0.5108085087627295
the regulation term lambda/alpha is 1.5218891116051536
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3031676635972805
the lambda is 0.4902619374913605
the regulation term lambda/alpha is 1.617131364453865
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3164150930809963
the lambda is 0.5370526599045768
the regulation term lambda/alpha is 1.6973041793777564
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31614675975912815
the lambda is 0.5450813796408244
the regulation term lambda/alpha is 1.7241403329773843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3003411599203723
the lambda is 0.5394904286017822
the regulation term lambda/alpha is 1.7962587237287562
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28310115840232375
the lambda is 0.5307101133255486
the regulation term lambda/alpha is 1.8746306667221058
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3069467988682486
the lambda is 0.5466727896933206
the regulation term lambda/alpha is 1.7810017622238505
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30992061030618695
the lambda is 0.5188196890216056
the regulation term lambda/alpha is 1.6740406148175695
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3031940999010605
the lambda is 0.4893828009348771
the regulation term lambda/alpha is 1.6140907791232562
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34382467678217876
the lambda is 0.542308738559818
the regulation term lambda/alpha is 1.5772827699141085
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34237488983741615
the lambda is 0.5199262071706005
the regulation term lambda/alpha is 1.518587439100742
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3263624174434736
the lambda is 0.5059418301235978
the regulation term lambda/alpha is 1.550245380846364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33310807767845074
the lambda is 0.5285959025028303
the regulation term lambda/alpha is 1.5868600551112542
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29874097899212104
the lambda is 0.4982390949621931
the regulation term lambda/alpha is 1.667796285073209
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3228478188612146
the lambda is 0.5161588691830076
the regulation term lambda/alpha is 1.5987683330296658
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32812968409161564
the lambda is 0.5345425806315582
the regulation term lambda/alpha is 1.6290588951480263
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32563691269978606
the lambda is 0.49209086953545017
the regulation term lambda/alpha is 1.511164276358076
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3265427412906513
the lambda is 0.5524504099080612
the regulation term lambda/alpha is 1.6918165374753575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31653820381780223
the lambda is 0.4867430429991428
the regulation term lambda/alpha is 1.5377070986329018
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32911968150407667
the lambda is 0.5311523133513839
the regulation term lambda/alpha is 1.6138576426788525
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3341083637270013
the lambda is 0.5469573652785061
the regulation term lambda/alpha is 1.6370657686540973
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3030108738028943
the lambda is 0.5093884695614227
the regulation term lambda/alpha is 1.6810897350593927
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3356623411843685
the lambda is 0.5357908008414546
the regulation term lambda/alpha is 1.5962195787318363
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35886774726912385
the lambda is 0.5956765294248584
the regulation term lambda/alpha is 1.6598775843128242
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31637992613927113
the lambda is 0.5081889449408481
the regulation term lambda/alpha is 1.6062616587031575
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29689034715284623
the lambda is 0.5432665285098519
the regulation term lambda/alpha is 1.829855816195214
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3121988151598985
the lambda is 0.5202652336468775
the regulation term lambda/alpha is 1.6664548626823388
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3072682903079934
the lambda is 0.49133283170857805
the regulation term lambda/alpha is 1.5990352639905854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31055221458060167
the lambda is 0.5067894467462407
the regulation term lambda/alpha is 1.63189770657619
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31824583103993775
the lambda is 0.5067089391238031
the regulation term lambda/alpha is 1.5921934859854125
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31157060822850235
the lambda is 0.5313267505319451
the regulation term lambda/alpha is 1.7053173068952514
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32946670016975793
the lambda is 0.525452959100427
the regulation term lambda/alpha is 1.5948590823585116
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3470924141489415
the lambda is 0.5402673544384983
the regulation term lambda/alpha is 1.5565518934293479
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3089726990003501
the lambda is 0.5152151930202662
the regulation term lambda/alpha is 1.667510413338113
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3162201382638273
the lambda is 0.49811217139578934
the regulation term lambda/alpha is 1.5752069875455141
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233636480603771
the lambda is 0.5256773351033859
the regulation term lambda/alpha is 1.6256537748028919
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.319116983915498
the lambda is 0.5210569792563433
the regulation term lambda/alpha is 1.6328086736816205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31885104799277886
the lambda is 0.4912128972747274
the regulation term lambda/alpha is 1.540571688150299
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3521347140642502
the lambda is 0.5316243879297903
the regulation term lambda/alpha is 1.5097187715289853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090364355896434
the lambda is 0.4999578078965304
the regulation term lambda/alpha is 1.6177956717065023
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3237757438768361
the lambda is 0.5036309855257687
the regulation term lambda/alpha is 1.5554932543598734
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.323985285816409
the lambda is 0.5388154105814269
the regulation term lambda/alpha is 1.663086054120231
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34477816387431565
the lambda is 0.5272669035469152
the regulation term lambda/alpha is 1.529293205874614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30133263412823896
the lambda is 0.5313138177344812
the regulation term lambda/alpha is 1.7632136634373576
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30973932916026076
the lambda is 0.537127695397351
the regulation term lambda/alpha is 1.7341281678809288
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30543392026404337
the lambda is 0.5014515762928969
the regulation term lambda/alpha is 1.6417678031942198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33826678834400353
the lambda is 0.5422984314988399
the regulation term lambda/alpha is 1.6031678254719601
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32991391061656994
the lambda is 0.5297824876297834
the regulation term lambda/alpha is 1.6058203991449855
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3009027858957269
the lambda is 0.4878155275163979
the regulation term lambda/alpha is 1.6211731841041932
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3324841299360275
the lambda is 0.5230227512029688
the regulation term lambda/alpha is 1.5730758376455514
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3256037839808021
the lambda is 0.51031195173559
the regulation term lambda/alpha is 1.567278934834733
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3212346335215857
the lambda is 0.5175508368217937
the regulation term lambda/alpha is 1.6111302543815418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3154866156495775
the lambda is 0.5244912240082822
the regulation term lambda/alpha is 1.662483281353697
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3035750849903624
the lambda is 0.5358280395610857
the regulation term lambda/alpha is 1.7650593413425106
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32723721189450217
the lambda is 0.5000191952369224
the regulation term lambda/alpha is 1.5280022474892718
1680
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31630919508666133
the lambda is 0.5209029425988065
the regulation term lambda/alpha is 1.6468156812706356
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.300969525356368
the lambda is 0.48873239129801754
the regulation term lambda/alpha is 1.6238600593177193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2945000852357926
the lambda is 0.4981540977026555
the regulation term lambda/alpha is 1.6915244601841342
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33443999301362376
the lambda is 0.5233919918030282
the regulation term lambda/alpha is 1.56498027370102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32591263590696534
the lambda is 0.5245946911148804
the regulation term lambda/alpha is 1.609617527270807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31783995734829334
the lambda is 0.5122078220396834
the regulation term lambda/alpha is 1.6115274690853267
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30142724483863803
the lambda is 0.5129619277580628
the regulation term lambda/alpha is 1.7017769181172222
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30516206937547813
the lambda is 0.5296751808570178
the regulation term lambda/alpha is 1.7357176202829252
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3012595265380696
the lambda is 0.5615057611442461
the regulation term lambda/alpha is 1.8638605975279912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3390715461232148
the lambda is 0.5629331535903078
the regulation term lambda/alpha is 1.6602193844532867
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3206754935271324
the lambda is 0.5577730372834534
the regulation term lambda/alpha is 1.7393690772826709
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32496435658863015
the lambda is 0.5100952923489248
the regulation term lambda/alpha is 1.5696961282269195
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32713174985734567
the lambda is 0.5423324232860042
the regulation term lambda/alpha is 1.6578409876831044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3286177092811471
the lambda is 0.5051066983308317
the regulation term lambda/alpha is 1.5370647535574242
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2858630104952664
the lambda is 0.49228942656094343
the regulation term lambda/alpha is 1.7221165680303896
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3592543354346491
the lambda is 0.5214110691533089
the regulation term lambda/alpha is 1.4513702904168775
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31804729424538436
the lambda is 0.5512121628622442
the regulation term lambda/alpha is 1.7331138256342629
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32941240801251226
the lambda is 0.5268164195774168
the regulation term lambda/alpha is 1.5992610076709872
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31598428028992237
the lambda is 0.5228135042155713
the regulation term lambda/alpha is 1.6545554219845324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3278134517344231
the lambda is 0.5355754622912896
the regulation term lambda/alpha is 1.6337812236124591
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30614306093134847
the lambda is 0.5002436958217488
the regulation term lambda/alpha is 1.6340193839439225
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34460923262712884
the lambda is 0.5288137056661623
the regulation term lambda/alpha is 1.5345314506948942
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3088538648634435
the lambda is 0.510789471344927
the regulation term lambda/alpha is 1.6538225013657097
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33281583798512643
the lambda is 0.4982487959133936
the regulation term lambda/alpha is 1.49707056890622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31452366702921086
the lambda is 0.4878702482054699
the regulation term lambda/alpha is 1.5511400233043824
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203136185964142
the lambda is 0.48009090531993104
the regulation term lambda/alpha is 1.4988151531728393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3044905886923571
the lambda is 0.5174761834173585
the regulation term lambda/alpha is 1.699481700369373
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32409369392503906
the lambda is 0.49301829600545943
the regulation term lambda/alpha is 1.5212215024445728
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3056710937876422
the lambda is 0.5177732906419601
the regulation term lambda/alpha is 1.6938902669078384
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30547862029861106
the lambda is 0.5249577967489418
the regulation term lambda/alpha is 1.718476390379745
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3539629442620764
the lambda is 0.4942534253300636
the regulation term lambda/alpha is 1.3963422819879
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3138628990299323
the lambda is 0.5154944490677497
the regulation term lambda/alpha is 1.6424191921409235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29073795080010645
the lambda is 0.49645102448462136
the regulation term lambda/alpha is 1.7075549412052868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2982819594186937
the lambda is 0.4930942023653479
the regulation term lambda/alpha is 1.6531143999667757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32663702936055117
the lambda is 0.5339687945415275
the regulation term lambda/alpha is 1.6347466653945033
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3225039234167614
the lambda is 0.49111489649598067
the regulation term lambda/alpha is 1.522818362309747
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2980586504529912
the lambda is 0.4757417620430397
the regulation term lambda/alpha is 1.5961347248939253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3396014817688196
the lambda is 0.4982343658552831
the regulation term lambda/alpha is 1.4671148172270085
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31845312935606274
the lambda is 0.5435492075985487
the regulation term lambda/alpha is 1.7068420985457042
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3195256659933039
the lambda is 0.5424537497062711
the regulation term lambda/alpha is 1.697684434894939
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3277310271464082
the lambda is 0.5166243031135894
the regulation term lambda/alpha is 1.5763667773902785
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3563625593218506
the lambda is 0.5515694841540073
the regulation term lambda/alpha is 1.5477761895178628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3238042027617289
the lambda is 0.5240306627015032
the regulation term lambda/alpha is 1.6183565816380427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33967537615114973
the lambda is 0.5448894088189641
the regulation term lambda/alpha is 1.6041475098757163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128114693468921
the lambda is 0.520954473027504
the regulation term lambda/alpha is 1.665394411896681
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34765395024825146
the lambda is 0.510764787123528
the regulation term lambda/alpha is 1.4691758478763235
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3513857558532213
the lambda is 0.5246712700809998
the regulation term lambda/alpha is 1.493148943408401
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32588616260249975
the lambda is 0.5250061916108566
the regulation term lambda/alpha is 1.6110109966566266
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29166878768651927
the lambda is 0.5434902974035399
the regulation term lambda/alpha is 1.8633817547446119
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30209557626021066
the lambda is 0.5201732404028893
the regulation term lambda/alpha is 1.7218830108085956
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2884493344641534
the lambda is 0.5169580347115331
the regulation term lambda/alpha is 1.792197009821069
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29861448420111414
the lambda is 0.5164046301888848
the regulation term lambda/alpha is 1.7293355061809093
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3407604503412979
the lambda is 0.5522995034740042
the regulation term lambda/alpha is 1.620785225870061
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28545097561308813
the lambda is 0.455016625969024
the regulation term lambda/alpha is 1.5940272230345152
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3132983818526325
the lambda is 0.48874146477871677
the regulation term lambda/alpha is 1.5599871977909168
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.313172964043728
the lambda is 0.508706489217776
the regulation term lambda/alpha is 1.6243627248319743
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3035393258659668
the lambda is 0.5061123907010425
the regulation term lambda/alpha is 1.6673700821373156
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3116474690069547
the lambda is 0.49296879664299803
the regulation term lambda/alpha is 1.5818154988192668
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32308015477453483
the lambda is 0.4574426014638882
the regulation term lambda/alpha is 1.4158796035711936
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31875899334978697
the lambda is 0.5043076397978504
the regulation term lambda/alpha is 1.5820969770865525
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30169242316491596
the lambda is 0.4791258408080003
the regulation term lambda/alpha is 1.5881268604021017
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31255201063774957
the lambda is 0.5097983380512846
the regulation term lambda/alpha is 1.6310832139939269
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34586495583497395
the lambda is 0.5471171217703023
the regulation term lambda/alpha is 1.5818807674500384
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3356768653837065
the lambda is 0.5245866500128455
the regulation term lambda/alpha is 1.5627727261251665
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3450111913848545
the lambda is 0.5614527467036665
the regulation term lambda/alpha is 1.6273464766462458
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28492914216361687
the lambda is 0.5031064898618425
the regulation term lambda/alpha is 1.765724930912613
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3494754318547904
the lambda is 0.5137003433335144
the regulation term lambda/alpha is 1.4699183304735444
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3057358826447491
the lambda is 0.5332215335156822
the regulation term lambda/alpha is 1.7440593786476182
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2898163979921257
the lambda is 0.5081864865969093
the regulation term lambda/alpha is 1.7534773398526495
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3096277045772846
the lambda is 0.488582537853261
the regulation term lambda/alpha is 1.5779677678400654
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2975197128005837
the lambda is 0.5342645768496517
the regulation term lambda/alpha is 1.795728329462825
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3143155881575394
the lambda is 0.5289383708903815
the regulation term lambda/alpha is 1.6828257675380394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3120855368438453
the lambda is 0.47164821880959396
the regulation term lambda/alpha is 1.51127868205436
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3208588031987316
the lambda is 0.5275047854421993
the regulation term lambda/alpha is 1.6440402450652927
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31885300787793835
the lambda is 0.503399778690338
the regulation term lambda/alpha is 1.5787832206464456
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.339379767967372
the lambda is 0.5118768154330701
the regulation term lambda/alpha is 1.5082714520633473
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31751459153873657
the lambda is 0.5164158584887291
the regulation term lambda/alpha is 1.626431893999198
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3308702756938679
the lambda is 0.5034211964487438
the regulation term lambda/alpha is 1.5215062622141546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3370409851552968
the lambda is 0.5429713206657236
the regulation term lambda/alpha is 1.6109949370565164
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3098045486052005
the lambda is 0.537480016089848
the regulation term lambda/alpha is 1.734900338002415
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31828149951608037
the lambda is 0.5301206279877896
the regulation term lambda/alpha is 1.665571604990527
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30085199279921226
the lambda is 0.5385267235695811
the regulation term lambda/alpha is 1.7900055058933655
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2903498584466197
the lambda is 0.5373034371427056
the regulation term lambda/alpha is 1.850537968288653
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3530914797514113
the lambda is 0.5166181200280333
the regulation term lambda/alpha is 1.4631282533120042
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3038782414901054
the lambda is 0.5198629557011576
the regulation term lambda/alpha is 1.710760708473051
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3170026864293601
the lambda is 0.4866667987681353
the regulation term lambda/alpha is 1.535213484307751
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2935683123055154
the lambda is 0.4712692126174378
the regulation term lambda/alpha is 1.6053136284238667
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3219809931744813
the lambda is 0.5312399869223141
the regulation term lambda/alpha is 1.6499110139536575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3163084122459291
the lambda is 0.5249436911037747
the regulation term lambda/alpha is 1.6595944678690118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3099346855849181
the lambda is 0.5048778381531464
the regulation term lambda/alpha is 1.628981400388684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3258692221141177
the lambda is 0.5035610593511851
the regulation term lambda/alpha is 1.545285731755424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3344810532998057
the lambda is 0.5044963215287817
the regulation term lambda/alpha is 1.5082956614483811
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317565573964627
the lambda is 0.4882107063317865
the regulation term lambda/alpha is 1.5373540029441835
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31353956153507123
the lambda is 0.49668033339662404
the regulation term lambda/alpha is 1.5841073801497532
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34821419702641127
the lambda is 0.5265420743089448
the regulation term lambda/alpha is 1.5121212139119296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3101034431290252
the lambda is 0.524210872131741
the regulation term lambda/alpha is 1.6904387350308516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2979470537719553
the lambda is 0.4793449958031996
the regulation term lambda/alpha is 1.6088260975726374
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3290068115053446
the lambda is 0.5384920848783071
the regulation term lambda/alpha is 1.6367201712769388
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29387503772421186
the lambda is 0.5353243994131253
the regulation term lambda/alpha is 1.8216055489391463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3140351489502201
the lambda is 0.5179964857983231
the regulation term lambda/alpha is 1.649485694610683
1690
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30179945017215776
the lambda is 0.502725922156542
the regulation term lambda/alpha is 1.6657615574507119
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3360959583977217
the lambda is 0.5176865832567773
the regulation term lambda/alpha is 1.5402939854580724
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29476296701736454
the lambda is 0.4900207291955966
the regulation term lambda/alpha is 1.6624229771941785
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3037561743734835
the lambda is 0.4694922775239908
the regulation term lambda/alpha is 1.5456221704541433
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2816989474440095
the lambda is 0.5214890998933117
the regulation term lambda/alpha is 1.8512284288778287
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2921671202682014
the lambda is 0.48455628911916193
the regulation term lambda/alpha is 1.658490143156261
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33034195505885583
the lambda is 0.5215541726911549
the regulation term lambda/alpha is 1.5788311617827395
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34511383319185135
the lambda is 0.5473927908909647
the regulation term lambda/alpha is 1.5861224275720787
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33213861192821115
the lambda is 0.49678061224312364
the regulation term lambda/alpha is 1.4957026807545593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32832563506189155
the lambda is 0.5240754526702674
the regulation term lambda/alpha is 1.5962063168520964
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32862085551499776
the lambda is 0.5177625160681433
the regulation term lambda/alpha is 1.5755619504329157
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3203379302028394
the lambda is 0.5131837856427962
the regulation term lambda/alpha is 1.602007559073151
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3064358166054659
the lambda is 0.5267424362810808
the regulation term lambda/alpha is 1.7189323432099262
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3142814831543199
the lambda is 0.5134127428295776
the regulation term lambda/alpha is 1.6336079926715865
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3194309838589406
the lambda is 0.5352480198797205
the regulation term lambda/alpha is 1.6756296255722138
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2903877684959095
the lambda is 0.5022133448232439
the regulation term lambda/alpha is 1.72945764012205
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34284802577363704
the lambda is 0.5399404378823035
the regulation term lambda/alpha is 1.5748681552531247
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3272887716998313
the lambda is 0.5226050117930714
the regulation term lambda/alpha is 1.5967703660557346
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29567321791697687
the lambda is 0.5400112305538224
the regulation term lambda/alpha is 1.8263785755037647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31754049884593577
the lambda is 0.4839958871071924
the regulation term lambda/alpha is 1.5242020745896019
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3447378447900346
the lambda is 0.5599162793876276
the regulation term lambda/alpha is 1.6241799032208057
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3140442360676899
the lambda is 0.5102019454994465
the regulation term lambda/alpha is 1.6246180852989014
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31367069419704124
the lambda is 0.5261987717833498
the regulation term lambda/alpha is 1.677551589989478
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3153758569961044
the lambda is 0.5481900445408917
the regulation term lambda/alpha is 1.7382118268731748
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30879467182740744
the lambda is 0.49428010500253233
the regulation term lambda/alpha is 1.6006756271973406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3276123209467507
the lambda is 0.5104189839455073
the regulation term lambda/alpha is 1.5579969107098068
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3031710774906464
the lambda is 0.4912351645242869
the regulation term lambda/alpha is 1.6203233124684946
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3122146060929837
the lambda is 0.50680902346911
the regulation term lambda/alpha is 1.6232713447050338
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3324738534958467
the lambda is 0.5250935860530546
the regulation term lambda/alpha is 1.5793530244014033
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31603376519805443
the lambda is 0.5194705730641038
the regulation term lambda/alpha is 1.6437185841157134
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31907116066471247
the lambda is 0.5335422048350571
the regulation term lambda/alpha is 1.6721730780166493
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32030097611593566
the lambda is 0.5299814670887713
the regulation term lambda/alpha is 1.6546358163358825
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.36064198231531386
the lambda is 0.5638967304361212
the regulation term lambda/alpha is 1.5635914787732592
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31497057570228365
the lambda is 0.5378279795684979
the regulation term lambda/alpha is 1.7075499143668056
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33445888324827916
the lambda is 0.5233128664203243
the regulation term lambda/alpha is 1.5646553063201283
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128344210880822
the lambda is 0.5245804900286304
the regulation term lambda/alpha is 1.676863077292024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30291985814869427
the lambda is 0.512836471266468
the regulation term lambda/alpha is 1.6929773914483084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36022198357408425
the lambda is 0.49670796062676986
the regulation term lambda/alpha is 1.3788940799739269
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32012240232410266
the lambda is 0.5096903953420545
the regulation term lambda/alpha is 1.5921734675289199
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32612071756980854
the lambda is 0.5066865300523156
the regulation term lambda/alpha is 1.5536778338648651
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33905766000032894
the lambda is 0.55436993348226
the regulation term lambda/alpha is 1.6350314382566147
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2866849579965318
the lambda is 0.5301987824266748
the regulation term lambda/alpha is 1.849412630965762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3467767051150189
the lambda is 0.5301252963205054
the regulation term lambda/alpha is 1.5287223406332138
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31814875810361626
the lambda is 0.5352869990025286
the regulation term lambda/alpha is 1.6825053858239287
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3352545204328275
the lambda is 0.5172438001972263
the regulation term lambda/alpha is 1.5428391525621878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33007264030755634
the lambda is 0.5296798929596449
the regulation term lambda/alpha is 1.6047373465007513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.296965442192863
the lambda is 0.5114918637594049
the regulation term lambda/alpha is 1.7223952389289072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3072701071113453
the lambda is 0.4908088493917208
the regulation term lambda/alpha is 1.597320526900024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211043449838917
the lambda is 0.5281025703960684
the regulation term lambda/alpha is 1.6446447351017965
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3522453426391511
the lambda is 0.5260454002103594
the regulation term lambda/alpha is 1.4934062612979766
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3084175900738388
the lambda is 0.5494869003958859
the regulation term lambda/alpha is 1.7816328188814792
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2896389083048042
the lambda is 0.4687389210888899
the regulation term lambda/alpha is 1.6183561933454331
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32031772060615726
the lambda is 0.5321219120176649
the regulation term lambda/alpha is 1.6612315766068055
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30043541306498855
the lambda is 0.5161177210338648
the regulation term lambda/alpha is 1.7178990844272441
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3351467261204198
the lambda is 0.5386461569725499
the regulation term lambda/alpha is 1.6071950432211946
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31983581222988045
the lambda is 0.5006586740214882
the regulation term lambda/alpha is 1.5653615226228708
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31078874734589834
the lambda is 0.5069154244973042
the regulation term lambda/alpha is 1.6310610626231035
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3067999536627307
the lambda is 0.5042794185216645
the regulation term lambda/alpha is 1.643675015270783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3037487642837786
the lambda is 0.516874822044317
the regulation term lambda/alpha is 1.7016524273376943
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3026948922820393
the lambda is 0.5166462072022338
the regulation term lambda/alpha is 1.7068216886885657
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3247338748759492
the lambda is 0.5255016097526136
the regulation term lambda/alpha is 1.6182531309779715
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31661252084675423
the lambda is 0.5040438832254424
the regulation term lambda/alpha is 1.5919897352050965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3191193275636281
the lambda is 0.5204602365738821
the regulation term lambda/alpha is 1.6309267149295723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3044948681589112
the lambda is 0.5286787293647852
the regulation term lambda/alpha is 1.7362484056344618
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3391400374462725
the lambda is 0.5353166051862495
the regulation term lambda/alpha is 1.5784529872001791
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2997027814882998
the lambda is 0.5427436317661373
the regulation term lambda/alpha is 1.810939588451319
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33939455643858935
the lambda is 0.543917788725475
the regulation term lambda/alpha is 1.6026119995353918
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29071939849475453
the lambda is 0.5214340230624924
the regulation term lambda/alpha is 1.7935990022072803
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30913381783428356
the lambda is 0.5123203721434376
the regulation term lambda/alpha is 1.657277019164806
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2998750865739679
the lambda is 0.4977562014873725
the regulation term lambda/alpha is 1.6598784753150702
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3392227404936654
the lambda is 0.5288176271146539
the regulation term lambda/alpha is 1.5589097191570178
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3125734133071441
the lambda is 0.5283349305916524
the regulation term lambda/alpha is 1.6902746941963822
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3430343098893194
the lambda is 0.5055771316370304
the regulation term lambda/alpha is 1.4738383801904706
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3056435901972154
the lambda is 0.5316651378101526
the regulation term lambda/alpha is 1.7394938250368595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2977693038104144
the lambda is 0.5117146783161567
the regulation term lambda/alpha is 1.7184937190233631
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30022745233773585
the lambda is 0.4872281561237125
the regulation term lambda/alpha is 1.6228634401347595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32321839681937875
the lambda is 0.48040627791118234
the regulation term lambda/alpha is 1.4863209601885485
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3178457014473349
the lambda is 0.5559797271959269
the regulation term lambda/alpha is 1.7492126672288797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026092794297283
the lambda is 0.5110184794712528
the regulation term lambda/alpha is 1.6887072347360752
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31713985564897434
the lambda is 0.5377143460911863
the regulation term lambda/alpha is 1.6955117324842148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3363369678215342
the lambda is 0.5261391970413328
the regulation term lambda/alpha is 1.564321639839813
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30431238519377224
the lambda is 0.5019891872318112
the regulation term lambda/alpha is 1.649585135722187
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3139251171452163
the lambda is 0.5024308453278742
the regulation term lambda/alpha is 1.6004799166657901
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33686985196341224
the lambda is 0.5318788971230193
the regulation term lambda/alpha is 1.5788854182795413
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.321580812061359
the lambda is 0.5242954614101858
the regulation term lambda/alpha is 1.6303692314519933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31343560768964573
the lambda is 0.47788942910152393
the regulation term lambda/alpha is 1.524681361585169
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32110413977802
the lambda is 0.5498501772521606
the regulation term lambda/alpha is 1.7123733678185316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.322300880723975
the lambda is 0.5113438553350106
the regulation term lambda/alpha is 1.5865419113543653
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3115680703201592
the lambda is 0.550696305415747
the regulation term lambda/alpha is 1.7674991691217457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3155686560139007
the lambda is 0.5191313408545785
the regulation term lambda/alpha is 1.6450662350690204
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3236680568016299
the lambda is 0.5216245944042839
the regulation term lambda/alpha is 1.6116035655751406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32677772035773434
the lambda is 0.5097861105969687
the regulation term lambda/alpha is 1.5600393748964556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3279718119113084
the lambda is 0.4789738284609305
the regulation term lambda/alpha is 1.4604115691212411
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29478757742055817
the lambda is 0.5377053181558494
the regulation term lambda/alpha is 1.8240433428737504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215218810868171
the lambda is 0.5241647393010623
the regulation term lambda/alpha is 1.6302614849392714
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178027768111881
the lambda is 0.5046392589573956
the regulation term lambda/alpha is 1.5879007226460142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2880283125614531
the lambda is 0.4650029730761892
the regulation term lambda/alpha is 1.614434945443001
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3186584761094599
the lambda is 0.5368771968984998
the regulation term lambda/alpha is 1.6848043819618381
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31707741698570746
the lambda is 0.5112176147603033
the regulation term lambda/alpha is 1.612280116383523
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34817061216837397
the lambda is 0.526979845860593
the regulation term lambda/alpha is 1.5135678527794516
1700
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33337592525511717
the lambda is 0.5481803669003338
the regulation term lambda/alpha is 1.6443309950496177
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3060891144044624
the lambda is 0.5413885689792667
the regulation term lambda/alpha is 1.7687285940651991
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3034160979172797
the lambda is 0.5202653286198762
the regulation term lambda/alpha is 1.714692569679398
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30589115518507354
the lambda is 0.5246911212406381
the regulation term lambda/alpha is 1.715286997831578
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31080637942828565
the lambda is 0.5406997149533914
the regulation term lambda/alpha is 1.7396673644472298
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3258642932446682
the lambda is 0.5129989774152998
the regulation term lambda/alpha is 1.5742718304828982
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3107100803131237
the lambda is 0.5165772610851705
the regulation term lambda/alpha is 1.662570009201441
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3091731578525507
the lambda is 0.49495550650907727
the regulation term lambda/alpha is 1.6009006407507376
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31225019100564
the lambda is 0.5039124952925687
the regulation term lambda/alpha is 1.61381004658366
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3269121875253848
the lambda is 0.5176871435475657
the regulation term lambda/alpha is 1.5835663621668041
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3057612560333385
the lambda is 0.5056599597985855
the regulation term lambda/alpha is 1.6537738180387747
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35604824893740245
the lambda is 0.5404263708329442
the regulation term lambda/alpha is 1.517845888712565
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3273104075954917
the lambda is 0.5030700055321717
the regulation term lambda/alpha is 1.5369813909305734
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33510793277010975
the lambda is 0.5528063275953728
the regulation term lambda/alpha is 1.6496366499763173
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2863033904837486
the lambda is 0.49721603847998164
the regulation term lambda/alpha is 1.736675341636253
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30173828123134766
the lambda is 0.5118272442756286
the regulation term lambda/alpha is 1.6962622116986288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047744317779403
the lambda is 0.48601151767125916
the regulation term lambda/alpha is 1.594659745031922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32593313950781255
the lambda is 0.5173527281190958
the regulation term lambda/alpha is 1.5872971030204033
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3279704205156994
the lambda is 0.5272636377578418
the regulation term lambda/alpha is 1.6076560713273305
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3431657298738515
the lambda is 0.5458109325580454
the regulation term lambda/alpha is 1.5905170156667061
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3333159099344865
the lambda is 0.5452029665490231
the regulation term lambda/alpha is 1.635694397714718
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2990515906260861
the lambda is 0.5055757445651905
the regulation term lambda/alpha is 1.690597075597328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3232308889599975
the lambda is 0.5060044158229943
the regulation term lambda/alpha is 1.5654581078283532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35159704475636544
the lambda is 0.5376648507326333
the regulation term lambda/alpha is 1.5292075367277362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3458136492509684
the lambda is 0.49740248786027697
the regulation term lambda/alpha is 1.43835412204709
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32714764613907704
the lambda is 0.547641849505389
the regulation term lambda/alpha is 1.6739898818424492
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137143600208958
the lambda is 0.49094831907527653
the regulation term lambda/alpha is 1.5649532875784697
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33307484128915615
the lambda is 0.4945438217608697
the regulation term lambda/alpha is 1.4847828789672397
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30795730973087543
the lambda is 0.5126032720649676
the regulation term lambda/alpha is 1.6645270492619015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31084546670604624
the lambda is 0.5136303495813178
the regulation term lambda/alpha is 1.652365579025918
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31130907121552337
the lambda is 0.5216656608757004
the regulation term lambda/alpha is 1.6757162225913567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31760134277594604
the lambda is 0.5173053592767551
the regulation term lambda/alpha is 1.6287883255005366
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3407703584074748
the lambda is 0.5308444671320829
the regulation term lambda/alpha is 1.5577777058218416
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3057584569302344
the lambda is 0.5280030052674688
the regulation term lambda/alpha is 1.7268631277398958
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2876304265564372
the lambda is 0.5247757227492561
the regulation term lambda/alpha is 1.8244791729163172
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32596011070607267
the lambda is 0.522502424505025
the regulation term lambda/alpha is 1.6029643117165955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29504506852159923
the lambda is 0.5039647412947987
the regulation term lambda/alpha is 1.7080941017589155
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3222434978339697
the lambda is 0.5058780691060225
the regulation term lambda/alpha is 1.5698627668405811
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3249227853266259
the lambda is 0.5134906986285542
the regulation term lambda/alpha is 1.5803468449046196
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3272381710097516
the lambda is 0.5496918974212194
the regulation term lambda/alpha is 1.6797914978104393
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34827095843143147
the lambda is 0.5137943767737266
the regulation term lambda/alpha is 1.4752719522976931
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28250879545030166
the lambda is 0.5023603622621637
the regulation term lambda/alpha is 1.7782114056358216
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3526037159586642
the lambda is 0.5516400629887566
the regulation term lambda/alpha is 1.5644760336372219
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3381956611526408
the lambda is 0.4970533224500409
the regulation term lambda/alpha is 1.4697211689705902
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30497769302366046
the lambda is 0.5314921830843103
the regulation term lambda/alpha is 1.7427247803434485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33037182539111715
the lambda is 0.5002228318348655
the regulation term lambda/alpha is 1.5141207372713061
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3219682066449154
the lambda is 0.5130582873844207
the regulation term lambda/alpha is 1.593506056796006
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29549433969665057
the lambda is 0.5136791917099927
the regulation term lambda/alpha is 1.738372356767737
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30084135293742975
the lambda is 0.5122932739009171
the regulation term lambda/alpha is 1.7028685348568617
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2917320369896057
the lambda is 0.5436846906761621
the regulation term lambda/alpha is 1.8636441039745435
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31292145531266924
the lambda is 0.5378805996750363
the regulation term lambda/alpha is 1.7188997128291803
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3259488991242636
the lambda is 0.5500927716342768
the regulation term lambda/alpha is 1.687665683523482
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3340097960975676
the lambda is 0.49728935813661757
the regulation term lambda/alpha is 1.4888466264964109
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2901167061957911
the lambda is 0.49813329577894144
the regulation term lambda/alpha is 1.717010034722944
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.308561878263464
the lambda is 0.5327784853660121
the regulation term lambda/alpha is 1.7266503832696467
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30401138017616564
the lambda is 0.5008980636217979
the regulation term lambda/alpha is 1.6476293200982879
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28545028376347914
the lambda is 0.49173365192750074
the regulation term lambda/alpha is 1.7226595309148323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211940663688544
the lambda is 0.4991230103935648
the regulation term lambda/alpha is 1.5539608686929463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3278729142981168
the lambda is 0.5436275581767107
the regulation term lambda/alpha is 1.6580435115857726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32856787800159226
the lambda is 0.5399092780594206
the regulation term lambda/alpha is 1.6432199073848726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3541111339796371
the lambda is 0.5024608075424559
the regulation term lambda/alpha is 1.4189353548294517
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.310041909895456
the lambda is 0.5399926977461874
the regulation term lambda/alpha is 1.7416764653793717
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29691251296003185
the lambda is 0.4882704566640519
the regulation term lambda/alpha is 1.6444926884229336
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32782959518392785
the lambda is 0.5062657066516568
the regulation term lambda/alpha is 1.5442953110063717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3277935383228213
the lambda is 0.525257564271567
the regulation term lambda/alpha is 1.6024036561522361
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2981303025759262
the lambda is 0.5154529097963613
the regulation term lambda/alpha is 1.728951754795501
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32470124533078476
the lambda is 0.537490126231992
the regulation term lambda/alpha is 1.6553374339061484
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36263330612895345
the lambda is 0.5192368806105553
the regulation term lambda/alpha is 1.431851051281851
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31299966977649296
the lambda is 0.497470659523123
the regulation term lambda/alpha is 1.5893648062899148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2849696084364554
the lambda is 0.5020563994093092
the regulation term lambda/alpha is 1.7617892734735656
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3392696058218447
the lambda is 0.5197654163829931
the regulation term lambda/alpha is 1.532012910864551
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33205559354201325
the lambda is 0.5533942932132309
the regulation term lambda/alpha is 1.6665712127002998
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32333349250087395
the lambda is 0.5053879155582635
the regulation term lambda/alpha is 1.5630546394970122
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32494199235951915
the lambda is 0.491667114443886
the regulation term lambda/alpha is 1.5130919548862138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3009097864839833
the lambda is 0.4853215620099051
the regulation term lambda/alpha is 1.6128473841967834
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31744352923371266
the lambda is 0.5211075813959096
the regulation term lambda/alpha is 1.6415756927029772
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33641371959253297
the lambda is 0.5503420104295251
the regulation term lambda/alpha is 1.635908342549477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212544394756534
the lambda is 0.46752821154610286
the regulation term lambda/alpha is 1.455320624702324
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3267073452642248
the lambda is 0.5032020229259326
the regulation term lambda/alpha is 1.5402225576500819
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3041651337600123
the lambda is 0.5058978057966068
the regulation term lambda/alpha is 1.6632340450821117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29391570513687504
the lambda is 0.5008019055481282
the regulation term lambda/alpha is 1.703896378435808
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.310193512550821
the lambda is 0.5167843530009767
the regulation term lambda/alpha is 1.6660063221544925
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3029916299174104
the lambda is 0.5719365621243926
the regulation term lambda/alpha is 1.887631556951891
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3034723547444637
the lambda is 0.5763605500504762
the regulation term lambda/alpha is 1.899219289795921
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052593424137942
the lambda is 0.5012188757082391
the regulation term lambda/alpha is 1.6419444258279636
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29714933813747746
the lambda is 0.5537124881849719
the regulation term lambda/alpha is 1.8634148460690643
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3196429498501386
the lambda is 0.503466504194173
the regulation term lambda/alpha is 1.5750902825487574
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3351229437113983
the lambda is 0.5603351541521832
the regulation term lambda/alpha is 1.672028623127438
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3066444235615616
the lambda is 0.5200578775484809
the regulation term lambda/alpha is 1.6959639164743352
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3112642899485017
the lambda is 0.49945232134359024
the regulation term lambda/alpha is 1.6045924234553988
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.302340199860811
the lambda is 0.5148586632424211
the regulation term lambda/alpha is 1.702911698409433
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31143014809789055
the lambda is 0.4893523361842597
the regulation term lambda/alpha is 1.571306885903813
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3417704096642062
the lambda is 0.5352459291193479
the regulation term lambda/alpha is 1.5660979241744009
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32274272332547993
the lambda is 0.4879680794043772
the regulation term lambda/alpha is 1.511941382834124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32991925685250123
the lambda is 0.5162648958424061
the regulation term lambda/alpha is 1.5648219530065668
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3249676732184818
the lambda is 0.5258297845995923
the regulation term lambda/alpha is 1.61809874622842
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3548622901817865
the lambda is 0.5568292960682782
the regulation term lambda/alpha is 1.5691419220200304
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3215964455343757
the lambda is 0.5118934315696984
the regulation term lambda/alpha is 1.5917260239587494
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3065391898797052
the lambda is 0.5032056128022562
the regulation term lambda/alpha is 1.6415702442474926
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30006400258488797
the lambda is 0.4818542417161272
the regulation term lambda/alpha is 1.6058382130652638
1710
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34015799781184664
the lambda is 0.5394894462468891
the regulation term lambda/alpha is 1.585996653664747
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31655586659625445
the lambda is 0.4999226764145165
the regulation term lambda/alpha is 1.579255762307934
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29103296623153313
the lambda is 0.5298004042415019
the regulation term lambda/alpha is 1.8204137184239664
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31937309396175884
the lambda is 0.5134822369900037
the regulation term lambda/alpha is 1.6077817658975593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2950937126020614
the lambda is 0.5374514736257263
the regulation term lambda/alpha is 1.8212908329581667
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32285832219670973
the lambda is 0.5492931291285297
the regulation term lambda/alpha is 1.7013441852487194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3201383387646916
the lambda is 0.5186744101127245
the regulation term lambda/alpha is 1.6201571236800885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.299618209683517
the lambda is 0.5127628917882834
the regulation term lambda/alpha is 1.7113876100184582
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32504372238574764
the lambda is 0.5620020456766104
the regulation term lambda/alpha is 1.7290044599281662
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3354469046211755
the lambda is 0.4955017753924353
the regulation term lambda/alpha is 1.4771392091157074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3281147197477488
the lambda is 0.5283389536031119
the regulation term lambda/alpha is 1.6102263074612848
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30023073463129424
the lambda is 0.5356119225102848
the regulation term lambda/alpha is 1.7840009723456733
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3286038146110334
the lambda is 0.5633097516042609
the regulation term lambda/alpha is 1.714252015823516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3295239917733491
the lambda is 0.5216649358347302
the regulation term lambda/alpha is 1.583086357467829
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3254819232937365
the lambda is 0.5091980564572556
the regulation term lambda/alpha is 1.5644434299281238
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30966131896625065
the lambda is 0.4973366475357002
the regulation term lambda/alpha is 1.6060664250735943
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32385033054752455
the lambda is 0.49478093936492773
the regulation term lambda/alpha is 1.5278074242765654
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3145787380647695
the lambda is 0.5277369398900863
the regulation term lambda/alpha is 1.6775988839443723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2853198822834105
the lambda is 0.5467510561723503
the regulation term lambda/alpha is 1.9162739441664924
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31921595224390725
the lambda is 0.5145662504248233
the regulation term lambda/alpha is 1.611969097432989
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2980955964151421
the lambda is 0.5021275545444936
the regulation term lambda/alpha is 1.684451432973223
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3212970416509096
the lambda is 0.504318941248486
the regulation term lambda/alpha is 1.5696345620151408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33072787645816937
the lambda is 0.5280050589293411
the regulation term lambda/alpha is 1.596493965322344
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30438112877788165
the lambda is 0.5356871233934719
the regulation term lambda/alpha is 1.7599222578098228
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32324193621750186
the lambda is 0.5390482005714703
the regulation term lambda/alpha is 1.6676307748904136
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3494831179324182
the lambda is 0.5225496350895238
the regulation term lambda/alpha is 1.4952070880590362
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30754180703243655
the lambda is 0.5103219033656362
the regulation term lambda/alpha is 1.6593578228920673
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32159648771609844
the lambda is 0.5359591686488351
the regulation term lambda/alpha is 1.6665579044568841
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2759825683316991
the lambda is 0.5326657983768099
the regulation term lambda/alpha is 1.9300704446543424
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30684123311757744
the lambda is 0.5206625516612702
the regulation term lambda/alpha is 1.696846758081432
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3295148030881866
the lambda is 0.5066546738056735
the regulation term lambda/alpha is 1.5375778843843921
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3212245073621924
the lambda is 0.5441352202239141
the regulation term lambda/alpha is 1.6939405548231778
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3171641957050345
the lambda is 0.5278372074589908
the regulation term lambda/alpha is 1.6642395787634365
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3390654122983476
the lambda is 0.5352938168788589
the regulation term lambda/alpha is 1.5787331808643688
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.326233965633951
the lambda is 0.5302789475194962
the regulation term lambda/alpha is 1.625455971419275
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33069753884575576
the lambda is 0.5129458183131791
the regulation term lambda/alpha is 1.551102618131149
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30741492514253815
the lambda is 0.5320513684934215
the regulation term lambda/alpha is 1.7307271865434863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2794215541877136
the lambda is 0.5174220646443425
the regulation term lambda/alpha is 1.8517614582328954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3056381101437173
the lambda is 0.5546631795749924
the regulation term lambda/alpha is 1.8147710025892336
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3197098566130567
the lambda is 0.5350385389855677
the regulation term lambda/alpha is 1.6735128051842405
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3183228206459969
the lambda is 0.5465546664811421
the regulation term lambda/alpha is 1.7169823557480954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30231604792298444
the lambda is 0.5352232155781731
the regulation term lambda/alpha is 1.770409540794613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30963971341618524
the lambda is 0.5207607680851837
the regulation term lambda/alpha is 1.6818280909116838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3053531103660634
the lambda is 0.5365395397310415
the regulation term lambda/alpha is 1.7571117552653295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3302854150816834
the lambda is 0.5076767503707311
the regulation term lambda/alpha is 1.5370849791995107
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3215616510679991
the lambda is 0.5263243277731084
the regulation term lambda/alpha is 1.6367757971917154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31965621070448974
the lambda is 0.54216269249631
the regulation term lambda/alpha is 1.6960805838917963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3056625691710572
the lambda is 0.47616342519167604
the regulation term lambda/alpha is 1.5578074426417643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3417604225285721
the lambda is 0.5261945411363033
the regulation term lambda/alpha is 1.539659089964731
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32792333920673733
the lambda is 0.5317561456725227
the regulation term lambda/alpha is 1.6215867615853967
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35562541907369777
the lambda is 0.533264434772726
the regulation term lambda/alpha is 1.4995115820509313
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3352307718970258
the lambda is 0.5202469852873453
the regulation term lambda/alpha is 1.5519070112309128
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31250861036658995
the lambda is 0.5485846765979585
the regulation term lambda/alpha is 1.7554225976507918
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29087310929855825
the lambda is 0.4733926557975232
the regulation term lambda/alpha is 1.6274885531327101
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31632468492564403
the lambda is 0.51971682245277
the regulation term lambda/alpha is 1.6429853477130174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28493517159888393
the lambda is 0.4797612106986316
the regulation term lambda/alpha is 1.6837556697774505
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3272852641126977
the lambda is 0.5083166122157725
the regulation term lambda/alpha is 1.553130152663208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3361488892350565
the lambda is 0.49814371663538526
the regulation term lambda/alpha is 1.4819139154943088
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3037459637163362
the lambda is 0.5165031067537488
the regulation term lambda/alpha is 1.70044434643452
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3204559820116159
the lambda is 0.512536663731234
the regulation term lambda/alpha is 1.5993980218869983
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3221879824743015
the lambda is 0.5418609557113668
the regulation term lambda/alpha is 1.6818161607085607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190439143076105
the lambda is 0.5685046970192363
the regulation term lambda/alpha is 1.7819010848491061
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3350885009063148
the lambda is 0.5539693987090542
the regulation term lambda/alpha is 1.6532032499197422
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33442895695402236
the lambda is 0.5318266149385703
the regulation term lambda/alpha is 1.590252888931763
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30683510558129545
the lambda is 0.5119038446160948
the regulation term lambda/alpha is 1.6683353218214685
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30801609400580754
the lambda is 0.5183558097111939
the regulation term lambda/alpha is 1.6828854718916748
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2996620503107376
the lambda is 0.4643092740141158
the regulation term lambda/alpha is 1.5494430260109533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32036795215270436
the lambda is 0.5201648936531935
the regulation term lambda/alpha is 1.623648339847849
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3202753454099882
the lambda is 0.49261771218197775
the regulation term lambda/alpha is 1.538106879726793
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30450138102267627
the lambda is 0.5187879042317333
the regulation term lambda/alpha is 1.7037292326536249
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3265919807800688
the lambda is 0.5483674721970421
the regulation term lambda/alpha is 1.67905981918864
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2904788357153178
the lambda is 0.49898593218331605
the regulation term lambda/alpha is 1.7178047789765465
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34124857541569076
the lambda is 0.5506891253260486
the regulation term lambda/alpha is 1.6137477633576305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.347326952486762
the lambda is 0.5250003408162515
the regulation term lambda/alpha is 1.511545064549119
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3555122251655293
the lambda is 0.5306394194357315
the regulation term lambda/alpha is 1.4926052660739346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31268151469040145
the lambda is 0.5035985625945922
the regulation term lambda/alpha is 1.6105798997846912
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32574429855890175
the lambda is 0.5174210666407058
the regulation term lambda/alpha is 1.588427085078036
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3226710016911788
the lambda is 0.5086878478341187
the regulation term lambda/alpha is 1.5764907449631078
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31491382288845055
the lambda is 0.46787584837834995
the regulation term lambda/alpha is 1.4857266158941582
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32380646302980653
the lambda is 0.5075263465061102
the regulation term lambda/alpha is 1.567375591448254
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2925485020187473
the lambda is 0.5007726830022928
the regulation term lambda/alpha is 1.711759518666761
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2986724430313457
the lambda is 0.5136254603557753
the regulation term lambda/alpha is 1.719694844100064
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3310626722686992
the lambda is 0.5248977917265454
the regulation term lambda/alpha is 1.5854937318349334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2959275345561459
the lambda is 0.5030018841504018
the regulation term lambda/alpha is 1.6997468143842762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3155377682155959
the lambda is 0.5253723061564642
the regulation term lambda/alpha is 1.6650060914340234
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32955298746006373
the lambda is 0.5453812778024525
the regulation term lambda/alpha is 1.6549122555550904
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3239696135730317
the lambda is 0.5049594689900851
the regulation term lambda/alpha is 1.5586630592324155
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3157773320517305
the lambda is 0.5045962603400788
the regulation term lambda/alpha is 1.597949596513204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31660363814449777
the lambda is 0.5133226644864819
the regulation term lambda/alpha is 1.621341648172096
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34013160107543844
the lambda is 0.5311472861193435
the regulation term lambda/alpha is 1.561593466881483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3220050217441027
the lambda is 0.5370368598820578
the regulation term lambda/alpha is 1.6677903250491566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3273339377419273
the lambda is 0.546339196410683
the regulation term lambda/alpha is 1.6690575996474315
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3005160103054486
the lambda is 0.5153737617344396
the regulation term lambda/alpha is 1.714962744283097
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34007985950089054
the lambda is 0.5474995382606156
the regulation term lambda/alpha is 1.6099146214190374
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3509568686657693
the lambda is 0.5691799607146287
the regulation term lambda/alpha is 1.6217946178927254
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3264006242435233
the lambda is 0.4934043562064402
the regulation term lambda/alpha is 1.5116526120315186
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32764576857668704
the lambda is 0.5329447071196457
the regulation term lambda/alpha is 1.626588096757024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34834390384739844
the lambda is 0.5189721384069551
the regulation term lambda/alpha is 1.4898269574262595
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.319962146123634
the lambda is 0.5028179783482869
the regulation term lambda/alpha is 1.571492079422411
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30855681214311453
the lambda is 0.4841955801146295
the regulation term lambda/alpha is 1.56922667417905
1720
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33218368121173447
the lambda is 0.5468726584597225
the regulation term lambda/alpha is 1.6462959783721132
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3300312084872113
the lambda is 0.5589908061092443
the regulation term lambda/alpha is 1.6937513536114728
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32780894214723
the lambda is 0.5243641507430391
the regulation term lambda/alpha is 1.5996029495361648
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3369347328919496
the lambda is 0.4912086928811629
the regulation term lambda/alpha is 1.4578749084876534
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29788947600157545
the lambda is 0.5084105816271202
the regulation term lambda/alpha is 1.7067087714922542
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3182582964748777
the lambda is 0.49228659760583987
the regulation term lambda/alpha is 1.5468146567066774
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080954454631933
the lambda is 0.5124481999455802
the regulation term lambda/alpha is 1.663277427471092
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30426306424017263
the lambda is 0.5356919919877445
the regulation term lambda/alpha is 1.7606211694656815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3370930186342741
the lambda is 0.4935793054954716
the regulation term lambda/alpha is 1.4642228649385818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30025846590582145
the lambda is 0.5226123097777723
the regulation term lambda/alpha is 1.7405414638390044
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3401662013587502
the lambda is 0.5479757784964064
the regulation term lambda/alpha is 1.6109060109663675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3330387631783289
the lambda is 0.5192739973520221
the regulation term lambda/alpha is 1.5591998733011496
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3179199708215377
the lambda is 0.5161267695298394
the regulation term lambda/alpha is 1.623448719487848
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3591508087371856
the lambda is 0.5338724386250565
the regulation term lambda/alpha is 1.486485414030423
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30692503139943894
the lambda is 0.511834416064495
the regulation term lambda/alpha is 1.6676203101805094
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3024772005102337
the lambda is 0.511279012652687
the regulation term lambda/alpha is 1.6903059529453328
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33001134487897904
the lambda is 0.5344138352568999
the regulation term lambda/alpha is 1.6193801926805844
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32726885301893
the lambda is 0.5150024080073433
the regulation term lambda/alpha is 1.573637097623691
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3297587020500275
the lambda is 0.5338594217977692
the regulation term lambda/alpha is 1.6189396018327902
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2959824439798471
the lambda is 0.5120212702860588
the regulation term lambda/alpha is 1.7299041909422217
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3059080616338289
the lambda is 0.5055194773173421
the regulation term lambda/alpha is 1.652520939191356
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3457851418958118
the lambda is 0.5355019253375778
the regulation term lambda/alpha is 1.5486551053108275
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30248890568189873
the lambda is 0.49275518297683074
the regulation term lambda/alpha is 1.6290024980123354
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2975493158982869
the lambda is 0.513844135100017
the regulation term lambda/alpha is 1.7269209090558537
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31253497933193647
the lambda is 0.519857500810815
the regulation term lambda/alpha is 1.663357816529989
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3209482367063595
the lambda is 0.5231005618868263
the regulation term lambda/alpha is 1.6298595912381317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32614955745846513
the lambda is 0.48383824119573315
the regulation term lambda/alpha is 1.4834858123557304
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31619155645350555
the lambda is 0.48321944849521004
the regulation term lambda/alpha is 1.5282490586248945
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3304678583702936
the lambda is 0.541605680843223
the regulation term lambda/alpha is 1.6389057729068064
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32944062135839797
the lambda is 0.508327746032078
the regulation term lambda/alpha is 1.5430026325717403
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30088832315762326
the lambda is 0.48139074512850727
the regulation term lambda/alpha is 1.5998983944495782
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30074208549913634
the lambda is 0.5306589919473844
the regulation term lambda/alpha is 1.7644986103845728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2786401165921156
the lambda is 0.47555014693803266
the regulation term lambda/alpha is 1.7066822708596612
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33473016213509105
the lambda is 0.4982757092587381
the regulation term lambda/alpha is 1.4885892149081057
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.26756366151569494
the lambda is 0.4883303351070357
the regulation term lambda/alpha is 1.8250996130817672
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3097336889905276
the lambda is 0.5220945830015843
the regulation term lambda/alpha is 1.6856241395735003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32636757820717327
the lambda is 0.5234298347863078
the regulation term lambda/alpha is 1.60380463544097
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3014870945863118
the lambda is 0.4918007931893957
the regulation term lambda/alpha is 1.6312499009757766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3359930756679824
the lambda is 0.48313228837952993
the regulation term lambda/alpha is 1.4379233483280047
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33161352661698745
the lambda is 0.5470022069581327
the regulation term lambda/alpha is 1.6495171730130251
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3240472360134717
the lambda is 0.528287224593121
the regulation term lambda/alpha is 1.630278446723608
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3098632899080177
the lambda is 0.5598368676842244
the regulation term lambda/alpha is 1.8067221446283968
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3257526399131823
the lambda is 0.5150908853557513
the regulation term lambda/alpha is 1.5812331881424824
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32241037122898447
the lambda is 0.5259444331732248
the regulation term lambda/alpha is 1.631288817318116
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3334934692128433
the lambda is 0.5088190998744041
the regulation term lambda/alpha is 1.525724330000789
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3299866849999697
the lambda is 0.5171731686217738
the regulation term lambda/alpha is 1.5672546564168832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33274155292251284
the lambda is 0.5077197790272391
the regulation term lambda/alpha is 1.5258682739437543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32235360256954365
the lambda is 0.5193417235511995
the regulation term lambda/alpha is 1.6110932820710702
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3305342428940923
the lambda is 0.5184961926411371
the regulation term lambda/alpha is 1.5686610503689036
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31335365982061814
the lambda is 0.5136479437893466
the regulation term lambda/alpha is 1.6391956107466197
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159702917321171
the lambda is 0.5278625407892678
the regulation term lambda/alpha is 1.6706081381752025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3151713757158979
the lambda is 0.5551786931748736
the regulation term lambda/alpha is 1.7615136904923858
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3311852061217275
the lambda is 0.5356539108483969
the regulation term lambda/alpha is 1.6173847773004588
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3243617676887522
the lambda is 0.5245276180466426
the regulation term lambda/alpha is 1.6171067933936145
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3108819487577025
the lambda is 0.5154355063645382
the regulation term lambda/alpha is 1.657978240371435
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30463190983823646
the lambda is 0.5325342148211989
the regulation term lambda/alpha is 1.7481235472146748
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3391760612700781
the lambda is 0.5546521608743025
the regulation term lambda/alpha is 1.6352927703604816
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30672509362792616
the lambda is 0.501817652942409
the regulation term lambda/alpha is 1.636050207066333
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30407578401538693
the lambda is 0.5021735494835492
the regulation term lambda/alpha is 1.6514749805204418
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33411020993506313
the lambda is 0.5124179945354236
the regulation term lambda/alpha is 1.5336795443486027
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3174029500442584
the lambda is 0.5289813769005014
the regulation term lambda/alpha is 1.6665925027689272
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3197950411859066
the lambda is 0.5156110554349866
the regulation term lambda/alpha is 1.612317231445894
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3305387422710655
the lambda is 0.5131167310171068
the regulation term lambda/alpha is 1.5523648680078603
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3336834967468121
the lambda is 0.5330326845941971
the regulation term lambda/alpha is 1.5974199796840551
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3102229010832861
the lambda is 0.5155154364292777
the regulation term lambda/alpha is 1.6617581572125015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3102871446152137
the lambda is 0.5035463278165246
the regulation term lambda/alpha is 1.6228398003435534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32152804486818715
the lambda is 0.5023766562227532
the regulation term lambda/alpha is 1.5624660561995651
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32785625384584216
the lambda is 0.5190524602510204
the regulation term lambda/alpha is 1.5831708383244034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2995019950626268
the lambda is 0.4960754524241315
the regulation term lambda/alpha is 1.6563343837506008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3162207387645547
the lambda is 0.49876094306008045
the regulation term lambda/alpha is 1.5772556379720493
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30105484300464974
the lambda is 0.5259964184575943
the regulation term lambda/alpha is 1.747178066321525
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2912566149525511
the lambda is 0.5073462429748401
the regulation term lambda/alpha is 1.7419217862485024
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32333967333326574
the lambda is 0.5344808941882224
the regulation term lambda/alpha is 1.6530012809078758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31109018498703456
the lambda is 0.5016674820330961
the regulation term lambda/alpha is 1.6126110891412544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2864803772930088
the lambda is 0.5421203416859176
the regulation term lambda/alpha is 1.892347206494507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31384192110425635
the lambda is 0.5234568456669224
the regulation term lambda/alpha is 1.6678996987564108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3210141355551012
the lambda is 0.503979566180873
the regulation term lambda/alpha is 1.5699606664030104
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3395509806992075
the lambda is 0.5197201932955495
the regulation term lambda/alpha is 1.5306101965169865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33466174837160934
the lambda is 0.492426136649798
the regulation term lambda/alpha is 1.47141446265023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30011710471043973
the lambda is 0.5121171809926283
the regulation term lambda/alpha is 1.7063911818246127
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3207356805476419
the lambda is 0.49868603453758487
the regulation term lambda/alpha is 1.5548193256394196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30257411849839955
the lambda is 0.4790810432268192
the regulation term lambda/alpha is 1.583351033473649
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29927312094427916
the lambda is 0.48661174334283924
the regulation term lambda/alpha is 1.625978777537593
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.326927153123726
the lambda is 0.5043714481971449
the regulation term lambda/alpha is 1.5427640175432746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32834870794740034
the lambda is 0.5016077352617565
the regulation term lambda/alpha is 1.5276677602828006
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31483014506849283
the lambda is 0.521277388574576
the regulation term lambda/alpha is 1.6557416649576855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33391200740359844
the lambda is 0.5187037622244228
the regulation term lambda/alpha is 1.553414524556067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3227634232466721
the lambda is 0.53042078942462
the regulation term lambda/alpha is 1.6433732920822495
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32563087714021133
the lambda is 0.5134767885239964
the regulation term lambda/alpha is 1.5768676270306567
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30607016622148936
the lambda is 0.584733622026742
the regulation term lambda/alpha is 1.9104561194102017
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35408602333849526
the lambda is 0.5658442806220153
the regulation term lambda/alpha is 1.598041841038966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2980171348673102
the lambda is 0.4886759503222589
the regulation term lambda/alpha is 1.6397578969405169
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2966754664564334
the lambda is 0.4969845184295632
the regulation term lambda/alpha is 1.6751790242909927
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3161916160348767
the lambda is 0.5233147856707109
the regulation term lambda/alpha is 1.6550558557915336
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.322914920384627
the lambda is 0.5321432531104477
the regulation term lambda/alpha is 1.6479364052816357
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3413748126994161
the lambda is 0.5092956646253634
the regulation term lambda/alpha is 1.4918958449163713
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3301997415024158
the lambda is 0.4836953207582324
the regulation term lambda/alpha is 1.4648567517267228
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2888263569953622
the lambda is 0.5286771876314078
the regulation term lambda/alpha is 1.8304326278640042
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30757230527843854
the lambda is 0.5120601078157107
the regulation term lambda/alpha is 1.6648446528765122
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3160394524998849
the lambda is 0.540683427040712
the regulation term lambda/alpha is 1.7108099092182452
1730
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3288462245634852
the lambda is 0.5371654144488885
the regulation term lambda/alpha is 1.6334851195628868
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3268902936073303
the lambda is 0.5515492154121087
the regulation term lambda/alpha is 1.6872609135181142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3293023322621323
the lambda is 0.5255053712047922
the regulation term lambda/alpha is 1.5958143010857202
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2958449292423661
the lambda is 0.4976163565284381
the regulation term lambda/alpha is 1.6820175279082579
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3180838973826657
the lambda is 0.5444660839708668
the regulation term lambda/alpha is 1.711705900396007
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3233825684314223
the lambda is 0.525451891689717
the regulation term lambda/alpha is 1.6248615200208176
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3046114453610393
the lambda is 0.5275444627075445
the regulation term lambda/alpha is 1.7318602788620596
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3314404098306304
the lambda is 0.5415061029040328
the regulation term lambda/alpha is 1.6337962627452345
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29918871302315536
the lambda is 0.5033170923957999
the regulation term lambda/alpha is 1.682272995227752
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3126429677935932
the lambda is 0.5394594105843115
the regulation term lambda/alpha is 1.7254807117250193
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3083630368423307
the lambda is 0.501224620914302
the regulation term lambda/alpha is 1.6254367775298033
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156054971131425
the lambda is 0.5406439007658344
the regulation term lambda/alpha is 1.7130370215700554
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3282106900568904
the lambda is 0.4866466689338253
the regulation term lambda/alpha is 1.482726442729432
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30242414692288305
the lambda is 0.5039722922185778
the regulation term lambda/alpha is 1.6664419734548799
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33554597451911744
the lambda is 0.5125264180941139
the regulation term lambda/alpha is 1.5274402228446737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.355605288707918
the lambda is 0.5574762820153312
the regulation term lambda/alpha is 1.567682764339377
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29832994203912455
the lambda is 0.4915232869647545
the regulation term lambda/alpha is 1.6475828192273558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3413799801781684
the lambda is 0.49637404397998486
the regulation term lambda/alpha is 1.4540221243229439
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2960594640049761
the lambda is 0.48052516826582264
the regulation term lambda/alpha is 1.6230697771503972
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2893936263574116
the lambda is 0.48199195152705326
the regulation term lambda/alpha is 1.6655237283345548
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.350832792690178
the lambda is 0.5217183894082819
the regulation term lambda/alpha is 1.4870855868624964
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31501008511888057
the lambda is 0.4914811754169525
the regulation term lambda/alpha is 1.5602077477344072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31879848616074274
the lambda is 0.5101013818852069
the regulation term lambda/alpha is 1.600074667945589
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31777303476897556
the lambda is 0.4765825409021585
the regulation term lambda/alpha is 1.4997576532843298
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2981943670733048
the lambda is 0.514254046923261
the regulation term lambda/alpha is 1.7245598968569467
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2917188107075594
the lambda is 0.5041940870951427
the regulation term lambda/alpha is 1.7283564466488393
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3018952689733046
the lambda is 0.5351578448277671
the regulation term lambda/alpha is 1.772660587387638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3266869448004671
the lambda is 0.517315748050956
the regulation term lambda/alpha is 1.5835213383470852
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3553312983493668
the lambda is 0.5332421251780849
the regulation term lambda/alpha is 1.5006899973494416
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3395810756510342
the lambda is 0.5536209688209252
the regulation term lambda/alpha is 1.6303057164170307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3145824496949731
the lambda is 0.48270989386702495
the regulation term lambda/alpha is 1.5344463568615234
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33084326019188076
the lambda is 0.5316149368390869
the regulation term lambda/alpha is 1.6068483200496924
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32137256471162046
the lambda is 0.5314788067919807
the regulation term lambda/alpha is 1.6537777805298854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33507260146542867
the lambda is 0.4890617625104665
the regulation term lambda/alpha is 1.4595695391732164
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047760669852757
the lambda is 0.47145413314001067
the regulation term lambda/alpha is 1.5468869908436331
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32341782691402887
the lambda is 0.5380916657396279
the regulation term lambda/alpha is 1.6637662520769572
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29112869542362235
the lambda is 0.4930589587214673
the regulation term lambda/alpha is 1.6936116792060485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3180799255653355
the lambda is 0.5068617192731492
the regulation term lambda/alpha is 1.5935042690049825
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2843696918319193
the lambda is 0.49244187425617186
the regulation term lambda/alpha is 1.7316960576348501
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2971272908457414
the lambda is 0.5134827780666774
the regulation term lambda/alpha is 1.7281575738300679
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3386199081054432
the lambda is 0.5237896887278782
the regulation term lambda/alpha is 1.546836663143783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2886442225656046
the lambda is 0.5084472508382917
the regulation term lambda/alpha is 1.7615015686750115
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29217003082735804
the lambda is 0.5089564017069617
the regulation term lambda/alpha is 1.741987021275641
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3512523236761196
the lambda is 0.5347065991028888
the regulation term lambda/alpha is 1.522286296946828
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3096481927540206
the lambda is 0.49723845266222527
the regulation term lambda/alpha is 1.6058173898570862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32815001124270277
the lambda is 0.5167534146120416
the regulation term lambda/alpha is 1.5747475145745036
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.326643847355823
the lambda is 0.5055240683547083
the regulation term lambda/alpha is 1.5476307680273729
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34475650236641947
the lambda is 0.5043755613760312
the regulation term lambda/alpha is 1.4629907134861315
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31907124235711853
the lambda is 0.5201510269651642
the regulation term lambda/alpha is 1.6302034088769066
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29637986402819394
the lambda is 0.4993720779266096
the regulation term lambda/alpha is 1.6849055503956418
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31937944164524124
the lambda is 0.5131275201664752
the regulation term lambda/alpha is 1.606639167265013
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3101760522055542
the lambda is 0.5281810357707338
the regulation term lambda/alpha is 1.7028427308137488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2989468260983659
the lambda is 0.5355619288078811
the regulation term lambda/alpha is 1.7914956174569285
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32310474265138134
the lambda is 0.534957078644541
the regulation term lambda/alpha is 1.655676961763885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3330354293976551
the lambda is 0.5027259693637073
the regulation term lambda/alpha is 1.509526990185288
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32221499155003697
the lambda is 0.5311393060024906
the regulation term lambda/alpha is 1.6484003535881715
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3463382397642783
the lambda is 0.5259294928777258
the regulation term lambda/alpha is 1.5185429516407989
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32228261883487247
the lambda is 0.5365291831785588
the regulation term lambda/alpha is 1.6647785261216943
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3070744634830694
the lambda is 0.4994574502427736
the regulation term lambda/alpha is 1.6265027204722653
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34071249153045585
the lambda is 0.5005546415580855
the regulation term lambda/alpha is 1.469140856296845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3180126290921605
the lambda is 0.478460961760613
the regulation term lambda/alpha is 1.5045344681011217
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2941008579231267
the lambda is 0.4856931340284927
the regulation term lambda/alpha is 1.6514509255714078
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32918236294956005
the lambda is 0.5026919218694871
the regulation term lambda/alpha is 1.5270925129926038
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3224089254462503
the lambda is 0.5075663330797586
the regulation term lambda/alpha is 1.5742936780587868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2895129597809893
the lambda is 0.49642481794765697
the regulation term lambda/alpha is 1.71468945059728
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30070705380782203
the lambda is 0.4974616571627423
the regulation term lambda/alpha is 1.6543065779915611
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32739303288718624
the lambda is 0.4988956989368493
the regulation term lambda/alpha is 1.5238433589659186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31910793742439764
the lambda is 0.47379661041459487
the regulation term lambda/alpha is 1.4847534481239462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29500581089746863
the lambda is 0.49189727152974805
the regulation term lambda/alpha is 1.6674155333865963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317956661513239
the lambda is 0.5541570869188699
the regulation term lambda/alpha is 1.742869875037344
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32480203033627597
the lambda is 0.5043876074721377
the regulation term lambda/alpha is 1.5529078034085322
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3303390949209557
the lambda is 0.5022234397665101
the regulation term lambda/alpha is 1.5203269836610869
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3041465822696131
the lambda is 0.5078236241104697
the regulation term lambda/alpha is 1.669667369993017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3039715522093191
the lambda is 0.5180785891226876
the regulation term lambda/alpha is 1.704365376816352
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3050629836224883
the lambda is 0.524107771564247
the regulation term lambda/alpha is 1.7180313564782543
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3003647077549231
the lambda is 0.48520305873923464
the regulation term lambda/alpha is 1.6153797240890462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3081874066138647
the lambda is 0.5194573691739032
the regulation term lambda/alpha is 1.685524320676554
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32872852920014806
the lambda is 0.5532030010591223
the regulation term lambda/alpha is 1.6828566793553286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3421993336408769
the lambda is 0.5236317403756792
the regulation term lambda/alpha is 1.5301950906929807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31343185285271846
the lambda is 0.5318069778630906
the regulation term lambda/alpha is 1.6967228219557715
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33626204220292427
the lambda is 0.5145392112721134
the regulation term lambda/alpha is 1.530173337142835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3327746212177058
the lambda is 0.5051451374818423
the regulation term lambda/alpha is 1.5179797534841737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33273228350669043
the lambda is 0.5258852314759928
the regulation term lambda/alpha is 1.5805055822466307
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33930079178176975
the lambda is 0.5264265149978269
the regulation term lambda/alpha is 1.5515039391255296
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30677341149137516
the lambda is 0.5137916540072881
the regulation term lambda/alpha is 1.6748245928794687
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30334269521583174
the lambda is 0.4899587860616942
the regulation term lambda/alpha is 1.6151988948113059
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34505289512431025
the lambda is 0.5623471488310002
the regulation term lambda/alpha is 1.6297418650216124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30416105424813294
the lambda is 0.4903268194447948
the regulation term lambda/alpha is 1.6120631244419241
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.329565184058897
the lambda is 0.5231704005428431
the regulation term lambda/alpha is 1.5874565210424252
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33735213243436507
the lambda is 0.5345085892475936
the regulation term lambda/alpha is 1.5844233305730981
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3269837433537607
the lambda is 0.5027243767782135
the regulation term lambda/alpha is 1.537459849293855
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29199725466108195
the lambda is 0.5226654847564777
the regulation term lambda/alpha is 1.7899671192564117
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32973270264795174
the lambda is 0.5279250475661755
the regulation term lambda/alpha is 1.6010697250428003
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32645128135484003
the lambda is 0.5171175184252153
the regulation term lambda/alpha is 1.5840572482333997
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2916817344238185
the lambda is 0.5170939400249175
the regulation term lambda/alpha is 1.7728019241464439
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205517035416574
the lambda is 0.5009944518987623
the regulation term lambda/alpha is 1.5629130850451258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3083565771898251
the lambda is 0.5068316950621031
the regulation term lambda/alpha is 1.6436545627826715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3114126786168724
the lambda is 0.5328368041060637
the regulation term lambda/alpha is 1.7110311836776788
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3380946698731493
the lambda is 0.5315161752858794
the regulation term lambda/alpha is 1.5720927380644611
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32143217568204113
the lambda is 0.510242776725782
the regulation term lambda/alpha is 1.5874041721028924
1740
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29455502498912406
the lambda is 0.5012910480439967
the regulation term lambda/alpha is 1.7018587547861592
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3114920515868648
the lambda is 0.5164201321086145
the regulation term lambda/alpha is 1.6578918450013869
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30718255812781126
the lambda is 0.5077594195407457
the regulation term lambda/alpha is 1.6529565436116955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28995489043164574
the lambda is 0.4940637707691544
the regulation term lambda/alpha is 1.7039332222804
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.302319650202912
the lambda is 0.4849963454967255
the regulation term lambda/alpha is 1.6042501543356638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3108685594363991
the lambda is 0.5055384216656772
the regulation term lambda/alpha is 1.6262127716685542
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30564835099468507
the lambda is 0.47593300543652606
the regulation term lambda/alpha is 1.55712603679253
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31478024666789667
the lambda is 0.5351557605445717
the regulation term lambda/alpha is 1.7000932117229652
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31037221001011467
the lambda is 0.5104278465662317
the regulation term lambda/alpha is 1.6445668462057137
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3319248474414334
the lambda is 0.4935632868028408
the regulation term lambda/alpha is 1.4869730018929292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32252342914972365
the lambda is 0.509865787667192
the regulation term lambda/alpha is 1.5808643391004604
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30660075842573165
the lambda is 0.4956950068301093
the regulation term lambda/alpha is 1.6167442291248677
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3143612400981951
the lambda is 0.545928829614325
the regulation term lambda/alpha is 1.7366289477793018
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33136041885148226
the lambda is 0.4984484401795606
the regulation term lambda/alpha is 1.5042485819737215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32708076275165165
the lambda is 0.5275153295871966
the regulation term lambda/alpha is 1.6127983961800052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30881743144271473
the lambda is 0.5149249697138248
the regulation term lambda/alpha is 1.6674090167392084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32134748606811847
the lambda is 0.5300631827701707
the regulation term lambda/alpha is 1.6495015699541187
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33402964616330383
the lambda is 0.5138441688657667
the regulation term lambda/alpha is 1.5383190527183126
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3117819829931868
the lambda is 0.527114794868674
the regulation term lambda/alpha is 1.6906518773414585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2987393175770416
the lambda is 0.4796526906156099
the regulation term lambda/alpha is 1.6055894299615006
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3167912769952998
the lambda is 0.48712396780584216
the regulation term lambda/alpha is 1.5376811269114257
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3346060540189228
the lambda is 0.5016294340008618
the regulation term lambda/alpha is 1.4991642499465758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3136337170381349
the lambda is 0.5384399786115646
the regulation term lambda/alpha is 1.7167796361195926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2984881410189759
the lambda is 0.48201678730347175
the regulation term lambda/alpha is 1.6148607635062737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31515052618497974
the lambda is 0.50197073069224
the regulation term lambda/alpha is 1.5927967399223215
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3250606560972273
the lambda is 0.5053992515141866
the regulation term lambda/alpha is 1.5547844441777634
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34117400931953323
the lambda is 0.5358148104489598
the regulation term lambda/alpha is 1.5705030155070574
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2945889071512507
the lambda is 0.4734543254992508
the regulation term lambda/alpha is 1.6071695641145283
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3405217961135845
the lambda is 0.5115663017468801
the regulation term lambda/alpha is 1.5023011965326354
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30790805386043996
the lambda is 0.5017976060735077
the regulation term lambda/alpha is 1.629699515105729
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3211179669769956
the lambda is 0.5023169378030037
the regulation term lambda/alpha is 1.5642754048669876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31744371478856737
the lambda is 0.5029411134955428
the regulation term lambda/alpha is 1.584347366368635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3038432292047475
the lambda is 0.4880282367973238
the regulation term lambda/alpha is 1.606184340768909
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2994232115349674
the lambda is 0.5147569960370683
the regulation term lambda/alpha is 1.719161962755695
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2960158544863972
the lambda is 0.4943340205521715
the regulation term lambda/alpha is 1.6699579196859795
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32059706332299637
the lambda is 0.5475933115484977
the regulation term lambda/alpha is 1.708042194375331
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2956415552223309
the lambda is 0.4766803288486624
the regulation term lambda/alpha is 1.6123590220264712
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2744492565772836
the lambda is 0.5102465981307831
the regulation term lambda/alpha is 1.859165532070225
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33898904622127396
the lambda is 0.4889881838301617
the regulation term lambda/alpha is 1.4424896299185321
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27883455235468757
the lambda is 0.48038702291046287
the regulation term lambda/alpha is 1.722838933890063
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31025611031638795
the lambda is 0.5144616293528889
the regulation term lambda/alpha is 1.6581837141845797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31270692557725827
the lambda is 0.5267550218671325
the regulation term lambda/alpha is 1.68450065790753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3156791182212715
the lambda is 0.5115661442689502
the regulation term lambda/alpha is 1.620525764109535
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3417257668586675
the lambda is 0.534213629211257
the regulation term lambda/alpha is 1.5632816750169136
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3108147559712111
the lambda is 0.5136336987115541
the regulation term lambda/alpha is 1.652539619962988
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30146352960453415
the lambda is 0.5490074672901158
the regulation term lambda/alpha is 1.8211405804553364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36033789810040173
the lambda is 0.5063630798804063
the regulation term lambda/alpha is 1.4052451394921477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3238413366422914
the lambda is 0.5305096192927031
the regulation term lambda/alpha is 1.6381775865713317
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32526566798449896
the lambda is 0.5055384143261794
the regulation term lambda/alpha is 1.5542323217163874
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30288202132509734
the lambda is 0.46849911272354433
the regulation term lambda/alpha is 1.5468039689971644
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31332593622438887
the lambda is 0.48664190450893163
the regulation term lambda/alpha is 1.5531491276241565
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31853107036641853
the lambda is 0.5304888312035692
the regulation term lambda/alpha is 1.6654225617404528
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3251290955348716
the lambda is 0.5077187434729842
the regulation term lambda/alpha is 1.5615912277482682
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3129456515567985
the lambda is 0.5370055586212746
the regulation term lambda/alpha is 1.7159706675898965
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3084784593093424
the lambda is 0.4947802987281943
the regulation term lambda/alpha is 1.603937921098174
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105716172311478
the lambda is 0.5076179035216107
the regulation term lambda/alpha is 1.634463277897697
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31633513500728
the lambda is 0.500736693539102
the regulation term lambda/alpha is 1.5829310061545274
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31994268059311065
the lambda is 0.49271777834880903
the regulation term lambda/alpha is 1.5400189103729687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30346140522291243
the lambda is 0.5003791731583287
the regulation term lambda/alpha is 1.6489054770927696
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3100648856204344
the lambda is 0.5386340887680205
the regulation term lambda/alpha is 1.737165715138053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3183219785621641
the lambda is 0.5349393138787716
the regulation term lambda/alpha is 1.6804975776258093
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3076337715534914
the lambda is 0.529359493215737
the regulation term lambda/alpha is 1.7207457118331755
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33601775891134156
the lambda is 0.5196591572619781
the regulation term lambda/alpha is 1.5465228949374976
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30824608431963735
the lambda is 0.5305629955297108
the regulation term lambda/alpha is 1.7212319069706032
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3112286321782438
the lambda is 0.5119428201428443
the regulation term lambda/alpha is 1.6449091349977383
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30776997454970406
the lambda is 0.46873513747390844
the regulation term lambda/alpha is 1.5230047640602735
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3018769982236005
the lambda is 0.5161693950384999
the regulation term lambda/alpha is 1.7098665949241119
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31770918610227433
the lambda is 0.5191467044370265
the regulation term lambda/alpha is 1.6340311427756673
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3089884751770717
the lambda is 0.5089152317957842
the regulation term lambda/alpha is 1.6470362899591668
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3033571036637696
the lambda is 0.5334533526170726
the regulation term lambda/alpha is 1.7584996236261987
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3228646168204733
the lambda is 0.48714363913481223
the regulation term lambda/alpha is 1.5088170513453483
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30511378076330237
the lambda is 0.5071370412092023
the regulation term lambda/alpha is 1.6621243391252236
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3247336176486657
the lambda is 0.5520028361812201
the regulation term lambda/alpha is 1.699863537930466
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32535138601963925
the lambda is 0.4971776802918501
the regulation term lambda/alpha is 1.5281252874756122
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31058182624296293
the lambda is 0.5278791314638499
the regulation term lambda/alpha is 1.6996459124781467
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3152718650132619
the lambda is 0.49339064845516895
the regulation term lambda/alpha is 1.564968851357588
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32920614567118084
the lambda is 0.5294773160029301
the regulation term lambda/alpha is 1.608345782620307
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3374294040891702
the lambda is 0.5277299323832189
the regulation term lambda/alpha is 1.5639713847930075
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30356647552593913
the lambda is 0.49844961074614913
the regulation term lambda/alpha is 1.6419784493085687
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3163078140004167
the lambda is 0.5368935042156971
the regulation term lambda/alpha is 1.6973766706091866
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3308854236737391
the lambda is 0.4856233677860543
the regulation term lambda/alpha is 1.4676481133387445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3063479660164963
the lambda is 0.4919107166248638
the regulation term lambda/alpha is 1.6057254207405944
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3258243946504422
the lambda is 0.5220706514294001
the regulation term lambda/alpha is 1.6023068253974628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257024335614313
the lambda is 0.499092857490927
the regulation term lambda/alpha is 1.53235839239375
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2945026894707008
the lambda is 0.5164850748094318
the regulation term lambda/alpha is 1.7537533383402784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28212256802070035
the lambda is 0.5002855261786777
the regulation term lambda/alpha is 1.7732914090799357
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2970407089737377
the lambda is 0.49188860653946587
the regulation term lambda/alpha is 1.655963616027308
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35218521182845425
the lambda is 0.5359309296262493
the regulation term lambda/alpha is 1.521730361260301
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33182763782807057
the lambda is 0.535685215668398
the regulation term lambda/alpha is 1.614347795664784
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32415618379182576
the lambda is 0.4863430604070588
the regulation term lambda/alpha is 1.5003355935341034
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2834608313278396
the lambda is 0.5295891334163958
the regulation term lambda/alpha is 1.8682973973356265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3193291733147262
the lambda is 0.5316701804051797
the regulation term lambda/alpha is 1.6649596242219098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3251599016004392
the lambda is 0.503620348858779
the regulation term lambda/alpha is 1.5488390369782876
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3108424273605039
the lambda is 0.5326256622850479
the regulation term lambda/alpha is 1.7134908731983611
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30306898196411547
the lambda is 0.4958087465848195
the regulation term lambda/alpha is 1.6359600490014023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31255581004803545
the lambda is 0.4874832285369288
the regulation term lambda/alpha is 1.5596677868890343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3203411328207041
the lambda is 0.5088045923653265
the regulation term lambda/alpha is 1.5883211371738077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34936977868295066
the lambda is 0.5241296651603548
the regulation term lambda/alpha is 1.5002146640622767
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2782769010574995
the lambda is 0.4725604093642874
the regulation term lambda/alpha is 1.6981661344095667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31371016359314574
the lambda is 0.49888939072892036
the regulation term lambda/alpha is 1.5902876241393813
1750
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31195026471274023
the lambda is 0.5047587088765603
the regulation term lambda/alpha is 1.6180743085484088
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32261550893745383
the lambda is 0.5184604523493856
the regulation term lambda/alpha is 1.6070537156039224
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.319237344656567
the lambda is 0.5284263235789043
the regulation term lambda/alpha is 1.6552772801295572
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3108225519676812
the lambda is 0.5113523863243659
the regulation term lambda/alpha is 1.6451585738783052
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2827645298553807
the lambda is 0.5001831886640647
the regulation term lambda/alpha is 1.7689035782524858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3279467250710325
the lambda is 0.54438535442067
the regulation term lambda/alpha is 1.6599810664453423
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32632193171532414
the lambda is 0.5031896522777104
the regulation term lambda/alpha is 1.5420037802322206
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33679946558112756
the lambda is 0.5142232400527333
the regulation term lambda/alpha is 1.5267935154394368
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3018924202783125
the lambda is 0.5039273569842222
the regulation term lambda/alpha is 1.6692282519702055
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3294055695987164
the lambda is 0.5511688527715856
the regulation term lambda/alpha is 1.6732226277868414
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.302230520309413
the lambda is 0.4981867075887236
the regulation term lambda/alpha is 1.6483666410615894
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33579334209048417
the lambda is 0.5631250509189668
the regulation term lambda/alpha is 1.6769988571340553
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31838414253517316
the lambda is 0.5441210665271944
the regulation term lambda/alpha is 1.7090080623820112
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33347667037940126
the lambda is 0.5633606987622393
the regulation term lambda/alpha is 1.6893556545388786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31773078444651204
the lambda is 0.4993207039709478
the regulation term lambda/alpha is 1.5715213269018484
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2987230959070022
the lambda is 0.5034639782201896
the regulation term lambda/alpha is 1.6853868519658317
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3299740377506623
the lambda is 0.5208350423644031
the regulation term lambda/alpha is 1.5784121863489176
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3462421247110579
the lambda is 0.5376498083111869
the regulation term lambda/alpha is 1.5528145477961712
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3093056019743716
the lambda is 0.5390470491679945
the regulation term lambda/alpha is 1.742765231949012
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29472359717182944
the lambda is 0.5263416206596974
the regulation term lambda/alpha is 1.7858821815099868
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33777417570037754
the lambda is 0.5466997509506415
the regulation term lambda/alpha is 1.6185362596683273
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3211820820141139
the lambda is 0.5357436013947937
the regulation term lambda/alpha is 1.668037015126053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3202256777066433
the lambda is 0.5104144088290912
the regulation term lambda/alpha is 1.5939209262808667
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32520599253456783
the lambda is 0.48120547274657754
the regulation term lambda/alpha is 1.4796943592465557
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2915994273420843
the lambda is 0.48774455816281514
the regulation term lambda/alpha is 1.672652661250349
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3031391060690117
the lambda is 0.4983973054472545
the regulation term lambda/alpha is 1.644120786361991
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33881015451165075
the lambda is 0.5462133760578004
the regulation term lambda/alpha is 1.612151727993789
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31305980202238715
the lambda is 0.5369157320405005
the regulation term lambda/alpha is 1.715058045050783
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3027651543999513
the lambda is 0.5042528996104655
the regulation term lambda/alpha is 1.6654918582352773
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3202792747535043
the lambda is 0.49887077966701887
the regulation term lambda/alpha is 1.557611806293003
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33502109450388773
the lambda is 0.5324789352851771
the regulation term lambda/alpha is 1.5893892773339917
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32302189915631
the lambda is 0.5292904535132209
the regulation term lambda/alpha is 1.6385590416490545
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30114736363843303
the lambda is 0.5385724370062765
the regulation term lambda/alpha is 1.7884016333375692
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2978856156863763
the lambda is 0.5144789218761157
the regulation term lambda/alpha is 1.7271022660515971
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2629520263632823
the lambda is 0.483323990495993
the regulation term lambda/alpha is 1.8380690849982462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2945051273199775
the lambda is 0.4845840823000876
the regulation term lambda/alpha is 1.645418151832687
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31949281661724394
the lambda is 0.49910892243299004
the regulation term lambda/alpha is 1.5621913748093068
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3369985158920097
the lambda is 0.5549183472159914
the regulation term lambda/alpha is 1.646649231517131
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3145932267901793
the lambda is 0.5289669667897388
the regulation term lambda/alpha is 1.6814315177311108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2942586748156195
the lambda is 0.4983648032903335
the regulation term lambda/alpha is 1.6936282459730558
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2876950234805556
the lambda is 0.4926023939597342
the regulation term lambda/alpha is 1.712238147188624
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31662695983119626
the lambda is 0.5555208850488691
the regulation term lambda/alpha is 1.7544964754265862
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3086126716681529
the lambda is 0.5027519382461217
the regulation term lambda/alpha is 1.6290709500960614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33993350327525856
the lambda is 0.5104143317044378
the regulation term lambda/alpha is 1.5015122863342296
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34055329493078584
the lambda is 0.5224323410673611
the regulation term lambda/alpha is 1.5340692597719263
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29521215245183136
the lambda is 0.4964156646741688
the regulation term lambda/alpha is 1.68155565599613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32443042220226687
the lambda is 0.5116903715614168
the regulation term lambda/alpha is 1.5771960227650978
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3427160296654141
the lambda is 0.5379931974976058
the regulation term lambda/alpha is 1.5697929216291293
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2948480213549574
the lambda is 0.5293471752230761
the regulation term lambda/alpha is 1.7953221215136226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3303284787905956
the lambda is 0.5318047895211583
the regulation term lambda/alpha is 1.6099271593784805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.303488787633028
the lambda is 0.5162259858031456
the regulation term lambda/alpha is 1.7009721836160707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29260105332644754
the lambda is 0.5213850323976018
the regulation term lambda/alpha is 1.7818973187902567
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30720373208733914
the lambda is 0.49371290747329805
the regulation term lambda/alpha is 1.607118846241535
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31418747083294796
the lambda is 0.5550100626224136
the regulation term lambda/alpha is 1.7664933014388404
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.331166236465484
the lambda is 0.5190101425152674
the regulation term lambda/alpha is 1.5672193761496627
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3536629903987721
the lambda is 0.5236589925990076
the regulation term lambda/alpha is 1.4806722976824824
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3278663047669437
the lambda is 0.506448988016045
the regulation term lambda/alpha is 1.544681416335365
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29840256809501664
the lambda is 0.4869101449425191
the regulation term lambda/alpha is 1.6317223677092427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3231589415689716
the lambda is 0.4982460079115797
the regulation term lambda/alpha is 1.5417986130680508
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321471258349387
the lambda is 0.4751574462702643
the regulation term lambda/alpha is 1.478071317199516
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34161203774604165
the lambda is 0.5227313309908654
the regulation term lambda/alpha is 1.5301900203513026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3009416901164936
the lambda is 0.5122485108633013
the regulation term lambda/alpha is 1.7021520370441579
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3227237651006096
the lambda is 0.5318332322086773
the regulation term lambda/alpha is 1.647951870054805
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28957697397827237
the lambda is 0.4995642049419162
the regulation term lambda/alpha is 1.7251516861951866
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3191374842131392
the lambda is 0.5074405327608488
the regulation term lambda/alpha is 1.590037390975826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233576134469384
the lambda is 0.511444621199269
the regulation term lambda/alpha is 1.581668715782982
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30627538121069486
the lambda is 0.5148166405265509
the regulation term lambda/alpha is 1.6808946200360615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2893716822693351
the lambda is 0.5108185490688771
the regulation term lambda/alpha is 1.765267924846318
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3100462067877802
the lambda is 0.54301428549242
the regulation term lambda/alpha is 1.7513979323220725
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31974597901210655
the lambda is 0.5442454021884146
the regulation term lambda/alpha is 1.702118049677828
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3177700135346719
the lambda is 0.49408586879592037
the regulation term lambda/alpha is 1.554853660671197
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.27938885633539345
the lambda is 0.5361781151352779
the regulation term lambda/alpha is 1.919110597924567
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3120820984064831
the lambda is 0.5451534748745386
the regulation term lambda/alpha is 1.7468271254844066
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30251097509813557
the lambda is 0.5130265915385255
the regulation term lambda/alpha is 1.695894145235881
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3076792587754253
the lambda is 0.5120958437481633
the regulation term lambda/alpha is 1.6643820769275235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3097155866495344
the lambda is 0.5127823467608431
the regulation term lambda/alpha is 1.6556556042531156
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3059068738578574
the lambda is 0.48991275923229216
the regulation term lambda/alpha is 1.6015094824575105
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2950612211373826
the lambda is 0.5145387224183143
the regulation term lambda/alpha is 1.743837161775798
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3171821397616679
the lambda is 0.49267544793415496
the regulation term lambda/alpha is 1.5532887454014703
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3291141328511397
the lambda is 0.5396357036572316
the regulation term lambda/alpha is 1.6396612900890282
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3179400738776347
the lambda is 0.5297295312660497
the regulation term lambda/alpha is 1.6661301131543622
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3352088937748523
the lambda is 0.48809501399596206
the regulation term lambda/alpha is 1.456092075897598
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33425579816644313
the lambda is 0.560690321741223
the regulation term lambda/alpha is 1.6774288578294954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3253616625623095
the lambda is 0.5233312180868696
the regulation term lambda/alpha is 1.6084599948423464
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3052272263670978
the lambda is 0.4959215907796708
the regulation term lambda/alpha is 1.6247619738326495
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30544559546507616
the lambda is 0.5380309946966035
the regulation term lambda/alpha is 1.7614626063845815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3327336261908172
the lambda is 0.5080487980041929
the regulation term lambda/alpha is 1.5268934607554072
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30977256742771375
the lambda is 0.549529481762186
the regulation term lambda/alpha is 1.7739772321524891
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3194178239648102
the lambda is 0.5089706078402063
the regulation term lambda/alpha is 1.5934320806602165
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29962699244027285
the lambda is 0.5019650993317373
the regulation term lambda/alpha is 1.6752999963172481
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2870366677677527
the lambda is 0.5031200109866782
the regulation term lambda/alpha is 1.7528074545296874
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30354237688086866
the lambda is 0.5098773989015406
the regulation term lambda/alpha is 1.6797568897658475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.300018899207966
the lambda is 0.5066538661051204
the regulation term lambda/alpha is 1.6887398341993114
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3091226606909328
the lambda is 0.5082581092978162
the regulation term lambda/alpha is 1.6441955700102593
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31277052113001996
the lambda is 0.526929424099264
the regulation term lambda/alpha is 1.6847157532477857
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3155961420256104
the lambda is 0.5189962115254461
the regulation term lambda/alpha is 1.6444947906978211
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32637081409757346
the lambda is 0.4893787153734047
the regulation term lambda/alpha is 1.499456122406514
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30147317199047674
the lambda is 0.5416633752794268
the regulation term lambda/alpha is 1.7967216508954813
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3477824851264886
the lambda is 0.5356343213118171
the regulation term lambda/alpha is 1.5401417386416303
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32767775372947655
the lambda is 0.5397782023618506
the regulation term lambda/alpha is 1.6472836383255955
1760
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3237995947828659
the lambda is 0.5227725896790987
the regulation term lambda/alpha is 1.6144942677573777
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31936732146767954
the lambda is 0.5232927642352214
the regulation term lambda/alpha is 1.6385294582751462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32153205096745296
the lambda is 0.5093321542405078
the regulation term lambda/alpha is 1.5840789517187663
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31851938706191935
the lambda is 0.5347216071770865
the regulation term lambda/alpha is 1.6787725610973188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36411751974479467
the lambda is 0.5623062139441273
the regulation term lambda/alpha is 1.5442987042706446
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31502618643522723
the lambda is 0.5554332544642421
the regulation term lambda/alpha is 1.763133600890176
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30915759688587646
the lambda is 0.48410019021857703
the regulation term lambda/alpha is 1.5658686543526197
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29902026893177924
the lambda is 0.5053042641203696
the regulation term lambda/alpha is 1.6898662619946125
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2921976822718299
the lambda is 0.5012293390452667
the regulation term lambda/alpha is 1.715377531909975
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30713675888838143
the lambda is 0.5355660260628482
the regulation term lambda/alpha is 1.7437379622068674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3136940019282033
the lambda is 0.5191673986256465
the regulation term lambda/alpha is 1.6550121947963512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33068281663341365
the lambda is 0.5157064144237553
the regulation term lambda/alpha is 1.5595198434379312
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3105937803011249
the lambda is 0.518656537060374
the regulation term lambda/alpha is 1.669887067788445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31927141608348913
the lambda is 0.49003494021008276
the regulation term lambda/alpha is 1.534853781216478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2937534218030722
the lambda is 0.4879485496083771
the regulation term lambda/alpha is 1.6610820960427497
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29645583310689255
the lambda is 0.514037928993427
the regulation term lambda/alpha is 1.7339443909949355
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30502785801363624
the lambda is 0.5293978052055153
the regulation term lambda/alpha is 1.7355719856310585
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3156471077785966
the lambda is 0.5401167735850095
the regulation term lambda/alpha is 1.711141208884011
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3302111758037362
the lambda is 0.5245071192953357
the regulation term lambda/alpha is 1.5883990540861672
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3360047119931696
the lambda is 0.5253814492211129
the regulation term lambda/alpha is 1.5636133377551948
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35474978592531176
the lambda is 0.517969284650991
the regulation term lambda/alpha is 1.4600975256403486
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28310387844130663
the lambda is 0.4916948683826001
the regulation term lambda/alpha is 1.7368001847581145
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30475514074328874
the lambda is 0.5078876248616783
the regulation term lambda/alpha is 1.6665432570651817
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.321935988623454
the lambda is 0.5660999113096397
the regulation term lambda/alpha is 1.7584238212390946
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30667233188339305
the lambda is 0.5248040780781631
the regulation term lambda/alpha is 1.7112860324083978
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30360613373969375
the lambda is 0.5008388777622756
the regulation term lambda/alpha is 1.649633594661449
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2907905021373055
the lambda is 0.5063935353234643
the regulation term lambda/alpha is 1.7414376728314027
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3243204248577516
the lambda is 0.5021481305684584
the regulation term lambda/alpha is 1.5483086851181294
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3110117026303293
the lambda is 0.5345378618944009
the regulation term lambda/alpha is 1.7187065868378477
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298623050460543
the lambda is 0.4956325279345485
the regulation term lambda/alpha is 1.6597262909550123
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32349404615706784
the lambda is 0.5282843869466866
the regulation term lambda/alpha is 1.6330575267842355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30534705823734565
the lambda is 0.5040157109244783
the regulation term lambda/alpha is 1.650632279983218
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29905192971753697
the lambda is 0.5049661617261832
the regulation term lambda/alpha is 1.6885567740797998
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3135675257613467
the lambda is 0.5317281662279116
the regulation term lambda/alpha is 1.6957373533399787
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3061312454997212
the lambda is 0.4882436746236149
the regulation term lambda/alpha is 1.5948835076492038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.329565632769092
the lambda is 0.4933684975785344
the regulation term lambda/alpha is 1.497026535907674
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.322367023781327
the lambda is 0.5275457585645847
the regulation term lambda/alpha is 1.6364755686749082
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29135663527679845
the lambda is 0.48908743293659607
the regulation term lambda/alpha is 1.6786555503427847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31145399002903257
the lambda is 0.5237506532177887
the regulation term lambda/alpha is 1.6816308988976723
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30631563590939265
the lambda is 0.502627814293153
the regulation term lambda/alpha is 1.6408820033001152
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3139944515740906
the lambda is 0.538206367215488
the regulation term lambda/alpha is 1.7140633043590325
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3048578795160208
the lambda is 0.5124147872266224
the regulation term lambda/alpha is 1.680831697839367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3282924689175449
the lambda is 0.5082129194042586
the regulation term lambda/alpha is 1.548049277767329
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3465486265153815
the lambda is 0.5322031399851644
the regulation term lambda/alpha is 1.535724280129394
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3013578713979129
the lambda is 0.5221442813510947
the regulation term lambda/alpha is 1.7326386031631322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3231924060430897
the lambda is 0.5015353356971435
the regulation term lambda/alpha is 1.5518165845464704
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2884326069990022
the lambda is 0.5043094759871258
the regulation term lambda/alpha is 1.7484482119903677
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3052167069345893
the lambda is 0.5204834635816589
the regulation term lambda/alpha is 1.7052915248613936
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29292573384042764
the lambda is 0.5008157781656634
the regulation term lambda/alpha is 1.7097022224700975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32012802151460673
the lambda is 0.5377352034638831
the regulation term lambda/alpha is 1.679750497690648
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33053087545343074
the lambda is 0.5216591726600707
the regulation term lambda/alpha is 1.5782464253738633
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3366437302119176
the lambda is 0.5637384171368267
the regulation term lambda/alpha is 1.6745846321924744
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3546257369432521
the lambda is 0.5304655258678181
the regulation term lambda/alpha is 1.4958461008505546
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31495639174333945
the lambda is 0.5073936882804674
the regulation term lambda/alpha is 1.6109966382074463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33021376831138927
the lambda is 0.5221778000351197
the regulation term lambda/alpha is 1.5813326097981164
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3019996650445897
the lambda is 0.5259555645785545
the regulation term lambda/alpha is 1.7415766487717732
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3068190799998385
the lambda is 0.5176244965802561
the regulation term lambda/alpha is 1.6870674945656203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34508548541590445
the lambda is 0.4799709944134092
the regulation term lambda/alpha is 1.3908756371915725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2820811793779684
the lambda is 0.4968222430569669
the regulation term lambda/alpha is 1.7612739855687465
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32732421788811905
the lambda is 0.540284515849751
the regulation term lambda/alpha is 1.6506096595468618
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30154090869113426
the lambda is 0.5325622332836716
the regulation term lambda/alpha is 1.7661359302633477
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31326749905174356
the lambda is 0.5089240359299175
the regulation term lambda/alpha is 1.6245669833941396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3186833663777488
the lambda is 0.5151385387497364
the regulation term lambda/alpha is 1.616458821195961
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128832744850257
the lambda is 0.5042534496817127
the regulation term lambda/alpha is 1.6116344042731687
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31384432075772123
the lambda is 0.5495117862117629
the regulation term lambda/alpha is 1.7509056237980172
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32953731624744637
the lambda is 0.5141341285874643
the regulation term lambda/alpha is 1.560169678026406
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29694884957403134
the lambda is 0.5212186017229038
the regulation term lambda/alpha is 1.7552470820162598
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3486952446937847
the lambda is 0.5214620946607594
the regulation term lambda/alpha is 1.4954666075778984
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30845539172903086
the lambda is 0.5144387171074903
the regulation term lambda/alpha is 1.6677896736504767
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3101587986046302
the lambda is 0.49583758491813845
the regulation term lambda/alpha is 1.598657162553042
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2955100590376539
the lambda is 0.5126483578286882
the regulation term lambda/alpha is 1.7347915651269472
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32530088625729836
the lambda is 0.5347161081476561
the regulation term lambda/alpha is 1.6437585347514847
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3024231805983816
the lambda is 0.5212150069204053
the regulation term lambda/alpha is 1.7234624868673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35083069462855376
the lambda is 0.5081798954066002
the regulation term lambda/alpha is 1.4485046581931544
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31909216730147494
the lambda is 0.5400639560271093
the regulation term lambda/alpha is 1.6925014505820275
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31615561149334137
the lambda is 0.478458512427582
the regulation term lambda/alpha is 1.5133639734168023
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2914751486527355
the lambda is 0.5500699144983323
the regulation term lambda/alpha is 1.887193186248916
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30281014081704594
the lambda is 0.5280332058841721
the regulation term lambda/alpha is 1.7437764946029437
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31267031751697744
the lambda is 0.5555675411559772
the regulation term lambda/alpha is 1.7768477211649962
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31539237232096695
the lambda is 0.5202326846117863
the regulation term lambda/alpha is 1.6494776991066813
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3237135975666498
the lambda is 0.5493610175682825
the regulation term lambda/alpha is 1.6970588251399412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3183087174863229
the lambda is 0.5109666318372881
the regulation term lambda/alpha is 1.6052549106175307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32615979788520333
the lambda is 0.4992877505045503
the regulation term lambda/alpha is 1.5308071495686966
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32803989630742186
the lambda is 0.5070997326551682
the regulation term lambda/alpha is 1.545847740970936
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32460112011547376
the lambda is 0.5109241789886285
the regulation term lambda/alpha is 1.5740062104741723
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30357948391347606
the lambda is 0.5347643467362498
the regulation term lambda/alpha is 1.7615299289745956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32568825512429317
the lambda is 0.48684240976399124
the regulation term lambda/alpha is 1.494811071950373
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28378177258928006
the lambda is 0.5244708148666655
the regulation term lambda/alpha is 1.8481483503372744
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3075583589605797
the lambda is 0.5107627069048948
the regulation term lambda/alpha is 1.6607017563465416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3173353963351558
the lambda is 0.49835458443359093
the regulation term lambda/alpha is 1.5704349095278693
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32886833861028314
the lambda is 0.5345643035108006
the regulation term lambda/alpha is 1.6254660018952818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3332737280229361
the lambda is 0.5405797325331292
the regulation term lambda/alpha is 1.622029242268764
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3134691284392642
the lambda is 0.5365511295234732
the regulation term lambda/alpha is 1.7116554098801213
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30468106963211344
the lambda is 0.5210479202873382
the regulation term lambda/alpha is 1.7101420869910835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32337064874912647
the lambda is 0.48744883626029706
the regulation term lambda/alpha is 1.5073997536445052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32527086581869846
the lambda is 0.4951369961033693
the regulation term lambda/alpha is 1.5222297725839113
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33154587912836087
the lambda is 0.5403810682836047
the regulation term lambda/alpha is 1.6298832297486991
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3089414825192509
the lambda is 0.5116111037737069
the regulation term lambda/alpha is 1.6560129756670898
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32527835745560935
the lambda is 0.5381225754013924
the regulation term lambda/alpha is 1.6543448497794073
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33897399566886177
the lambda is 0.5440951971471517
the regulation term lambda/alpha is 1.6051237088955623
1770
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.308763497249257
the lambda is 0.5262216109741353
the regulation term lambda/alpha is 1.7042869887865335
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30118032004579454
the lambda is 0.5640064605429034
the regulation term lambda/alpha is 1.8726537658806726
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3452878708083125
the lambda is 0.5359270694329349
the regulation term lambda/alpha is 1.5521166966518098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3110596599669143
the lambda is 0.523056020179588
the regulation term lambda/alpha is 1.681529582573396
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2975161630101519
the lambda is 0.48725163683722406
the regulation term lambda/alpha is 1.637731650971171
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3029252483653839
the lambda is 0.5150639508696208
the regulation term lambda/alpha is 1.7003004987169583
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33015368385042704
the lambda is 0.5241572958036516
the regulation term lambda/alpha is 1.5876160753096913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.305161466863614
the lambda is 0.48922947851862025
the regulation term lambda/alpha is 1.6031823530893954
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3339138014509603
the lambda is 0.5400426225729478
the regulation term lambda/alpha is 1.6173114744772246
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3010360886625345
the lambda is 0.5171590237656374
the regulation term lambda/alpha is 1.7179303187976893
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30414704818536115
the lambda is 0.5258630353822867
the regulation term lambda/alpha is 1.7289762913030204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35516382996396556
the lambda is 0.5643828373541965
the regulation term lambda/alpha is 1.589077461551921
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3142549671090187
the lambda is 0.5668655023577225
the regulation term lambda/alpha is 1.8038394351331615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3138751745902923
the lambda is 0.48747136504340255
the regulation term lambda/alpha is 1.5530739749638018
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3284821687615444
the lambda is 0.531297842718934
the regulation term lambda/alpha is 1.6174328266342515
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3320210021629008
the lambda is 0.5240142121539749
the regulation term lambda/alpha is 1.578256220963021
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3042610921221456
the lambda is 0.4872225963548615
the regulation term lambda/alpha is 1.6013305972071712
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3273391394556353
the lambda is 0.5120951590430147
the regulation term lambda/alpha is 1.5644177469722336
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33364694534736017
the lambda is 0.5228823217169519
the regulation term lambda/alpha is 1.567172512766687
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31957074986510275
the lambda is 0.5280495561199126
the regulation term lambda/alpha is 1.6523713648474176
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31125001393449386
the lambda is 0.5331657145293229
the regulation term lambda/alpha is 1.712982138665972
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31120706349192495
the lambda is 0.504524471517203
the regulation term lambda/alpha is 1.621185797829085
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32138020799518263
the lambda is 0.47885061674407486
the regulation term lambda/alpha is 1.4899816629381628
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3188776727261384
the lambda is 0.524593251228401
the regulation term lambda/alpha is 1.6451238079592272
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3067206553458285
the lambda is 0.49759551465832724
the regulation term lambda/alpha is 1.6223084620671757
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32645220773466926
the lambda is 0.5050234339720195
the regulation term lambda/alpha is 1.547005723981771
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233796134103469
the lambda is 0.5137238271396746
the regulation term lambda/alpha is 1.5886091943829301
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3103025576276542
the lambda is 0.5207630948009973
the regulation term lambda/alpha is 1.678242998647417
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3102648731992772
the lambda is 0.5135836922796967
the regulation term lambda/alpha is 1.6553072443680459
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31943312598708185
the lambda is 0.5202977067401499
the regulation term lambda/alpha is 1.6288157501898883
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3256452023556331
the lambda is 0.5188409767421844
the regulation term lambda/alpha is 1.5932707529207344
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3179863189329225
the lambda is 0.5039287030948735
the regulation term lambda/alpha is 1.5847496357262292
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32326688569752093
the lambda is 0.4808850805006518
the regulation term lambda/alpha is 1.4875791544903656
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29760193711975236
the lambda is 0.5475779309980109
the regulation term lambda/alpha is 1.8399676302431809
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33542516809947753
the lambda is 0.5441071694445738
the regulation term lambda/alpha is 1.6221417508038847
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3106659682258581
the lambda is 0.5188514261851095
the regulation term lambda/alpha is 1.6701263712538281
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3119605372340016
the lambda is 0.49744138866529913
the regulation term lambda/alpha is 1.5945651109459669
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30971055867509334
the lambda is 0.5498297216699621
the regulation term lambda/alpha is 1.7753018302704027
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3177967203722332
the lambda is 0.5301151911799243
the regulation term lambda/alpha is 1.6680952231319564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31351025464533044
the lambda is 0.4728386986717659
the regulation term lambda/alpha is 1.5082080782546696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3037988770685244
the lambda is 0.5055502208938188
the regulation term lambda/alpha is 1.664095094004537
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3048111515489675
the lambda is 0.5479165977205672
the regulation term lambda/alpha is 1.7975608665765799
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29141076779958214
the lambda is 0.4766681325576593
the regulation term lambda/alpha is 1.6357258729900055
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3256184906714895
the lambda is 0.507032542863285
the regulation term lambda/alpha is 1.557136825423163
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30606033056930315
the lambda is 0.5317025093912983
the regulation term lambda/alpha is 1.7372473864949367
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30296344913390655
the lambda is 0.5237063109947642
the regulation term lambda/alpha is 1.7286121890013593
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3222931503346653
the lambda is 0.5128381412783484
the regulation term lambda/alpha is 1.591216384046088
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30885990016475323
the lambda is 0.52750011226637
the regulation term lambda/alpha is 1.7078944595429475
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3085057159414066
the lambda is 0.4873743396274615
the regulation term lambda/alpha is 1.5797903067702863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31686773672637997
the lambda is 0.5190041840287971
the regulation term lambda/alpha is 1.6379205702376856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31634495006933877
the lambda is 0.525327616905208
the regulation term lambda/alpha is 1.660616415055979
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29655841699232194
the lambda is 0.5152580860838641
the regulation term lambda/alpha is 1.7374589846735136
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32282455563409757
the lambda is 0.522358191729641
the regulation term lambda/alpha is 1.6180869224883345
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2969237664007892
the lambda is 0.5514099339911911
the regulation term lambda/alpha is 1.8570757763017702
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33155440622029475
the lambda is 0.5352917561823304
the regulation term lambda/alpha is 1.6144914564237955
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33064674782632336
the lambda is 0.5034395068583469
the regulation term lambda/alpha is 1.522590227086659
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3030946933811964
the lambda is 0.5339471963130876
the regulation term lambda/alpha is 1.761651417768481
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3489127139910772
the lambda is 0.5266197667579702
the regulation term lambda/alpha is 1.5093166446535322
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.38237987758876024
the lambda is 0.5326741117812639
the regulation term lambda/alpha is 1.393049537910416
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33573267262831313
the lambda is 0.519177063881695
the regulation term lambda/alpha is 1.5464001755243872
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33610186999476854
the lambda is 0.5174629101892987
the regulation term lambda/alpha is 1.5396014017933106
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35103433921707045
the lambda is 0.5115501612743445
the regulation term lambda/alpha is 1.4572652989313826
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3014817305294774
the lambda is 0.5144373199266759
the regulation term lambda/alpha is 1.7063631651018956
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31427649565114024
the lambda is 0.5200179399807223
the regulation term lambda/alpha is 1.6546510705591024
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3319518580882246
the lambda is 0.5352029207990124
the regulation term lambda/alpha is 1.6122907818059833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33204195784019624
the lambda is 0.5042757747530483
the regulation term lambda/alpha is 1.5187110027695476
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3468907662856579
the lambda is 0.5591095540362011
the regulation term lambda/alpha is 1.6117741040584086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32938419123516266
the lambda is 0.514174282380829
the regulation term lambda/alpha is 1.5610168795676538
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31830461272340993
the lambda is 0.5368122887855278
the regulation term lambda/alpha is 1.6864734827201189
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31817745750495163
the lambda is 0.5743740450560382
the regulation term lambda/alpha is 1.8052003104182812
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29224182131334386
the lambda is 0.5204946511850589
the regulation term lambda/alpha is 1.7810409504222897
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3181768987723091
the lambda is 0.5472214274098106
the regulation term lambda/alpha is 1.719865362700038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29356380883991195
the lambda is 0.4955804294887552
the regulation term lambda/alpha is 1.6881523354229546
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3102719916312929
the lambda is 0.5244167430175333
the regulation term lambda/alpha is 1.6901839584693037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3086149428582104
the lambda is 0.4892159302306887
the regulation term lambda/alpha is 1.5851984537749793
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3090542818034132
the lambda is 0.5292147363976939
the regulation term lambda/alpha is 1.7123682393577802
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.359061562078681
the lambda is 0.5426049134089656
the regulation term lambda/alpha is 1.5111751596793443
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30089573043352164
the lambda is 0.5373009490869836
the regulation term lambda/alpha is 1.7856715624141835
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32160205359255745
the lambda is 0.5422426608453026
the regulation term lambda/alpha is 1.6860671590495442
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32617016410449473
the lambda is 0.49768149140849044
the regulation term lambda/alpha is 1.5258338934061695
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3348575021523105
the lambda is 0.5216287219940252
the regulation term lambda/alpha is 1.5577632833107662
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28869308809449823
the lambda is 0.5007229271025141
the regulation term lambda/alpha is 1.734447230474087
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33424834980689366
the lambda is 0.5569251332109996
the regulation term lambda/alpha is 1.6662015939128905
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31850615805739535
the lambda is 0.49909019667707333
the regulation term lambda/alpha is 1.566971890656935
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.339378236055246
the lambda is 0.5269805279938224
the regulation term lambda/alpha is 1.552782329589448
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.318975546871308
the lambda is 0.4995079614131194
the regulation term lambda/alpha is 1.565975719181533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3148595170062246
the lambda is 0.5174354127166512
the regulation term lambda/alpha is 1.6433850170278377
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3111746443702044
the lambda is 0.5129466174292381
the regulation term lambda/alpha is 1.6484203540021904
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3178574726213092
the lambda is 0.5650209808562231
the regulation term lambda/alpha is 1.7775922528943686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.338700993348705
the lambda is 0.5268892886038185
the regulation term lambda/alpha is 1.5556177836814513
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.307954944421669
the lambda is 0.5327135644712118
the regulation term lambda/alpha is 1.7298425439202911
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3014263731207095
the lambda is 0.48797573214647644
the regulation term lambda/alpha is 1.6188886430022538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30994480940966046
the lambda is 0.49098203169072097
the regulation term lambda/alpha is 1.5840950284854742
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3272596319898711
the lambda is 0.5340093008124616
the regulation term lambda/alpha is 1.6317603780382832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30544336258846916
the lambda is 0.5160983712968517
the regulation term lambda/alpha is 1.6896696229480777
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30942514044161507
the lambda is 0.4978746846462351
the regulation term lambda/alpha is 1.6090311341077932
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34066266699298375
the lambda is 0.5278262617022019
the regulation term lambda/alpha is 1.549410348839525
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31915583117910495
the lambda is 0.5293172120922912
the regulation term lambda/alpha is 1.658491433907868
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32780910780510053
the lambda is 0.5148491917358504
the regulation term lambda/alpha is 1.570576227070405
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30135132197885056
the lambda is 0.5251668840541092
the regulation term lambda/alpha is 1.7427064218784691
1780
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34309184827073036
the lambda is 0.5122674399591154
the regulation term lambda/alpha is 1.4930912597925972
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080894032207811
the lambda is 0.5020188900379122
the regulation term lambda/alpha is 1.6294584779281052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2923588992541352
the lambda is 0.49316003344969533
the regulation term lambda/alpha is 1.6868309283823517
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28714680579554014
the lambda is 0.48392673322371704
the regulation term lambda/alpha is 1.6852938060132627
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3132132382080657
the lambda is 0.5168262284068177
the regulation term lambda/alpha is 1.6500778554688456
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3083976812880942
the lambda is 0.5068157885757483
the regulation term lambda/alpha is 1.6433839141037474
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30376006730260774
the lambda is 0.5207299869710558
the regulation term lambda/alpha is 1.7142805886077883
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31294832944876744
the lambda is 0.4860689319285137
the regulation term lambda/alpha is 1.5531922882754603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33704962067091526
the lambda is 0.5336632063302116
the regulation term lambda/alpha is 1.5833372109065913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.281883860310402
the lambda is 0.525892188566329
the regulation term lambda/alpha is 1.865634265073681
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3276281159946166
the lambda is 0.5608435383854643
the regulation term lambda/alpha is 1.711829696553515
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30828216348455995
the lambda is 0.5021782328273939
the regulation term lambda/alpha is 1.628956496059316
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32136400036232654
the lambda is 0.5032458729032849
the regulation term lambda/alpha is 1.565968410699061
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3389475140855727
the lambda is 0.5369867414607316
the regulation term lambda/alpha is 1.5842769725260786
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3015486497229556
the lambda is 0.5137115184030886
the regulation term lambda/alpha is 1.703577578195277
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3457185782518704
the lambda is 0.5484290931870829
the regulation term lambda/alpha is 1.5863454488336157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29322240695111107
the lambda is 0.5103860302764172
the regulation term lambda/alpha is 1.740610601977337
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28342269503079065
the lambda is 0.5086256940163434
the regulation term lambda/alpha is 1.7945835070162148
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3171715271308264
the lambda is 0.5141021982091543
the regulation term lambda/alpha is 1.6208964368894885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31501711695096146
the lambda is 0.5255004916260069
the regulation term lambda/alpha is 1.6681648816810524
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29220589413047643
the lambda is 0.5119686934717932
the regulation term lambda/alpha is 1.752082020779457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3306187271360206
the lambda is 0.5429307482731006
the regulation term lambda/alpha is 1.642165744742379
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.299526973031354
the lambda is 0.5009162082553814
the regulation term lambda/alpha is 1.6723575949967828
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.287579503156328
the lambda is 0.5186406055914897
the regulation term lambda/alpha is 1.8034686057217264
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32086357578169095
the lambda is 0.5262871253696733
the regulation term lambda/alpha is 1.6402208449105744
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33752784593220064
the lambda is 0.5191618214176474
the regulation term lambda/alpha is 1.5381303429463764
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30702257407865857
the lambda is 0.5183605993491991
the regulation term lambda/alpha is 1.6883468614799515
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2922290769073289
the lambda is 0.47474160039366253
the regulation term lambda/alpha is 1.6245529206671367
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3157638866252042
the lambda is 0.5673055510934655
the regulation term lambda/alpha is 1.7966131502771516
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30296073190807676
the lambda is 0.5120958853511471
the regulation term lambda/alpha is 1.6903044897136221
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.37268167008092973
the lambda is 0.5642032719227391
the regulation term lambda/alpha is 1.5139013190539248
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2983062282992479
the lambda is 0.5457868757215338
the regulation term lambda/alpha is 1.829619444532764
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32912501126699867
the lambda is 0.5551155229869574
the regulation term lambda/alpha is 1.6866403463230775
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33057143199604966
the lambda is 0.5362244074001695
the regulation term lambda/alpha is 1.6221135751578721
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31636992754205534
the lambda is 0.5189457312346961
the regulation term lambda/alpha is 1.6403130830622712
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33194668967767466
the lambda is 0.5111543911547854
the regulation term lambda/alpha is 1.5398689218775587
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31077272907683096
the lambda is 0.5299585843583159
the regulation term lambda/alpha is 1.7052930800350137
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3105322314293887
the lambda is 0.524668330196689
the regulation term lambda/alpha is 1.6895776898315056
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146602253167934
the lambda is 0.516688557908802
the regulation term lambda/alpha is 1.6420523356220529
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35328794499309096
the lambda is 0.5406493661412723
the regulation term lambda/alpha is 1.5303362987713762
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3186873051215037
the lambda is 0.5239152744226211
the regulation term lambda/alpha is 1.6439791168426732
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3078796822103569
the lambda is 0.4889178306785882
the regulation term lambda/alpha is 1.5880159001350993
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32473319557400004
the lambda is 0.5363071580905628
the regulation term lambda/alpha is 1.6515316740026642
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3018828364251061
the lambda is 0.4775594883794557
the regulation term lambda/alpha is 1.581936535494071
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3236965518183678
the lambda is 0.4882227966153952
the regulation term lambda/alpha is 1.5082730843835066
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30048579099677764
the lambda is 0.5281748634470569
the regulation term lambda/alpha is 1.75773656948964
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29847932061615323
the lambda is 0.5486905389930429
the regulation term lambda/alpha is 1.8382866118174506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3268251952101917
the lambda is 0.531782701145535
the regulation term lambda/alpha is 1.6271166022054346
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33945631268753196
the lambda is 0.5216501572422224
the regulation term lambda/alpha is 1.5367225111008587
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.299992084450219
the lambda is 0.5041242480179617
the regulation term lambda/alpha is 1.6804584992362244
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3120523085278598
the lambda is 0.5065641976886396
the regulation term lambda/alpha is 1.6233310372815712
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3429424632119228
the lambda is 0.5394394344478707
the regulation term lambda/alpha is 1.5729735810363086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33345741758508807
the lambda is 0.5123499668012966
the regulation term lambda/alpha is 1.5364779422564823
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29984755620113607
the lambda is 0.5036685768470484
the regulation term lambda/alpha is 1.6797488137911996
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33167117521595496
the lambda is 0.4748938787576064
the regulation term lambda/alpha is 1.4318213768452972
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3157733695980817
the lambda is 0.5185035928153793
the regulation term lambda/alpha is 1.642011780395965
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32839309830190483
the lambda is 0.5175842497355405
the regulation term lambda/alpha is 1.5761118379525283
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3372235863274271
the lambda is 0.5750887459009665
the regulation term lambda/alpha is 1.7053633530324426
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3126226442005798
the lambda is 0.5147633100494072
the regulation term lambda/alpha is 1.6465963665739238
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30074107147899387
the lambda is 0.480885371432652
the regulation term lambda/alpha is 1.5990013238555638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30366207964008496
the lambda is 0.4871802734492201
the regulation term lambda/alpha is 1.604350052619839
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30335552320016507
the lambda is 0.5262177247820519
the regulation term lambda/alpha is 1.734656812016685
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3442214453704241
the lambda is 0.5210338235802959
the regulation term lambda/alpha is 1.5136588105938613
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3094826775650287
the lambda is 0.49896124814412257
the regulation term lambda/alpha is 1.6122428953694203
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33340335247018515
the lambda is 0.50028206552933
the regulation term lambda/alpha is 1.500530998931896
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3040372711023869
the lambda is 0.5292465374836014
the regulation term lambda/alpha is 1.7407291400973455
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29414185577396257
the lambda is 0.4796013478185678
the regulation term lambda/alpha is 1.6305103758749797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34332836559017765
the lambda is 0.5206045807376279
the regulation term lambda/alpha is 1.5163459618103923
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3132200691970008
the lambda is 0.5246909570269525
the regulation term lambda/alpha is 1.6751511433226405
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3593645416084588
the lambda is 0.548219741099938
the regulation term lambda/alpha is 1.5255254139604124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3235344440104288
the lambda is 0.5276562035678919
the regulation term lambda/alpha is 1.630911988928398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30833826519448265
the lambda is 0.5207813352703148
the regulation term lambda/alpha is 1.688993530990501
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3195526813283374
the lambda is 0.5294283407855291
the regulation term lambda/alpha is 1.6567795287611635
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29259143728808557
the lambda is 0.4491042998044689
the regulation term lambda/alpha is 1.5349194903550125
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32970036714064127
the lambda is 0.5533857675111862
the regulation term lambda/alpha is 1.6784505650099162
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34220752478142685
the lambda is 0.5293752332246257
the regulation term lambda/alpha is 1.5469421181277228
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3113277016461633
the lambda is 0.5317369016018189
the regulation term lambda/alpha is 1.7079652687191955
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161117875147315
the lambda is 0.5205297961878838
the regulation term lambda/alpha is 1.6466636700905242
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30549191096400014
the lambda is 0.5199844811359701
the regulation term lambda/alpha is 1.7021219301523378
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3305946148484012
the lambda is 0.49976210394029946
the regulation term lambda/alpha is 1.5117067293109792
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33061233950978547
the lambda is 0.5293423840680733
the regulation term lambda/alpha is 1.6010968763384763
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3519152973486952
the lambda is 0.5264274525626151
the regulation term lambda/alpha is 1.4958924960883544
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31979670505150387
the lambda is 0.5065789491697835
the regulation term lambda/alpha is 1.5840655678056408
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3295915605404233
the lambda is 0.550518770724048
the regulation term lambda/alpha is 1.6703060291391432
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35964720776546866
the lambda is 0.5413527273582615
the regulation term lambda/alpha is 1.505232671544292
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3309003072774226
the lambda is 0.5245409817942036
the regulation term lambda/alpha is 1.5851933958901863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30268782180552634
the lambda is 0.5185347546401304
the regulation term lambda/alpha is 1.7131008163694257
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2939211669532295
the lambda is 0.4864155057529145
the regulation term lambda/alpha is 1.6549182585081252
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3289821828867467
the lambda is 0.5002971054598361
the regulation term lambda/alpha is 1.5207422513579258
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30083918672421905
the lambda is 0.5085740483684686
the regulation term lambda/alpha is 1.6905179604633132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32605926393091095
the lambda is 0.5052726138919801
the regulation term lambda/alpha is 1.5496342836590677
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32640023219662606
the lambda is 0.5301762066567203
the regulation term lambda/alpha is 1.6243132031148126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3083613808062756
the lambda is 0.50171056266588
the regulation term lambda/alpha is 1.6270213907917144
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30479443400211387
the lambda is 0.5172196695421108
the regulation term lambda/alpha is 1.6969459144996188
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33099439086665144
the lambda is 0.5151152103737353
the regulation term lambda/alpha is 1.5562656787778046
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32631929794813835
the lambda is 0.5213195785891256
the regulation term lambda/alpha is 1.5975750801963862
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32589775655434444
the lambda is 0.5444188351019323
the regulation term lambda/alpha is 1.670520352327583
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32282917601334166
the lambda is 0.5061929594908255
the regulation term lambda/alpha is 1.5679901232653952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31907784001783573
the lambda is 0.5050751075007777
the regulation term lambda/alpha is 1.582921294291528
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3116825252059198
the lambda is 0.4881090662353643
the regulation term lambda/alpha is 1.566045661086981
1790
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32328112891733096
the lambda is 0.541566103527089
the regulation term lambda/alpha is 1.675217187408355
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3007750194093988
the lambda is 0.5375548124822157
the regulation term lambda/alpha is 1.7872322426834422
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31586094210114635
the lambda is 0.5216566220605957
the regulation term lambda/alpha is 1.6515388657757772
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34225058944858616
the lambda is 0.5191606663271248
the regulation term lambda/alpha is 1.51690218317393
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3103156712703671
the lambda is 0.5016454259696165
the regulation term lambda/alpha is 1.6165649124840702
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3423148819370918
the lambda is 0.519763565309055
the regulation term lambda/alpha is 1.518378524380291
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33503444382477005
the lambda is 0.5229151917223415
the regulation term lambda/alpha is 1.560780395450436
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34132063164866105
the lambda is 0.5129074747345832
the regulation term lambda/alpha is 1.5027145363499308
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32160261256787975
the lambda is 0.5280828409444631
the regulation term lambda/alpha is 1.642035295447117
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3061961578673444
the lambda is 0.5147500618180192
the regulation term lambda/alpha is 1.681112086458734
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3221189946107093
the lambda is 0.5060244447931513
the regulation term lambda/alpha is 1.5709239543749893
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3425070763023487
the lambda is 0.554285618090057
the regulation term lambda/alpha is 1.6183187339486103
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30024585212536486
the lambda is 0.48481301768136503
the regulation term lambda/alpha is 1.6147201176952009
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33281092705630266
the lambda is 0.5246660540862955
the regulation term lambda/alpha is 1.5764688339020074
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31453161882700514
the lambda is 0.551697778395776
the regulation term lambda/alpha is 1.754029628096672
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33473958630755146
the lambda is 0.49312987637073663
the regulation term lambda/alpha is 1.4731746603691491
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224640957114676
the lambda is 0.5493241631754551
the regulation term lambda/alpha is 1.7035203933742002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30443082420926504
the lambda is 0.494455379564147
the regulation term lambda/alpha is 1.6241961728036431
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3308409113370866
the lambda is 0.5180436730312407
the regulation term lambda/alpha is 1.5658392154028897
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32724258532415684
the lambda is 0.5337294242374775
the regulation term lambda/alpha is 1.6309901222323522
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32371549144854955
the lambda is 0.5020012962389668
the regulation term lambda/alpha is 1.5507484488698111
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3411681107333319
the lambda is 0.5221893333915661
the regulation term lambda/alpha is 1.5305924468413354
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30470177316389974
the lambda is 0.4806441602533483
the regulation term lambda/alpha is 1.5774248874974834
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3082524467303928
the lambda is 0.4967605752463968
the regulation term lambda/alpha is 1.6115381419206676
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.322727193870473
the lambda is 0.5255073653056234
the regulation term lambda/alpha is 1.62833307910376
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3266276514222171
the lambda is 0.5087206973450208
the regulation term lambda/alpha is 1.5574942756068746
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3439004102193493
the lambda is 0.5538599814742059
the regulation term lambda/alpha is 1.6105243408140704
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3451256723003746
the lambda is 0.5367605347132404
the regulation term lambda/alpha is 1.5552611057171064
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29950579691981793
the lambda is 0.47137611137865926
the regulation term lambda/alpha is 1.5738463703420522
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3141034005506996
the lambda is 0.5104959428694605
the regulation term lambda/alpha is 1.6252480615441829
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32659283040450576
the lambda is 0.5193796113346965
the regulation term lambda/alpha is 1.5902970395627245
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3109242580582301
the lambda is 0.5443069800853949
the regulation term lambda/alpha is 1.7506095648010094
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2976655833160662
the lambda is 0.5176453430669562
the regulation term lambda/alpha is 1.7390164401952775
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3314104799453975
the lambda is 0.5124362213138169
the regulation term lambda/alpha is 1.5462281741912471
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30622837754200966
the lambda is 0.5313633521877196
the regulation term lambda/alpha is 1.7351865181561268
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.296939913365757
the lambda is 0.5318771425904397
the regulation term lambda/alpha is 1.791194509898364
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31088113763931297
the lambda is 0.5225188430103916
the regulation term lambda/alpha is 1.6807672764522066
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30287996620089624
the lambda is 0.4933792583985769
the regulation term lambda/alpha is 1.6289596984150645
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31890006234756335
the lambda is 0.4900602018906745
the regulation term lambda/alpha is 1.536720307556939
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3062795954321365
the lambda is 0.5161983419494861
the regulation term lambda/alpha is 1.685382734103363
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29956470746592906
the lambda is 0.5079279728281256
the regulation term lambda/alpha is 1.695553448618091
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33574866212884047
the lambda is 0.5210278053042099
the regulation term lambda/alpha is 1.5518388129995593
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3367741754123769
the lambda is 0.502255426823195
the regulation term lambda/alpha is 1.4913715584283973
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34112781205619863
the lambda is 0.5166300488896197
the regulation term lambda/alpha is 1.5144764825112185
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3530679684694572
the lambda is 0.5543807902773299
the regulation term lambda/alpha is 1.5701814941767724
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3070096227452414
the lambda is 0.5183541679241463
the regulation term lambda/alpha is 1.688397136510213
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3150825507766572
the lambda is 0.5518243983974009
the regulation term lambda/alpha is 1.7513645139573457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32443303913663635
the lambda is 0.5077810147025346
the regulation term lambda/alpha is 1.565133489652638
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29499488870355745
the lambda is 0.5105014618708271
the regulation term lambda/alpha is 1.7305434142075384
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2918543741766649
the lambda is 0.509950942558383
the regulation term lambda/alpha is 1.747278737887616
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3208253479481601
the lambda is 0.5159574585430343
the regulation term lambda/alpha is 1.6082191193521413
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3190601037015226
the lambda is 0.5113459360918975
the regulation term lambda/alpha is 1.6026633545203641
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3140837033505862
the lambda is 0.511792708076191
the regulation term lambda/alpha is 1.6294787109820794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31342017178231013
the lambda is 0.4836328488078913
the regulation term lambda/alpha is 1.5430814361999792
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29685686596670424
the lambda is 0.49385511493149464
the regulation term lambda/alpha is 1.663613584692651
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3514845861957854
the lambda is 0.5066056305697128
the regulation term lambda/alpha is 1.4413310013188494
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3028557467744234
the lambda is 0.5263440613902826
the regulation term lambda/alpha is 1.7379365159688398
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2846702700548983
the lambda is 0.5038172479520924
the regulation term lambda/alpha is 1.7698274142042716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3130212347565688
the lambda is 0.5115998096241833
the regulation term lambda/alpha is 1.6343933024928663
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33312007490388157
the lambda is 0.5150803551170904
the regulation term lambda/alpha is 1.5462303052907023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3100693673898517
the lambda is 0.5243419091171586
the regulation term lambda/alpha is 1.6910471148151214
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28706052664085296
the lambda is 0.5278564391189393
the regulation term lambda/alpha is 1.8388332429256316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30385293950869385
the lambda is 0.5332226255658984
the regulation term lambda/alpha is 1.7548707161697272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32283112628165256
the lambda is 0.5293550346547846
the regulation term lambda/alpha is 1.6397273731063688
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29663751010550865
the lambda is 0.5247792510597626
the regulation term lambda/alpha is 1.7690926911876657
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3303118956006406
the lambda is 0.5137490328939376
the regulation term lambda/alpha is 1.5553452350232015
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3171466627991496
the lambda is 0.513861750539251
the regulation term lambda/alpha is 1.6202653561096492
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2987631400310294
the lambda is 0.5125804514297572
the regulation term lambda/alpha is 1.7156750038727027
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3180193815601831
the lambda is 0.5153386237346591
the regulation term lambda/alpha is 1.6204629453916934
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3046340227642151
the lambda is 0.5429639070882565
the regulation term lambda/alpha is 1.7823482162677124
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3321829478764482
the lambda is 0.5368467451996006
the regulation term lambda/alpha is 1.6161177105312308
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3373602957502897
the lambda is 0.5262123419943736
the regulation term lambda/alpha is 1.5597933385257348
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3232283689434131
the lambda is 0.5517735408964594
the regulation term lambda/alpha is 1.7070702757314509
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.299304621956178
the lambda is 0.5352055708917243
the regulation term lambda/alpha is 1.7881634015330545
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34520100412924437
the lambda is 0.5342345247757557
the regulation term lambda/alpha is 1.547604202726295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29721066875142266
the lambda is 0.47256438363506564
the regulation term lambda/alpha is 1.5899980495999728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33619353050892997
the lambda is 0.5014670000778575
the regulation term lambda/alpha is 1.4916021712813343
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33964361699342266
the lambda is 0.533740833256522
the regulation term lambda/alpha is 1.571473175269059
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3248101209021864
the lambda is 0.5238206799467148
the regulation term lambda/alpha is 1.6126981465102146
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33369186240328214
the lambda is 0.4992837419423246
the regulation term lambda/alpha is 1.4962418871902756
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34181025068734516
the lambda is 0.5233977638179635
the regulation term lambda/alpha is 1.531252391540232
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2977952959989825
the lambda is 0.48412626878184484
the regulation term lambda/alpha is 1.625701531509413
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31543961391677405
the lambda is 0.539810567791047
the regulation term lambda/alpha is 1.7112960578675804
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3252496855599116
the lambda is 0.5441732456784907
the regulation term lambda/alpha is 1.6730938409416323
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2891063619358897
the lambda is 0.5066976668805223
the regulation term lambda/alpha is 1.7526340945512788
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3023237271499209
the lambda is 0.4843547149188181
the regulation term lambda/alpha is 1.6021061908866614
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.315239637668891
the lambda is 0.554616497209054
the regulation term lambda/alpha is 1.7593488601569522
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3002908195578967
the lambda is 0.531082771667107
the regulation term lambda/alpha is 1.7685614646794527
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32780097379337936
the lambda is 0.5217321562751756
the regulation term lambda/alpha is 1.5916125880822904
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29168810722033417
the lambda is 0.5022432656060314
the regulation term lambda/alpha is 1.7218503366222226
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3055590445924967
the lambda is 0.527735227455125
the regulation term lambda/alpha is 1.7271137503356497
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3228937360927555
the lambda is 0.5273903073264696
the regulation term lambda/alpha is 1.633324677363731
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2954440439274236
the lambda is 0.5224280299857305
the regulation term lambda/alpha is 1.7682807987629152
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3163794462660468
the lambda is 0.496487944069593
the regulation term lambda/alpha is 1.5692800209659987
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32289077257317145
the lambda is 0.49500710873629566
the regulation term lambda/alpha is 1.533048172270455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32965698367677004
the lambda is 0.48145959527650345
the regulation term lambda/alpha is 1.460486563659687
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3072988843177017
the lambda is 0.5028583516850558
the regulation term lambda/alpha is 1.636381963447594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3034319925566228
the lambda is 0.5124863805421083
the regulation term lambda/alpha is 1.6889662036756863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3093354674043026
the lambda is 0.49673583214723555
the regulation term lambda/alpha is 1.605815965157335
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2982524582704251
the lambda is 0.5218972798731611
the regulation term lambda/alpha is 1.7498507234430154
1800
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3292839260455547
the lambda is 0.49563627609092353
the regulation term lambda/alpha is 1.5051942621163807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30628659791293344
the lambda is 0.5386162122513515
the regulation term lambda/alpha is 1.758536664423238
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31725853782763375
the lambda is 0.5092971239472667
the regulation term lambda/alpha is 1.605306282486769
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3224664104822003
the lambda is 0.5078074739433408
the regulation term lambda/alpha is 1.5747608353502327
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29261827079970804
the lambda is 0.5230244081770574
the regulation term lambda/alpha is 1.787394911287198
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3010819361413492
the lambda is 0.5105672094980045
the regulation term lambda/alpha is 1.695774964255272
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31696856241827776
the lambda is 0.49122932553437965
the regulation term lambda/alpha is 1.5497730178242222
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3152373756210056
the lambda is 0.5125490848575609
the regulation term lambda/alpha is 1.625914705855734
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3048401122601416
the lambda is 0.5365633312058403
the regulation term lambda/alpha is 1.7601467445594985
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31774065048360367
the lambda is 0.4926561229203113
the regulation term lambda/alpha is 1.5504976217883515
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34927794126166195
the lambda is 0.5267557733750067
the regulation term lambda/alpha is 1.5081278006628738
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3275794463923119
the lambda is 0.5235380604928884
the regulation term lambda/alpha is 1.598201798857352
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3242986007143303
the lambda is 0.5099969546009551
the regulation term lambda/alpha is 1.572615341162707
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30763889480502127
the lambda is 0.5117775566381604
the regulation term lambda/alpha is 1.6635658406019185
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31604987856967104
the lambda is 0.5127989778456968
the regulation term lambda/alpha is 1.6225254702404632
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3004726675802561
the lambda is 0.5123336269718318
the regulation term lambda/alpha is 1.7050922837598457
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31847089820517316
the lambda is 0.5190316063710295
the regulation term lambda/alpha is 1.6297614924822619
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31725900215012903
the lambda is 0.5254969771832902
the regulation term lambda/alpha is 1.6563658513135637
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28361875048451923
the lambda is 0.5299313663102676
the regulation term lambda/alpha is 1.868463793049511
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3189349206692103
the lambda is 0.5315565170524389
the regulation term lambda/alpha is 1.6666613863953559
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32487778783410837
the lambda is 0.5168156860542228
the regulation term lambda/alpha is 1.5908003114024012
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3038030983660613
the lambda is 0.5489099597749094
the regulation term lambda/alpha is 1.8067951338452501
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32973144126365045
the lambda is 0.5079331946552778
the regulation term lambda/alpha is 1.5404451353158606
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30351810914398075
the lambda is 0.4697821417010907
the regulation term lambda/alpha is 1.547789497720674
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30583856720105357
the lambda is 0.5013831590028611
the regulation term lambda/alpha is 1.6393719196090124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32132507353928247
the lambda is 0.5450501327246682
the regulation term lambda/alpha is 1.696257707875495
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32168486065844354
the lambda is 0.5046836165059645
the regulation term lambda/alpha is 1.5688758727188725
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.36261715513764403
the lambda is 0.5731363843451621
the regulation term lambda/alpha is 1.5805550736495304
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2958210488969613
the lambda is 0.49705929724776904
the regulation term lambda/alpha is 1.680270214378497
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31042221062734016
the lambda is 0.5642419897746397
the regulation term lambda/alpha is 1.8176598531218133
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33070465561021717
the lambda is 0.49474603207772494
the regulation term lambda/alpha is 1.496035884843587
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3104740450377487
the lambda is 0.5182814464982107
the regulation term lambda/alpha is 1.6693229427123157
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3043337002909234
the lambda is 0.5071047498123917
the regulation term lambda/alpha is 1.6662786583530917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35903461935851977
the lambda is 0.5413277254989148
the regulation term lambda/alpha is 1.507731278020194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30154748559918326
the lambda is 0.49192123058085485
the regulation term lambda/alpha is 1.6313226077922476
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30181262862828095
the lambda is 0.4744561946129236
the regulation term lambda/alpha is 1.57202233971884
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31860592899580703
the lambda is 0.5365998274258169
the regulation term lambda/alpha is 1.684211681549965
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29151505556397705
the lambda is 0.52900653897415
the regulation term lambda/alpha is 1.8146799929448312
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3374914559078091
the lambda is 0.5299600840828346
the regulation term lambda/alpha is 1.5702918542257887
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30084546038885807
the lambda is 0.5203663149829184
the regulation term lambda/alpha is 1.7296797974292797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3095216549260592
the lambda is 0.5047355311872707
the regulation term lambda/alpha is 1.630695375119539
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34270453355745567
the lambda is 0.5196135084437405
the regulation term lambda/alpha is 1.5162142824603908
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31774123376379937
the lambda is 0.5264871193148577
the regulation term lambda/alpha is 1.6569681972917454
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32843369454019844
the lambda is 0.518479523068873
the regulation term lambda/alpha is 1.5786429093237084
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31127771261896764
the lambda is 0.4873542515657428
the regulation term lambda/alpha is 1.5656573914827911
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3115127162089839
the lambda is 0.4898450229051999
the regulation term lambda/alpha is 1.5724719968624925
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34201333768015457
the lambda is 0.528787456681289
the regulation term lambda/alpha is 1.54610185751236
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31853655211690046
the lambda is 0.5231568314277768
the regulation term lambda/alpha is 1.6423761353321307
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3259411198854862
the lambda is 0.5237670305246258
the regulation term lambda/alpha is 1.6069375680756155
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31997157715635255
the lambda is 0.4860612699410291
the regulation term lambda/alpha is 1.519076395037168
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3043185289573802
the lambda is 0.5065312708289106
the regulation term lambda/alpha is 1.6644772586287384
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3059777277127047
the lambda is 0.49144842179954606
the regulation term lambda/alpha is 1.60615749869542
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33417346169383955
the lambda is 0.5372184595801371
the regulation term lambda/alpha is 1.6076035986134705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31654488249134927
the lambda is 0.4793602534767903
the regulation term lambda/alpha is 1.51435161328154
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34150411979811823
the lambda is 0.5134632469434928
the regulation term lambda/alpha is 1.50353456130201
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3002586684336185
the lambda is 0.4919518127979225
the regulation term lambda/alpha is 1.6384266784513626
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3121753177111755
the lambda is 0.5144737843143807
the regulation term lambda/alpha is 1.6480283838146732
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2881293697654173
the lambda is 0.502522101994482
the regulation term lambda/alpha is 1.744084965734712
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33058625592681556
the lambda is 0.5187973470598102
the regulation term lambda/alpha is 1.5693252147017884
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31352594093576697
the lambda is 0.4967178332684162
the regulation term lambda/alpha is 1.5842958059096626
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3094451871205835
the lambda is 0.5069106097537749
the regulation term lambda/alpha is 1.638127302837138
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33252857023953003
the lambda is 0.5504097182240919
the regulation term lambda/alpha is 1.6552253474870315
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2927144134295434
the lambda is 0.5046135963881712
the regulation term lambda/alpha is 1.7239109973299351
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34389379877628534
the lambda is 0.5340203031704278
the regulation term lambda/alpha is 1.5528640093851365
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32165773788147645
the lambda is 0.5242141724672409
the regulation term lambda/alpha is 1.6297266029409243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2976411452703773
the lambda is 0.5133116750103358
the regulation term lambda/alpha is 1.7245991798077625
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33613620590136634
the lambda is 0.5115132958389081
the regulation term lambda/alpha is 1.5217441229434336
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3014851354477472
the lambda is 0.5348251137524531
the regulation term lambda/alpha is 1.773968434490688
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3188023222921318
the lambda is 0.5410460338704925
the regulation term lambda/alpha is 1.6971207423473835
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080941175127066
the lambda is 0.5292898187539098
the regulation term lambda/alpha is 1.7179484731060486
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29500460319056315
the lambda is 0.4698506064839091
the regulation term lambda/alpha is 1.5926890679071921
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32754973125712905
the lambda is 0.5069098684758235
the regulation term lambda/alpha is 1.5475813902527533
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30259211947586684
the lambda is 0.4835257778979003
the regulation term lambda/alpha is 1.5979457057091793
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30488715278071243
the lambda is 0.47209922392518433
the regulation term lambda/alpha is 1.5484392163442118
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3350771565891484
the lambda is 0.5454880518629446
the regulation term lambda/alpha is 1.6279475969523922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30325510924101556
the lambda is 0.4999720350513058
the regulation term lambda/alpha is 1.648684621679192
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3369599702751832
the lambda is 0.5536900501070491
the regulation term lambda/alpha is 1.6431923639323394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28228991466437037
the lambda is 0.5192730489500862
the regulation term lambda/alpha is 1.8395026601197488
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34979729152335554
the lambda is 0.5118540660784167
the regulation term lambda/alpha is 1.4632876768408047
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2874860741908808
the lambda is 0.4939253944983991
the regulation term lambda/alpha is 1.7180845920573173
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34399042827746973
the lambda is 0.5742074171643619
the regulation term lambda/alpha is 1.669254054654086
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31240057956294653
the lambda is 0.5018521843328027
the regulation term lambda/alpha is 1.6064380707452655
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33287048332381647
the lambda is 0.5458088911962841
the regulation term lambda/alpha is 1.6397034839082476
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31756844279564433
the lambda is 0.5021844230684208
the regulation term lambda/alpha is 1.5813423356790433
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3532147394424444
the lambda is 0.535040504730616
the regulation term lambda/alpha is 1.514774002849334
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28950199918869013
the lambda is 0.48214606148824424
the regulation term lambda/alpha is 1.6654325802219885
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30158871355778605
the lambda is 0.47356566868636235
the regulation term lambda/alpha is 1.5702367077991617
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32841442300732476
the lambda is 0.49585275006914364
the regulation term lambda/alpha is 1.509838531233095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3266111897992388
the lambda is 0.5194129658393621
the regulation term lambda/alpha is 1.5903097691130381
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.314805870526596
the lambda is 0.5346655367972586
the regulation term lambda/alpha is 1.6983976058098575
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2986239796657089
the lambda is 0.5248160762635843
the regulation term lambda/alpha is 1.7574478675526441
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3287899655584478
the lambda is 0.5359721668135137
the regulation term lambda/alpha is 1.6301354145743716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3289899718208864
the lambda is 0.5137369533502203
the regulation term lambda/alpha is 1.5615580940257856
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3250443595726564
the lambda is 0.5083884079078133
the regulation term lambda/alpha is 1.564058544428224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.345748452624724
the lambda is 0.4814129415694566
the regulation term lambda/alpha is 1.3923791644325394
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3290628987696498
the lambda is 0.49724497824154423
the regulation term lambda/alpha is 1.5110940191091706
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29594896598914894
the lambda is 0.5234320262926081
the regulation term lambda/alpha is 1.7686563781128395
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3498176315747543
the lambda is 0.5289777025985466
the regulation term lambda/alpha is 1.5121527757685553
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3241644735289407
the lambda is 0.5344632782312272
the regulation term lambda/alpha is 1.6487410616373774
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2975391044522137
the lambda is 0.5279617122972722
the regulation term lambda/alpha is 1.774427980716281
1810
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2932889655832775
the lambda is 0.5283032377278793
the regulation term lambda/alpha is 1.8013062191999551
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3204494574127914
the lambda is 0.5397964459701243
the regulation term lambda/alpha is 1.6844979246595448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3325664247794141
the lambda is 0.542879011813971
the regulation term lambda/alpha is 1.6323927232704079
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047631674152875
the lambda is 0.5156513186734363
the regulation term lambda/alpha is 1.6919738794116834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3101907870750065
the lambda is 0.5484673097391642
the regulation term lambda/alpha is 1.7681611852854309
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2919956283513127
the lambda is 0.5258599658565797
the regulation term lambda/alpha is 1.800917256281298
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3112638180955869
the lambda is 0.48114985539384114
the regulation term lambda/alpha is 1.5457943629223345
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3067230010414777
the lambda is 0.5093355213379767
the regulation term lambda/alpha is 1.6605716545825657
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3207235390689016
the lambda is 0.5411656895156962
the regulation term lambda/alpha is 1.6873276314135353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3048453644841407
the lambda is 0.48954282511449776
the regulation term lambda/alpha is 1.6058726231343623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3492946264447713
the lambda is 0.5095221848246793
the regulation term lambda/alpha is 1.4587175016425349
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30439214243708507
the lambda is 0.494039229254126
the regulation term lambda/alpha is 1.6230354216723555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3213317689858573
the lambda is 0.5130968559968634
the regulation term lambda/alpha is 1.5967822217399432
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3356987090836987
the lambda is 0.5251859681695034
the regulation term lambda/alpha is 1.5644563233591715
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3297158644130594
the lambda is 0.5356200889770695
the regulation term lambda/alpha is 1.6244898920182338
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3309910538684746
the lambda is 0.5145116061659419
the regulation term lambda/alpha is 1.55445774184094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3110602684535261
the lambda is 0.5300114093711966
the regulation term lambda/alpha is 1.7038865555096854
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31076573102287597
the lambda is 0.5104731345316703
the regulation term lambda/alpha is 1.642630070089979
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32732340233836954
the lambda is 0.5168936714369886
the regulation term lambda/alpha is 1.5791528126139034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35530733519153923
the lambda is 0.5319152546021189
the regulation term lambda/alpha is 1.4970567785080309
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2800675085542505
the lambda is 0.48140857662044373
the regulation term lambda/alpha is 1.7189019144189388
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3328263791326453
the lambda is 0.5123583591329507
the regulation term lambda/alpha is 1.539416318106067
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3340806285649223
the lambda is 0.5119297705659995
the regulation term lambda/alpha is 1.5323539492997438
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3433420089465115
the lambda is 0.5220104471014063
the regulation term lambda/alpha is 1.5203803598141385
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32787503225968834
the lambda is 0.5483355428001152
the regulation term lambda/alpha is 1.6723918836424683
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2911855433582514
the lambda is 0.4986839409729217
the regulation term lambda/alpha is 1.7125985556205336
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30970752603849694
the lambda is 0.5172009825939211
the regulation term lambda/alpha is 1.669965819718674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2934036838015906
the lambda is 0.5107947826821131
the regulation term lambda/alpha is 1.7409283212256108
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31117284522072564
the lambda is 0.5146297090390916
the regulation term lambda/alpha is 1.6538387489244022
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3074995052353509
the lambda is 0.5302087390230651
the regulation term lambda/alpha is 1.7242588361801077
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3184956466075435
the lambda is 0.5171698696007884
the regulation term lambda/alpha is 1.6237894461334823
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32754063863772054
the lambda is 0.5381668930472279
the regulation term lambda/alpha is 1.643053806347592
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34821907903270394
the lambda is 0.5264156798921162
the regulation term lambda/alpha is 1.511737040240338
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32840426764321723
the lambda is 0.5314990546917311
the regulation term lambda/alpha is 1.6184291955339591
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.281962110890358
the lambda is 0.5004546660363184
the regulation term lambda/alpha is 1.7749004093352174
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3023567519114494
the lambda is 0.5141523803790389
the regulation term lambda/alpha is 1.700482549599612
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32360822140746337
the lambda is 0.522775848066175
the regulation term lambda/alpha is 1.6154591060526076
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2981705021352358
the lambda is 0.5151006122667654
the regulation term lambda/alpha is 1.7275371258325898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.362335073261249
the lambda is 0.5225203267776463
the regulation term lambda/alpha is 1.4420914930333044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30050480955600145
the lambda is 0.5215648097878504
the regulation term lambda/alpha is 1.7356288259028767
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35523627863742707
the lambda is 0.5246707642087636
the regulation term lambda/alpha is 1.4769627871940139
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3240928255308072
the lambda is 0.5150135014817585
the regulation term lambda/alpha is 1.5890925713590134
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32773468290723345
the lambda is 0.5441978041698579
the regulation term lambda/alpha is 1.6604828007290737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3248338583222572
the lambda is 0.4857372351537022
the regulation term lambda/alpha is 1.4953405339655756
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3459452848833991
the lambda is 0.534432563693528
the regulation term lambda/alpha is 1.5448470814500581
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161388077065816
the lambda is 0.5096555783576467
the regulation term lambda/alpha is 1.6121259583881082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3472350949209149
the lambda is 0.525776382306412
the regulation term lambda/alpha is 1.5141798452894315
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29378434869309655
the lambda is 0.4984677073500223
the regulation term lambda/alpha is 1.6967129446053282
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3117921277036684
the lambda is 0.49962938955349584
the regulation term lambda/alpha is 1.6024438886037258
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3323456945736103
the lambda is 0.5360220935784349
the regulation term lambda/alpha is 1.6128450054577521
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3227357088573416
the lambda is 0.5316244587955721
the regulation term lambda/alpha is 1.64724399626496
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.332061430757768
the lambda is 0.5019395839001739
the regulation term lambda/alpha is 1.5115865240800235
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31183758900276703
the lambda is 0.5029788502826247
the regulation term lambda/alpha is 1.6129513183164124
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33925883319807026
the lambda is 0.5104120439916834
the regulation term lambda/alpha is 1.5044915387470201
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33031378117017257
the lambda is 0.520209941854149
the regulation term lambda/alpha is 1.5748962698778375
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3219482252303386
the lambda is 0.5284078371443857
the regulation term lambda/alpha is 1.6412820315016026
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31341089595513094
the lambda is 0.5185047279023812
the regulation term lambda/alpha is 1.654392794233332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3199257084671781
the lambda is 0.49159379780942675
the regulation term lambda/alpha is 1.5365873538726897
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32619239089084806
the lambda is 0.5120895065810338
the regulation term lambda/alpha is 1.5699002211010846
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3126897931149739
the lambda is 0.5028442525739106
the regulation term lambda/alpha is 1.608124932907606
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32598710662744734
the lambda is 0.5316477748639908
the regulation term lambda/alpha is 1.6308858971885096
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3378862823791524
the lambda is 0.5218874877804289
the regulation term lambda/alpha is 1.544565479562154
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30667768186666683
the lambda is 0.4838467033797018
the regulation term lambda/alpha is 1.5777043195143954
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2911790086751046
the lambda is 0.4996911880682054
the regulation term lambda/alpha is 1.7160961923108857
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31808111857776283
the lambda is 0.5156134068591403
the regulation term lambda/alpha is 1.6210123039198434
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3167204698023381
the lambda is 0.5284713099655182
the regulation term lambda/alpha is 1.6685732699731455
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3199249636895199
the lambda is 0.5423273161765949
the regulation term lambda/alpha is 1.6951703609566136
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33882404206987815
the lambda is 0.5097886503863942
the regulation term lambda/alpha is 1.504582281918639
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30333159692222156
the lambda is 0.5252970732898102
the regulation term lambda/alpha is 1.7317585065973318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.307933153942598
the lambda is 0.5018286537508198
the regulation term lambda/alpha is 1.6296675019422102
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3257437675029834
the lambda is 0.5319304360997393
the regulation term lambda/alpha is 1.6329719527016509
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2891355774447271
the lambda is 0.4887982382547812
the regulation term lambda/alpha is 1.6905503036831322
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33257098202835317
the lambda is 0.4971790814731728
the regulation term lambda/alpha is 1.4949562900553544
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3148442050480095
the lambda is 0.5195822725579063
the regulation term lambda/alpha is 1.6502837410606845
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30107624563879776
the lambda is 0.48733556290541663
the regulation term lambda/alpha is 1.6186450109055592
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2907190612288572
the lambda is 0.507894420756121
the regulation term lambda/alpha is 1.7470282774348291
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29933003527992097
the lambda is 0.5008954872954539
the regulation term lambda/alpha is 1.6733886622070426
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30415992230006095
the lambda is 0.5042527777149984
the regulation term lambda/alpha is 1.6578541114221523
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30407177229852383
the lambda is 0.49244961563854434
the regulation term lambda/alpha is 1.619517694510228
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32792200083002815
the lambda is 0.5371341975479607
the regulation term lambda/alpha is 1.6379937795828878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3133980742302591
the lambda is 0.48987572402896523
the regulation term lambda/alpha is 1.5631101921482926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3091312354299601
the lambda is 0.5186425382452774
the regulation term lambda/alpha is 1.677742262194615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28392894418944203
the lambda is 0.48862493669130025
the regulation term lambda/alpha is 1.720940913883305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3160218265635116
the lambda is 0.5392920205647708
the regulation term lambda/alpha is 1.706502447723775
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2945569137601441
the lambda is 0.5113296891526437
the regulation term lambda/alpha is 1.7359283223921076
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3075227138987344
the lambda is 0.49961877170175467
the regulation term lambda/alpha is 1.6246564859149768
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29652233198767924
the lambda is 0.4884474044848256
the regulation term lambda/alpha is 1.6472533492186383
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3305087532704825
the lambda is 0.5312980065805281
the regulation term lambda/alpha is 1.6075156900480732
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3373974034763864
the lambda is 0.5477349012280787
the regulation term lambda/alpha is 1.6234117263039733
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3064088688909889
the lambda is 0.5177892581771951
the regulation term lambda/alpha is 1.6898638086138722
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30986687999058293
the lambda is 0.541651281492642
the regulation term lambda/alpha is 1.7480128289577226
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3049199045420423
the lambda is 0.5483415681917378
the regulation term lambda/alpha is 1.7983134587926928
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34958121794822955
the lambda is 0.5233356573984845
the regulation term lambda/alpha is 1.497035969123452
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161514838776317
the lambda is 0.508466191953059
the regulation term lambda/alpha is 1.6082992422387739
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3254554151678213
the lambda is 0.5404867923881461
the regulation term lambda/alpha is 1.660709169977841
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31993426265664615
the lambda is 0.5160664022280933
the regulation term lambda/alpha is 1.6130388722446285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3401982479430849
the lambda is 0.47572303791780424
the regulation term lambda/alpha is 1.3983700409809066
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2949220383906565
the lambda is 0.48214975322688797
the regulation term lambda/alpha is 1.6348379926366434
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3163542571939179
the lambda is 0.5556977404922597
the regulation term lambda/alpha is 1.7565679230029445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32092231339015503
the lambda is 0.5167098522012722
the regulation term lambda/alpha is 1.610077675007572
1820
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2956063126579596
the lambda is 0.5069974419610597
the regulation term lambda/alpha is 1.7151103351019998
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33035261853489994
the lambda is 0.5602454479996148
the regulation term lambda/alpha is 1.6959013386492288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31984401614769786
the lambda is 0.49189017985158945
the regulation term lambda/alpha is 1.5379064638321824
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2964240509137394
the lambda is 0.5303373568787737
the regulation term lambda/alpha is 1.7891171625378806
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.337787320540662
the lambda is 0.5574405731474456
the regulation term lambda/alpha is 1.6502708634983894
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33903688529867265
the lambda is 0.5281338004478817
the regulation term lambda/alpha is 1.5577473229280796
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30628887000675126
the lambda is 0.5239665371779314
the regulation term lambda/alpha is 1.7106940162937754
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3401095223647631
the lambda is 0.5304698888728636
the regulation term lambda/alpha is 1.5597031367558756
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31921294757070967
the lambda is 0.5064352687210807
the regulation term lambda/alpha is 1.5865123033861241
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3015942198023173
the lambda is 0.5300652774568996
the regulation term lambda/alpha is 1.757544550437126
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.311358206898685
the lambda is 0.5226483212249445
the regulation term lambda/alpha is 1.6786078209751918
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3120010793283003
the lambda is 0.5170905233530441
the regulation term lambda/alpha is 1.6573356876401708
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33914627041115825
the lambda is 0.5380934878858286
the regulation term lambda/alpha is 1.5866118392912887
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3373816125458825
the lambda is 0.5283722962474857
the regulation term lambda/alpha is 1.566096896213125
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3217302963817572
the lambda is 0.5393243167821448
the regulation term lambda/alpha is 1.6763243090485824
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3274552536959361
the lambda is 0.5201907852202104
the regulation term lambda/alpha is 1.5885858582169583
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3196040530224039
the lambda is 0.5090531092136982
the regulation term lambda/alpha is 1.5927617450396165
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31263163866858573
the lambda is 0.5148667503808462
the regulation term lambda/alpha is 1.6468798633865898
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3240420494724842
the lambda is 0.5177983737434272
the regulation term lambda/alpha is 1.5979357450255716
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.292349572528791
the lambda is 0.4746241279384894
the regulation term lambda/alpha is 1.623481518488445
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32390835940097074
the lambda is 0.5292041392818964
the regulation term lambda/alpha is 1.6338082174248152
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3216160292616772
the lambda is 0.5361881625070101
the regulation term lambda/alpha is 1.6671686536828363
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32503003710380163
the lambda is 0.5386727687274145
the regulation term lambda/alpha is 1.6573015021235835
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3192010462857401
the lambda is 0.48549841049988085
the regulation term lambda/alpha is 1.5209800097750177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3425369393648099
the lambda is 0.5063370884678892
the regulation term lambda/alpha is 1.4781970359366943
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3241283016735827
the lambda is 0.5321341825294499
the regulation term lambda/alpha is 1.641739335262806
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30892172873506635
the lambda is 0.5255175773478474
the regulation term lambda/alpha is 1.7011350399328347
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3086473556132535
the lambda is 0.49658616975923126
the regulation term lambda/alpha is 1.6089111431800893
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30564616103446746
the lambda is 0.5079382300411761
the regulation term lambda/alpha is 1.6618505147326106
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31114252462690095
the lambda is 0.49365054033274863
the regulation term lambda/alpha is 1.5865736800994905
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3329127423071566
the lambda is 0.5022448991745385
the regulation term lambda/alpha is 1.5086382566611112
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30993316038687724
the lambda is 0.5402875756378921
the regulation term lambda/alpha is 1.743239009867394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3087946261616917
the lambda is 0.5123521450229215
the regulation term lambda/alpha is 1.6592003280349918
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32528128553564173
the lambda is 0.533899466608054
the regulation term lambda/alpha is 1.6413470136435302
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3192967111351877
the lambda is 0.536463905031025
the regulation term lambda/alpha is 1.6801422824674521
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29690398259162004
the lambda is 0.49798060761883767
the regulation term lambda/alpha is 1.6772446205404754
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3352730669142552
the lambda is 0.5017330997372715
the regulation term lambda/alpha is 1.496490918149378
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30168967867304247
the lambda is 0.5111391445546389
the regulation term lambda/alpha is 1.6942546619521188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146264395588965
the lambda is 0.5245822565352972
the regulation term lambda/alpha is 1.6673177793664031
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34795423851284
the lambda is 0.5022209007516079
the regulation term lambda/alpha is 1.443353306739717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3158189635549189
the lambda is 0.483830791173819
the regulation term lambda/alpha is 1.531987774665988
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3517978919400553
the lambda is 0.537487141920952
the regulation term lambda/alpha is 1.52782934245819
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080871959682422
the lambda is 0.48813286157834024
the regulation term lambda/alpha is 1.5843984039786492
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32031347861452564
the lambda is 0.5221859950517392
the regulation term lambda/alpha is 1.630234223393867
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33064792193949494
the lambda is 0.47961299685860026
the regulation term lambda/alpha is 1.450524757709998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33371753911631025
the lambda is 0.5255450899423721
the regulation term lambda/alpha is 1.574820104852818
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29150389191876713
the lambda is 0.5029324861515222
the regulation term lambda/alpha is 1.7253028178837266
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2849288843712532
the lambda is 0.4897999866570953
the regulation term lambda/alpha is 1.7190253902756367
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2931415803634561
the lambda is 0.49802661241414664
the regulation term lambda/alpha is 1.6989285921044046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176773494659609
the lambda is 0.5035970734097932
the regulation term lambda/alpha is 1.5852470258152718
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.309353083993547
the lambda is 0.506129314359859
the regulation term lambda/alpha is 1.636089441314303
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31853705236008517
the lambda is 0.5257385080141986
the regulation term lambda/alpha is 1.6504783481825087
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32378883852442447
the lambda is 0.5289857987257298
the regulation term lambda/alpha is 1.6337369785086853
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29088145283278827
the lambda is 0.5260208871512067
the regulation term lambda/alpha is 1.8083686052461623
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31218997949170785
the lambda is 0.5079713460691173
the regulation term lambda/alpha is 1.6271225197431733
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2953975443894036
the lambda is 0.5494192223127699
the regulation term lambda/alpha is 1.8599315828722862
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34427894917396806
the lambda is 0.5294445277264564
the regulation term lambda/alpha is 1.5378359002104485
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3333041275048261
the lambda is 0.5311232701091221
the regulation term lambda/alpha is 1.5935094296167445
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33099856092487057
the lambda is 0.5064616096969733
the regulation term lambda/alpha is 1.5301021499363225
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3910860874573289
the lambda is 0.5569450317808456
the regulation term lambda/alpha is 1.424098298668355
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33556056977280035
the lambda is 0.48375653578029926
the regulation term lambda/alpha is 1.4416370079113845
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2937950163373356
the lambda is 0.5237916476233754
the regulation term lambda/alpha is 1.7828472863609008
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3399558449391641
the lambda is 0.5404028697550072
the regulation term lambda/alpha is 1.5896266465185018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32354086845675156
the lambda is 0.4955341617404441
the regulation term lambda/alpha is 1.5315968090957983
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32416292186804596
the lambda is 0.5097038443312388
the regulation term lambda/alpha is 1.572369354872484
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3153837590306454
the lambda is 0.5176539417781363
the regulation term lambda/alpha is 1.6413462233096048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34543609880324827
the lambda is 0.5137097657613036
the regulation term lambda/alpha is 1.487133995378693
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31539092807682706
the lambda is 0.5136698927006611
the regulation term lambda/alpha is 1.6286768165238241
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.312394831444665
the lambda is 0.49717968620312686
the regulation term lambda/alpha is 1.5915106018365515
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.317851369430327
the lambda is 0.5221578010405871
the regulation term lambda/alpha is 1.6427734823871634
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33211479414203293
the lambda is 0.5275558847895911
the regulation term lambda/alpha is 1.5884745097021347
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3257234803048559
the lambda is 0.5755234471988956
the regulation term lambda/alpha is 1.766908073867574
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3068503054707906
the lambda is 0.49511202719528546
the regulation term lambda/alpha is 1.6135295235755132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3607085648633248
the lambda is 0.5135428152899386
the regulation term lambda/alpha is 1.42370563195394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3238561807513104
the lambda is 0.5116986198560657
the regulation term lambda/alpha is 1.5800180767554959
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34456613407053427
the lambda is 0.5134938291869793
the regulation term lambda/alpha is 1.4902620380036093
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31591094505692263
the lambda is 0.522713307790881
the regulation term lambda/alpha is 1.6546223420549595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3412760499615261
the lambda is 0.5259184971485099
the regulation term lambda/alpha is 1.5410354673520148
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3383690875129247
the lambda is 0.5158774946877234
the regulation term lambda/alpha is 1.5245999523169158
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29611037909552523
the lambda is 0.4688269814465768
the regulation term lambda/alpha is 1.5832845267991542
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3002068384267578
the lambda is 0.4893726839222031
the regulation term lambda/alpha is 1.6301183760062699
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3240488688626043
the lambda is 0.4874404248060969
the regulation term lambda/alpha is 1.5042188745079992
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3603940124914346
the lambda is 0.5190283802966532
the regulation term lambda/alpha is 1.4401692656006289
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32961576647990093
the lambda is 0.5165934498705193
the regulation term lambda/alpha is 1.5672595258031132
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30866215566408406
the lambda is 0.5308553016350465
the regulation term lambda/alpha is 1.7198587254498878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31398006489310437
the lambda is 0.5321487180850425
the regulation term lambda/alpha is 1.6948487422799101
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3153405029027242
the lambda is 0.4877592194449409
the regulation term lambda/alpha is 1.5467699675591757
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.301008852650033
the lambda is 0.5154938860298627
the regulation term lambda/alpha is 1.7125539049484368
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3139307785454178
the lambda is 0.5345074331593109
the regulation term lambda/alpha is 1.7026283170956469
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3117113646326225
the lambda is 0.5458109748853828
the regulation term lambda/alpha is 1.7510140367473157
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3587281243646199
the lambda is 0.5261213101261287
the regulation term lambda/alpha is 1.46662966852124
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3220879370407147
the lambda is 0.5456618017629008
the regulation term lambda/alpha is 1.6941392055112092
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3098582514292922
the lambda is 0.5453168607194506
the regulation term lambda/alpha is 1.759891363886718
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3145751626799399
the lambda is 0.5560142561708987
the regulation term lambda/alpha is 1.7675084435595052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33786951142265026
the lambda is 0.5197229618936487
the regulation term lambda/alpha is 1.5382357517411893
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3179469729631198
the lambda is 0.4904009933606423
the regulation term lambda/alpha is 1.5423986861404284
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3142129409104234
the lambda is 0.5111139708017423
the regulation term lambda/alpha is 1.626648378392066
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33493755362993766
the lambda is 0.5444749722842757
the regulation term lambda/alpha is 1.6256014483399779
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32704503303826304
the lambda is 0.5422134534098385
the regulation term lambda/alpha is 1.6579167962670192
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.320921784484396
the lambda is 0.5133057076003338
the regulation term lambda/alpha is 1.59947293208851
1830
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3460734465623874
the lambda is 0.5300523767242612
the regulation term lambda/alpha is 1.531618163685689
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30385965392763126
the lambda is 0.5168619591448318
the regulation term lambda/alpha is 1.7009890996187675
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32346852359537154
the lambda is 0.5361812327024307
the regulation term lambda/alpha is 1.657599406405127
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33227321157912787
the lambda is 0.5317721049907381
the regulation term lambda/alpha is 1.600406191228875
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3114897681508998
the lambda is 0.5437377340368402
the regulation term lambda/alpha is 1.745603835607945
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3220365310530852
the lambda is 0.5239524277199777
the regulation term lambda/alpha is 1.6269968689782224
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30870654577928214
the lambda is 0.49299368033603946
the regulation term lambda/alpha is 1.5969654258271486
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3465727695366394
the lambda is 0.5455801476476999
the regulation term lambda/alpha is 1.5742152748386125
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31854416421043524
the lambda is 0.5365383650813794
the regulation term lambda/alpha is 1.684345297649006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33216327096987613
the lambda is 0.5005651982743845
the regulation term lambda/alpha is 1.5069853955038295
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3174060046672507
the lambda is 0.5375617686873176
the regulation term lambda/alpha is 1.6936093230210465
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30631182418034
the lambda is 0.5469362211792091
the regulation term lambda/alpha is 1.7855537331696423
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.309626933777758
the lambda is 0.5332882173771154
the regulation term lambda/alpha is 1.7223573248956936
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3058679712138772
the lambda is 0.5042235835565023
the regulation term lambda/alpha is 1.648500761800671
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34452617839970495
the lambda is 0.5630434983360924
the regulation term lambda/alpha is 1.6342546187676708
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33367312315614706
the lambda is 0.5233468680837619
the regulation term lambda/alpha is 1.568441782585091
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30822487237152435
the lambda is 0.5298109831228381
the regulation term lambda/alpha is 1.7189105442607533
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28474159924900005
the lambda is 0.49740970059822215
the regulation term lambda/alpha is 1.7468810384928992
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3216878766497722
the lambda is 0.5392380640953488
the regulation term lambda/alpha is 1.6762772340420764
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31681764845142424
the lambda is 0.527619743921999
the regulation term lambda/alpha is 1.665373587932857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34581159124660005
the lambda is 0.5235536324478544
the regulation term lambda/alpha is 1.5139852037941248
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3260827463819254
the lambda is 0.5369295746113444
the regulation term lambda/alpha is 1.6466052882861333
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32820723185088957
the lambda is 0.552441368633408
the regulation term lambda/alpha is 1.6832090064499006
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3345334436911315
the lambda is 0.5102947660216841
the regulation term lambda/alpha is 1.5253923804784963
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2987355074137206
the lambda is 0.5059286254641958
the regulation term lambda/alpha is 1.693567095000636
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32433872444400047
the lambda is 0.4720008170698625
the regulation term lambda/alpha is 1.4552712380521093
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30751512244622853
the lambda is 0.5439344552373138
the regulation term lambda/alpha is 1.7688055498227573
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3322991385901838
the lambda is 0.5028855476090272
the regulation term lambda/alpha is 1.5133519447043264
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3055868283455453
the lambda is 0.524140996255405
the regulation term lambda/alpha is 1.7151949876017805
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.352599668851663
the lambda is 0.5511210123319871
the regulation term lambda/alpha is 1.5630219226434983
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3100129376485205
the lambda is 0.5208846463299416
the regulation term lambda/alpha is 1.6802029304999473
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3112988100678905
the lambda is 0.5120578174739743
the regulation term lambda/alpha is 1.6449077250321023
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31160729756923455
the lambda is 0.5284782609160921
the regulation term lambda/alpha is 1.695975238829803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2988873613160291
the lambda is 0.5208357639192436
the regulation term lambda/alpha is 1.7425820938896674
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31684572336572625
the lambda is 0.4914630725796531
the regulation term lambda/alpha is 1.5511115862920166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2986584857012825
the lambda is 0.5057107927116108
the regulation term lambda/alpha is 1.693274482136836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28061923425076374
the lambda is 0.48566232819158783
the regulation term lambda/alpha is 1.730680826238717
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3146725005741532
the lambda is 0.5353001695889097
the regulation term lambda/alpha is 1.7011342542236707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3306987477185993
the lambda is 0.5155119770431273
the regulation term lambda/alpha is 1.5588567558828215
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3188763423284605
the lambda is 0.488264183572778
the regulation term lambda/alpha is 1.5312022836420975
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3076321375645597
the lambda is 0.5360940109870198
the regulation term lambda/alpha is 1.7426463152748957
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3096940312012944
the lambda is 0.5081325667584996
the regulation term lambda/alpha is 1.6407567326611614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35028475274797016
the lambda is 0.5139610405383254
the regulation term lambda/alpha is 1.4672663783002862
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34288596735006044
the lambda is 0.5321088677454786
the regulation term lambda/alpha is 1.5518537310167495
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35075416402939447
the lambda is 0.509976901205711
the regulation term lambda/alpha is 1.453943968468392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3688176509765918
the lambda is 0.5103929654846534
the regulation term lambda/alpha is 1.383862632748689
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3195152283088184
the lambda is 0.515655730501522
the regulation term lambda/alpha is 1.6138690266215718
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3166530806789843
the lambda is 0.5246511842725787
the regulation term lambda/alpha is 1.6568642981384987
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3189864877554115
the lambda is 0.5445196580663697
the regulation term lambda/alpha is 1.7070304823817168
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3056877088867004
the lambda is 0.5182378549930685
the regulation term lambda/alpha is 1.6953179337189097
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3469138513515736
the lambda is 0.5550956253911649
the regulation term lambda/alpha is 1.6000964597652032
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196694332610675
the lambda is 0.5247644837566414
the regulation term lambda/alpha is 1.6415848034118325
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3410599326699003
the lambda is 0.5187344716780516
the regulation term lambda/alpha is 1.5209481442668205
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3366938292307133
the lambda is 0.5010240471188097
the regulation term lambda/alpha is 1.4880701801502043
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3150471817847597
the lambda is 0.5091729075566329
the regulation term lambda/alpha is 1.616179851767409
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3090803573389701
the lambda is 0.5270819702009302
the regulation term lambda/alpha is 1.7053234140753775
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3251994415586059
the lambda is 0.49826120859420076
the regulation term lambda/alpha is 1.5321711691943556
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3231279298498016
the lambda is 0.5191495761341145
the regulation term lambda/alpha is 1.6066378922287186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35109535352078675
the lambda is 0.5355470322526654
the regulation term lambda/alpha is 1.5253606374513247
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2947538784411268
the lambda is 0.5408355377020143
the regulation term lambda/alpha is 1.83487165821989
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3262916758481367
the lambda is 0.546582183661575
the regulation term lambda/alpha is 1.6751337043485177
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3107780966296722
the lambda is 0.500714667956268
the regulation term lambda/alpha is 1.6111646006794584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29479398812844043
the lambda is 0.5166327942854823
the regulation term lambda/alpha is 1.7525214729290464
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2943811912373286
the lambda is 0.5280457079246929
the regulation term lambda/alpha is 1.7937481185711528
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30735091364051353
the lambda is 0.5163172130517126
the regulation term lambda/alpha is 1.6798948372595766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30837199218256545
the lambda is 0.48952461886923454
the regulation term lambda/alpha is 1.587448378189357
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3090093342606127
the lambda is 0.4950840528318187
the regulation term lambda/alpha is 1.6021653650574648
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33847445936329573
the lambda is 0.5102055231314402
the regulation term lambda/alpha is 1.5073678648935218
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.295851754659545
the lambda is 0.5006600990422482
the regulation term lambda/alpha is 1.6922667895561034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3169580707800639
the lambda is 0.5130324913468108
the regulation term lambda/alpha is 1.6186131183982448
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3070781310357723
the lambda is 0.4840417396462601
the regulation term lambda/alpha is 1.5762820296371833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33323157629754957
the lambda is 0.5291957299623177
the regulation term lambda/alpha is 1.5880719823795675
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3331782911748656
the lambda is 0.48069291787233387
the regulation term lambda/alpha is 1.4427498147532265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2973824599188911
the lambda is 0.4969673534662079
the regulation term lambda/alpha is 1.6711387537844435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35450900884076963
the lambda is 0.5269106774673195
the regulation term lambda/alpha is 1.486311107270014
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32475117015992716
the lambda is 0.4960659482957134
the regulation term lambda/alpha is 1.527526284359254
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35863284573907517
the lambda is 0.5241936123243709
the regulation term lambda/alpha is 1.4616441816535404
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2896761848488676
the lambda is 0.46041798284096874
the regulation term lambda/alpha is 1.5894229726933957
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3095219765914614
the lambda is 0.500258204959471
the regulation term lambda/alpha is 1.616228386974159
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3477043557293014
the lambda is 0.5235699607340236
the regulation term lambda/alpha is 1.5057906296164982
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3503465628103367
the lambda is 0.5367984594088848
the regulation term lambda/alpha is 1.5321927382501124
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3459478891325928
the lambda is 0.5161410781499165
the regulation term lambda/alpha is 1.491961923641318
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30670933528131716
the lambda is 0.5306832099809801
the regulation term lambda/alpha is 1.7302479870533827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3194714041635227
the lambda is 0.5309609615615922
the regulation term lambda/alpha is 1.6619983968575094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3074226917812204
the lambda is 0.49148552106282045
the regulation term lambda/alpha is 1.5987288323289737
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33732984023772167
the lambda is 0.5435440264802539
the regulation term lambda/alpha is 1.6113132063775024
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3176963335368992
the lambda is 0.5419225427007249
the regulation term lambda/alpha is 1.7057878404434994
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3474516870681259
the lambda is 0.5048580056997887
the regulation term lambda/alpha is 1.4530308082827057
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3178682701269142
the lambda is 0.5178184039539974
the regulation term lambda/alpha is 1.629034580102159
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3460249820385043
the lambda is 0.5181363917939004
the regulation term lambda/alpha is 1.4973959069124212
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3163183431470416
the lambda is 0.515128103173491
the regulation term lambda/alpha is 1.6285116381443363
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33518506029123163
the lambda is 0.5142282430643303
the regulation term lambda/alpha is 1.5341621807891253
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3169672338229622
the lambda is 0.5282363171884638
the regulation term lambda/alpha is 1.66653288044121
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3587370571249502
the lambda is 0.5544545435929861
the regulation term lambda/alpha is 1.5455736522917016
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30307268878365656
the lambda is 0.5325221512784061
the regulation term lambda/alpha is 1.7570773315656238
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34404601370816085
the lambda is 0.5349678358493399
the regulation term lambda/alpha is 1.5549310689096654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3265133414410522
the lambda is 0.5322867483283654
the regulation term lambda/alpha is 1.630214391789142
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2892861411153199
the lambda is 0.532526680089028
the regulation term lambda/alpha is 1.8408302521369098
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3001671945633016
the lambda is 0.48345308661711833
the regulation term lambda/alpha is 1.6106126697838195
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31658199418665806
the lambda is 0.49841844277872616
the regulation term lambda/alpha is 1.5743739439737579
1840
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3083407468385682
the lambda is 0.5252354132752356
the regulation term lambda/alpha is 1.7034252483996952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33282523741745823
the lambda is 0.5117075336797503
the regulation term lambda/alpha is 1.5374661418416489
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3037052576448034
the lambda is 0.49472713110339117
the regulation term lambda/alpha is 1.6289712431715497
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3192251473947539
the lambda is 0.5167152556049234
the regulation term lambda/alpha is 1.6186546073262618
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3122548986426267
the lambda is 0.5209978278729627
the regulation term lambda/alpha is 1.6685016956907397
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2879596641843116
the lambda is 0.5120391193569288
the regulation term lambda/alpha is 1.7781626492979683
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3237395730268681
the lambda is 0.49166079659059486
the regulation term lambda/alpha is 1.5186922994730412
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33899132302634666
the lambda is 0.5559863877265283
the regulation term lambda/alpha is 1.6401198200678329
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3187564224344282
the lambda is 0.5085197053338949
the regulation term lambda/alpha is 1.5953237944201835
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30263353351954125
the lambda is 0.5291533846783832
the regulation term lambda/alpha is 1.7484955435191898
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3082077297787686
the lambda is 0.5154151808294068
the regulation term lambda/alpha is 1.6722980348331034
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2995079593348889
the lambda is 0.4881965482813831
the regulation term lambda/alpha is 1.6299952407458922
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3209852555551233
the lambda is 0.5613921231684871
the regulation term lambda/alpha is 1.7489654538729376
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2779297143313254
the lambda is 0.523215041536299
the regulation term lambda/alpha is 1.8825444511937441
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33659202421810436
the lambda is 0.5065154917678301
the regulation term lambda/alpha is 1.5048350980521719
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3353182119543963
the lambda is 0.5137578494956246
the regulation term lambda/alpha is 1.53215015224254
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30755791177202985
the lambda is 0.5213727172994882
the regulation term lambda/alpha is 1.6952017728808864
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3629681084326311
the lambda is 0.5504953921145478
the regulation term lambda/alpha is 1.516649477805907
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34796639348721703
the lambda is 0.5345826844528717
the regulation term lambda/alpha is 1.5363055009291013
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3001238251162517
the lambda is 0.5396734582409362
the regulation term lambda/alpha is 1.7981693323810461
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31852297348036096
the lambda is 0.5241881167292926
the regulation term lambda/alpha is 1.6456838607329283
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31737578127550375
the lambda is 0.5105190225876473
the regulation term lambda/alpha is 1.608563263825358
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31662170286873886
the lambda is 0.4986234363326866
the regulation term lambda/alpha is 1.5748239359934204
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31358904501173207
the lambda is 0.534078214493906
the regulation term lambda/alpha is 1.7031150258259977
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32592864532659255
the lambda is 0.5422890118055426
the regulation term lambda/alpha is 1.6638274038851324
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146396568576561
the lambda is 0.4939483030289653
the regulation term lambda/alpha is 1.5698857161302746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33398033428313445
the lambda is 0.5174008462939601
the regulation term lambda/alpha is 1.5491955459129803
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31022562423637606
the lambda is 0.5209642059098345
the regulation term lambda/alpha is 1.6793074627287603
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3517904800909919
the lambda is 0.5349374812154964
the regulation term lambda/alpha is 1.520613863903119
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3327878024878972
the lambda is 0.5248647355101443
the regulation term lambda/alpha is 1.5771754000185527
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32650665270456397
the lambda is 0.5407017372863909
the regulation term lambda/alpha is 1.6560205827586585
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3319299020743205
the lambda is 0.5029754921039918
the regulation term lambda/alpha is 1.5153063612550746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31282113221324986
the lambda is 0.5214720199451508
the regulation term lambda/alpha is 1.6669974187986245
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3422661250268218
the lambda is 0.5642286649004871
the regulation term lambda/alpha is 1.6485086417952437
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3169405094453787
the lambda is 0.49235200272604296
the regulation term lambda/alpha is 1.5534524242029546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29570834412815145
the lambda is 0.510907616153941
the regulation term lambda/alpha is 1.7277416288683705
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33000541992433496
the lambda is 0.5555690529713728
the regulation term lambda/alpha is 1.6835149346903333
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32972012667788725
the lambda is 0.5206256716312168
the regulation term lambda/alpha is 1.5789926956440559
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32392824653319774
the lambda is 0.5110099500532131
the regulation term lambda/alpha is 1.5775405680802288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33323371532845086
the lambda is 0.4774692113527582
the regulation term lambda/alpha is 1.4328358428022268
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3330282883959062
the lambda is 0.5206204216704364
the regulation term lambda/alpha is 1.5632918878396285
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32140409576458245
the lambda is 0.4870422128871451
the regulation term lambda/alpha is 1.5153578293037278
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3207599143172824
the lambda is 0.5349141013886451
the regulation term lambda/alpha is 1.667646353276957
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31189704937946194
the lambda is 0.48989154343022445
the regulation term lambda/alpha is 1.5706834816324595
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3179934712636857
the lambda is 0.5389688340261535
the regulation term lambda/alpha is 1.6949053447051154
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31086112572011537
the lambda is 0.4984573504603852
the regulation term lambda/alpha is 1.603472770375195
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3335790125185166
the lambda is 0.5440305617804356
the regulation term lambda/alpha is 1.6308896584140977
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32431780285043105
the lambda is 0.5170560082692782
the regulation term lambda/alpha is 1.594288083246957
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33332862330968344
the lambda is 0.5626771740048031
the regulation term lambda/alpha is 1.688055374356616
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3558391047129243
the lambda is 0.5520230590873515
the regulation term lambda/alpha is 1.5513276977601997
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30192353927163995
the lambda is 0.49621635113033846
the regulation term lambda/alpha is 1.6435166079710455
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30845760989315396
the lambda is 0.5130321907312223
the regulation term lambda/alpha is 1.6632178110597775
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3292415150339562
the lambda is 0.5271714604402514
the regulation term lambda/alpha is 1.601169464871044
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30133604287798277
the lambda is 0.5110413396058175
the regulation term lambda/alpha is 1.6959183996875833
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3347218894601222
the lambda is 0.5351120746466077
the regulation term lambda/alpha is 1.598676667097266
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32078237517997654
the lambda is 0.5178757815053113
the regulation term lambda/alpha is 1.6144146984844618
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33278582343109897
the lambda is 0.5133583468289801
the regulation term lambda/alpha is 1.5426088213017506
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31363517129936647
the lambda is 0.5320151774277755
the regulation term lambda/alpha is 1.696286724552216
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29797470568369055
the lambda is 0.5005157556819815
the regulation term lambda/alpha is 1.6797256483014855
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29577618167898145
the lambda is 0.5427154150409634
the regulation term lambda/alpha is 1.8348854595397939
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30959239987081694
the lambda is 0.5240425760282338
the regulation term lambda/alpha is 1.6926855318376681
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2849600551357246
the lambda is 0.5088827983851248
the regulation term lambda/alpha is 1.785803972219009
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3453771633129122
the lambda is 0.5109688204754279
the regulation term lambda/alpha is 1.4794516683562238
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33656709280939295
the lambda is 0.5305924073306703
the regulation term lambda/alpha is 1.576483318382998
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3346796072105522
the lambda is 0.49159558573027734
the regulation term lambda/alpha is 1.468854316603183
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3496144862593383
the lambda is 0.537645658708742
the regulation term lambda/alpha is 1.537824317468142
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2975397590131094
the lambda is 0.4827488999837825
the regulation term lambda/alpha is 1.6224685453298122
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3005247940704877
the lambda is 0.5095520113293803
the regulation term lambda/alpha is 1.695540672127923
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3173453289063575
the lambda is 0.5026052448976058
the regulation term lambda/alpha is 1.5837801886975778
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30911917617625917
the lambda is 0.5213257671733252
the regulation term lambda/alpha is 1.686487954652371
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32306890859727333
the lambda is 0.5194278339702552
the regulation term lambda/alpha is 1.6077927034995378
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31752010906606987
the lambda is 0.5007504444072873
the regulation term lambda/alpha is 1.5770668694973606
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3117716767398493
the lambda is 0.5278304368251074
the regulation term lambda/alpha is 1.6930031693210652
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3299139673839252
the lambda is 0.5287774976988207
the regulation term lambda/alpha is 1.6027739046388279
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34663846032038614
the lambda is 0.5840614184049456
the regulation term lambda/alpha is 1.6849296464827288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3194189309609421
the lambda is 0.5078552947867584
the regulation term lambda/alpha is 1.5899348647211455
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32031694661164195
the lambda is 0.49992670102152115
the regulation term lambda/alpha is 1.560725107771589
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3226794611123018
the lambda is 0.5089670288624323
the regulation term lambda/alpha is 1.577314611559045
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30476655659183743
the lambda is 0.487716666857831
the regulation term lambda/alpha is 1.600295886503754
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31760646781088214
the lambda is 0.5402872208636854
the regulation term lambda/alpha is 1.7011215942409519
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30511876176136044
the lambda is 0.4878427343548038
the regulation term lambda/alpha is 1.5988618056085173
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30903334573717856
the lambda is 0.5195419794428415
the regulation term lambda/alpha is 1.6811842042596037
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3077686947565517
the lambda is 0.514811984089516
the regulation term lambda/alpha is 1.6727236813241766
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3504303864953645
the lambda is 0.519799022758441
the regulation term lambda/alpha is 1.483316067299195
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34525438223422855
the lambda is 0.5370917064374822
the regulation term lambda/alpha is 1.5556405192073905
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33675304322367733
the lambda is 0.5538864605205028
the regulation term lambda/alpha is 1.6447853157264614
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.298320338219455
the lambda is 0.5104431753365547
the regulation term lambda/alpha is 1.711057242637794
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32065061043096044
the lambda is 0.5244184849809647
the regulation term lambda/alpha is 1.6354825717504058
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32013587129158105
the lambda is 0.548438047957707
the regulation term lambda/alpha is 1.7131415037778988
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33370793394352316
the lambda is 0.46677290877865935
the regulation term lambda/alpha is 1.3987468121080278
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3323764036300922
the lambda is 0.5254693428797443
the regulation term lambda/alpha is 1.580946592901188
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3040988922212799
the lambda is 0.5250740639885504
the regulation term lambda/alpha is 1.7266556288750838
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3373230194412138
the lambda is 0.5159885839631262
the regulation term lambda/alpha is 1.529657195698881
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3132833383937244
the lambda is 0.5117607469494286
the regulation term lambda/alpha is 1.6335396244605394
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33284473406991705
the lambda is 0.533238803704469
the regulation term lambda/alpha is 1.6020647140310693
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2921843552376356
the lambda is 0.49821425301108635
the regulation term lambda/alpha is 1.7051366511594546
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3012833177529007
the lambda is 0.47642958513077693
the regulation term lambda/alpha is 1.5813341033423016
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.328931310625619
the lambda is 0.5052296003295678
the regulation term lambda/alpha is 1.5359729645944435
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3404886608900575
the lambda is 0.5162572593443838
the regulation term lambda/alpha is 1.516224528578593
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3347339317321266
the lambda is 0.5116920250030663
the regulation term lambda/alpha is 1.5286529882263378
1850
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30261661212662405
the lambda is 0.49486066589193967
the regulation term lambda/alpha is 1.6352726389153904
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3176141556683121
the lambda is 0.5269621956912028
the regulation term lambda/alpha is 1.659126919524063
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34632270221681355
the lambda is 0.49647203097443765
the regulation term lambda/alpha is 1.4335532374762538
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3268010878635504
the lambda is 0.5022451094665068
the regulation term lambda/alpha is 1.5368526241755038
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33184166600884524
the lambda is 0.5163123797780463
the regulation term lambda/alpha is 1.5558997939827244
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3343042598392264
the lambda is 0.5113647133550313
the regulation term lambda/alpha is 1.5296386399651527
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3189583263882702
the lambda is 0.5380784579806406
the regulation term lambda/alpha is 1.6869867110025962
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3487160636238881
the lambda is 0.5519817047921913
the regulation term lambda/alpha is 1.5828972690731502
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3079105411964855
the lambda is 0.48572447436395877
the regulation term lambda/alpha is 1.5774856959314223
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.322165360591773
the lambda is 0.5262680662349982
the regulation term lambda/alpha is 1.6335339878511983
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.37459961696839833
the lambda is 0.5707558185186166
the regulation term lambda/alpha is 1.523642290768189
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3332741852675264
the lambda is 0.5219558961125337
the regulation term lambda/alpha is 1.5661455917851794
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3397912193497491
the lambda is 0.5148647862834697
the regulation term lambda/alpha is 1.5152386435080782
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3034004010393198
the lambda is 0.4891304528962064
the regulation term lambda/alpha is 1.6121615239157725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3210825806990875
the lambda is 0.5069821703873011
the regulation term lambda/alpha is 1.578977499444092
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3168442673606746
the lambda is 0.5206759913442176
the regulation term lambda/alpha is 1.6433183269543405
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31789316671229756
the lambda is 0.5444945883952907
the regulation term lambda/alpha is 1.7128225624556253
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128903693875518
the lambda is 0.5144534555013742
the regulation term lambda/alpha is 1.6441971560465725
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31056104772554394
the lambda is 0.5009259754988448
the regulation term lambda/alpha is 1.6129710379568736
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31299605373026484
the lambda is 0.5394185434762502
the regulation term lambda/alpha is 1.7234036565237743
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32374333148499324
the lambda is 0.5058416853776992
the regulation term lambda/alpha is 1.5624775437301848
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31187112988354715
the lambda is 0.5238711268136401
the regulation term lambda/alpha is 1.6797679445649678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3220563443350264
the lambda is 0.5327836050215459
the regulation term lambda/alpha is 1.6543179924668887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3353942613553969
the lambda is 0.5120260912732989
the regulation term lambda/alpha is 1.5266393921115304
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3352949340405221
the lambda is 0.5218949742292714
the regulation term lambda/alpha is 1.5565250805912798
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32592054980574603
the lambda is 0.5164752830038835
the regulation term lambda/alpha is 1.5846662117860049
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3105311651167897
the lambda is 0.5192816527157899
the regulation term lambda/alpha is 1.6722368349743248
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34550149854830364
the lambda is 0.5127436244381806
the regulation term lambda/alpha is 1.4840561519778626
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3416943347950881
the lambda is 0.5349035383753588
the regulation term lambda/alpha is 1.5654445623048945
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2963411001302612
the lambda is 0.5016168579466717
the regulation term lambda/alpha is 1.6927009372853727
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29022317482052995
the lambda is 0.48001386013052894
the regulation term lambda/alpha is 1.6539473817945896
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32602730275232517
the lambda is 0.5316877115486927
the regulation term lambda/alpha is 1.6308073190808887
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3324326347104694
the lambda is 0.4879833938606684
the regulation term lambda/alpha is 1.4679166330516111
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29604693364592727
the lambda is 0.5116043633899302
the regulation term lambda/alpha is 1.7281191096605313
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31343655451683605
the lambda is 0.5050985607194527
the regulation term lambda/alpha is 1.6114858124894351
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31853223088145194
the lambda is 0.5203836660985457
the regulation term lambda/alpha is 1.6336923414579567
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.313519338500865
the lambda is 0.4891702190035512
the regulation term lambda/alpha is 1.5602553301578925
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30626545552740464
the lambda is 0.4921350738552675
the regulation term lambda/alpha is 1.6068905747394395
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.331575737135494
the lambda is 0.5378503456398208
the regulation term lambda/alpha is 1.6221040486446554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3288022819356241
the lambda is 0.5275121352920152
the regulation term lambda/alpha is 1.6043445081542844
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34112800247556896
the lambda is 0.5081694976740494
the regulation term lambda/alpha is 1.4896739463962467
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300491342585498
the lambda is 0.5259049366142211
the regulation term lambda/alpha is 1.5934140769545064
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3244810986703615
the lambda is 0.5602293441028514
the regulation term lambda/alpha is 1.7265392233893575
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35050572407691377
the lambda is 0.5567961280469845
the regulation term lambda/alpha is 1.588550741969632
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3181898134661789
the lambda is 0.5449273524731917
the regulation term lambda/alpha is 1.712585788140302
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3464797473538171
the lambda is 0.5201864268396861
the regulation term lambda/alpha is 1.5013472816593916
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.314748039447868
the lambda is 0.5099113686738955
the regulation term lambda/alpha is 1.620062096553115
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29578779074615236
the lambda is 0.5021162420315408
the regulation term lambda/alpha is 1.6975556724802794
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30798818402634376
the lambda is 0.5376128172486698
the regulation term lambda/alpha is 1.7455631258979893
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35482096212172703
the lambda is 0.5407127156897675
the regulation term lambda/alpha is 1.5239029635015402
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3207937621766406
the lambda is 0.5755775122130635
the regulation term lambda/alpha is 1.7942291281091989
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3528986948236523
the lambda is 0.5197280273919627
the regulation term lambda/alpha is 1.4727400101371215
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34091070106481564
the lambda is 0.537378002265446
the regulation term lambda/alpha is 1.5763013615793686
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3128982091948838
the lambda is 0.5474511534911659
the regulation term lambda/alpha is 1.7496142112791524
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30001102666983626
the lambda is 0.5160399682107453
the regulation term lambda/alpha is 1.7200700052223414
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3148946078782329
the lambda is 0.5326976873199443
the regulation term lambda/alpha is 1.6916697650343189
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28925392592934746
the lambda is 0.526741489727014
the regulation term lambda/alpha is 1.8210348849532114
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3054158855171443
the lambda is 0.5225122366050126
the regulation term lambda/alpha is 1.7108220671635028
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3230372410787859
the lambda is 0.49737748362364037
the regulation term lambda/alpha is 1.5396908479116638
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2932210645139178
the lambda is 0.5110158312601262
the regulation term lambda/alpha is 1.7427664417877138
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3449388440186372
the lambda is 0.5335825505781123
the regulation term lambda/alpha is 1.546890296151403
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2950892893299131
the lambda is 0.5164932565483129
the regulation term lambda/alpha is 1.750294826766375
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3194887367364505
the lambda is 0.5103889355697071
the regulation term lambda/alpha is 1.5975177741265167
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3239943156513399
the lambda is 0.513520654750069
the regulation term lambda/alpha is 1.5849680995721054
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30295061340812107
the lambda is 0.4933097360806873
the regulation term lambda/alpha is 1.6283503457249093
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31311312971763705
the lambda is 0.4991441659519504
the regulation term lambda/alpha is 1.5941336168242917
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3042116541583598
the lambda is 0.5023705153497848
the regulation term lambda/alpha is 1.6513848450009474
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33010808060369734
the lambda is 0.530531309777765
the regulation term lambda/alpha is 1.6071442686514557
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30025341817676227
the lambda is 0.5035676453784427
the regulation term lambda/alpha is 1.6771420902924983
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3207448015059972
the lambda is 0.5197273940230588
the regulation term lambda/alpha is 1.6203766719921135
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31222188943764534
the lambda is 0.5278541899158847
the regulation term lambda/alpha is 1.6906379974402912
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30222070192567324
the lambda is 0.5322368125438902
the regulation term lambda/alpha is 1.7610865475217712
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3338388031517356
the lambda is 0.5222049709769747
the regulation term lambda/alpha is 1.5642428802370927
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3098121985263127
the lambda is 0.5046875433760581
the regulation term lambda/alpha is 1.6290112067139748
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3325814937425136
the lambda is 0.5352688961522795
the regulation term lambda/alpha is 1.6094368033799484
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3237436119161079
the lambda is 0.551191289937244
the regulation term lambda/alpha is 1.702554952899194
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32856424171445514
the lambda is 0.5066119026790054
the regulation term lambda/alpha is 1.5418960384596136
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29946102246091544
the lambda is 0.4832903413403806
the regulation term lambda/alpha is 1.6138672651578818
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3121633241423017
the lambda is 0.49623014377306346
the regulation term lambda/alpha is 1.589649088779096
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32408770161732503
the lambda is 0.5385956775912644
the regulation term lambda/alpha is 1.6618824932370473
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30250477253051117
the lambda is 0.5238420801131556
the regulation term lambda/alpha is 1.7316820350671325
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.343908666784555
the lambda is 0.5439937630226309
the regulation term lambda/alpha is 1.5817971908321264
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3217969242100275
the lambda is 0.5130108611816905
the regulation term lambda/alpha is 1.5942068509233582
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3180719004090204
the lambda is 0.5027617150118076
the regulation term lambda/alpha is 1.5806542934641121
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3366822045887058
the lambda is 0.51864945687393
the regulation term lambda/alpha is 1.5404718449777208
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3015192973213582
the lambda is 0.5148298444089616
the regulation term lambda/alpha is 1.7074523885622412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3461723730681505
the lambda is 0.51021657354107
the regulation term lambda/alpha is 1.4738801049286052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31498157412547534
the lambda is 0.532960583054251
the regulation term lambda/alpha is 1.6920373343551265
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.285725708838735
the lambda is 0.5045238487491314
the regulation term lambda/alpha is 1.7657628737702673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32744360687799007
the lambda is 0.48292057502078534
the regulation term lambda/alpha is 1.4748205946825161
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29621671704302993
the lambda is 0.5023741732370245
the regulation term lambda/alpha is 1.6959683378168258
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3117391886351897
the lambda is 0.5179809148405606
the regulation term lambda/alpha is 1.6615842143822466
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3539781914218257
the lambda is 0.5163651577405453
the regulation term lambda/alpha is 1.4587485055688294
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29890172994982595
the lambda is 0.48557255947244854
the regulation term lambda/alpha is 1.6245224126135283
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3194463324544631
the lambda is 0.5100926447920967
the regulation term lambda/alpha is 1.5968023200416932
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32275384267381024
the lambda is 0.5248281301990703
the regulation term lambda/alpha is 1.626094133693973
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.304925258052425
the lambda is 0.5078035479919851
the regulation term lambda/alpha is 1.66533776583598
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3233192964387726
the lambda is 0.5299696981382066
the regulation term lambda/alpha is 1.6391527012943616
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3397374041732366
the lambda is 0.5707928472882864
the regulation term lambda/alpha is 1.6801001016574304
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3405729710370863
the lambda is 0.48810348633078143
the regulation term lambda/alpha is 1.433183275949488
1860
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33598856058700716
the lambda is 0.522364919064802
the regulation term lambda/alpha is 1.5547104286889286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2960917744942763
the lambda is 0.530449519526634
the regulation term lambda/alpha is 1.7915037337076989
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3354072067170474
the lambda is 0.5522271319649535
the regulation term lambda/alpha is 1.646437884773351
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31963225459186245
the lambda is 0.5125134851201265
the regulation term lambda/alpha is 1.6034473297275758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3085762276332868
the lambda is 0.5284021516665113
the regulation term lambda/alpha is 1.7123877484641055
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30319217448511476
the lambda is 0.5246559996689665
the regulation term lambda/alpha is 1.7304404394999466
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33180341111095824
the lambda is 0.541367316094251
the regulation term lambda/alpha is 1.631590568287475
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35184013393209174
the lambda is 0.5303844969941638
the regulation term lambda/alpha is 1.5074587741503438
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3450477661911334
the lambda is 0.5601492581957551
the regulation term lambda/alpha is 1.6233962746058463
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3109120597927763
the lambda is 0.4996598609856632
the regulation term lambda/alpha is 1.607077774077621
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30902677837800974
the lambda is 0.499871946378869
the regulation term lambda/alpha is 1.6175683835638748
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3214026157069375
the lambda is 0.5115360374268483
the regulation term lambda/alpha is 1.5915739711753898
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3050790776437925
the lambda is 0.5157595962125946
the regulation term lambda/alpha is 1.690576752086522
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3237141629633323
the lambda is 0.5738996985088943
the regulation term lambda/alpha is 1.772859405517889
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3290964113160389
the lambda is 0.5260587071799283
the regulation term lambda/alpha is 1.5984942074459207
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31692855892711413
the lambda is 0.5144794025122171
the regulation term lambda/alpha is 1.623329258347257
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32202383827629494
the lambda is 0.5283269243213103
the regulation term lambda/alpha is 1.6406453856003305
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3159706046710172
the lambda is 0.5350823508009673
the regulation term lambda/alpha is 1.6934561091785272
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3537493784868911
the lambda is 0.5628719195971061
the regulation term lambda/alpha is 1.59116016543889
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3451090181745502
the lambda is 0.516074216285618
the regulation term lambda/alpha is 1.4953947567507395
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34979074372909974
the lambda is 0.5083984589876618
the regulation term lambda/alpha is 1.4534359988136163
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3132360368079644
the lambda is 0.5150697193928321
the regulation term lambda/alpha is 1.644350134938675
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2806534856103847
the lambda is 0.5473699364309699
the regulation term lambda/alpha is 1.9503407742843872
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29936600626314874
the lambda is 0.5210747620789544
the regulation term lambda/alpha is 1.740594293197469
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31307535925170543
the lambda is 0.5347379167609321
the regulation term lambda/alpha is 1.7080166195098574
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33906968289542916
the lambda is 0.4966476249750993
the regulation term lambda/alpha is 1.464736159051613
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3029297428352582
the lambda is 0.5364425172409379
the regulation term lambda/alpha is 1.770847960388857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3137692733849229
the lambda is 0.4851789882583626
the regulation term lambda/alpha is 1.5462922262090313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30580451943336234
the lambda is 0.4877089642391656
the regulation term lambda/alpha is 1.5948389681841897
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2914664270588962
the lambda is 0.4974191005975462
the regulation term lambda/alpha is 1.7066085642070654
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30716340442005935
the lambda is 0.517111012195757
the regulation term lambda/alpha is 1.6835046257287378
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3179506975959503
the lambda is 0.5332592040272266
the regulation term lambda/alpha is 1.677175763598698
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35652015539067894
the lambda is 0.5214986268621677
the regulation term lambda/alpha is 1.4627465487630102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2883774738265894
the lambda is 0.5187293864204668
the regulation term lambda/alpha is 1.798786082481586
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2878801350631543
the lambda is 0.5285463566927899
the regulation term lambda/alpha is 1.8359945418840344
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3346020473766175
the lambda is 0.49789209422235886
the regulation term lambda/alpha is 1.488012694859417
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29373720716430274
the lambda is 0.520227607816895
the regulation term lambda/alpha is 1.7710647310876904
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32797159669832604
the lambda is 0.498784533452954
the regulation term lambda/alpha is 1.5208162489501937
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3108035980593463
the lambda is 0.4972506384795555
the regulation term lambda/alpha is 1.599887007693547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3057962833862061
the lambda is 0.5013153545483766
the regulation term lambda/alpha is 1.6393768720702182
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28480272907288057
the lambda is 0.4704303386279439
the regulation term lambda/alpha is 1.651776091329383
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3289663044669459
the lambda is 0.5468110322348377
the regulation term lambda/alpha is 1.6622098519205044
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33281648172570283
the lambda is 0.5073598541069969
the regulation term lambda/alpha is 1.5244432952246258
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29880611745492197
the lambda is 0.5025549129207103
the regulation term lambda/alpha is 1.681876252070127
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3091534016069873
the lambda is 0.5261363048076813
the regulation term lambda/alpha is 1.7018616068036492
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32042928567434525
the lambda is 0.5584344843414898
the regulation term lambda/alpha is 1.7427698069677409
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33723671376961467
the lambda is 0.5170963620983651
the regulation term lambda/alpha is 1.5333335339390795
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3116004337376906
the lambda is 0.502859166586832
the regulation term lambda/alpha is 1.6137948222823901
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30346810451954165
the lambda is 0.5027188919219132
the regulation term lambda/alpha is 1.6565790092432628
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33428545227662
the lambda is 0.5504834860291737
the regulation term lambda/alpha is 1.6467467617276108
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31210322863413137
the lambda is 0.5131240929819976
the regulation term lambda/alpha is 1.6440845396813133
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33185045843269384
the lambda is 0.5346718020913236
the regulation term lambda/alpha is 1.6111829545649585
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29485575525640934
the lambda is 0.5012757494873814
the regulation term lambda/alpha is 1.7000711044336485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32010528421732665
the lambda is 0.5158192427948602
the regulation term lambda/alpha is 1.6114049602650702
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3666992546802243
the lambda is 0.5412429226292907
the regulation term lambda/alpha is 1.4759858814037545
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3399829460475231
the lambda is 0.5266162451738146
the regulation term lambda/alpha is 1.5489490025779225
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3303532556499576
the lambda is 0.505023253179855
the regulation term lambda/alpha is 1.528737024813758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33443427336601034
the lambda is 0.4985244404673711
the regulation term lambda/alpha is 1.490649972713107
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3040995635779919
the lambda is 0.5326218327901074
the regulation term lambda/alpha is 1.7514718749456766
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33373819709809555
the lambda is 0.5270393945128438
the regulation term lambda/alpha is 1.5792001008441094
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29837914755107126
the lambda is 0.4819790492602303
the regulation term lambda/alpha is 1.6153241713304836
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31650218693135246
the lambda is 0.5391327155463658
the regulation term lambda/alpha is 1.7034091320932978
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32818498488822806
the lambda is 0.5304023609474862
the regulation term lambda/alpha is 1.6161688845336069
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30481216144147233
the lambda is 0.5198028459802942
the regulation term lambda/alpha is 1.705321872730143
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3523075118107291
the lambda is 0.5332268487730656
the regulation term lambda/alpha is 1.5135267653887896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3118507269243177
the lambda is 0.49664475205187625
the regulation term lambda/alpha is 1.5925720518599458
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28762977069018975
the lambda is 0.5256793452392432
the regulation term lambda/alpha is 1.8276249498716186
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33624838479649577
the lambda is 0.5090375518952827
the regulation term lambda/alpha is 1.5138735973508464
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35482731674213186
the lambda is 0.5000005614609664
the regulation term lambda/alpha is 1.4091377350868906
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3109485103536893
the lambda is 0.5435736765984306
the regulation term lambda/alpha is 1.7481147472941456
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3057603385970393
the lambda is 0.512801623960436
the regulation term lambda/alpha is 1.6771358453924785
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30913263003022046
the lambda is 0.5294848825110783
the regulation term lambda/alpha is 1.7128081317695787
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3235655991217569
the lambda is 0.4797457630723763
the regulation term lambda/alpha is 1.4826846994072729
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29833199790666926
the lambda is 0.4965564845796165
the regulation term lambda/alpha is 1.6644425943708532
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31090798518419155
the lambda is 0.48579321272648074
the regulation term lambda/alpha is 1.562498346379498
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3116547219004943
the lambda is 0.5426250163461913
the regulation term lambda/alpha is 1.7411095620089518
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3572486929340647
the lambda is 0.5431986619492889
the regulation term lambda/alpha is 1.5205056664813157
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3571014266988975
the lambda is 0.5248190875581881
the regulation term lambda/alpha is 1.4696639338848332
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3443761315141516
the lambda is 0.517442311377618
the regulation term lambda/alpha is 1.5025498692447985
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3218891170028591
the lambda is 0.5394779872213669
the regulation term lambda/alpha is 1.6759746096559551
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32139427765526035
the lambda is 0.5549161429294792
the regulation term lambda/alpha is 1.7265899908918205
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31314469116115184
the lambda is 0.5504510847155992
the regulation term lambda/alpha is 1.7578170738724859
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2940164619575242
the lambda is 0.4952833437853159
the regulation term lambda/alpha is 1.6845429010599695
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3464095668972787
the lambda is 0.5261650971753102
the regulation term lambda/alpha is 1.5189104096866202
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.352485433590948
the lambda is 0.5478488789685357
the regulation term lambda/alpha is 1.5542454432437707
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3053265592525742
the lambda is 0.5139699788889072
the regulation term lambda/alpha is 1.6833451375703534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32921098104574825
the lambda is 0.5197769062617674
the regulation term lambda/alpha is 1.578856527235759
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3422939440718513
the lambda is 0.5200162510644282
the regulation term lambda/alpha is 1.519209615216771
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3175048328150206
the lambda is 0.5095053343689722
the regulation term lambda/alpha is 1.604716784471157
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3327995468484062
the lambda is 0.5338774965336971
the regulation term lambda/alpha is 1.6042013926686147
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30783202116855973
the lambda is 0.5385378952528448
the regulation term lambda/alpha is 1.7494537871937543
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30660294640808805
the lambda is 0.5038378926181171
the regulation term lambda/alpha is 1.6432910985385953
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3013752756628094
the lambda is 0.48709932266189815
the regulation term lambda/alpha is 1.616255087915321
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28483106557676074
the lambda is 0.504162625323173
the regulation term lambda/alpha is 1.770040863703834
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33038700356898987
the lambda is 0.5110467370994116
the regulation term lambda/alpha is 1.5468124701603077
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2996697410381934
the lambda is 0.5352872940121691
the regulation term lambda/alpha is 1.7862574050943165
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3015118716295806
the lambda is 0.5090016845059235
the regulation term lambda/alpha is 1.6881646541972732
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32090895146347087
the lambda is 0.5468087414103905
the regulation term lambda/alpha is 1.7039373283815482
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3034763376086665
the lambda is 0.503052368550861
the regulation term lambda/alpha is 1.6576329229316993
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3328979551239132
the lambda is 0.5118425620073805
the regulation term lambda/alpha is 1.5375359149228165
1870
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30204912779696347
the lambda is 0.5285175563800001
the regulation term lambda/alpha is 1.7497734896134778
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30915521823203046
the lambda is 0.5486318053173802
the regulation term lambda/alpha is 1.7746160276861807
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2741755999387442
the lambda is 0.5011145935471704
the regulation term lambda/alpha is 1.827714040414714
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3199859117006929
the lambda is 0.5047305916716535
the regulation term lambda/alpha is 1.5773525433949926
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29374646560782564
the lambda is 0.5073835972927524
the regulation term lambda/alpha is 1.7272840925689603
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28278865919639756
the lambda is 0.5006894397139293
the regulation term lambda/alpha is 1.7705428539346022
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29063803160570684
the lambda is 0.4900644363238404
the regulation term lambda/alpha is 1.6861676141155701
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3387206846453672
the lambda is 0.5449232784776435
the regulation term lambda/alpha is 1.6087688268821425
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28790739948236294
the lambda is 0.48945805853421204
the regulation term lambda/alpha is 1.700053765253074
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3072367593202208
the lambda is 0.5015327697584552
the regulation term lambda/alpha is 1.6323983200061267
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3262202772785158
the lambda is 0.5169450354236912
the regulation term lambda/alpha is 1.5846502238802924
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31988243630194096
the lambda is 0.5153042982127803
the regulation term lambda/alpha is 1.6109177614440147
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33237593822190514
the lambda is 0.5335060931470257
the regulation term lambda/alpha is 1.60512850599564
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3274035962134423
the lambda is 0.5231393784684256
the regulation term lambda/alpha is 1.5978424932369357
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196855912002872
the lambda is 0.5060176339043768
the regulation term lambda/alpha is 1.5828603097327278
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30172582271224263
the lambda is 0.5156916311261688
the regulation term lambda/alpha is 1.7091398624438796
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3034020700858582
the lambda is 0.5718282945065055
the regulation term lambda/alpha is 1.8847211370202148
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29635821890945513
the lambda is 0.4910840669515377
the regulation term lambda/alpha is 1.657062418442919
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3159844463691476
the lambda is 0.5233834183203382
the regulation term lambda/alpha is 1.6563581667842524
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29932949685555316
the lambda is 0.5236509838759272
the regulation term lambda/alpha is 1.7494132365064725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2847535642353779
the lambda is 0.5072491418381119
the regulation term lambda/alpha is 1.7813618705710692
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33104774236511647
the lambda is 0.539622638053749
the regulation term lambda/alpha is 1.6300447609112307
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2946868774094703
the lambda is 0.5116813015227121
the regulation term lambda/alpha is 1.7363559111311424
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3326164885237902
the lambda is 0.5083115242006353
the regulation term lambda/alpha is 1.5282210646159191
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3143473180609602
the lambda is 0.5505086733445358
the regulation term lambda/alpha is 1.7512752351135938
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32913236696099507
the lambda is 0.5121060543785293
the regulation term lambda/alpha is 1.555927358670313
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2863687512613741
the lambda is 0.49754515899513924
the regulation term lambda/alpha is 1.7374282522223259
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34022630109036245
the lambda is 0.5454146590254865
the regulation term lambda/alpha is 1.6030937563543244
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.322839377565528
the lambda is 0.5180985441291661
the regulation term lambda/alpha is 1.6048183094517507
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.329723380017953
the lambda is 0.514746408038952
the regulation term lambda/alpha is 1.5611462190243373
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34756585224593334
the lambda is 0.5330114218200313
the regulation term lambda/alpha is 1.5335552050806156
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3167247857054899
the lambda is 0.5647360610369581
the regulation term lambda/alpha is 1.7830497849387899
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3339413747951685
the lambda is 0.4987895343166127
the regulation term lambda/alpha is 1.4936440104870445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31194977095152965
the lambda is 0.489724254205956
the regulation term lambda/alpha is 1.5698817560024712
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3276964499068837
the lambda is 0.5133869413435606
the regulation term lambda/alpha is 1.5666539612786212
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31626243336472926
the lambda is 0.5150444240675134
the regulation term lambda/alpha is 1.6285349435528407
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31310387772487147
the lambda is 0.4737080452054247
the regulation term lambda/alpha is 1.5129421221083639
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3136530888991244
the lambda is 0.5306301756284527
the regulation term lambda/alpha is 1.691774110980018
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32983324027386046
the lambda is 0.5424535605379406
the regulation term lambda/alpha is 1.6446297531672112
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2866582204716516
the lambda is 0.5214334781016217
the regulation term lambda/alpha is 1.8190075876550262
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3266588716908177
the lambda is 0.5080273227272033
the regulation term lambda/alpha is 1.5552227928101419
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3081489018799258
the lambda is 0.5102089471318475
the regulation term lambda/alpha is 1.6557221006442433
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31293469952876224
the lambda is 0.5184231148158078
the regulation term lambda/alpha is 1.6566495041824496
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33528537515858975
the lambda is 0.5282245363050952
the regulation term lambda/alpha is 1.5754475901468874
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30644286766771306
the lambda is 0.5021163710478705
the regulation term lambda/alpha is 1.63853175918042
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34622072490192946
the lambda is 0.5386820563427345
the regulation term lambda/alpha is 1.5558920006747765
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2970219271563082
the lambda is 0.5070096986523976
the regulation term lambda/alpha is 1.7069773383619018
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3188651533030663
the lambda is 0.5189850938856689
the regulation term lambda/alpha is 1.6276005342998332
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31553244792456725
the lambda is 0.5280860628969583
the regulation term lambda/alpha is 1.673634728759196
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2909654901738581
the lambda is 0.4686663872544896
the regulation term lambda/alpha is 1.6107284302837819
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190717092375222
the lambda is 0.47665052162985677
the regulation term lambda/alpha is 1.4938664501747798
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35129523839505783
the lambda is 0.5650774659181643
the regulation term lambda/alpha is 1.6085542989418273
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3135349791003087
the lambda is 0.5202480098209178
the regulation term lambda/alpha is 1.6592981469365042
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35854907864067437
the lambda is 0.5196610539939501
the regulation term lambda/alpha is 1.4493442737716158
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30713386116351327
the lambda is 0.5423140169493527
the regulation term lambda/alpha is 1.7657252602982554
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28422223006644876
the lambda is 0.5206605294145675
the regulation term lambda/alpha is 1.8318782781094973
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3265751438043915
the lambda is 0.5185886621520328
the regulation term lambda/alpha is 1.5879612150233071
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3088664891472191
the lambda is 0.5140595455433755
the regulation term lambda/alpha is 1.664342243675236
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29897697667129663
the lambda is 0.5179148208073625
the regulation term lambda/alpha is 1.7322899795617777
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3361386419514232
the lambda is 0.5091819532353861
the regulation term lambda/alpha is 1.5147974367938635
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3314647921487406
the lambda is 0.5331294111261291
the regulation term lambda/alpha is 1.6084043426455203
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29115004809136236
the lambda is 0.4827555506802136
the regulation term lambda/alpha is 1.658098818272308
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3204813141238579
the lambda is 0.516157705055395
the regulation term lambda/alpha is 1.610570358732095
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3284005113240097
the lambda is 0.5701544045823548
the regulation term lambda/alpha is 1.736155654215238
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3068269440940772
the lambda is 0.47827426915749144
the regulation term lambda/alpha is 1.5587753238869604
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3081800717258948
the lambda is 0.5301502600459815
the regulation term lambda/alpha is 1.7202613299328262
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31228335140625857
the lambda is 0.4820165979706193
the regulation term lambda/alpha is 1.543523200324406
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3271328554927308
the lambda is 0.5134287222139673
the regulation term lambda/alpha is 1.5694807586374526
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3362613404802154
the lambda is 0.5406050456980048
the regulation term lambda/alpha is 1.6076931262034637
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33031623186625164
the lambda is 0.5261574570316552
the regulation term lambda/alpha is 1.5928901043067771
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32609543467561836
the lambda is 0.5266450850121167
the regulation term lambda/alpha is 1.6150029378239963
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32445489135704414
the lambda is 0.5312518113160326
the regulation term lambda/alpha is 1.6373672441615936
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3102544862148019
the lambda is 0.5261767252288582
the regulation term lambda/alpha is 1.6959520284408216
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2999701365052114
the lambda is 0.526629272960086
the regulation term lambda/alpha is 1.7556056716030357
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31514256795558554
the lambda is 0.5133963178708446
the regulation term lambda/alpha is 1.6290922587874572
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3252268773977086
the lambda is 0.5045127657773413
the regulation term lambda/alpha is 1.5512640585371738
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30041977799922287
the lambda is 0.5343020039076347
the regulation term lambda/alpha is 1.778518070501393
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3229288957582592
the lambda is 0.5236620859989768
the regulation term lambda/alpha is 1.621601822808028
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.36710352489473197
the lambda is 0.539639175976065
the regulation term lambda/alpha is 1.4699918126114648
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32010525858596406
the lambda is 0.5227312027416426
the regulation term lambda/alpha is 1.6329978615495424
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32399795797709163
the lambda is 0.5309697670662195
the regulation term lambda/alpha is 1.6388059060043885
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34548468719167874
the lambda is 0.5559581237712587
the regulation term lambda/alpha is 1.6092120559392753
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29707410102518295
the lambda is 0.5099745913348765
the regulation term lambda/alpha is 1.7166578627183864
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.346822393473717
the lambda is 0.5362969830810315
the regulation term lambda/alpha is 1.5463159045457462
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32943883456575596
the lambda is 0.5318179585251781
the regulation term lambda/alpha is 1.6143147155865356
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3297357039242724
the lambda is 0.502840647681307
the regulation term lambda/alpha is 1.5249808913528822
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29885482632541366
the lambda is 0.4750402547389827
the regulation term lambda/alpha is 1.5895351618706208
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3190921578284773
the lambda is 0.49014257111783816
the regulation term lambda/alpha is 1.5360533284597555
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3497574850433888
the lambda is 0.5654396311388924
the regulation term lambda/alpha is 1.6166619881451496
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32007127342564157
the lambda is 0.5358515924581684
the regulation term lambda/alpha is 1.6741633409430494
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3165421464252665
the lambda is 0.5267048390965513
the regulation term lambda/alpha is 1.6639327339018433
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31471053998246074
the lambda is 0.47736730809992256
the regulation term lambda/alpha is 1.516845632582013
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32506392260180655
the lambda is 0.5290204972560163
the regulation term lambda/alpha is 1.62743528417963
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3044759328520927
the lambda is 0.5221731293782184
the regulation term lambda/alpha is 1.7149898334719214
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3203969106528718
the lambda is 0.5705719243397223
the regulation term lambda/alpha is 1.7808284205271194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33492903076888153
the lambda is 0.5065691210753993
the regulation term lambda/alpha is 1.5124670438764036
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30392877527148476
the lambda is 0.5219083298830868
the regulation term lambda/alpha is 1.7172060441361352
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3255559855651105
the lambda is 0.513130283689397
the regulation term lambda/alpha is 1.5761660250192882
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2961901204333723
the lambda is 0.5254351577641333
the regulation term lambda/alpha is 1.7739793514899815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3140954873972305
the lambda is 0.5330302148443761
the regulation term lambda/alpha is 1.6970323873843596
1880
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3053371620778074
the lambda is 0.5127623721415243
the regulation term lambda/alpha is 1.6793316891144088
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29703946008621696
the lambda is 0.4793880819734458
the regulation term lambda/alpha is 1.6138868614772643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3355263354145211
the lambda is 0.49926654470601406
the regulation term lambda/alpha is 1.48801000699156
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31492302279848344
the lambda is 0.5106435643459815
the regulation term lambda/alpha is 1.621486926577413
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3027993027995364
the lambda is 0.503068648755703
the regulation term lambda/alpha is 1.6613930220597366
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3273715409669592
the lambda is 0.49071854020540395
the regulation term lambda/alpha is 1.49896517808471
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3460949991759194
the lambda is 0.4911311460385717
the regulation term lambda/alpha is 1.419064555130803
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3381140883859162
the lambda is 0.5197373254524733
the regulation term lambda/alpha is 1.537165540583024
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3275720942359304
the lambda is 0.5336688056715759
the regulation term lambda/alpha is 1.629164434523554
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3178812998013163
the lambda is 0.5042746358490967
the regulation term lambda/alpha is 1.5863614379464313
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3106602371253319
the lambda is 0.49285699869646354
the regulation term lambda/alpha is 1.5864824003775762
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3215193602065854
the lambda is 0.524228987774125
the regulation term lambda/alpha is 1.630474094739716
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3140893033119328
the lambda is 0.5337816733962191
the regulation term lambda/alpha is 1.6994582998138663
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32640333009029737
the lambda is 0.5010675845393868
the regulation term lambda/alpha is 1.5351178690510594
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33362952158477
the lambda is 0.5091824825562241
the regulation term lambda/alpha is 1.5261913278464145
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3479506225151705
the lambda is 0.5877881168172593
the regulation term lambda/alpha is 1.6892860043428488
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34545205424591646
the lambda is 0.5406192955739977
the regulation term lambda/alpha is 1.5649618780068038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3567840483803938
the lambda is 0.5406000441156272
the regulation term lambda/alpha is 1.5152023936318297
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3448716584359053
the lambda is 0.5201335083376901
the regulation term lambda/alpha is 1.5081944126596225
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3318955795266999
the lambda is 0.5042764794349948
the regulation term lambda/alpha is 1.5193829340966785
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3458620485816798
the lambda is 0.5249654092257975
the regulation term lambda/alpha is 1.5178462377661541
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2991016760023295
the lambda is 0.5156022872167816
the regulation term lambda/alpha is 1.723836168717309
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32609903839472054
the lambda is 0.501526165207302
the regulation term lambda/alpha is 1.537956590354121
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3368943888506518
the lambda is 0.5470411109873128
the regulation term lambda/alpha is 1.6237762607254964
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30709797927251864
the lambda is 0.49358471358984146
the regulation term lambda/alpha is 1.6072548401623787
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31545376337690834
the lambda is 0.5319821376485154
the regulation term lambda/alpha is 1.6864028881877569
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34549616220949003
the lambda is 0.5605943538239307
the regulation term lambda/alpha is 1.6225776582838478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3019521625304171
the lambda is 0.49809819187602933
the regulation term lambda/alpha is 1.6495930603770836
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3031607496780329
the lambda is 0.5198080704385976
the regulation term lambda/alpha is 1.7146285295528907
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3441554050045312
the lambda is 0.5279023894993916
the regulation term lambda/alpha is 1.5339070135842883
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3048751273885321
the lambda is 0.4958445643450319
the regulation term lambda/alpha is 1.6263857553493657
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31836476007373593
the lambda is 0.5341993279728693
the regulation term lambda/alpha is 1.6779474205912246
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3244912560079711
the lambda is 0.5362520772168307
the regulation term lambda/alpha is 1.6525933050216235
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3156576095058598
the lambda is 0.5017510051975534
the regulation term lambda/alpha is 1.5895419279864977
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3202085252519863
the lambda is 0.5305647777541223
the regulation term lambda/alpha is 1.6569352028856736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31871463929123617
the lambda is 0.4981929498300294
the regulation term lambda/alpha is 1.5631316808600966
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32109054420287564
the lambda is 0.5234103534609015
the regulation term lambda/alpha is 1.6301020472598953
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3281096351931147
the lambda is 0.5160214758469271
the regulation term lambda/alpha is 1.572710522637391
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3274525277246427
the lambda is 0.5485105019303077
the regulation term lambda/alpha is 1.67508403658302
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3248090793710675
the lambda is 0.5321716803688322
the regulation term lambda/alpha is 1.6384138072719023
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3283851217043084
the lambda is 0.5246382165841902
the regulation term lambda/alpha is 1.597630897104395
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3028294096229389
the lambda is 0.5087762709270506
the regulation term lambda/alpha is 1.6800754971604035
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.311419356560375
the lambda is 0.5512084005553426
the regulation term lambda/alpha is 1.7699876033507878
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32541752502179827
the lambda is 0.506266605084584
the regulation term lambda/alpha is 1.5557447468469052
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3065064739034058
the lambda is 0.5228644968319331
the regulation term lambda/alpha is 1.7058840231763315
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34862425039014955
the lambda is 0.5676931733614071
the regulation term lambda/alpha is 1.6283811947278335
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3356021995822511
the lambda is 0.5356876124503651
the regulation term lambda/alpha is 1.5961981569762507
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32747840798361133
the lambda is 0.5206797652062716
the regulation term lambda/alpha is 1.5899667047127242
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2986700407010782
the lambda is 0.5096281923631607
the regulation term lambda/alpha is 1.7063251177349201
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3303230609861931
the lambda is 0.528360009668697
the regulation term lambda/alpha is 1.599525047059253
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29295873880452505
the lambda is 0.49588058522836814
the regulation term lambda/alpha is 1.6926635718460048
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31873997782811214
the lambda is 0.49590646969960256
the regulation term lambda/alpha is 1.5558339216771595
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3502960464950303
the lambda is 0.5287521384887667
the regulation term lambda/alpha is 1.5094436371158648
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3068371074151487
the lambda is 0.5194574676696819
the regulation term lambda/alpha is 1.6929421348209335
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3004418050200949
the lambda is 0.5246723474809585
the regulation term lambda/alpha is 1.7463360248613407
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34042669639839135
the lambda is 0.5353111678071838
the regulation term lambda/alpha is 1.5724711765281911
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.327295961758828
the lambda is 0.49107441359860415
the regulation term lambda/alpha is 1.5003986329671193
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3014581074574324
the lambda is 0.5249481174137535
the regulation term lambda/alpha is 1.7413634081408116
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32277423869466465
the lambda is 0.5001960440235661
the regulation term lambda/alpha is 1.549677712962519
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3091000544888045
the lambda is 0.5274073983607143
the regulation term lambda/alpha is 1.7062675683863937
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3235343134135363
the lambda is 0.5230968630223868
the regulation term lambda/alpha is 1.61682035362281
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3236178295271869
the lambda is 0.5408731034657472
the regulation term lambda/alpha is 1.6713328318652139
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29948021772064876
the lambda is 0.48026223900301945
the regulation term lambda/alpha is 1.603652630742381
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3219685617733233
the lambda is 0.5403376040340021
the regulation term lambda/alpha is 1.6782309460835434
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29725211994835915
the lambda is 0.5303330936737833
the regulation term lambda/alpha is 1.784118793722705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3099982165217933
the lambda is 0.5223422176170033
the regulation term lambda/alpha is 1.684984589517088
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3385815612423108
the lambda is 0.5517451130371893
the regulation term lambda/alpha is 1.6295781465852623
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3163101965767771
the lambda is 0.5139402077248453
the regulation term lambda/alpha is 1.6247981041613306
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33053104428505575
the lambda is 0.5148077449114112
the regulation term lambda/alpha is 1.5575170738498985
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3000178323492431
the lambda is 0.5167215671426515
the regulation term lambda/alpha is 1.7223028481225378
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2933937277734177
the lambda is 0.4927629767472672
the regulation term lambda/alpha is 1.679527986119112
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29911068431454896
the lambda is 0.5107207986030572
the regulation term lambda/alpha is 1.7074642444600077
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3327715897275234
the lambda is 0.5546642967726124
the regulation term lambda/alpha is 1.6668018361386467
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3238487966316772
the lambda is 0.49898577025470264
the regulation term lambda/alpha is 1.5407985931848742
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3629969731400007
the lambda is 0.5254772100950256
the regulation term lambda/alpha is 1.4476076909114046
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32415530313402524
the lambda is 0.52219007324245
the regulation term lambda/alpha is 1.6109255908935272
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2822876138595069
the lambda is 0.5026368672329954
the regulation term lambda/alpha is 1.780584207577578
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3131878734894998
the lambda is 0.4993419159172643
the regulation term lambda/alpha is 1.594384579305896
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3321788756577602
the lambda is 0.5376003492471202
the regulation term lambda/alpha is 1.6184061920933321
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3470407286033463
the lambda is 0.4940597272202147
the regulation term lambda/alpha is 1.4236361513201676
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30657383737650745
the lambda is 0.5621851487384226
the regulation term lambda/alpha is 1.833767530684608
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2975195199211679
the lambda is 0.492184048280937
the regulation term lambda/alpha is 1.6542916189544414
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32540723744873673
the lambda is 0.5201035208683304
the regulation term lambda/alpha is 1.5983157748612316
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31521790425035884
the lambda is 0.49935864694266413
the regulation term lambda/alpha is 1.5841696813834953
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3332451238899302
the lambda is 0.5271870047805097
the regulation term lambda/alpha is 1.581979650974992
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29060451063634934
the lambda is 0.4931911156359714
the regulation term lambda/alpha is 1.6971213370226406
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3317489147669236
the lambda is 0.5103384047789431
the regulation term lambda/alpha is 1.5383272772346246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3100346901998882
the lambda is 0.4963262725417708
the regulation term lambda/alpha is 1.600873348146219
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29118679744176346
the lambda is 0.5253833572797053
the regulation term lambda/alpha is 1.804282892959048
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3017561540030426
the lambda is 0.5146335174520154
the regulation term lambda/alpha is 1.705461547759607
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3365698456085222
the lambda is 0.5031923935192667
the regulation term lambda/alpha is 1.495060832349639
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30215552042089106
the lambda is 0.5399236319208476
the regulation term lambda/alpha is 1.7869063956493485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36069649240965057
the lambda is 0.515550669980828
the regulation term lambda/alpha is 1.429319887578242
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3252583839382683
the lambda is 0.5410101696838852
the regulation term lambda/alpha is 1.6633242873965857
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32943119866014775
the lambda is 0.5687775964893832
the regulation term lambda/alpha is 1.7265444159590762
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30767104966962106
the lambda is 0.5120515189553352
the regulation term lambda/alpha is 1.6642824195034893
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3370812036573974
the lambda is 0.5186125342118217
the regulation term lambda/alpha is 1.538538870114304
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3169005307329413
the lambda is 0.490900508532145
the regulation term lambda/alpha is 1.549068117357737
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3114942272414999
the lambda is 0.5013064173161617
the regulation term lambda/alpha is 1.6093602175410504
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3132334536241743
the lambda is 0.4979858628027202
the regulation term lambda/alpha is 1.589823363503876
1890
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32050514326472457
the lambda is 0.5153738880402677
the regulation term lambda/alpha is 1.6080050472531398
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31146385744598776
the lambda is 0.50746034363563
the regulation term lambda/alpha is 1.6292752160614037
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32249214437070034
the lambda is 0.5138452094296149
the regulation term lambda/alpha is 1.5933572907095583
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32922178398393287
the lambda is 0.5184829072112321
the regulation term lambda/alpha is 1.574874241118066
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30967726124625017
the lambda is 0.4957357896716397
the regulation term lambda/alpha is 1.6008143047914614
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31719947561589207
the lambda is 0.5236154511216888
the regulation term lambda/alpha is 1.6507450086574327
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32137755305502713
the lambda is 0.5378305739481086
the regulation term lambda/alpha is 1.673516301420155
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3169473928035687
the lambda is 0.5285387094801142
the regulation term lambda/alpha is 1.6675912832249775
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3167095865786636
the lambda is 0.5437587363423932
the regulation term lambda/alpha is 1.716900148860305
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3414717545650709
the lambda is 0.5292745518310461
the regulation term lambda/alpha is 1.549980473509962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3207462732717783
the lambda is 0.5034405471974391
the regulation term lambda/alpha is 1.5695912599765682
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3335893225498297
the lambda is 0.5523919005034273
the regulation term lambda/alpha is 1.655904020791655
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2905384950371625
the lambda is 0.49731865033486355
the regulation term lambda/alpha is 1.7117134521924608
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33496998330745004
the lambda is 0.5386527696026084
the regulation term lambda/alpha is 1.6080628009830047
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3080960615550601
the lambda is 0.4863578441464667
the regulation term lambda/alpha is 1.5785915655385596
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3034014225359311
the lambda is 0.5349844980428248
the regulation term lambda/alpha is 1.7632893530005378
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3327691096122473
the lambda is 0.5437761552683481
the regulation term lambda/alpha is 1.6340944503592074
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30627280795179673
the lambda is 0.5092967490341049
the regulation term lambda/alpha is 1.6628859494253942
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.37624648373480274
the lambda is 0.5382181046993071
the regulation term lambda/alpha is 1.430493381244913
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34334234674086583
the lambda is 0.5015714448191114
the regulation term lambda/alpha is 1.460849352199679
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33718148097478723
the lambda is 0.5320264793707372
the regulation term lambda/alpha is 1.5778638786230361
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3315196632794322
the lambda is 0.527543534813697
the regulation term lambda/alpha is 1.5912888230977709
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31659237047627486
the lambda is 0.5053541031892779
the regulation term lambda/alpha is 1.596229569364018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3182142315898668
the lambda is 0.5153246308077594
the regulation term lambda/alpha is 1.6194267246725158
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36197964229427604
the lambda is 0.525699099035351
the regulation term lambda/alpha is 1.4522891279282968
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29733416381526934
the lambda is 0.4867829586912208
the regulation term lambda/alpha is 1.637157844376249
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31640886067208773
the lambda is 0.5023609053020289
the regulation term lambda/alpha is 1.5876954401180747
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3361314421719059
the lambda is 0.528960380209192
the regulation term lambda/alpha is 1.573671230490448
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.310181377553854
the lambda is 0.5376047851243907
the regulation term lambda/alpha is 1.7331949111969214
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3356480677121434
the lambda is 0.5333694144491806
the regulation term lambda/alpha is 1.5890733948946965
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3175225276711661
the lambda is 0.5633654028322364
the regulation term lambda/alpha is 1.774253332398736
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3351641717119571
the lambda is 0.5228764512485209
the regulation term lambda/alpha is 1.5600606967557538
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.297376728611933
the lambda is 0.4969005871713832
the regulation term lambda/alpha is 1.6709464438954884
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29288719220061715
the lambda is 0.5031487483385222
the regulation term lambda/alpha is 1.7178926280732805
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33847682210154506
the lambda is 0.5290494796641443
the regulation term lambda/alpha is 1.5630301548548169
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29750202330153386
the lambda is 0.5068381239587805
the regulation term lambda/alpha is 1.70364597300595
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31793146033903025
the lambda is 0.505569398605756
the regulation term lambda/alpha is 1.5901836139985508
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3096810956885313
the lambda is 0.46975848076697824
the regulation term lambda/alpha is 1.51691041948343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29747878293530616
the lambda is 0.5177954835594952
the regulation term lambda/alpha is 1.7406131571813717
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2821910207821078
the lambda is 0.5013350000367928
the regulation term lambda/alpha is 1.7765802705107892
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30825674282635834
the lambda is 0.5064499447053827
the regulation term lambda/alpha is 1.642948472308575
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3325341491024709
the lambda is 0.5352545962742146
the regulation term lambda/alpha is 1.6096229446476338
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32402781593991664
the lambda is 0.5258526239730353
the regulation term lambda/alpha is 1.6228626003841051
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3152634178172205
the lambda is 0.4953198002382171
the regulation term lambda/alpha is 1.5711299575055278
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3346161609183633
the lambda is 0.5054848456938663
the regulation term lambda/alpha is 1.51064086177592
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3064906324823479
the lambda is 0.4976447405083238
the regulation term lambda/alpha is 1.6236866245397736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29769318866787137
the lambda is 0.5208970197293264
the regulation term lambda/alpha is 1.7497780922037751
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3305308226126585
the lambda is 0.528493626646678
the regulation term lambda/alpha is 1.5989238839187097
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32676272788391997
the lambda is 0.5161365139108215
the regulation term lambda/alpha is 1.5795452475662253
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31096422064387097
the lambda is 0.5418286179551361
the regulation term lambda/alpha is 1.7424146637617857
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31852596753071444
the lambda is 0.5013871152285058
the regulation term lambda/alpha is 1.5740855262613984
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30684415933580617
the lambda is 0.49611473577444826
the regulation term lambda/alpha is 1.6168296533599875
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35824194008819604
the lambda is 0.54238399951047
the regulation term lambda/alpha is 1.5140159172232592
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28513527954365986
the lambda is 0.4951041185936253
the regulation term lambda/alpha is 1.7363832332007694
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3215862978108892
the lambda is 0.5265864046306631
the regulation term lambda/alpha is 1.6374653031402646
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30969102933863263
the lambda is 0.5301338111092605
the regulation term lambda/alpha is 1.7118151993017015
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3474334664840565
the lambda is 0.5596007185536613
the regulation term lambda/alpha is 1.6106701643243717
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3338202204216827
the lambda is 0.5506089921958103
the regulation term lambda/alpha is 1.6494177359905862
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.297993670731313
the lambda is 0.5231737236158089
the regulation term lambda/alpha is 1.7556538108070432
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31155793448875907
the lambda is 0.5473890224635622
the regulation term lambda/alpha is 1.756941364249903
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31251316269437956
the lambda is 0.49749762786912677
the regulation term lambda/alpha is 1.5919253562949978
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3202275839516758
the lambda is 0.4943799626946315
the regulation term lambda/alpha is 1.5438394050689785
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2974937964221692
the lambda is 0.5165432481767169
the regulation term lambda/alpha is 1.7363160320953306
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32977816496347284
the lambda is 0.5260194360528554
the regulation term lambda/alpha is 1.5950705411655097
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31419419192002895
the lambda is 0.5246901682010281
the regulation term lambda/alpha is 1.6699550204752867
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3135732463492852
the lambda is 0.5486155641227622
the regulation term lambda/alpha is 1.7495611328769625
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3283914179283666
the lambda is 0.5419512213243922
the regulation term lambda/alpha is 1.6503209028520054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33376217220728704
the lambda is 0.4968494032768008
the regulation term lambda/alpha is 1.4886330586565888
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30123873816541025
the lambda is 0.5483123317727279
the regulation term lambda/alpha is 1.8201919683770866
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30307669799152853
the lambda is 0.5080130272713569
the regulation term lambda/alpha is 1.676186360211555
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3432687290784148
the lambda is 0.5393196014919793
the regulation term lambda/alpha is 1.571129426615436
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3077216899814022
the lambda is 0.48535763364875845
the regulation term lambda/alpha is 1.5772616927916003
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2973453266363338
the lambda is 0.4892633491877808
the regulation term lambda/alpha is 1.6454381668697657
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29616580519831254
the lambda is 0.5162423170400793
the regulation term lambda/alpha is 1.743085487855033
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3101029271503142
the lambda is 0.5382243165610462
the regulation term lambda/alpha is 1.735631203184858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3269270309484931
the lambda is 0.5407102844318985
the regulation term lambda/alpha is 1.6539173370374707
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3368707711957595
the lambda is 0.5279953466254946
the regulation term lambda/alpha is 1.5673528004561443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31859297724492935
the lambda is 0.5070244257212874
the regulation term lambda/alpha is 1.5914488451874909
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33315212311056397
the lambda is 0.4952380054305801
the regulation term lambda/alpha is 1.4865221353136155
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30119937342136593
the lambda is 0.5047777020166059
the regulation term lambda/alpha is 1.6758922712313946
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2993324884959653
the lambda is 0.5070638169801888
the regulation term lambda/alpha is 1.6939818979489876
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32469473335953525
the lambda is 0.5018832001717263
the regulation term lambda/alpha is 1.5457078560494846
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3264401039352117
the lambda is 0.5317030073716792
the regulation term lambda/alpha is 1.6287919313896733
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3099458637726349
the lambda is 0.5150264498107373
the regulation term lambda/alpha is 1.6616658262248731
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2947290002398261
the lambda is 0.5276711382482876
the regulation term lambda/alpha is 1.7903604254040573
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3021396280274712
the lambda is 0.5238310779378454
the regulation term lambda/alpha is 1.7337384088201022
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3250969364423926
the lambda is 0.5623547085269301
the regulation term lambda/alpha is 1.7298062377360475
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33730547001491185
the lambda is 0.5561885066127688
the regulation term lambda/alpha is 1.6489163564059022
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3165747621580009
the lambda is 0.5218821298481563
the regulation term lambda/alpha is 1.6485272745389838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3150880724695879
the lambda is 0.53851269509452
the regulation term lambda/alpha is 1.7090862591966154
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3000285458854218
the lambda is 0.5302340076321808
the regulation term lambda/alpha is 1.7672785303391507
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3031968157259888
the lambda is 0.5167994086195636
the regulation term lambda/alpha is 1.7045014387176682
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31829944225096957
the lambda is 0.5163880612940234
the regulation term lambda/alpha is 1.6223341694920939
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3386310382487608
the lambda is 0.5323899769751017
the regulation term lambda/alpha is 1.5721830453828753
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3079175453280536
the lambda is 0.4727758827211976
the regulation term lambda/alpha is 1.5353976734827008
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31656926254234663
the lambda is 0.5636061328146932
the regulation term lambda/alpha is 1.7803564638221978
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32645136217954357
the lambda is 0.5120666368908282
the regulation term lambda/alpha is 1.568584776219126
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3145286990840101
the lambda is 0.5471341835885164
the regulation term lambda/alpha is 1.7395365993052918
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34387100748073196
the lambda is 0.5208094678802199
the regulation term lambda/alpha is 1.5145489341941754
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3497226544963235
the lambda is 0.5099077416691379
the regulation term lambda/alpha is 1.4580346314810966
1900
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3125843430360662
the lambda is 0.4944337627038587
the regulation term lambda/alpha is 1.58176112693786
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32507222685417864
the lambda is 0.52900323683981
the regulation term lambda/alpha is 1.6273406127589947
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31402094325668045
the lambda is 0.530277802961635
the regulation term lambda/alpha is 1.688670180600618
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2989088675091664
the lambda is 0.5324029031471532
the regulation term lambda/alpha is 1.7811545959934643
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3121609007583909
the lambda is 0.48721562959969
the regulation term lambda/alpha is 1.5607836484838615
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32666757367677424
the lambda is 0.5036999669035193
the regulation term lambda/alpha is 1.5419343929186928
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33103507920887937
the lambda is 0.5058726638028406
the regulation term lambda/alpha is 1.5281542518448346
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3502696715464546
the lambda is 0.5614395576037565
the regulation term lambda/alpha is 1.6028780200266224
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2928111445486617
the lambda is 0.5086116087382893
the regulation term lambda/alpha is 1.7369953917644145
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32758865979980994
the lambda is 0.5403161606224566
the regulation term lambda/alpha is 1.6493738243339828
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2930532095998224
the lambda is 0.558647208229028
the regulation term lambda/alpha is 1.9062995726676613
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30380126904684873
the lambda is 0.527281878977404
the regulation term lambda/alpha is 1.7356144713671116
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33868180837305
the lambda is 0.5286033721400167
the regulation term lambda/alpha is 1.5607669472396717
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3153215885153638
the lambda is 0.5364985794735193
the regulation term lambda/alpha is 1.7014330734521808
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31797143904087016
the lambda is 0.5295673544116396
the regulation term lambda/alpha is 1.6654557277503537
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3476858014056392
the lambda is 0.5176887416333154
the regulation term lambda/alpha is 1.4889556592198498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30778891748897985
the lambda is 0.49187327713101137
the regulation term lambda/alpha is 1.5980863805748384
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31969625915872946
the lambda is 0.47114070395654617
the regulation term lambda/alpha is 1.4737135342038032
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35636523497466155
the lambda is 0.5402982397352194
the regulation term lambda/alpha is 1.5161362184322944
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34622179282560545
the lambda is 0.5527061572117407
the regulation term lambda/alpha is 1.5963933197300002
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2968895876488441
the lambda is 0.5025496410839754
the regulation term lambda/alpha is 1.6927156154711038
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3341902614345361
the lambda is 0.5350262805807551
the regulation term lambda/alpha is 1.6009631109060918
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3199997100577052
the lambda is 0.5194003429675758
the regulation term lambda/alpha is 1.6231275424403129
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.316281206928873
the lambda is 0.5370347128231464
the regulation term lambda/alpha is 1.697965927339836
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3504633782229347
the lambda is 0.531845452977587
the regulation term lambda/alpha is 1.517549296232808
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3081935929179638
the lambda is 0.5265535149999222
the regulation term lambda/alpha is 1.7085154497033375
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2951781252073696
the lambda is 0.5279279428039442
the regulation term lambda/alpha is 1.7885063211681502
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31774332399435223
the lambda is 0.5272070532440621
the regulation term lambda/alpha is 1.6592230691633132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3280991323918751
the lambda is 0.5037114806988305
the regulation term lambda/alpha is 1.5352417332734898
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3251950030358564
the lambda is 0.5335359926408484
the regulation term lambda/alpha is 1.6406647939237247
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3230253698513107
the lambda is 0.5217004488483086
the regulation term lambda/alpha is 1.615044815484457
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31976957514165283
the lambda is 0.5504044465442388
the regulation term lambda/alpha is 1.7212533315604477
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3069235719240873
the lambda is 0.5209936141941283
the regulation term lambda/alpha is 1.6974701907971663
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32567641244658574
the lambda is 0.5586132270305261
the regulation term lambda/alpha is 1.7152400532603642
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3362832644744826
the lambda is 0.5387358994076906
the regulation term lambda/alpha is 1.602030063106427
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.37173925193113594
the lambda is 0.5493571990618046
the regulation term lambda/alpha is 1.47780250863466
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3417940657264795
the lambda is 0.5402702587723096
the regulation term lambda/alpha is 1.5806894061310606
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3231576950677261
the lambda is 0.5076747826241998
the regulation term lambda/alpha is 1.5709815683572175
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32335303966620094
the lambda is 0.5170398745567445
the regulation term lambda/alpha is 1.5989949409180984
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3002219707574753
the lambda is 0.5195374645488594
the regulation term lambda/alpha is 1.7305111389351018
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3467935543379966
the lambda is 0.5199498128624735
the regulation term lambda/alpha is 1.4993064500723479
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3118405615800696
the lambda is 0.5105224283094649
the regulation term lambda/alpha is 1.6371264396225147
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33968211050567637
the lambda is 0.5441680591716759
the regulation term lambda/alpha is 1.601992104799356
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32325210092225
the lambda is 0.5063013952634182
the regulation term lambda/alpha is 1.5662741056250584
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29625844360302034
the lambda is 0.5220245675690298
the regulation term lambda/alpha is 1.7620580234618766
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3354962579369129
the lambda is 0.5204881029659518
the regulation term lambda/alpha is 1.5513976405180203
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29322930490899696
the lambda is 0.5427977388131003
the regulation term lambda/alpha is 1.8511033165036366
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31287108136029035
the lambda is 0.5309183162795172
the regulation term lambda/alpha is 1.6969235826181457
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2904838158436155
the lambda is 0.5013392143775139
the regulation term lambda/alpha is 1.72587657911866
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3280292549243835
the lambda is 0.5331137071210951
the regulation term lambda/alpha is 1.6252017133166587
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29894029529328087
the lambda is 0.5238416819003958
the regulation term lambda/alpha is 1.7523287765086046
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3327337521873526
the lambda is 0.5273665688764235
the regulation term lambda/alpha is 1.5849506261675517
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28169595379792883
the lambda is 0.525896801636045
the regulation term lambda/alpha is 1.8668951205926467
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31465584408093916
the lambda is 0.4870763469029806
the regulation term lambda/alpha is 1.5479653598224272
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32954879624681715
the lambda is 0.5576075772008131
the regulation term lambda/alpha is 1.6920334213061128
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30782564456771394
the lambda is 0.5141505751282496
the regulation term lambda/alpha is 1.6702655681929364
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3251141820625323
the lambda is 0.48533995117813805
the regulation term lambda/alpha is 1.4928292211035814
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3007933591928183
the lambda is 0.49563383917970144
the regulation term lambda/alpha is 1.6477552579941903
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3146137526738242
the lambda is 0.4981290103133411
the regulation term lambda/alpha is 1.583303355558574
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3135866985955245
the lambda is 0.5461812604239391
the regulation term lambda/alpha is 1.741723302902026
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31447390709038436
the lambda is 0.5083503808772868
the regulation term lambda/alpha is 1.616510525724411
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30781832259198194
the lambda is 0.5583599934466473
the regulation term lambda/alpha is 1.8139270877216829
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29239595207164826
the lambda is 0.5241579050863168
the regulation term lambda/alpha is 1.792630511375472
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32140948032762195
the lambda is 0.5089809959861419
the regulation term lambda/alpha is 1.583590488579624
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3076136816329627
the lambda is 0.5042363203163402
the regulation term lambda/alpha is 1.63918691015175
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3222104360384846
the lambda is 0.5580811622563092
the regulation term lambda/alpha is 1.7320393750053844
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32355726648669425
the lambda is 0.5514257623477828
the regulation term lambda/alpha is 1.7042601711139729
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3084115587753405
the lambda is 0.5547943099516175
the regulation term lambda/alpha is 1.7988765147280106
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3176154529338037
the lambda is 0.5119215218502848
the regulation term lambda/alpha is 1.611765161681153
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30420297600875784
the lambda is 0.513299226965547
the regulation term lambda/alpha is 1.6873576771016512
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32427104033133203
the lambda is 0.5299695371889858
the regulation term lambda/alpha is 1.6343412493680476
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3168848835303999
the lambda is 0.5166819037952068
the regulation term lambda/alpha is 1.6305034750754834
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31181414297456955
the lambda is 0.5544897823428682
the regulation term lambda/alpha is 1.7782701485355343
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3288911209047697
the lambda is 0.5118262239544975
the regulation term lambda/alpha is 1.5562178223190666
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3504335353591413
the lambda is 0.536939553139428
the regulation term lambda/alpha is 1.5322150963353045
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3397580492742769
the lambda is 0.5207574766603005
the regulation term lambda/alpha is 1.5327303584790362
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3325003245968561
the lambda is 0.5357289975836999
the regulation term lambda/alpha is 1.6112134574101566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.299490038713623
the lambda is 0.4779391293296234
the regulation term lambda/alpha is 1.5958431585320143
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31537658976734717
the lambda is 0.5182466575511749
the regulation term lambda/alpha is 1.6432629255503228
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3430976524034157
the lambda is 0.5676223736991294
the regulation term lambda/alpha is 1.6544047145846295
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2969210714877179
the lambda is 0.5210766945860317
the regulation term lambda/alpha is 1.754933363183643
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30424991959813713
the lambda is 0.547995858638161
the regulation term lambda/alpha is 1.801137234027773
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31432620771442726
the lambda is 0.492540704357308
the regulation term lambda/alpha is 1.566973075324323
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33659210173254317
the lambda is 0.5090452217478948
the regulation term lambda/alpha is 1.5123504655269162
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2950993358694992
the lambda is 0.5089981618557131
the regulation term lambda/alpha is 1.7248366905197159
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3041536212469003
the lambda is 0.49379603327311167
the regulation term lambda/alpha is 1.6235086442461484
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29377487775196387
the lambda is 0.5359667629668065
the regulation term lambda/alpha is 1.824413193763038
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31460113185959515
the lambda is 0.5069053596142212
the regulation term lambda/alpha is 1.6112636232995197
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3008532296011359
the lambda is 0.52425022201557
the regulation term lambda/alpha is 1.7425447707861024
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30362138791827087
the lambda is 0.49618899695606894
the regulation term lambda/alpha is 1.6342359817208716
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34230441851709115
the lambda is 0.5134632179160419
the regulation term lambda/alpha is 1.5000192522796922
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31268996616039624
the lambda is 0.5183018220132726
the regulation term lambda/alpha is 1.6575582145395944
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30249599139336564
the lambda is 0.5340991090089445
the regulation term lambda/alpha is 1.7656402868307841
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32572715251949413
the lambda is 0.5489397638746925
the regulation term lambda/alpha is 1.6852748063176572
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30038562393112206
the lambda is 0.5465051594809507
the regulation term lambda/alpha is 1.8193452547058757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3067988477130039
the lambda is 0.5029582546134306
the regulation term lambda/alpha is 1.639374653336132
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3037264866919588
the lambda is 0.49366273008410755
the regulation term lambda/alpha is 1.6253529136060605
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31326981771999146
the lambda is 0.5223864865425246
the regulation term lambda/alpha is 1.6675289382951248
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3326731523684512
the lambda is 0.5153813052663399
the regulation term lambda/alpha is 1.5492121970081036
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.326151370827045
the lambda is 0.5284364865546485
the regulation term lambda/alpha is 1.6202185053358964
1910
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3455211996824918
the lambda is 0.522226119969481
the regulation term lambda/alpha is 1.5114155671182197
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31768850962435397
the lambda is 0.524175034419916
the regulation term lambda/alpha is 1.6499653545534867
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3343425972635681
the lambda is 0.5293377943423823
the regulation term lambda/alpha is 1.583219723345919
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31658699069337665
the lambda is 0.5164510603297748
the regulation term lambda/alpha is 1.6313085360793367
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33672358833404165
the lambda is 0.5289604728767785
the regulation term lambda/alpha is 1.5709041219649604
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3214387551840764
the lambda is 0.5232505779197527
the regulation term lambda/alpha is 1.6278391123687186
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33349426264896237
the lambda is 0.5298243881646524
the regulation term lambda/alpha is 1.5887061563105451
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3197940208709375
the lambda is 0.5098035995163838
the regulation term lambda/alpha is 1.594162386551093
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3017496594353931
the lambda is 0.521765123862595
the regulation term lambda/alpha is 1.7291324365995147
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3052289535137885
the lambda is 0.5154521322794409
the regulation term lambda/alpha is 1.688739309772445
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3185502415211488
the lambda is 0.5379437660438028
the regulation term lambda/alpha is 1.6887250296060072
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3192906527677362
the lambda is 0.5007253959305508
the regulation term lambda/alpha is 1.5682432028312363
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32091826948071095
the lambda is 0.5010100426307295
the regulation term lambda/alpha is 1.5611764435893016
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31064544602003075
the lambda is 0.4929021785738583
the regulation term lambda/alpha is 1.5867033780436475
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3175898959863719
the lambda is 0.5041695428371946
the regulation term lambda/alpha is 1.5874860919971745
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28272762269679375
the lambda is 0.5394957792492964
the regulation term lambda/alpha is 1.9081820661996975
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3269042815309007
the lambda is 0.5338256363652051
the regulation term lambda/alpha is 1.6329722996140847
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30253238512258673
the lambda is 0.5120706142179033
the regulation term lambda/alpha is 1.6926142105758737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3217813691668334
the lambda is 0.5038535634293687
the regulation term lambda/alpha is 1.5658257801996505
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3117033191123766
the lambda is 0.5111087454658837
the regulation term lambda/alpha is 1.6397282740567052
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30179043046689114
the lambda is 0.5063197195270374
the regulation term lambda/alpha is 1.6777195974826802
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3066606514994592
the lambda is 0.5113823663953078
the regulation term lambda/alpha is 1.667583903884746
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3228756879876114
the lambda is 0.5095643856949953
the regulation term lambda/alpha is 1.5782061166356602
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30142421906111916
the lambda is 0.5056772868317938
the regulation term lambda/alpha is 1.6776265968503967
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3286712670762198
the lambda is 0.5531830344964147
the regulation term lambda/alpha is 1.6830891225065012
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3116249951401079
the lambda is 0.5313966551069275
the regulation term lambda/alpha is 1.7052440060785539
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32189372358580515
the lambda is 0.5328938447678316
the regulation term lambda/alpha is 1.6554962266164892
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29865474441830125
the lambda is 0.5222599546835311
the regulation term lambda/alpha is 1.748708046479397
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31601532802182436
the lambda is 0.502074884520546
the regulation term lambda/alpha is 1.5887675058782977
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3028198949098152
the lambda is 0.5592750664076339
the regulation term lambda/alpha is 1.8468901013726173
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3082092077953754
the lambda is 0.4812748421708917
the regulation term lambda/alpha is 1.561520000046258
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3142566140605064
the lambda is 0.5227730686669806
the regulation term lambda/alpha is 1.6635228831375584
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3598992634391448
the lambda is 0.5573676192208493
the regulation term lambda/alpha is 1.5486767433051287
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33143616990338626
the lambda is 0.5460005200064669
the regulation term lambda/alpha is 1.6473775935970605
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33684740297487953
the lambda is 0.5511328063102764
the regulation term lambda/alpha is 1.6361497860542427
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34235978875427103
the lambda is 0.5343441183499172
the regulation term lambda/alpha is 1.5607677534041333
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30516579425033014
the lambda is 0.510080354163503
the regulation term lambda/alpha is 1.6714860045719266
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3022161539198769
the lambda is 0.5388368191799942
the regulation term lambda/alpha is 1.7829517456001038
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3110070891874968
the lambda is 0.5305890410875762
the regulation term lambda/alpha is 1.7060351983414117
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32642290853986783
the lambda is 0.521809494453089
the regulation term lambda/alpha is 1.5985688528639452
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3326963027887076
the lambda is 0.5247478005882887
the regulation term lambda/alpha is 1.5772576857325382
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.318066618619046
the lambda is 0.5403811355579046
the regulation term lambda/alpha is 1.6989558285119148
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3206334902005487
the lambda is 0.5290380802331787
the regulation term lambda/alpha is 1.6499776112042375
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31550695711928656
the lambda is 0.512409782853897
the regulation term lambda/alpha is 1.6240839426566611
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3198584013009192
the lambda is 0.5205243795238759
the regulation term lambda/alpha is 1.6273587856589466
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31229098953015416
the lambda is 0.5120614875974228
the regulation term lambda/alpha is 1.6396934422213907
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29331359590110695
the lambda is 0.5116474314841963
the regulation term lambda/alpha is 1.7443699802333827
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33356071221183253
the lambda is 0.5085832556258962
the regulation term lambda/alpha is 1.524709706528367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3041715172352063
the lambda is 0.5171142751980845
the regulation term lambda/alpha is 1.7000746154618291
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3304628158469278
the lambda is 0.5274525496937972
the regulation term lambda/alpha is 1.5961025700940468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33161445542614454
the lambda is 0.5138736589059464
the regulation term lambda/alpha is 1.5496117569591101
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33036741089914307
the lambda is 0.5257285651280155
the regulation term lambda/alpha is 1.591345113905662
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3093433464575276
the lambda is 0.5134798541482256
the regulation term lambda/alpha is 1.6599026939754324
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34034705572136326
the lambda is 0.516299716674927
the regulation term lambda/alpha is 1.5169801177819309
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.328305690659259
the lambda is 0.5123968900605115
the regulation term lambda/alpha is 1.5607310644892736
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3057526242099403
the lambda is 0.5068249815676314
the regulation term lambda/alpha is 1.6576308474122137
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33161920673754297
the lambda is 0.5508630592245933
the regulation term lambda/alpha is 1.6611313459312655
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30859201248535584
the lambda is 0.5188772805000289
the regulation term lambda/alpha is 1.6814345786887537
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31814048486132196
the lambda is 0.5276837602740967
the regulation term lambda/alpha is 1.6586501416319746
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3328414934766984
the lambda is 0.504907600003118
the regulation term lambda/alpha is 1.5169611058077577
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3206582207711164
the lambda is 0.5150287766785924
the regulation term lambda/alpha is 1.606161150149387
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3080156423544644
the lambda is 0.5120177736872719
the regulation term lambda/alpha is 1.6623109455526996
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.308350382038118
the lambda is 0.5132368230459048
the regulation term lambda/alpha is 1.6644598253893486
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3091649437530636
the lambda is 0.5317322665450168
the regulation term lambda/alpha is 1.7198983173516669
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3120733883203843
the lambda is 0.5422506056151385
the regulation term lambda/alpha is 1.7375739999286548
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3231943940835935
the lambda is 0.5568623352057932
the regulation term lambda/alpha is 1.722995031472489
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3135193131017121
the lambda is 0.5056749387572169
the regulation term lambda/alpha is 1.6128988474568569
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2917860811194475
the lambda is 0.49495586145455683
the regulation term lambda/alpha is 1.6962970253949106
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3204949544254498
the lambda is 0.5214636388729375
the regulation term lambda/alpha is 1.6270572490221056
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33749568448541506
the lambda is 0.5157767891556869
the regulation term lambda/alpha is 1.5282470646761006
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34598435088119256
the lambda is 0.5285309764342699
the regulation term lambda/alpha is 1.5276152666678326
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32560939284114965
the lambda is 0.5105543471534391
the regulation term lambda/alpha is 1.5679963735030085
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3209324703412321
the lambda is 0.5377587942445604
the regulation term lambda/alpha is 1.6756135447210663
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29486903758047955
the lambda is 0.5053018700338799
the regulation term lambda/alpha is 1.7136484528185374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3205106092508326
the lambda is 0.5173346277409104
the regulation term lambda/alpha is 1.6140951744160292
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3380589026261895
the lambda is 0.5178420924580822
the regulation term lambda/alpha is 1.5318102509215354
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3287118904140533
the lambda is 0.5113706730871744
the regulation term lambda/alpha is 1.5556804849469845
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3147692336875286
the lambda is 0.5095901062591189
the regulation term lambda/alpha is 1.6189323851294468
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29184016113498473
the lambda is 0.4772098737282155
the regulation term lambda/alpha is 1.6351754736987407
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3432592417776872
the lambda is 0.5407773378272825
the regulation term lambda/alpha is 1.5754196013097252
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3017441890689404
the lambda is 0.4818099835437259
the regulation term lambda/alpha is 1.5967498331298282
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3158979704678348
the lambda is 0.5042139723138143
the regulation term lambda/alpha is 1.5961291918624532
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3319469600247173
the lambda is 0.509133089708587
the regulation term lambda/alpha is 1.5337784375873666
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30940105208039015
the lambda is 0.5267458050113037
the regulation term lambda/alpha is 1.7024693402608146
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31761310248357916
the lambda is 0.4947798008124033
the regulation term lambda/alpha is 1.557806642558091
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3115070312140141
the lambda is 0.517179680307081
the regulation term lambda/alpha is 1.6602504228925863
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.333491399683018
the lambda is 0.5281528809379727
the regulation term lambda/alpha is 1.5837076501522365
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2903476955454959
the lambda is 0.5075926786481102
the regulation term lambda/alpha is 1.7482235486472915
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33745629393760573
the lambda is 0.5286908994921393
the regulation term lambda/alpha is 1.5666944401099008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3431592570577031
the lambda is 0.5341912021434644
the regulation term lambda/alpha is 1.5566859735147367
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3057108772353082
the lambda is 0.528902046986026
the regulation term lambda/alpha is 1.7300727136997671
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3146911855330307
the lambda is 0.5200622157781559
the regulation term lambda/alpha is 1.6526113208327184
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3394739793614519
the lambda is 0.5325865616629379
the regulation term lambda/alpha is 1.5688582749839308
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2965536265990715
the lambda is 0.5107412530869762
the regulation term lambda/alpha is 1.7222559674762559
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.332455598767457
the lambda is 0.5292857713574594
the regulation term lambda/alpha is 1.592049504715002
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3122778222610685
the lambda is 0.5213271574712243
the regulation term lambda/alpha is 1.6694338192079095
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31468169644847777
the lambda is 0.5180897175109568
the regulation term lambda/alpha is 1.6463929213492805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3027438762362133
the lambda is 0.5273301904686684
the regulation term lambda/alpha is 1.7418360266260962
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3253323581400165
the lambda is 0.5244202028283308
the regulation term lambda/alpha is 1.611952176618813
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30869612809790226
the lambda is 0.5086967949918397
the regulation term lambda/alpha is 1.6478884854380413
1920
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3233922801233074
the lambda is 0.4989240474277016
the regulation term lambda/alpha is 1.542782800002106
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32393656444753344
the lambda is 0.5327220021981268
the regulation term lambda/alpha is 1.6445256901043952
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29457562682933813
the lambda is 0.5168856753616644
the regulation term lambda/alpha is 1.7546790307302689
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29286484836205207
the lambda is 0.4908660749756585
the regulation term lambda/alpha is 1.6760839606425857
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33353493876187457
the lambda is 0.5328633480810263
the regulation term lambda/alpha is 1.5976237753654383
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33171910064008825
the lambda is 0.5509812073801262
the regulation term lambda/alpha is 1.6609872820616836
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2802636567591871
the lambda is 0.4998749022034781
the regulation term lambda/alpha is 1.7835880255890229
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30021518044830303
the lambda is 0.48720460848251185
the regulation term lambda/alpha is 1.622851342010696
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3128835614995916
the lambda is 0.5213551093243435
the regulation term lambda/alpha is 1.6662911494154158
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.311599219815141
the lambda is 0.5301567124819166
the regulation term lambda/alpha is 1.7014057762931398
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3260483985231558
the lambda is 0.5659694227456589
the regulation term lambda/alpha is 1.7358448172394993
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29926115153505267
the lambda is 0.4791376839696432
the regulation term lambda/alpha is 1.6010687705768634
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3137596843321914
the lambda is 0.5211897283630474
the regulation term lambda/alpha is 1.6611112083196786
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31846757970292494
the lambda is 0.5092248819176862
the regulation term lambda/alpha is 1.5989849968172736
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3233713185490958
the lambda is 0.4892641545118642
the regulation term lambda/alpha is 1.5130103582070833
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3364677603675192
the lambda is 0.5313958878582826
the regulation term lambda/alpha is 1.5793367164742502
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29456107148658284
the lambda is 0.4837359830942151
the regulation term lambda/alpha is 1.6422264512174316
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3234257922087728
the lambda is 0.5181283096464797
the regulation term lambda/alpha is 1.6020005890934805
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3103929222333575
the lambda is 0.5299964546220339
the regulation term lambda/alpha is 1.7075017394358483
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32688444238584646
the lambda is 0.5256356713021726
the regulation term lambda/alpha is 1.60801678864155
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34916964005691176
the lambda is 0.5172043381218395
the regulation term lambda/alpha is 1.4812408605672003
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31329871975124884
the lambda is 0.510487302098931
the regulation term lambda/alpha is 1.629394791348796
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31623087391546323
the lambda is 0.5324058076712621
the regulation term lambda/alpha is 1.6835984452725767
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32104831758640856
the lambda is 0.5311543861317675
the regulation term lambda/alpha is 1.6544375317861926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34271852486835236
the lambda is 0.514102626760735
the regulation term lambda/alpha is 1.500072477722691
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31222848806217934
the lambda is 0.49620326959879446
the regulation term lambda/alpha is 1.5892312475342645
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31538366163542286
the lambda is 0.5057159790084567
the regulation term lambda/alpha is 1.603494538639272
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31521344431056036
the lambda is 0.4991897450962592
the regulation term lambda/alpha is 1.5836562624671502
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34898593327854294
the lambda is 0.5091631101895198
the regulation term lambda/alpha is 1.4589788918028725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32693363526249714
the lambda is 0.5282233268044617
the regulation term lambda/alpha is 1.6156897603403448
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34819595533423214
the lambda is 0.5296315829118985
the regulation term lambda/alpha is 1.5210733347074836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.345997358032177
the lambda is 0.4941887264982667
the regulation term lambda/alpha is 1.4283020231972643
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32054418256040224
the lambda is 0.5090033945724968
the regulation term lambda/alpha is 1.5879352122591772
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33653844678745803
the lambda is 0.5289803202953878
the regulation term lambda/alpha is 1.5718273063447845
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34041409511554455
the lambda is 0.5130616579447759
the regulation term lambda/alpha is 1.5071692544653026
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35822204534752644
the lambda is 0.5151933127027539
the regulation term lambda/alpha is 1.4381954416092482
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32738732013678873
the lambda is 0.5104041501443513
the regulation term lambda/alpha is 1.5590223528849394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2974278510730566
the lambda is 0.4649047191945681
the regulation term lambda/alpha is 1.563084013542412
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32767199004966113
the lambda is 0.5199730905404129
the regulation term lambda/alpha is 1.5868707314946482
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29092651159984406
the lambda is 0.5202417458479136
the regulation term lambda/alpha is 1.7882239160227584
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3242136892309592
the lambda is 0.503914342763923
the regulation term lambda/alpha is 1.5542660890082
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.292677337506597
the lambda is 0.5155432397851052
the regulation term lambda/alpha is 1.7614730411898896
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3009845761019321
the lambda is 0.49543069446630106
the regulation term lambda/alpha is 1.6460334974059183
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30948864981810953
the lambda is 0.5013116786964461
the regulation term lambda/alpha is 1.6198063450503708
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33829403206765013
the lambda is 0.5499592777627865
the regulation term lambda/alpha is 1.625684243973919
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3375261428933226
the lambda is 0.5026582773824767
the regulation term lambda/alpha is 1.4892425015544506
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3369771263085433
the lambda is 0.49742067003534013
the regulation term lambda/alpha is 1.4761259183505866
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3355237813322571
the lambda is 0.5513244678823889
the regulation term lambda/alpha is 1.643175531979452
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3353287822557872
the lambda is 0.5177591480804773
the regulation term lambda/alpha is 1.5440343193848867
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3148302411710753
the lambda is 0.5213314543271724
the regulation term lambda/alpha is 1.6559128893970725
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3251396969961116
the lambda is 0.5074161214401521
the regulation term lambda/alpha is 1.5606095660666757
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3399842137594937
the lambda is 0.5395052228465457
the regulation term lambda/alpha is 1.5868537450041547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31711320754203304
the lambda is 0.5127919282054966
the regulation term lambda/alpha is 1.6170626640882704
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3128311637933146
the lambda is 0.5087083249996712
the regulation term lambda/alpha is 1.626143376609919
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3026263051752556
the lambda is 0.5150479014739987
the regulation term lambda/alpha is 1.701927071989748
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3171148222260376
the lambda is 0.5143784603240203
the regulation term lambda/alpha is 1.622057451346044
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32414296804486453
the lambda is 0.5271815464148681
the regulation term lambda/alpha is 1.6263858802634925
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3470696760084527
the lambda is 0.5514575077423528
the regulation term lambda/alpha is 1.5888956767543194
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3122988794574291
the lambda is 0.5159307710935681
the regulation term lambda/alpha is 1.6520416979718846
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29299450494248735
the lambda is 0.5342689965912669
the regulation term lambda/alpha is 1.8234778727203091
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3498810717988155
the lambda is 0.52539363087504
the regulation term lambda/alpha is 1.5016349074669169
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30788672718784577
the lambda is 0.5099059185442951
the regulation term lambda/alpha is 1.6561477761696262
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3045059131859896
the lambda is 0.5428091338394209
the regulation term lambda/alpha is 1.782589796566209
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30312815750592276
the lambda is 0.5229235994658509
the regulation term lambda/alpha is 1.7250908123097524
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3318869528734816
the lambda is 0.5019005132560249
the regulation term lambda/alpha is 1.5122634647447382
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30665407197990957
the lambda is 0.4974408746171845
the regulation term lambda/alpha is 1.622156429899859
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2879251101403932
the lambda is 0.5042787284671291
the regulation term lambda/alpha is 1.7514232371787275
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32377262170669757
the lambda is 0.5136533833125523
the regulation term lambda/alpha is 1.5864633044169678
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3462303907992207
the lambda is 0.5363638962904078
the regulation term lambda/alpha is 1.5491531377482277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33652098671111014
the lambda is 0.49365611142744037
the regulation term lambda/alpha is 1.4669400451129204
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29759931285992824
the lambda is 0.5026365201027114
the regulation term lambda/alpha is 1.688970701149732
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29453258464989385
the lambda is 0.5054202864374584
the regulation term lambda/alpha is 1.7160080506482616
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31017175502178307
the lambda is 0.5392896374680051
the regulation term lambda/alpha is 1.7386806784845101
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3459974950253632
the lambda is 0.5139129073527839
the regulation term lambda/alpha is 1.485308173445336
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3219504925490789
the lambda is 0.49063314067575553
the regulation term lambda/alpha is 1.5239397113236663
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30871189914039715
the lambda is 0.5077413236097424
the regulation term lambda/alpha is 1.6447092743219138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.310185863581613
the lambda is 0.5028182189865132
the regulation term lambda/alpha is 1.6210223547283507
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32295437499027685
the lambda is 0.5198399371695464
the regulation term lambda/alpha is 1.6096389379620484
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31661084149945795
the lambda is 0.5340376036052213
the regulation term lambda/alpha is 1.6867318916687686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3308457116311829
the lambda is 0.5285209754773401
the regulation term lambda/alpha is 1.5974847395529181
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30344977308308485
the lambda is 0.512162516814056
the regulation term lambda/alpha is 1.6877999664011132
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31990903802187254
the lambda is 0.5121636460668777
the regulation term lambda/alpha is 1.60096647857714
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2923802738675018
the lambda is 0.49673248755333704
the regulation term lambda/alpha is 1.6989261313109025
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3134245865471745
the lambda is 0.5146163384509741
the regulation term lambda/alpha is 1.6419143887855705
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.330870888784003
the lambda is 0.504150571100767
the regulation term lambda/alpha is 1.5237078515840157
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.308789294188548
the lambda is 0.4856732621155464
the regulation term lambda/alpha is 1.5728306364759923
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29442357343216347
the lambda is 0.47937792534973755
the regulation term lambda/alpha is 1.628191383459954
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34222291902480484
the lambda is 0.5432588709365228
the regulation term lambda/alpha is 1.587441520528748
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3300641753008557
the lambda is 0.5369219957249167
the regulation term lambda/alpha is 1.6267200014527743
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3454141351457483
the lambda is 0.5214106758725694
the regulation term lambda/alpha is 1.5095232731357648
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3300913168579657
the lambda is 0.5243334590380407
the regulation term lambda/alpha is 1.5884497175781664
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30485372261359667
the lambda is 0.5462367038461796
the regulation term lambda/alpha is 1.7917993559768233
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3270408431173775
the lambda is 0.5282068333563803
the regulation term lambda/alpha is 1.6151096857550686
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29827364982243704
the lambda is 0.5166210550821111
the regulation term lambda/alpha is 1.7320371926573357
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3104407981910816
the lambda is 0.4969763880367828
the regulation term lambda/alpha is 1.6008733096056702
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2999329618253266
the lambda is 0.4982988011035739
the regulation term lambda/alpha is 1.66136725377243
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31060390585429226
the lambda is 0.512196595393691
the regulation term lambda/alpha is 1.649034624934717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3357472184586517
the lambda is 0.4891654403205013
the regulation term lambda/alpha is 1.456945622859251
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.336053542560894
the lambda is 0.5226865147285302
the regulation term lambda/alpha is 1.5553667750246012
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33138478964826623
the lambda is 0.5437337208250598
the regulation term lambda/alpha is 1.6407926308331229
1930
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32064045648464884
the lambda is 0.5250400802273331
the regulation term lambda/alpha is 1.6374729688936498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31630980478409226
the lambda is 0.4980128895056872
the regulation term lambda/alpha is 1.574446577290332
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29351209990254823
the lambda is 0.5024145553644722
the regulation term lambda/alpha is 1.7117337088702091
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3228985179712036
the lambda is 0.5233913322618782
the regulation term lambda/alpha is 1.6209158702566566
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3126014002746713
the lambda is 0.5113085002013877
the regulation term lambda/alpha is 1.635656461398189
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3184538700222275
the lambda is 0.5354567069247441
the regulation term lambda/alpha is 1.6814262828313884
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3362272693614437
the lambda is 0.550827533942712
the regulation term lambda/alpha is 1.6382595468500605
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30561644971804197
the lambda is 0.5119052799468069
the regulation term lambda/alpha is 1.6749925614903403
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32947603429435135
the lambda is 0.5119444096283389
the regulation term lambda/alpha is 1.5538138023446393
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3287637958771437
the lambda is 0.5509866686047624
the regulation term lambda/alpha is 1.6759347455966882
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3317870436422239
the lambda is 0.5110051866060847
the regulation term lambda/alpha is 1.5401601611578215
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3297733172897096
the lambda is 0.5175034052027668
the regulation term lambda/alpha is 1.5692700957613688
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320673556695586
the lambda is 0.49420279337273115
the regulation term lambda/alpha is 1.5411398384865131
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3218857396816444
the lambda is 0.5298298986748928
the regulation term lambda/alpha is 1.6460185505543428
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.340209803289752
the lambda is 0.5291777570847641
the regulation term lambda/alpha is 1.555445351567576
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3242362296951577
the lambda is 0.5277070805003692
the regulation term lambda/alpha is 1.6275389119732606
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3128459427266073
the lambda is 0.5291711876200511
the regulation term lambda/alpha is 1.6914753089270143
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3255746454046998
the lambda is 0.5244676794575914
the regulation term lambda/alpha is 1.6108984125765111
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32382587727123213
the lambda is 0.5034783002046618
the regulation term lambda/alpha is 1.5547809348879034
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31760248385841594
the lambda is 0.4917599229811365
the regulation term lambda/alpha is 1.5483503686966071
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3104263635359228
the lambda is 0.4930976099093722
the regulation term lambda/alpha is 1.5884527470306513
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3283712802939589
the lambda is 0.5031726456471807
the regulation term lambda/alpha is 1.532328421647408
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.336324405407907
the lambda is 0.5628315990439495
the regulation term lambda/alpha is 1.673478314371287
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35922051162775814
the lambda is 0.5259683789674066
the regulation term lambda/alpha is 1.4641936135106914
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32249307019530926
the lambda is 0.5118361367045964
the regulation term lambda/alpha is 1.5871228997094933
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2954885958388368
the lambda is 0.5076528943374585
the regulation term lambda/alpha is 1.718011799732328
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3163331371753745
the lambda is 0.512171349852861
the regulation term lambda/alpha is 1.6190885167016635
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31005226867349805
the lambda is 0.5197902444565257
the regulation term lambda/alpha is 1.6764600584293519
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32590475276794506
the lambda is 0.5601737587432365
the regulation term lambda/alpha is 1.718826601900153
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30450773081795046
the lambda is 0.5165309612439423
the regulation term lambda/alpha is 1.6962819297114975
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32183993683959294
the lambda is 0.5151182604951405
the regulation term lambda/alpha is 1.6005417648086313
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34218346284870566
the lambda is 0.5499506718001503
the regulation term lambda/alpha is 1.6071807422303972
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32536431347439326
the lambda is 0.5396092543639032
the regulation term lambda/alpha is 1.6584770732896352
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31986574555646946
the lambda is 0.5213432872985913
the regulation term lambda/alpha is 1.6298815816980088
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29407931977851626
the lambda is 0.528991999088178
the regulation term lambda/alpha is 1.7988072044188095
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3174600760527287
the lambda is 0.5271603835863286
the regulation term lambda/alpha is 1.660556471040376
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29003038820528537
the lambda is 0.49400431020174584
the regulation term lambda/alpha is 1.7032846566825488
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3127357195007314
the lambda is 0.5193179139385519
the regulation term lambda/alpha is 1.660564756618207
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31225197039207797
the lambda is 0.5063976503593163
the regulation term lambda/alpha is 1.621759663272773
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3371746750960068
the lambda is 0.5129882501253685
the regulation term lambda/alpha is 1.5214317326154485
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3044405308480703
the lambda is 0.5030708225458477
the regulation term lambda/alpha is 1.6524436517846663
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34024476358854444
the lambda is 0.5549395677688097
the regulation term lambda/alpha is 1.6310010532297101
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2980541190304783
the lambda is 0.49448885088822214
the regulation term lambda/alpha is 1.6590572628109088
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3147078706958398
the lambda is 0.5413817579366678
the regulation term lambda/alpha is 1.7202676143422697
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29881575346867506
the lambda is 0.5182093975039288
the regulation term lambda/alpha is 1.7342104339832032
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3152001131398475
the lambda is 0.5505688697918618
the regulation term lambda/alpha is 1.7467280208354057
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33194046583029385
the lambda is 0.5276306037380717
the regulation term lambda/alpha is 1.5895338413118494
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30600941515948854
the lambda is 0.48911050739985656
the regulation term lambda/alpha is 1.598351172119779
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.309669199701605
the lambda is 0.5052629036465276
the regulation term lambda/alpha is 1.6316214338829798
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3184008669513469
the lambda is 0.49411083386987453
the regulation term lambda/alpha is 1.5518514085747666
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34562047901706816
the lambda is 0.5186518427424848
the regulation term lambda/alpha is 1.5006397891048338
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32813555165997865
the lambda is 0.5500221872699633
the regulation term lambda/alpha is 1.6762041921014048
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3158799938386402
the lambda is 0.49345657782338326
the regulation term lambda/alpha is 1.562164706370907
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32190654059330515
the lambda is 0.5251413810630824
the regulation term lambda/alpha is 1.6313473472617102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3061763983074209
the lambda is 0.5165977463569612
the regulation term lambda/alpha is 1.6872552855568694
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2902040445456198
the lambda is 0.4989140039360329
the regulation term lambda/alpha is 1.719183496278268
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30995136776040166
the lambda is 0.5212348063006692
the regulation term lambda/alpha is 1.6816664177574905
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2824807014778814
the lambda is 0.4936173430181165
the regulation term lambda/alpha is 1.7474374016901377
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32168936020233185
the lambda is 0.526616443091017
the regulation term lambda/alpha is 1.6370340715023737
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2971020009273513
the lambda is 0.5171878172018395
the regulation term lambda/alpha is 1.7407752744428826
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3034149842948483
the lambda is 0.4870125683621516
the regulation term lambda/alpha is 1.6051038794079118
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34867546973412783
the lambda is 0.5427078249143953
the regulation term lambda/alpha is 1.5564841006114398
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2936574800442696
the lambda is 0.4796356301422858
the regulation term lambda/alpha is 1.6333165770883122
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30062479997635577
the lambda is 0.5337319877128311
the regulation term lambda/alpha is 1.775409040620765
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3395067390479341
the lambda is 0.5730486595234983
the regulation term lambda/alpha is 1.6878859640031798
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3139616124736186
the lambda is 0.5038744654737959
the regulation term lambda/alpha is 1.604891953203786
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3000970757655512
the lambda is 0.5199457694041288
the regulation term lambda/alpha is 1.7325919223895834
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34115578895860593
the lambda is 0.49849868500880196
the regulation term lambda/alpha is 1.4612054115525714
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31657934637575025
the lambda is 0.5385633022503366
the regulation term lambda/alpha is 1.7011953193279765
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3324074046339318
the lambda is 0.5290680313205458
the regulation term lambda/alpha is 1.591625288561755
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3172857618498977
the lambda is 0.529867232115946
the regulation term lambda/alpha is 1.6700000309708722
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3237827923204387
the lambda is 0.51422167396001
the regulation term lambda/alpha is 1.5881686308119156
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30788622979526986
the lambda is 0.5107421144115827
the regulation term lambda/alpha is 1.6588663765547509
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32251640146516897
the lambda is 0.5307883871847534
the regulation term lambda/alpha is 1.6457717647022592
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3655505120319812
the lambda is 0.5444074150252742
the regulation term lambda/alpha is 1.4892809532643885
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.326642388474316
the lambda is 0.5212586722094766
the regulation term lambda/alpha is 1.5958084149585607
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3180283877310439
the lambda is 0.5321116860748758
the regulation term lambda/alpha is 1.6731578267940086
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31590355119204394
the lambda is 0.5039960307253178
the regulation term lambda/alpha is 1.595411095644597
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3213840449992567
the lambda is 0.5021485211642616
the regulation term lambda/alpha is 1.5624562854868012
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2889350296529261
the lambda is 0.5154529087307436
the regulation term lambda/alpha is 1.783975135690244
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33069544970329373
the lambda is 0.5389465610908944
the regulation term lambda/alpha is 1.6297368517602755
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3174930231918851
the lambda is 0.5329527373809524
the regulation term lambda/alpha is 1.6786281853470797
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3043806255926216
the lambda is 0.5070027963961454
the regulation term lambda/alpha is 1.6656868202732138
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3395375208026706
the lambda is 0.521106943708778
the regulation term lambda/alpha is 1.534755105936084
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3243610332379506
the lambda is 0.4917492339621591
the regulation term lambda/alpha is 1.5160552087692136
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3101107168291699
the lambda is 0.5157453866365127
the regulation term lambda/alpha is 1.6631008173787827
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3193303764224027
the lambda is 0.525678756921285
the regulation term lambda/alpha is 1.646190891109994
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32693371795286813
the lambda is 0.5012862864877512
the regulation term lambda/alpha is 1.5332963807667532
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30728714340976365
the lambda is 0.4840334565246547
the regulation term lambda/alpha is 1.5751829092283305
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2952485648290493
the lambda is 0.527015385092339
the regulation term lambda/alpha is 1.7849888123841824
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3401820879016316
the lambda is 0.5531155702452302
the regulation term lambda/alpha is 1.6259397243901073
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3314343288355724
the lambda is 0.5355646639842723
the regulation term lambda/alpha is 1.615899794888087
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3428823043671307
the lambda is 0.5391657482474861
the regulation term lambda/alpha is 1.572451367073732
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31426321135455293
the lambda is 0.5260349595343972
the regulation term lambda/alpha is 1.6738674478220188
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3332392779618413
the lambda is 0.5058654516720653
the regulation term lambda/alpha is 1.518024690144693
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31877767838976845
the lambda is 0.5198149224314677
the regulation term lambda/alpha is 1.6306503173534366
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28713662213245755
the lambda is 0.4998141337157133
the regulation term lambda/alpha is 1.7406840339758074
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3363192182798126
the lambda is 0.5177810463597415
the regulation term lambda/alpha is 1.5395523604272754
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3154228314417289
the lambda is 0.5012870896220845
the regulation term lambda/alpha is 1.589254295038855
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3171071604025816
the lambda is 0.5198675933348469
the regulation term lambda/alpha is 1.6394066683163255
1940
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3314060480985581
the lambda is 0.5279995158624993
the regulation term lambda/alpha is 1.5932102594140813
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3006323226188444
the lambda is 0.5239212540326663
the regulation term lambda/alpha is 1.7427309527755535
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32156394033583163
the lambda is 0.5056816323938135
the regulation term lambda/alpha is 1.5725694611954777
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33779924563403546
the lambda is 0.5251649504877167
the regulation term lambda/alpha is 1.5546658474680826
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30113447747755234
the lambda is 0.5353352227977977
the regulation term lambda/alpha is 1.7777281010199288
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30611754697849936
the lambda is 0.5337004250826769
the regulation term lambda/alpha is 1.743449306812073
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3519760571730815
the lambda is 0.579020538667155
the regulation term lambda/alpha is 1.6450566078772402
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3185074924744433
the lambda is 0.5181040996003669
the regulation term lambda/alpha is 1.6266622036903542
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33416896962427795
the lambda is 0.531889322064648
the regulation term lambda/alpha is 1.5916777750569613
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31321946605822437
the lambda is 0.5072962963206995
the regulation term lambda/alpha is 1.6196193126336478
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31370960105819756
the lambda is 0.5178299453073598
the regulation term lambda/alpha is 1.6506665513603298
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34072209380578194
the lambda is 0.5087217792738439
the regulation term lambda/alpha is 1.4930695382607766
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32885842235633383
the lambda is 0.5104450671812715
the regulation term lambda/alpha is 1.5521727055789978
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3265617315430049
the lambda is 0.5237975541378882
the regulation term lambda/alpha is 1.6039771459532126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3327111868827875
the lambda is 0.5039438125698865
the regulation term lambda/alpha is 1.5146584558559597
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.27025166055938243
the lambda is 0.49581591920416657
the regulation term lambda/alpha is 1.8346452272592821
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3059399047082132
the lambda is 0.5070796652548407
the regulation term lambda/alpha is 1.6574485951365592
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2816495831598256
the lambda is 0.5036559820589787
the regulation term lambda/alpha is 1.7882362061696102
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3048957314918565
the lambda is 0.515155503840438
the regulation term lambda/alpha is 1.6896120562914385
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3165102570171123
the lambda is 0.48258389894217213
the regulation term lambda/alpha is 1.5247022434286577
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3234054776817219
the lambda is 0.47724878805089227
the regulation term lambda/alpha is 1.4756979117112377
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2885925619933417
the lambda is 0.4820627570756036
the regulation term lambda/alpha is 1.6703921741639534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31312818419331173
the lambda is 0.4917258630264297
the regulation term lambda/alpha is 1.5703660285107377
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3078012528798389
the lambda is 0.479442016230685
the regulation term lambda/alpha is 1.5576350380154305
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3118627958259453
the lambda is 0.4853772593816311
the regulation term lambda/alpha is 1.556380773462079
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29275544111040674
the lambda is 0.5125159008774648
the regulation term lambda/alpha is 1.7506622556134828
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34541967990218087
the lambda is 0.528887825939973
the regulation term lambda/alpha is 1.5311456084081494
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31711633744066775
the lambda is 0.48054141546491846
the regulation term lambda/alpha is 1.5153473937772992
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3145795362042604
the lambda is 0.506615348566708
the regulation term lambda/alpha is 1.610452334819886
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3019691356268253
the lambda is 0.5136755931408423
the regulation term lambda/alpha is 1.7010864109491135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.321008974394197
the lambda is 0.5323855488803514
the regulation term lambda/alpha is 1.6584755921078558
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3252862271324352
the lambda is 0.521363905557531
the regulation term lambda/alpha is 1.6027850614937527
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3206829243101335
the lambda is 0.5439565755088619
the regulation term lambda/alpha is 1.6962442782977734
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3224846455964632
the lambda is 0.5148514145704802
the regulation term lambda/alpha is 1.596514505731639
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317873723096954
the lambda is 0.5566246302306125
the regulation term lambda/alpha is 1.7510872707802827
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3108116153823628
the lambda is 0.5076755600415737
the regulation term lambda/alpha is 1.633386704087707
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31617779957796205
the lambda is 0.514645513212883
the regulation term lambda/alpha is 1.6277092000128979
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3047835047070522
the lambda is 0.5072323770124206
the regulation term lambda/alpha is 1.6642382844831305
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30927255611233573
the lambda is 0.5277638937919918
the regulation term lambda/alpha is 1.7064685610199906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3279174925919917
the lambda is 0.5113981900879665
the regulation term lambda/alpha is 1.5595331192784794
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33753589903630604
the lambda is 0.5352667249511016
the regulation term lambda/alpha is 1.5858068030077217
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3255495166415912
the lambda is 0.5645171149571746
the regulation term lambda/alpha is 1.7340437816673866
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3281719870684539
the lambda is 0.5117868467348128
the regulation term lambda/alpha is 1.5595080229320681
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32633316665487233
the lambda is 0.5206590033916971
the regulation term lambda/alpha is 1.595482949921368
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35873917218886564
the lambda is 0.544831303701504
the regulation term lambda/alpha is 1.518739368152041
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3134884032244464
the lambda is 0.5227696938652012
the regulation term lambda/alpha is 1.6675886204661836
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3163263586326763
the lambda is 0.5044247947453134
the regulation term lambda/alpha is 1.594634089064517
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32211221216198394
the lambda is 0.502924193596257
the regulation term lambda/alpha is 1.5613322767885194
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33385606282057967
the lambda is 0.5324766998359105
the regulation term lambda/alpha is 1.5949289503305297
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2993083485831471
the lambda is 0.5245811961451341
the regulation term lambda/alpha is 1.752644717824858
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3422588706350149
the lambda is 0.49465971432034933
the regulation term lambda/alpha is 1.4452794558767033
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31966621663331257
the lambda is 0.5348773654478061
the regulation term lambda/alpha is 1.673237075475389
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30293445750037257
the lambda is 0.5150257745393857
the regulation term lambda/alpha is 1.7001227882396055
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2863339617844319
the lambda is 0.48878660357315223
the regulation term lambda/alpha is 1.7070507477598411
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3004156990874235
the lambda is 0.5054143086148418
the regulation term lambda/alpha is 1.6823831449226694
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3118137755563258
the lambda is 0.48640789251371563
the regulation term lambda/alpha is 1.5599307363694435
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3371332846780603
the lambda is 0.5434636529832276
the regulation term lambda/alpha is 1.612014232003817
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3441730607914811
the lambda is 0.573001353244287
the regulation term lambda/alpha is 1.664864042312256
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3138836082132085
the lambda is 0.4727878356685797
the regulation term lambda/alpha is 1.5062520733718403
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31543693316149585
the lambda is 0.5366776227198636
the regulation term lambda/alpha is 1.70137852071082
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3111033266291644
the lambda is 0.5141310410132317
the regulation term lambda/alpha is 1.652605411147135
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3185497483415021
the lambda is 0.5038907778749685
the regulation term lambda/alpha is 1.581827581087181
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3070711040089787
the lambda is 0.5086173319586292
the regulation term lambda/alpha is 1.6563503544239622
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2906884633202529
the lambda is 0.5275791343185879
the regulation term lambda/alpha is 1.8149297302430316
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3094682327658317
the lambda is 0.5135821964269843
the regulation term lambda/alpha is 1.6595635417467922
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35444484155378103
the lambda is 0.5114842529169836
the regulation term lambda/alpha is 1.4430574040090085
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30780578567408445
the lambda is 0.5131974267394283
the regulation term lambda/alpha is 1.667276739504889
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30358891520385856
the lambda is 0.50567969230927
the regulation term lambda/alpha is 1.6656724504243128
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33938390570918797
the lambda is 0.5532653491908064
the regulation term lambda/alpha is 1.6302050270612702
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3111198071701814
the lambda is 0.5299745619619849
the regulation term lambda/alpha is 1.7034420494870348
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3221982041168905
the lambda is 0.5042701742584008
the regulation term lambda/alpha is 1.5650930632607012
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31062184522207226
the lambda is 0.5250213791731919
the regulation term lambda/alpha is 1.6902268377094967
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3452639708961866
the lambda is 0.5363238762049621
the regulation term lambda/alpha is 1.5533734226969866
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3161130387715415
the lambda is 0.5053082483543239
the regulation term lambda/alpha is 1.5985049219039518
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34311668141278545
the lambda is 0.526574380872039
the regulation term lambda/alpha is 1.5346802105448942
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31474249744686494
the lambda is 0.4963491102820223
the regulation term lambda/alpha is 1.5770006094134659
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3322785431954464
the lambda is 0.5355016879369041
the regulation term lambda/alpha is 1.6116047782896463
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33697937424477203
the lambda is 0.5108088494435166
the regulation term lambda/alpha is 1.5158460383171104
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32652842760337064
the lambda is 0.5346985697022868
the regulation term lambda/alpha is 1.637525325518602
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3041769763605162
the lambda is 0.5070967748225663
the regulation term lambda/alpha is 1.667110972335874
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3086684625146942
the lambda is 0.514077151019259
the regulation term lambda/alpha is 1.6654670413398203
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3146242044703412
the lambda is 0.534709726193065
the regulation term lambda/alpha is 1.6995187229578541
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3438924769275827
the lambda is 0.5757148135394621
the regulation term lambda/alpha is 1.6741128467916349
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3053972785954595
the lambda is 0.526065868008454
the regulation term lambda/alpha is 1.7225623961937795
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32865248394142094
the lambda is 0.5242613742786664
the regulation term lambda/alpha is 1.5951845791377337
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3143725532118205
the lambda is 0.48052890213764465
the regulation term lambda/alpha is 1.5285332552993898
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29048092741295783
the lambda is 0.5088974098687324
the regulation term lambda/alpha is 1.751913333522466
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3169409611312829
the lambda is 0.5152090380343012
the regulation term lambda/alpha is 1.625567854010804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2939118153367237
the lambda is 0.5102514005988218
the regulation term lambda/alpha is 1.7360697119789006
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33260500905841994
the lambda is 0.5236884935124226
the regulation term lambda/alpha is 1.5745057327757805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3397984348041083
the lambda is 0.4817209976816597
the regulation term lambda/alpha is 1.417666911736568
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31044424623906447
the lambda is 0.5116350753926275
the regulation term lambda/alpha is 1.6480739507687046
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29812098711478496
the lambda is 0.49856564541886106
the regulation term lambda/alpha is 1.672360105351789
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3001467280015312
the lambda is 0.5447826538037256
the regulation term lambda/alpha is 1.8150544483061843
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33133220654934775
the lambda is 0.5193349611200837
the regulation term lambda/alpha is 1.5674146697922506
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31021654465285015
the lambda is 0.5150125669870974
the regulation term lambda/alpha is 1.660171179984696
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2980862715226938
the lambda is 0.49366649245892846
the regulation term lambda/alpha is 1.6561195184775386
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3314536259531252
the lambda is 0.5190112582730032
the regulation term lambda/alpha is 1.5658638724513538
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31359288879339964
the lambda is 0.5166029334692619
the regulation term lambda/alpha is 1.6473681385345722
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35388037556093827
the lambda is 0.49404485518389546
the regulation term lambda/alpha is 1.396078701456054
1950
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32382642058611977
the lambda is 0.5274208821074452
the regulation term lambda/alpha is 1.6287147946508604
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2896383091383133
the lambda is 0.49811150368081764
the regulation term lambda/alpha is 1.7197707898610555
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29832462125021814
the lambda is 0.491848049204383
the regulation term lambda/alpha is 1.6487008251050395
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3588712707185287
the lambda is 0.4795681727618307
the regulation term lambda/alpha is 1.336323667820062
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3065336199808701
the lambda is 0.5288707908998898
the regulation term lambda/alpha is 1.7253271955386007
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28828417838620723
the lambda is 0.4925611278096417
the regulation term lambda/alpha is 1.7085957702117445
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31073693756294474
the lambda is 0.5134903438300403
the regulation term lambda/alpha is 1.6524921300224396
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31686186644420383
the lambda is 0.5413488126203632
the regulation term lambda/alpha is 1.7084694308448416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3378370107860361
the lambda is 0.48224720609346333
the regulation term lambda/alpha is 1.427455224551721
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32544929146289614
the lambda is 0.5450598408471726
the regulation term lambda/alpha is 1.6747919111979812
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3213006757572912
the lambda is 0.531109652406377
the regulation term lambda/alpha is 1.6529988651737986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3463124414494838
the lambda is 0.48926034418454495
the regulation term lambda/alpha is 1.4127714907866304
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2957630612940761
the lambda is 0.541161729680564
the regulation term lambda/alpha is 1.8297137151366205
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2998239183309987
the lambda is 0.522808151729217
the regulation term lambda/alpha is 1.7437172946023902
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30161766547137336
the lambda is 0.5370916912994891
the regulation term lambda/alpha is 1.7807036947259465
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30430418972255696
the lambda is 0.5157079809505996
the regulation term lambda/alpha is 1.6947120623636027
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33325469559942633
the lambda is 0.5264442062733815
the regulation term lambda/alpha is 1.579705292153392
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30110203161197074
the lambda is 0.5155367045017493
the regulation term lambda/alpha is 1.7121661442860001
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31413061270462156
the lambda is 0.49898649448791643
the regulation term lambda/alpha is 1.5884682176999911
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3228710625792735
the lambda is 0.4793959181365033
the regulation term lambda/alpha is 1.4847905981626914
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2897321947118438
the lambda is 0.49024672232411465
the regulation term lambda/alpha is 1.692068507649606
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34601019153221896
the lambda is 0.5343581875294665
the regulation term lambda/alpha is 1.5443423361699142
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.301913972371949
the lambda is 0.5067143754900554
the regulation term lambda/alpha is 1.6783402619929044
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.328381343149524
the lambda is 0.5083545563284008
the regulation term lambda/alpha is 1.5480616269266199
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2984303075814584
the lambda is 0.5549231598428112
the regulation term lambda/alpha is 1.8594732027722802
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3462877652470211
the lambda is 0.530467688568416
the regulation term lambda/alpha is 1.5318695657353412
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3467574030330233
the lambda is 0.5563623270836996
the regulation term lambda/alpha is 1.6044713745612942
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3066925227016415
the lambda is 0.529699822148087
the regulation term lambda/alpha is 1.727136408419689
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34257232362078793
the lambda is 0.5221141575186802
the regulation term lambda/alpha is 1.524099063229162
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3073898392607619
the lambda is 0.5056802210099705
the regulation term lambda/alpha is 1.6450778666792458
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3208135084555532
the lambda is 0.5301517657963065
the regulation term lambda/alpha is 1.652523200623754
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3078611023813321
the lambda is 0.4983186636598465
the regulation term lambda/alpha is 1.6186476947081292
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30472438374607264
the lambda is 0.5365685837521667
the regulation term lambda/alpha is 1.7608324517912233
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32536620918928966
the lambda is 0.5090417311436456
the regulation term lambda/alpha is 1.5645193531682888
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3767304996544008
the lambda is 0.5238614723601083
the regulation term lambda/alpha is 1.390547016609168
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32144468692546246
the lambda is 0.5248297490192995
the regulation term lambda/alpha is 1.632721803676906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3092270437945981
the lambda is 0.49627233012710953
the regulation term lambda/alpha is 1.604880103749124
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32098825365766365
the lambda is 0.5292625668347678
the regulation term lambda/alpha is 1.6488533795359075
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30852057894627616
the lambda is 0.5385627053155281
the regulation term lambda/alpha is 1.7456297636771583
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3442066772903591
the lambda is 0.5360255426719859
the regulation term lambda/alpha is 1.557278164652849
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2668669471213611
the lambda is 0.47773342378402
the regulation term lambda/alpha is 1.7901558395943455
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3348327294165943
the lambda is 0.5559470669553851
the regulation term lambda/alpha is 1.6603725326495289
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32234211513448396
the lambda is 0.5704195682254949
the regulation term lambda/alpha is 1.7696091867719823
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31153393551866754
the lambda is 0.4908864424865524
the regulation term lambda/alpha is 1.575707768944285
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31687097714528195
the lambda is 0.5211986744728467
the regulation term lambda/alpha is 1.6448293219163543
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33730384686549025
the lambda is 0.5302287242814497
the regulation term lambda/alpha is 1.5719616873889195
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29751532249074797
the lambda is 0.5055757940669073
the regulation term lambda/alpha is 1.699326911415225
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32858594080955367
the lambda is 0.5283092252378913
the regulation term lambda/alpha is 1.607826628054351
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31819884972708956
the lambda is 0.5215669678387698
the regulation term lambda/alpha is 1.6391227318580928
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30617607634409877
the lambda is 0.49135553254934733
the regulation term lambda/alpha is 1.604813604042443
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32223038458226616
the lambda is 0.5243706594688465
the regulation term lambda/alpha is 1.62731599674758
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2883764097834241
the lambda is 0.5245321510886863
the regulation term lambda/alpha is 1.8189149087563004
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31967627013591426
the lambda is 0.5276422278094466
the regulation term lambda/alpha is 1.6505517521995394
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2998891621204199
the lambda is 0.5414951426451564
the regulation term lambda/alpha is 1.8056509238827383
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35800131877443747
the lambda is 0.518665522825683
the regulation term lambda/alpha is 1.4487810396935261
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33044867200046535
the lambda is 0.5064874773355856
the regulation term lambda/alpha is 1.532726623682338
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32110971971891694
the lambda is 0.4843003526501192
the regulation term lambda/alpha is 1.5082083254099286
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32491933079578805
the lambda is 0.5011859852375687
the regulation term lambda/alpha is 1.5424935906708621
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3203593664612375
the lambda is 0.524090388641772
the regulation term lambda/alpha is 1.635945264941037
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3045143779678632
the lambda is 0.5205761767099173
the regulation term lambda/alpha is 1.709529054699861
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3173037696147102
the lambda is 0.5252281476820425
the regulation term lambda/alpha is 1.6552849287602442
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.311864055756823
the lambda is 0.5035337576218425
the regulation term lambda/alpha is 1.6145937575264349
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30972259045704403
the lambda is 0.513896554611923
the regulation term lambda/alpha is 1.6592156027546727
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3360734250301181
the lambda is 0.5209502147613986
the regulation term lambda/alpha is 1.5501083274130116
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3318984113003127
the lambda is 0.5095728851421055
the regulation term lambda/alpha is 1.5353278828473422
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2955317293244171
the lambda is 0.5199836428652801
the regulation term lambda/alpha is 1.7594849935536805
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2860463647383665
the lambda is 0.4920089192504344
the regulation term lambda/alpha is 1.7200320643838716
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3462767785801159
the lambda is 0.5018897117781516
the regulation term lambda/alpha is 1.4493888785615823
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3047766973810343
the lambda is 0.5307240263558853
the regulation term lambda/alpha is 1.7413536891646604
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34785664961312485
the lambda is 0.5036620733056354
the regulation term lambda/alpha is 1.4479012370923263
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30320543729335164
the lambda is 0.5248837398281928
the regulation term lambda/alpha is 1.7311158550246153
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.36400034458462827
the lambda is 0.5099019638534935
the regulation term lambda/alpha is 1.4008282449165206
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3364882844577936
the lambda is 0.5127323134753656
the regulation term lambda/alpha is 1.5237746369136327
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3069002571519702
the lambda is 0.49753622461448327
the regulation term lambda/alpha is 1.6211658772514952
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3512654057316434
the lambda is 0.5292122111025486
the regulation term lambda/alpha is 1.5065879032416059
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33187949670964484
the lambda is 0.5352860972383148
the regulation term lambda/alpha is 1.6128929401945749
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3012155597292076
the lambda is 0.5006775639391584
the regulation term lambda/alpha is 1.66219024139811
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28789271577647724
the lambda is 0.5044169978042813
the regulation term lambda/alpha is 1.7521005922078128
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3389763322603691
the lambda is 0.48994544335555473
the regulation term lambda/alpha is 1.4453677048438462
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30603591069851604
the lambda is 0.5108725387448131
the regulation term lambda/alpha is 1.6693221967930651
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29201030490435176
the lambda is 0.5505401495818226
the regulation term lambda/alpha is 1.8853449358992744
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3357024815788624
the lambda is 0.4897384822215771
the regulation term lambda/alpha is 1.4588467738405113
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3233140448576104
the lambda is 0.5165252512222855
the regulation term lambda/alpha is 1.5975960816974921
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30951569018824354
the lambda is 0.5020384873489504
the regulation term lambda/alpha is 1.6220130457477517
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3269235264647898
the lambda is 0.5165045135416025
the regulation term lambda/alpha is 1.5798939866055524
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2973259900578553
the lambda is 0.4980299238838406
the regulation term lambda/alpha is 1.6750299016474517
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3463470214800388
the lambda is 0.5561562484610809
the regulation term lambda/alpha is 1.6057774831857017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3268017972586569
the lambda is 0.522186408609757
the regulation term lambda/alpha is 1.5978688397373078
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31353566299495994
the lambda is 0.5173990541413221
the regulation term lambda/alpha is 1.650207983356711
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3243499269764978
the lambda is 0.5437783782345283
the regulation term lambda/alpha is 1.6765176527199595
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3133634019120055
the lambda is 0.4721635886535894
the regulation term lambda/alpha is 1.5067604760883213
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3140366589085313
the lambda is 0.5153921435278243
the regulation term lambda/alpha is 1.6411846480570962
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32864016229356546
the lambda is 0.5385986976556417
the regulation term lambda/alpha is 1.6388705929816512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.320332900143715
the lambda is 0.4717105786288865
the regulation term lambda/alpha is 1.472563631201344
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3002946195870122
the lambda is 0.5217823247481723
the regulation term lambda/alpha is 1.7375680105949507
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30310859788053524
the lambda is 0.49716126985178916
the regulation term lambda/alpha is 1.640208404935238
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3196200840959898
the lambda is 0.5125377954678717
the regulation term lambda/alpha is 1.603584445944717
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3371573898947891
the lambda is 0.49476142805839085
the regulation term lambda/alpha is 1.467449455023906
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32495180226329984
the lambda is 0.5036785760753948
the regulation term lambda/alpha is 1.5500101017051058
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2875942020225638
the lambda is 0.4905842734342877
the regulation term lambda/alpha is 1.705821153500855
1960
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32821900690310185
the lambda is 0.5575444037946702
the regulation term lambda/alpha is 1.6986962731237278
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29046567993865174
the lambda is 0.5064943496806217
the regulation term lambda/alpha is 1.7437321675579593
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3090713574159987
the lambda is 0.5209486399013876
the regulation term lambda/alpha is 1.6855286890923697
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30889099416338517
the lambda is 0.5270115547302908
the regulation term lambda/alpha is 1.7061408868771768
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3149315203347181
the lambda is 0.5438330585545654
the regulation term lambda/alpha is 1.7268295595708054
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29316954501765485
the lambda is 0.5166245462812712
the regulation term lambda/alpha is 1.7622040046832277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3096779966380341
the lambda is 0.5102841633652576
the regulation term lambda/alpha is 1.647789539150569
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2969661608771136
the lambda is 0.5258865461835502
the regulation term lambda/alpha is 1.7708635375502104
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30409058387218135
the lambda is 0.5380830768685089
the regulation term lambda/alpha is 1.7694828626942352
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3174593972470153
the lambda is 0.4984714719507002
the regulation term lambda/alpha is 1.570189688109435
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31519977515705777
the lambda is 0.5381065445017169
the regulation term lambda/alpha is 1.7071920315729576
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33355144007742543
the lambda is 0.5311217202376359
the regulation term lambda/alpha is 1.5923232713801194
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29938292809670836
the lambda is 0.5011811452918623
the regulation term lambda/alpha is 1.674047175896309
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32340309202261525
the lambda is 0.5523763522685419
the regulation term lambda/alpha is 1.7080119698729248
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.35168532393878144
the lambda is 0.5210312756033972
the regulation term lambda/alpha is 1.4815269223292757
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34397820136121365
the lambda is 0.5281582331006169
the regulation term lambda/alpha is 1.5354409989079356
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2929515501998924
the lambda is 0.5092814817381741
the regulation term lambda/alpha is 1.7384495196924927
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.344230249325286
the lambda is 0.536579061960236
the regulation term lambda/alpha is 1.5587795175234203
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2901496497975941
the lambda is 0.5392635215888673
the regulation term lambda/alpha is 1.8585702997231008
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3040744632197986
the lambda is 0.5011407347710486
the regulation term lambda/alpha is 1.648085569121935
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33218393129236934
the lambda is 0.5157487694295882
the regulation term lambda/alpha is 1.5525999930913443
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33362227504924047
the lambda is 0.49666495912737557
the regulation term lambda/alpha is 1.4887044309438604
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30563629821860255
the lambda is 0.5017511755886122
the regulation term lambda/alpha is 1.641660949674704
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33221321750663674
the lambda is 0.560672719879851
the regulation term lambda/alpha is 1.687689382402885
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3026834678962928
the lambda is 0.5206312904043079
the regulation term lambda/alpha is 1.7200519540191395
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3037188996785021
the lambda is 0.4876593185230338
the regulation term lambda/alpha is 1.6056271738085433
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3168553666181835
the lambda is 0.5211265187321338
the regulation term lambda/alpha is 1.6446826332599276
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3420329824165416
the lambda is 0.5678818248289824
the regulation term lambda/alpha is 1.660313051731932
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29523372502113976
the lambda is 0.494988746357557
the regulation term lambda/alpha is 1.676599603660165
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31493848297991517
the lambda is 0.5052833104743332
the regulation term lambda/alpha is 1.6043873257195977
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3335391847621722
the lambda is 0.5176809810060659
the regulation term lambda/alpha is 1.5520844466151547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2774137817626733
the lambda is 0.5256709406514815
the regulation term lambda/alpha is 1.8948984340698383
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3121562739924818
the lambda is 0.5215170017667942
the regulation term lambda/alpha is 1.6706920386272766
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.309974216282818
the lambda is 0.505941298529791
the regulation term lambda/alpha is 1.632204460735451
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32309115956657697
the lambda is 0.529209178765719
the regulation term lambda/alpha is 1.6379562333913655
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30976286857440727
the lambda is 0.5184961978219393
the regulation term lambda/alpha is 1.6738487740902128
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3247014341994737
the lambda is 0.5016866503747441
the regulation term lambda/alpha is 1.5450706326925034
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31263818397782744
the lambda is 0.5264329661925368
the regulation term lambda/alpha is 1.6838409163414019
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2974137774991743
the lambda is 0.5020124398045733
the regulation term lambda/alpha is 1.6879259731199474
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3040638073929611
the lambda is 0.4777088431987701
the regulation term lambda/alpha is 1.571080909940052
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.339004011452381
the lambda is 0.5299431993821407
the regulation term lambda/alpha is 1.5632357773930956
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29401643574802666
the lambda is 0.5030826169939141
the regulation term lambda/alpha is 1.7110697084467008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32877802617084706
the lambda is 0.5219039309986302
the regulation term lambda/alpha is 1.5874051471050157
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3313502160419937
the lambda is 0.5086061615610868
the regulation term lambda/alpha is 1.534950444989686
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33346417898048986
the lambda is 0.5469016824882905
the regulation term lambda/alpha is 1.6400612628329363
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31661944636374906
the lambda is 0.5205574073021932
the regulation term lambda/alpha is 1.644110661175718
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33792245295581885
the lambda is 0.5189576103395009
the regulation term lambda/alpha is 1.5357298865469329
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3003342212767482
the lambda is 0.5113148892500184
the regulation term lambda/alpha is 1.7024862737132391
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.337743543280253
the lambda is 0.5388537742016792
the regulation term lambda/alpha is 1.5954524813951776
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3038577984935103
the lambda is 0.5143478540755468
the regulation term lambda/alpha is 1.6927255335410853
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3079392549871848
the lambda is 0.5018390795437563
the regulation term lambda/alpha is 1.629669070819311
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3161523410946122
the lambda is 0.5296206094996028
the regulation term lambda/alpha is 1.675206983019328
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3325486383346845
the lambda is 0.5151220993983466
the regulation term lambda/alpha is 1.5490128060001738
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3591343696709836
the lambda is 0.5529910345265436
the regulation term lambda/alpha is 1.5397886730617272
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30269730033364745
the lambda is 0.5213816956787855
the regulation term lambda/alpha is 1.722452414025806
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3399617538156155
the lambda is 0.5382213567762132
the regulation term lambda/alpha is 1.5831820807352566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30484467404562937
the lambda is 0.5232924234676093
the regulation term lambda/alpha is 1.7165870622666102
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3458582335562314
the lambda is 0.5338071359442431
the regulation term lambda/alpha is 1.5434275785643659
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3168730926738575
the lambda is 0.5745287754405701
the regulation term lambda/alpha is 1.8131194750319348
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32197833730968983
the lambda is 0.5339982078301431
the regulation term lambda/alpha is 1.6584911031344485
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30729607947372906
the lambda is 0.5211671178614496
the regulation term lambda/alpha is 1.6959771135186401
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33616893911860823
the lambda is 0.5057208575237252
the regulation term lambda/alpha is 1.504365212472218
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.313431018816501
the lambda is 0.5190295782914268
the regulation term lambda/alpha is 1.6559611114791866
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3086616585771302
the lambda is 0.5018414284020679
the regulation term lambda/alpha is 1.6258625406066263
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3436449358056289
the lambda is 0.517384075203503
the regulation term lambda/alpha is 1.5055774763290672
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32271837474313314
the lambda is 0.49685133845648266
the regulation term lambda/alpha is 1.5395818067438838
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3274695921484781
the lambda is 0.517318238189704
the regulation term lambda/alpha is 1.5797443505995714
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3147285927982184
the lambda is 0.4924236432732326
the regulation term lambda/alpha is 1.5645977344960826
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3071733215453743
the lambda is 0.517708286089127
the regulation term lambda/alpha is 1.685394693408143
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29711105915663955
the lambda is 0.5087414518921725
the regulation term lambda/alpha is 1.7122938921770647
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2887491608411902
the lambda is 0.4926217200514041
the regulation term lambda/alpha is 1.706054205027949
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3396591495047781
the lambda is 0.5201423246510442
the regulation term lambda/alpha is 1.5313655628279406
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33499735973882694
the lambda is 0.5240359716620202
the regulation term lambda/alpha is 1.5642988114012986
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30576000432371925
the lambda is 0.5115269777661027
the regulation term lambda/alpha is 1.6729688989163227
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32486533367180936
the lambda is 0.5065031397821146
the regulation term lambda/alpha is 1.5591172319229427
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3204941099396939
the lambda is 0.5081405692031752
the regulation term lambda/alpha is 1.5854911321109457
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31182303786209814
the lambda is 0.5115461768453053
the regulation term lambda/alpha is 1.6405015497011917
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3363391770390599
the lambda is 0.5212479927952162
the regulation term lambda/alpha is 1.549768889202825
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33025792495404327
the lambda is 0.4711492195061584
the regulation term lambda/alpha is 1.426609882478129
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32966644976065546
the lambda is 0.5384434230877136
the regulation term lambda/alpha is 1.633297605742515
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3454865123245522
the lambda is 0.502939746729941
the regulation term lambda/alpha is 1.4557435060083512
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29803089532278715
the lambda is 0.4939678104748303
the regulation term lambda/alpha is 1.6574382663912428
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3179637867586988
the lambda is 0.518292369451346
the regulation term lambda/alpha is 1.6300358438134832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29658429181615825
the lambda is 0.5079353639179998
the regulation term lambda/alpha is 1.712617215185659
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30598815818356817
the lambda is 0.5187186540527065
the regulation term lambda/alpha is 1.6952246032394402
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3153350645277926
the lambda is 0.47289668911188665
the regulation term lambda/alpha is 1.4996641423941837
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31476014348308495
the lambda is 0.5650562897977428
the regulation term lambda/alpha is 1.79519644242413
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32545912740913546
the lambda is 0.5337729592628833
the regulation term lambda/alpha is 1.6400614218813288
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3236204511167636
the lambda is 0.5368850750187574
the regulation term lambda/alpha is 1.6589961269939861
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30297288968694625
the lambda is 0.5177969696473479
the regulation term lambda/alpha is 1.7090538040627121
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31901340270456985
the lambda is 0.5134927107337988
the regulation term lambda/alpha is 1.6096273898853435
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3300120711039756
the lambda is 0.5115691265701744
the regulation term lambda/alpha is 1.5501527712572558
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33779910661187496
the lambda is 0.5123021650965222
the regulation term lambda/alpha is 1.5165882770825325
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32585348749331283
the lambda is 0.4880256667643039
the regulation term lambda/alpha is 1.49768434433073
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3087763137107068
the lambda is 0.5011452029469954
the regulation term lambda/alpha is 1.6230040346181456
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3302590107003173
the lambda is 0.5329777804173267
the regulation term lambda/alpha is 1.6138175285123706
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3253314399192098
the lambda is 0.5216947580850445
the regulation term lambda/alpha is 1.6035792858341573
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3015244471693151
the lambda is 0.491089690943966
the regulation term lambda/alpha is 1.628689466324448
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3038126947929403
the lambda is 0.5032748041274417
the regulation term lambda/alpha is 1.6565298710458505
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29862213383688674
the lambda is 0.5152086088836438
the regulation term lambda/alpha is 1.7252860739554585
1970
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3189159752515609
the lambda is 0.5259708943416278
the regulation term lambda/alpha is 1.6492459931702763
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3015359691400098
the lambda is 0.521950347406448
the regulation term lambda/alpha is 1.7309720923015155
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3222872508147942
the lambda is 0.507513129646457
the regulation term lambda/alpha is 1.5747229478155957
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34299937961192384
the lambda is 0.5172874965806142
the regulation term lambda/alpha is 1.5081295399597614
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30590807832989864
the lambda is 0.5325583809206288
the regulation term lambda/alpha is 1.7409098309143214
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3095830363984437
the lambda is 0.4863945129913732
the regulation term lambda/alpha is 1.571127793854206
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2765508916878229
the lambda is 0.49123346159490805
the regulation term lambda/alpha is 1.7762859435992124
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30869096260623047
the lambda is 0.5026749091807206
the regulation term lambda/alpha is 1.6284082466707588
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3257517346883711
the lambda is 0.5379031351809879
the regulation term lambda/alpha is 1.6512671396687126
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3274610485671453
the lambda is 0.5148366767947358
the regulation term lambda/alpha is 1.5722073787019264
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3273431488232683
the lambda is 0.5142320998961706
the regulation term lambda/alpha is 1.570926722446246
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32746333618030854
the lambda is 0.5201141683345472
the regulation term lambda/alpha is 1.5883126776921397
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3190688720150143
the lambda is 0.5329564784323798
the regulation term lambda/alpha is 1.6703493357612793
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29331376328460573
the lambda is 0.506954873692968
the regulation term lambda/alpha is 1.7283705613263836
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.318692405532866
the lambda is 0.5357256340816992
the regulation term lambda/alpha is 1.681011611136278
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3018152929202611
the lambda is 0.5263264411048125
the regulation term lambda/alpha is 1.7438693580178084
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026425747508063
the lambda is 0.5105828396154183
the regulation term lambda/alpha is 1.6870819977520628
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.322341301867753
the lambda is 0.5249733480035588
the regulation term lambda/alpha is 1.6286257608370014
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29768664515251847
the lambda is 0.5229076222764802
the regulation term lambda/alpha is 1.756570644976602
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31021220217568796
the lambda is 0.5230840727795497
the regulation term lambda/alpha is 1.6862137243824544
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32186052176488106
the lambda is 0.5185487652831912
the regulation term lambda/alpha is 1.611097758867087
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.285119920530575
the lambda is 0.4936921719879711
the regulation term lambda/alpha is 1.7315246548514303
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.305788682465476
the lambda is 0.4756884507695137
the regulation term lambda/alpha is 1.555611695417209
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.317787247898015
the lambda is 0.532269408403485
the regulation term lambda/alpha is 1.6749237482754566
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32277160345843564
the lambda is 0.5092800406559407
the regulation term lambda/alpha is 1.5778340944466707
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3168476538042107
the lambda is 0.5214581810944859
the regulation term lambda/alpha is 1.6457694252541633
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32052823403748854
the lambda is 0.5141393809662036
the regulation term lambda/alpha is 1.6040377301241755
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.326259266241816
the lambda is 0.5547767558647431
the regulation term lambda/alpha is 1.7004168563707707
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32340603486434927
the lambda is 0.5088996780273917
the regulation term lambda/alpha is 1.5735627142543787
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3048301815209475
the lambda is 0.5462946038323823
the regulation term lambda/alpha is 1.7921276728788802
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33894959165670674
the lambda is 0.5126859846116345
the regulation term lambda/alpha is 1.5125729525318048
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31708861342840927
the lambda is 0.5477081697298107
the regulation term lambda/alpha is 1.7273031781491883
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3390159892573749
the lambda is 0.5056951428832762
the regulation term lambda/alpha is 1.4916557298404043
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3266650629903284
the lambda is 0.541331751461515
the regulation term lambda/alpha is 1.6571461499619942
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3354409664773758
the lambda is 0.5408431399546937
the regulation term lambda/alpha is 1.6123347891414195
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3297624972294684
the lambda is 0.5405316141533367
the regulation term lambda/alpha is 1.6391542964850931
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.292108209351453
the lambda is 0.47600455158562094
the regulation term lambda/alpha is 1.629548695815362
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32892617635381655
the lambda is 0.5349113689571758
the regulation term lambda/alpha is 1.6262353300267196
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.333723185815086
the lambda is 0.5511212128784788
the regulation term lambda/alpha is 1.6514321938178183
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3179530943958892
the lambda is 0.5016564245186942
the regulation term lambda/alpha is 1.5777686500326134
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32037317428346607
the lambda is 0.47604649483935935
the regulation term lambda/alpha is 1.485912470368551
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3270336625558574
the lambda is 0.5158975886109205
the regulation term lambda/alpha is 1.577506072552409
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32351588610135296
the lambda is 0.525170279310753
the regulation term lambda/alpha is 1.6233214561408726
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3463382965559738
the lambda is 0.5578161832727367
the regulation term lambda/alpha is 1.6106107491424493
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3263052898877321
the lambda is 0.5481977178474434
the regulation term lambda/alpha is 1.6800148046513592
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28268642394022203
the lambda is 0.5244781024679396
the regulation term lambda/alpha is 1.8553353046018501
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.320039969537192
the lambda is 0.5176136029293139
the regulation term lambda/alpha is 1.617340495556952
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2943730457996581
the lambda is 0.5495416039331099
the regulation term lambda/alpha is 1.8668203892115591
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33114701962491533
the lambda is 0.5183731025722398
the regulation term lambda/alpha is 1.565386586173695
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32442877836240724
the lambda is 0.5242779120391202
the regulation term lambda/alpha is 1.616003101467987
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3138813870889332
the lambda is 0.5449295879197179
the regulation term lambda/alpha is 1.7361003561683668
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3411864868554382
the lambda is 0.5069051786650524
the regulation term lambda/alpha is 1.4857129405591896
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34125922518407675
the lambda is 0.5184729255216528
the regulation term lambda/alpha is 1.5192935084523684
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2995806524427626
the lambda is 0.5160026121610378
the regulation term lambda/alpha is 1.7224163441583547
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3117730153948999
the lambda is 0.47915337491475446
the regulation term lambda/alpha is 1.5368660892856498
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3088612227499039
the lambda is 0.5416911163703041
the regulation term lambda/alpha is 1.753833360974974
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3112045244285859
the lambda is 0.5246063972240539
the regulation term lambda/alpha is 1.6857286962241407
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3257878432467339
the lambda is 0.5212797713294675
the regulation term lambda/alpha is 1.6000590020011234
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34009609768279286
the lambda is 0.5443909904154156
the regulation term lambda/alpha is 1.6006975502646559
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30208559280898767
the lambda is 0.5009288391912889
the regulation term lambda/alpha is 1.6582347888005113
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30923485728068256
the lambda is 0.49458030902516864
the regulation term lambda/alpha is 1.5993679152937599
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3270729121368279
the lambda is 0.5339269552213866
the regulation term lambda/alpha is 1.6324401544999338
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2912494951408904
the lambda is 0.4944520663619903
the regulation term lambda/alpha is 1.6976924410557408
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.34377492854280944
the lambda is 0.5181495471420112
the regulation term lambda/alpha is 1.5072348333787446
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3278489214214339
the lambda is 0.525523728053135
the regulation term lambda/alpha is 1.6029448130396613
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32190520231254593
the lambda is 0.5165838397626915
the regulation term lambda/alpha is 1.6047700877512603
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29530875343237517
the lambda is 0.5089867662061534
the regulation term lambda/alpha is 1.7235749373840008
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.36609967993753617
the lambda is 0.5019990190161955
the regulation term lambda/alpha is 1.3712085711242534
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2981284129222212
the lambda is 0.5006638103645719
the regulation term lambda/alpha is 1.6793562393370074
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30542811229337474
the lambda is 0.49993427042773897
the regulation term lambda/alpha is 1.6368312224892188
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3117292724138748
the lambda is 0.5134875024363383
the regulation term lambda/alpha is 1.6472225994695626
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32760311230586703
the lambda is 0.524246220952771
the regulation term lambda/alpha is 1.6002479868485129
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32439262668250823
the lambda is 0.5120732252999248
the regulation term lambda/alpha is 1.5785600016152792
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32800603779457177
the lambda is 0.5387542338208061
the regulation term lambda/alpha is 1.6425131605602477
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.322037407135133
the lambda is 0.5226072193873502
the regulation term lambda/alpha is 1.6228152624768037
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3343085220944454
the lambda is 0.513730199734821
the regulation term lambda/alpha is 1.5366948964276994
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3030843269991072
the lambda is 0.5366741620401505
the regulation term lambda/alpha is 1.7707090543211474
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.312222759598663
the lambda is 0.48731873394975334
the regulation term lambda/alpha is 1.5608046465804157
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32873324049173014
the lambda is 0.519909352010725
the regulation term lambda/alpha is 1.5815539409188655
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.313630736756789
the lambda is 0.4956266425106814
the regulation term lambda/alpha is 1.5802872117570053
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3078848795933914
the lambda is 0.5073141419198127
the regulation term lambda/alpha is 1.6477397090425416
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32565633218777396
the lambda is 0.5276186401316059
the regulation term lambda/alpha is 1.620170062676319
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33774492523174754
the lambda is 0.5102670664702756
the regulation term lambda/alpha is 1.5108060206090441
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28180718474617034
the lambda is 0.48847750500293863
the regulation term lambda/alpha is 1.7333749153447617
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3307743810067478
the lambda is 0.539328242686748
the regulation term lambda/alpha is 1.6305018576264698
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31584114625083365
the lambda is 0.4948019962034017
the regulation term lambda/alpha is 1.5666166428184172
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3052002445062149
the lambda is 0.5127292866541433
the regulation term lambda/alpha is 1.6799766575668729
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32772861915658724
the lambda is 0.5386329210590296
the regulation term lambda/alpha is 1.6435333674709478
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3027174392464428
the lambda is 0.5007405267310271
the regulation term lambda/alpha is 1.6541515678037082
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35467191591421215
the lambda is 0.5243874060657014
the regulation term lambda/alpha is 1.4785140365964018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32348680717552003
the lambda is 0.5383018469900732
the regulation term lambda/alpha is 1.6640612075966275
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30779788408952313
the lambda is 0.4899795359767553
the regulation term lambda/alpha is 1.591887278322695
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33646332036301346
the lambda is 0.5121877140425564
the regulation term lambda/alpha is 1.522269094562677
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3178303938368708
the lambda is 0.5414526593179834
the regulation term lambda/alpha is 1.7035899329246926
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.31319018950348954
the lambda is 0.5307653614190789
the regulation term lambda/alpha is 1.6947062175239853
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31634965782693486
the lambda is 0.528310751645686
the regulation term lambda/alpha is 1.6700215681431478
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3224596018378155
the lambda is 0.5283826510748962
the regulation term lambda/alpha is 1.6386010776650772
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.321358082532153
the lambda is 0.5206209569072472
the regulation term lambda/alpha is 1.6200649219866978
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3126960615754433
the lambda is 0.49600665581068026
the regulation term lambda/alpha is 1.586226105028861
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31677375014393977
the lambda is 0.5401877430608955
the regulation term lambda/alpha is 1.705279376259674
1980
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3118864997178473
the lambda is 0.49741137834713345
the regulation term lambda/alpha is 1.5948474165990638
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31967272531908275
the lambda is 0.5053043024465682
the regulation term lambda/alpha is 1.5806925721992593
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32185055458987716
the lambda is 0.511867321097599
the regulation term lambda/alpha is 1.5903881904129498
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.28255650619200134
the lambda is 0.5374933248077682
the regulation term lambda/alpha is 1.902250746413652
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33484573364211107
the lambda is 0.522768471361125
the regulation term lambda/alpha is 1.5612218369186959
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.317760440644811
the lambda is 0.5314165199657224
the regulation term lambda/alpha is 1.6723809889215684
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3324625426150907
the lambda is 0.5423775572486176
the regulation term lambda/alpha is 1.6313944812620786
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32937196729646273
the lambda is 0.5192068817121965
the regulation term lambda/alpha is 1.5763541930235558
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2900649715093654
the lambda is 0.5227726513639018
the regulation term lambda/alpha is 1.802260537160458
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3305773645860964
the lambda is 0.5375387695817784
the regulation term lambda/alpha is 1.626060423873276
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31801931211482604
the lambda is 0.5307644472606456
the regulation term lambda/alpha is 1.6689692325005865
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33445531726311645
the lambda is 0.524005852535816
the regulation term lambda/alpha is 1.5667439729283177
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32737074424432255
the lambda is 0.5211739953030097
the regulation term lambda/alpha is 1.5919992988562484
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3026560176976928
the lambda is 0.5195065708674472
the regulation term lambda/alpha is 1.7164917942796534
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32104491220036274
the lambda is 0.5035409256954166
the regulation term lambda/alpha is 1.568443873613418
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2845264413120636
the lambda is 0.520845471199891
the regulation term lambda/alpha is 1.830569660935789
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3075799710304263
the lambda is 0.5334590259379346
the regulation term lambda/alpha is 1.7343750444828672
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29615130897831643
the lambda is 0.503923160440974
the regulation term lambda/alpha is 1.7015733010920784
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.293347891737095
the lambda is 0.47696019681211776
the regulation term lambda/alpha is 1.6259199750430804
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29199710420948616
the lambda is 0.4894620835359349
the regulation term lambda/alpha is 1.6762566356986277
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2956726515240008
the lambda is 0.48516860532265804
the regulation term lambda/alpha is 1.6408978064827047
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33557887194010005
the lambda is 0.5599604868016816
the regulation term lambda/alpha is 1.6686404706123248
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3075393310012129
the lambda is 0.5187740259869119
the regulation term lambda/alpha is 1.6868542449449042
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3323976238831029
the lambda is 0.5277775042948982
the regulation term lambda/alpha is 1.5877896422042603
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3218001783751713
the lambda is 0.47829834646134145
the regulation term lambda/alpha is 1.4863209488458287
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3051162295430895
the lambda is 0.5078216158006739
the regulation term lambda/alpha is 1.664354651213195
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30044286299553763
the lambda is 0.5319290374186806
the regulation term lambda/alpha is 1.7704831864372865
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3204003649644023
the lambda is 0.5142897524013943
the regulation term lambda/alpha is 1.6051472115474459
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3095473278978471
the lambda is 0.521611179020458
the regulation term lambda/alpha is 1.6850773113202044
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3278855506277708
the lambda is 0.532377110555592
the regulation term lambda/alpha is 1.6236674947593785
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3245740760127195
the lambda is 0.5065047505065163
the regulation term lambda/alpha is 1.560521273691209
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.300898613601279
the lambda is 0.5145262642716214
the regulation term lambda/alpha is 1.7099655532259135
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32592914372937415
the lambda is 0.5062955723225585
the regulation term lambda/alpha is 1.5533915332927282
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2977506794033072
the lambda is 0.5253319603347294
the regulation term lambda/alpha is 1.7643350516865166
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3095386605375762
the lambda is 0.5193391438743944
the regulation term lambda/alpha is 1.677784425933928
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3105788606708485
the lambda is 0.5486677852845283
the regulation term lambda/alpha is 1.7665973276462188
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34746467937521086
the lambda is 0.5396046231342607
the regulation term lambda/alpha is 1.552976907191096
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3258740500214964
the lambda is 0.5299030294688934
the regulation term lambda/alpha is 1.626097657772806
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35402428154554
the lambda is 0.5127405035658477
the regulation term lambda/alpha is 1.4483201585140175
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3461759200961767
the lambda is 0.5274228561636122
the regulation term lambda/alpha is 1.5235688721996619
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3125519476071974
the lambda is 0.5163111753147601
the regulation term lambda/alpha is 1.6519211582825875
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31425768934754816
the lambda is 0.5332059704121624
the regulation term lambda/alpha is 1.6967157478920811
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3222038677994935
the lambda is 0.5315325446569533
the regulation term lambda/alpha is 1.6496777282255481
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3091970439884203
the lambda is 0.49203521082373974
the regulation term lambda/alpha is 1.5913321954079447
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3216964040146315
the lambda is 0.5345312047298475
the regulation term lambda/alpha is 1.6616014293574004
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3236008496250694
the lambda is 0.4905972670425485
the regulation term lambda/alpha is 1.5160567953111515
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3454081857343567
the lambda is 0.5570583656438195
the regulation term lambda/alpha is 1.612753804486373
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3218432554597165
the lambda is 0.5443779193178734
the regulation term lambda/alpha is 1.6914380217174085
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30426706107785495
the lambda is 0.5256477715625728
the regulation term lambda/alpha is 1.7275868432832815
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33152201782662855
the lambda is 0.5270581987880386
the regulation term lambda/alpha is 1.5898135582164166
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3054445364708653
the lambda is 0.4952341180731596
the regulation term lambda/alpha is 1.6213553000329974
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3099106895105722
the lambda is 0.5101414000831235
the regulation term lambda/alpha is 1.6460916559179242
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29611650536212036
the lambda is 0.5311386473842651
the regulation term lambda/alpha is 1.7936813307138573
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3188070374621496
the lambda is 0.5139467301309864
the regulation term lambda/alpha is 1.612093428746863
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32838204117884273
the lambda is 0.47492097677802386
the regulation term lambda/alpha is 1.4462452790448836
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3057415828342448
the lambda is 0.48729980631385306
the regulation term lambda/alpha is 1.5938290166373559
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30716400551944256
the lambda is 0.5014904714488668
the regulation term lambda/alpha is 1.6326472582645233
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3294607659717061
the lambda is 0.4924100718451558
the regulation term lambda/alpha is 1.4945939629347056
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31466181447547903
the lambda is 0.5163554156628516
the regulation term lambda/alpha is 1.6409853115592776
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33317245173385956
the lambda is 0.5358913736734399
the regulation term lambda/alpha is 1.6084504312544832
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3127499270020908
the lambda is 0.48657465650420795
the regulation term lambda/alpha is 1.5557946285338544
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3420022743221342
the lambda is 0.5417614941673753
the regulation term lambda/alpha is 1.5840874018781717
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3040528704245233
the lambda is 0.4903490874411402
the regulation term lambda/alpha is 1.61270994336119
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32022207567238764
the lambda is 0.5287832797765529
the regulation term lambda/alpha is 1.6513017682064486
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3132362917205153
the lambda is 0.514088947355357
the regulation term lambda/alpha is 1.6412177035158246
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3211918240248786
the lambda is 0.5264807465671334
the regulation term lambda/alpha is 1.6391474103224797
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35127165678283223
the lambda is 0.5440886768343797
the regulation term lambda/alpha is 1.5489114089576357
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3206930864502119
the lambda is 0.48283378312453773
the regulation term lambda/alpha is 1.5055946121853752
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3213924017360143
the lambda is 0.5377421890374723
the regulation term lambda/alpha is 1.6731639769105795
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.305739939333957
the lambda is 0.5349006600388706
the regulation term lambda/alpha is 1.7495282467973654
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.327804781431843
the lambda is 0.485947699416938
the regulation term lambda/alpha is 1.4824301747348856
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3026504360182118
the lambda is 0.4965333905510578
the regulation term lambda/alpha is 1.6406168022873069
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30206282834341847
the lambda is 0.4926603695939174
the regulation term lambda/alpha is 1.6309864152957163
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3135191485506598
the lambda is 0.4988597831851559
the regulation term lambda/alpha is 1.5911620884762256
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3208084114952777
the lambda is 0.5356794567879205
the regulation term lambda/alpha is 1.6697799608530703
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3204049569479642
the lambda is 0.518596297723808
the regulation term lambda/alpha is 1.618565151624765
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3086916363253671
the lambda is 0.49391191316796595
the regulation term lambda/alpha is 1.6000171531935288
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29991496798840994
the lambda is 0.5283143084645147
the regulation term lambda/alpha is 1.7615469878280003
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33111101985796915
the lambda is 0.5105302960810288
the regulation term lambda/alpha is 1.5418704466556927
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2898280878919019
the lambda is 0.4842970447152574
the regulation term lambda/alpha is 1.670980367147463
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30514591300012206
the lambda is 0.48971859605232737
the regulation term lambda/alpha is 1.6048669675354017
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3161280577699183
the lambda is 0.5176386286272272
the regulation term lambda/alpha is 1.6374333625393374
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29078316362950285
the lambda is 0.49294103599802636
the regulation term lambda/alpha is 1.6952186290472444
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3231966234299015
the lambda is 0.4885545071991283
the regulation term lambda/alpha is 1.5116324608047504
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3367395054786519
the lambda is 0.5443991265034783
the regulation term lambda/alpha is 1.6166773355851214
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31306612044354404
the lambda is 0.5238680736018221
the regulation term lambda/alpha is 1.6733464255398165
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.27770283681995306
the lambda is 0.5113425024517542
the regulation term lambda/alpha is 1.8413297764879513
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3008014623244751
the lambda is 0.5080642497678626
the regulation term lambda/alpha is 1.6890351723749693
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3102088301361043
the lambda is 0.5110860302891224
the regulation term lambda/alpha is 1.6475547458300368
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32944478906914976
the lambda is 0.527979370488303
the regulation term lambda/alpha is 1.6026338494535461
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2987322438917073
the lambda is 0.5089495706882187
the regulation term lambda/alpha is 1.7036981480737536
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32757108764265885
the lambda is 0.5414602517782722
the regulation term lambda/alpha is 1.6529549529992127
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31578710747594124
the lambda is 0.5232697562631545
the regulation term lambda/alpha is 1.6570333109720785
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29787060121492587
the lambda is 0.5578527494420058
the regulation term lambda/alpha is 1.8728023080045155
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2995019250366932
the lambda is 0.5034418851767749
the regulation term lambda/alpha is 1.6809303817165655
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3309290254046353
the lambda is 0.5421077897238133
the regulation term lambda/alpha is 1.6381391419533673
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.33900003567493275
the lambda is 0.5287015675301281
the regulation term lambda/alpha is 1.559591480506805
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3094345444769656
the lambda is 0.5009408870158769
the regulation term lambda/alpha is 1.6188912839793395
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3129548589775175
the lambda is 0.5259618069161767
the regulation term lambda/alpha is 1.6806315410298884
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3152583510732885
the lambda is 0.49962059418078253
the regulation term lambda/alpha is 1.5847973336149155
1990
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30817303744794894
the lambda is 0.5234352743670435
the regulation term lambda/alpha is 1.6985109362640227
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32104531225085936
the lambda is 0.5284622627016046
the regulation term lambda/alpha is 1.646067525473392
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29802382211994216
the lambda is 0.4942507448820792
the regulation term lambda/alpha is 1.6584269719323441
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34473502520731875
the lambda is 0.529844403207659
the regulation term lambda/alpha is 1.5369613310658472
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32066786061308683
the lambda is 0.5046549895626345
the regulation term lambda/alpha is 1.5737622990897235
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3350895876726253
the lambda is 0.5340465634177112
the regulation term lambda/alpha is 1.5937426379821213
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34298155318938733
the lambda is 0.5508095258334951
the regulation term lambda/alpha is 1.6059450448909403
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30754335414116896
the lambda is 0.5090951289184857
the regulation term lambda/alpha is 1.6553605274292489
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.28769651264399987
the lambda is 0.5147777039627697
the regulation term lambda/alpha is 1.7893081123293406
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3387300272614813
the lambda is 0.562209294651278
the regulation term lambda/alpha is 1.659756293814728
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3195186465844821
the lambda is 0.5110533282615158
the regulation term lambda/alpha is 1.599447586938846
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30102504873214353
the lambda is 0.5692592636731244
the regulation term lambda/alpha is 1.8910694178797711
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30223427813228587
the lambda is 0.5162778172782667
the regulation term lambda/alpha is 1.7082040477628928
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3238429345381094
the lambda is 0.538282139662075
the regulation term lambda/alpha is 1.662170398837992
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3360205138679488
the lambda is 0.520439776119808
the regulation term lambda/alpha is 1.5488333439199884
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3316674990442195
the lambda is 0.4967318571598616
the regulation term lambda/alpha is 1.497680232737049
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.29522614118642476
the lambda is 0.5155754801143417
the regulation term lambda/alpha is 1.7463747554413693
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29667122951085007
the lambda is 0.5159103001734647
the regulation term lambda/alpha is 1.7389967373111808
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3380783814655307
the lambda is 0.550469128642877
the regulation term lambda/alpha is 1.6282293066378777
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31236556253714554
the lambda is 0.49923204805296467
the regulation term lambda/alpha is 1.5982301121737694
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2928762076290076
the lambda is 0.5091828544840324
the regulation term lambda/alpha is 1.738559982752252
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32249434907319025
the lambda is 0.5261480354824732
the regulation term lambda/alpha is 1.631495364165478
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3068456123423779
the lambda is 0.5307841044666551
the regulation term lambda/alpha is 1.7298083567654439
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.313260100874434
the lambda is 0.5077777833979185
the regulation term lambda/alpha is 1.6209462423733758
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3072567096670053
the lambda is 0.5248064168404448
the regulation term lambda/alpha is 1.7080389144608517
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3441126438242581
the lambda is 0.5639668857209832
the regulation term lambda/alpha is 1.6389019579559736
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.298227532196531
the lambda is 0.49552804667534195
the regulation term lambda/alpha is 1.6615771287970507
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3033519002778882
the lambda is 0.48664134938061065
the regulation term lambda/alpha is 1.604213947348998
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3273723378210511
the lambda is 0.5047446703306795
the regulation term lambda/alpha is 1.5418061088795598
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3115908451284967
the lambda is 0.5118586962823984
the regulation term lambda/alpha is 1.6427270065374142
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30543287899508875
the lambda is 0.5115743816607985
the regulation term lambda/alpha is 1.674915887719555
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3151435763677238
the lambda is 0.4930692257955419
the regulation term lambda/alpha is 1.5645859943539082
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32689834323533973
the lambda is 0.5495248929328185
the regulation term lambda/alpha is 1.681026852244418
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3051516752313052
the lambda is 0.5288599180951153
the regulation term lambda/alpha is 1.7331050786276665
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34709906118789385
the lambda is 0.5391734676706335
the regulation term lambda/alpha is 1.553370573303754
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33508514556102004
the lambda is 0.5472256439282429
the regulation term lambda/alpha is 1.6330943080512992
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.34396600487853374
the lambda is 0.5196781690312294
the regulation term lambda/alpha is 1.5108416577816919
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31032699397270436
the lambda is 0.5322579950805723
the regulation term lambda/alpha is 1.7151520989739888
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30751614957187423
the lambda is 0.521795599590231
the regulation term lambda/alpha is 1.696807144329421
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3312858554901752
the lambda is 0.5173683192079184
the regulation term lambda/alpha is 1.5616975812094753
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.32019870794966204
the lambda is 0.5258246999171085
the regulation term lambda/alpha is 1.6421824537773355
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30378510161200306
the lambda is 0.5124405351338938
the regulation term lambda/alpha is 1.686852095164256
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3104111347041856
the lambda is 0.5203943737441188
the regulation term lambda/alpha is 1.6764681274724318
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3194889583561847
the lambda is 0.5575239359120916
the regulation term lambda/alpha is 1.7450491521855094
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3011754862073409
the lambda is 0.5243304382530973
the regulation term lambda/alpha is 1.7409465984629569
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2968438329017503
the lambda is 0.5280541870448286
the regulation term lambda/alpha is 1.7788955959870139
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3081565324743188
the lambda is 0.5145097179984846
the regulation term lambda/alpha is 1.669637550329597
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30346118508050046
the lambda is 0.49546719087852964
the regulation term lambda/alpha is 1.6327201475440587
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33619640325669775
the lambda is 0.5209986255833539
the regulation term lambda/alpha is 1.5496853045912962
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3234239468505477
the lambda is 0.4941957764100302
the regulation term lambda/alpha is 1.52801232321364
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32904686316779524
the lambda is 0.5163069945821623
the regulation term lambda/alpha is 1.5690986676231435
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29953138441294536
the lambda is 0.5130557507470737
the regulation term lambda/alpha is 1.7128614143476715
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31795459498007667
the lambda is 0.5441892442933567
the regulation term lambda/alpha is 1.7115313094545972
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3094379332420794
the lambda is 0.5415410781487285
the regulation term lambda/alpha is 1.7500798059075395
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3135495069241068
the lambda is 0.5146186460472293
the regulation term lambda/alpha is 1.6412675978845992
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3193573492010683
the lambda is 0.5421671910306569
the regulation term lambda/alpha is 1.6976818989354365
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.299866323670365
the lambda is 0.5209691273687733
the regulation term lambda/alpha is 1.7373378944061113
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.2899841348275938
the lambda is 0.49533479107347483
the regulation term lambda/alpha is 1.7081444519989673
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3209774469337951
the lambda is 0.5353486379894528
the regulation term lambda/alpha is 1.6678699488187838
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3255902052396578
the lambda is 0.4995662303440799
the regulation term lambda/alpha is 1.5343404755568835
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3081664285627109
the lambda is 0.5246910370017767
the regulation term lambda/alpha is 1.7026223117454329
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3032868116667453
the lambda is 0.5280152267012412
the regulation term lambda/alpha is 1.7409765488959996
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3365580200107629
the lambda is 0.5079841749873719
the regulation term lambda/alpha is 1.5093509730391417
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3209678221287581
the lambda is 0.5110946121525656
the regulation term lambda/alpha is 1.592354675190889
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32206533907270213
the lambda is 0.5439562493424369
the regulation term lambda/alpha is 1.6889624040531905
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.33602474201717203
the lambda is 0.5169929137061479
the regulation term lambda/alpha is 1.5385560914431942
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3262854926629977
the lambda is 0.5106734173229571
the regulation term lambda/alpha is 1.565112237001611
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3117643666709038
the lambda is 0.4916567085356762
the regulation term lambda/alpha is 1.5770137998312856
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3006461518370634
the lambda is 0.5050116512889239
the regulation term lambda/alpha is 1.6797542499816107
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3059691627367397
the lambda is 0.4924672269901813
the regulation term lambda/alpha is 1.6095322240493473
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31869003168832977
the lambda is 0.5198214865834395
the regulation term lambda/alpha is 1.6311193790077843
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2917238526506915
the lambda is 0.4929186565475653
the regulation term lambda/alpha is 1.6896755341353018
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3011758741402039
the lambda is 0.5209612746659121
the regulation term lambda/alpha is 1.7297576578905962
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30984933159729355
the lambda is 0.538386798053947
the regulation term lambda/alpha is 1.7375761157157508
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.29138149504614835
the lambda is 0.5194676217257397
the regulation term lambda/alpha is 1.7827749207047878
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.39518010808019816
the lambda is 0.5343620915052866
the regulation term lambda/alpha is 1.352198859657285
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3069394120245698
the lambda is 0.4798204848014124
the regulation term lambda/alpha is 1.5632416887636569
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3248872254792862
the lambda is 0.5225037397731902
the regulation term lambda/alpha is 1.60826187918707
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3088314876567483
the lambda is 0.5348915959021929
the regulation term lambda/alpha is 1.7319852970973604
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30123363434174893
the lambda is 0.5275313163274901
the regulation term lambda/alpha is 1.7512364363967634
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3371535432932443
the lambda is 0.5312432739253
the regulation term lambda/alpha is 1.5756716323851394
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30737289921158883
the lambda is 0.49939826910275437
the regulation term lambda/alpha is 1.6247309713501432
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2948291590267476
the lambda is 0.5260186244842004
the regulation term lambda/alpha is 1.7841472201074886
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31225375148419326
the lambda is 0.5157613683089652
the regulation term lambda/alpha is 1.651737940240804
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.330181707032828
the lambda is 0.5484227906862719
the regulation term lambda/alpha is 1.6609726674886487
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30240822783722626
the lambda is 0.5277008044649943
the regulation term lambda/alpha is 1.7449948641907775
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3246912747603028
the lambda is 0.5206424890524423
the regulation term lambda/alpha is 1.6035000923162988
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3010197601164091
the lambda is 0.4975300783663912
the regulation term lambda/alpha is 1.6528153439959838
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.35002900268463616
the lambda is 0.5496633962309645
the regulation term lambda/alpha is 1.5703367207150887
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.2838606022108034
the lambda is 0.49940600766353654
the regulation term lambda/alpha is 1.7593354053855725
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.3248543589246474
the lambda is 0.5159252810924639
the regulation term lambda/alpha is 1.5881741060834493
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.32232485100565533
the lambda is 0.5397149592907398
the regulation term lambda/alpha is 1.674444144181952
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.30293008672828753
the lambda is 0.5363137370109616
the regulation term lambda/alpha is 1.770420834732098
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3467674570235116
the lambda is 0.5235717753814237
the regulation term lambda/alpha is 1.509864218157947
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3499738993507221
the lambda is 0.5278480646448734
the regulation term lambda/alpha is 1.5082498026971345
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.31121222565635265
the lambda is 0.5120481061589709
the regulation term lambda/alpha is 1.6453341608898926
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30693680216303026
the lambda is 0.499826228976328
the regulation term lambda/alpha is 1.6284336888049158
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.30820364922618954
the lambda is 0.5107016144266177
the regulation term lambda/alpha is 1.6570265008504672
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3246200145224941
the lambda is 0.5442855057478486
the regulation term lambda/alpha is 1.676684989828725
using Bay_non_info_prior option for model regressor
Convergence after  2  iterations
the alpha is 0.3186666248221063
the lambda is 0.5454770287914162
the regulation term lambda/alpha is 1.711748223071448
2000
In [20]:
n=10 #number of samples
inconsistency_non_Bay=np.array([])
ken_w_non_Bay=np.array([])
while n<=2000:

    k=100#number of explanations 
    m=13# number of features
    i=1
    instance=3
    explanations=np.array([])
    while i<=k:
        exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                         model_regressor='non_Bay',
                                         num_samples=n)#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior' 'BayesianRidge_inf_prior_fit_alpha'
        temp_list=exp.as_list()
        temp_array = np.array(temp_list)
        explanations=np.append(explanations,temp_array)
        i=i+1
    exps=explanations.reshape(k,2*m)# k exps, 13 features for this instance.. 
    for exp in exps:
    #print(exp)
        i=1
        temp_vector=np.array([])
        while i<=(2*m-1):
            temp_vector=np.append(temp_vector,float(exp[i]))
            i=i+2
    #print(temp_vector)
        normlised_temp_vector=temp_vector/np.linalg.norm(temp_vector)
    #print(normlised_temp_vector)
        i=1
        while i<=(2*m-1):
            exp[i]=normlised_temp_vector[math.floor(i/2)]
            i=i+2
    feature_names=np.array([])
    i=0
    while i<=(2*m-1):
        feature_names=np.append(feature_names,exps[0,i])
        i=i+2
    
    g_i_s=np.array([])
    f_i_s=np.array([])
    for feature in feature_names:
        g_i=importance_in_k_exp(feature,exps)
        f_i=rankings_in_k_exp(feature,exps)
        g_i_s=np.append(g_i_s,g_i)
        f_i_s=np.append(f_i_s,f_i)
    g_i_s=g_i_s.reshape(m,k)
    f_i_s=f_i_s.reshape(m,k)
    IoD_f_i_s=np.array([])
    for f_i in f_i_s:
        if np.mean(f_i)==0:
            IoD_f_i=0
            IoD_f_i_s=np.append(IoD_f_i_s,IoD_f_i)
        else:
            IoD_f_i=np.var(f_i)/np.mean(f_i)
            IoD_f_i_s=np.append(IoD_f_i_s,IoD_f_i)
    weights_g_i_s=np.array([])
    for g_i in g_i_s:
        weight=np.mean(abs(g_i.astype(np.float)))
        weights_g_i_s=np.append(weights_g_i_s,weight)
    weights_g_i_s=weights_g_i_s/sum(weights_g_i_s)
    inconsistency_non_Bay=np.append(inconsistency_non_Bay,np.dot(weights_g_i_s,IoD_f_i_s))
    ken_w_non_Bay=np.append(ken_w_non_Bay,kendall_w(f_i_s.T))
    
    print(n)
    n=n+10
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
10
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
20
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
30
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
40
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
50
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
60
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
70
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
80
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
90
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
100
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
110
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
120
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
130
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
140
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
150
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
160
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
170
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
180
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
190
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
200
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
210
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
220
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
230
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
240
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
250
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
260
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
270
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
280
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
290
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
300
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
310
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
320
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
330
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
340
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
350
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
360
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
370
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
380
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
390
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
400
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
410
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
420
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
430
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
440
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
450
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
460
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
470
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
480
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
490
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
500
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
510
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
520
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
530
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
540
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
550
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
560
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
570
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
580
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
590
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
600
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
610
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
620
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
630
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
640
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
650
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
660
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
670
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
680
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
690
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
700
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
710
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
720
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
730
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
740
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
750
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
760
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
770
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
780
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
790
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
800
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
810
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
820
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
830
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
840
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
850
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
860
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
870
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
880
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
890
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
900
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
910
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
920
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
930
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
940
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
950
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
960
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
970
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
980
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
990
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1000
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1010
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1020
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1030
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1040
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1050
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1060
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1070
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1080
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1090
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1100
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1110
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1120
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1130
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1140
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1150
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1160
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1170
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1180
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1190
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1200
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1210
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1220
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1230
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1240
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1250
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1260
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1270
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1280
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1290
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1300
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1310
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1320
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1330
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1340
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1350
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1360
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1370
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1380
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1390
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1400
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1410
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1420
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1430
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1440
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1450
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1460
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1470
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1480
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1490
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1500
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1510
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1520
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1530
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1540
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1550
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1560
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1570
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1580
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1590
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1600
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1610
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1620
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1630
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1640
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1650
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1660
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1670
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1680
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1690
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1700
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1710
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1720
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1730
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1740
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1750
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1760
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1770
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1780
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1790
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1800
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1810
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1820
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1830
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1840
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1850
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1860
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1870
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1880
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1890
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1900
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1910
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1920
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1930
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1940
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1950
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1960
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1970
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1980
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
1990
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
using non_Bay option for model regressor
2000
In [21]:
n=10 #number of samples
inconsistency_info_prior_fit_alpha=np.array([])
ken_w_info_prior_fit_alpha=np.array([])
while n<=2000:

    k=100#number of explanations 
    m=13# number of features
    i=1
    instance=3
    explanations=np.array([])
    while i<=k:
        exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                         model_regressor='BayesianRidge_inf_prior_fit_alpha',
                                         num_samples=n)#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior' 'BayesianRidge_inf_prior_fit_alpha'
        
        alpha_init=1
        lambda_init=1
        with open('.\posterior_configure.csv') as csv_file:
            csv_reader=csv.reader(csv_file)
            line_count = 0
            for row in csv_reader:
                if line_count == 1:
                    alpha_init=float(row[0])
                    lambda_init=float(row[1])
                line_count=line_count+1

        exp=calculate_posteriors.get_posterior(exp,'.\data\prior_knowledge_tabular.csv',hyper_para_alpha=alpha_init, hyper_para_lambda=lambda_init,
                                        label=1)
        
        temp_list=exp.as_list()
        temp_array = np.array(temp_list)
        explanations=np.append(explanations,temp_array)
        i=i+1
    exps=explanations.reshape(k,2*m)# k exps, 13 features for this instance.. 
    for exp in exps:
    #print(exp)
        i=1
        temp_vector=np.array([])
        while i<=(2*m-1):
            temp_vector=np.append(temp_vector,float(exp[i]))
            i=i+2
    #print(temp_vector)
        normlised_temp_vector=temp_vector/np.linalg.norm(temp_vector)
    #print(normlised_temp_vector)
        i=1
        while i<=(2*m-1):
            exp[i]=normlised_temp_vector[math.floor(i/2)]
            i=i+2
    feature_names=np.array([])
    i=0
    while i<=(2*m-1):
        feature_names=np.append(feature_names,exps[0,i])
        i=i+2
    
    g_i_s=np.array([])
    f_i_s=np.array([])
    for feature in feature_names:
        g_i=importance_in_k_exp(feature,exps)
        f_i=rankings_in_k_exp(feature,exps)
        g_i_s=np.append(g_i_s,g_i)
        f_i_s=np.append(f_i_s,f_i)
    g_i_s=g_i_s.reshape(m,k)
    f_i_s=f_i_s.reshape(m,k)
    IoD_f_i_s=np.array([])
    for f_i in f_i_s:
        if np.mean(f_i)==0:
            IoD_f_i=0
            IoD_f_i_s=np.append(IoD_f_i_s,IoD_f_i)
        else:
            IoD_f_i=np.var(f_i)/np.mean(f_i)
            IoD_f_i_s=np.append(IoD_f_i_s,IoD_f_i)
    weights_g_i_s=np.array([])
    for g_i in g_i_s:
        weight=np.mean(abs(g_i.astype(np.float)))
        weights_g_i_s=np.append(weights_g_i_s,weight)
    weights_g_i_s=weights_g_i_s/sum(weights_g_i_s)
    inconsistency_info_prior_fit_alpha=np.append(inconsistency_info_prior_fit_alpha,np.dot(weights_g_i_s,IoD_f_i_s))
    
    ken_w_info_prior_fit_alpha=np.append(ken_w_info_prior_fit_alpha,kendall_w(f_i_s.T))
    
    print(n)
    n=n+10
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.03872644762792999
the lambda is 20.0
the regulation term lambda/alpha is 516.4429278965354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.4802650715509722
the lambda is 20.0
the regulation term lambda/alpha is 41.643669683101926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.15552399488978444
the lambda is 20.0
the regulation term lambda/alpha is 128.59751972146452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.12432140052583399
the lambda is 20.0
the regulation term lambda/alpha is 160.8733485579098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.2628896820117949
the lambda is 20.0
the regulation term lambda/alpha is 76.07753886325091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.11616850391082319
the lambda is 20.0
the regulation term lambda/alpha is 172.16370467638123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.12543116500637772
the lambda is 20.0
the regulation term lambda/alpha is 159.45000589752215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.14932302946158524
the lambda is 20.0
the regulation term lambda/alpha is 133.93781302264023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.13210053184628304
the lambda is 20.0
the regulation term lambda/alpha is 151.3998446521981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.08213459599403496
the lambda is 20.0
the regulation term lambda/alpha is 243.50275006469266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.5036045968947267
the lambda is 20.0
the regulation term lambda/alpha is 39.71369626751201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.13458198782926215
the lambda is 20.0
the regulation term lambda/alpha is 148.60829686490484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.06885399064297996
the lambda is 20.0
the regulation term lambda/alpha is 290.4697289617317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.2178975164810737
the lambda is 20.0
the regulation term lambda/alpha is 91.786268714711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.0760891985925535
the lambda is 20.0
the regulation term lambda/alpha is 262.849397417064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.19237729567596104
the lambda is 20.0
the regulation term lambda/alpha is 103.9623721173826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.43029004612261856
the lambda is 20.0
the regulation term lambda/alpha is 46.480275758692905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.1595934002311272
the lambda is 20.0
the regulation term lambda/alpha is 125.31846536909104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.39443782343074796
the lambda is 20.0
the regulation term lambda/alpha is 50.705076470718915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.07351780094165876
the lambda is 20.0
the regulation term lambda/alpha is 272.0429575399205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11668137432681562
the lambda is 20.0
the regulation term lambda/alpha is 171.4069628969361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.06616994753648801
the lambda is 20.0
the regulation term lambda/alpha is 302.252015372559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1532257696698346
the lambda is 20.0
the regulation term lambda/alpha is 130.52634712225813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.15733118248317413
the lambda is 20.0
the regulation term lambda/alpha is 127.12038188703572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.25124234395275485
the lambda is 20.0
the regulation term lambda/alpha is 79.60441574196156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08023473402393697
the lambda is 20.0
the regulation term lambda/alpha is 249.2686022244838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.05585090225866393
the lambda is 20.0
the regulation term lambda/alpha is 358.09627402926117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.0789468606470984
the lambda is 20.0
the regulation term lambda/alpha is 253.33496273401312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08546436510080183
the lambda is 20.0
the regulation term lambda/alpha is 234.01566227527454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08367113459220235
the lambda is 20.0
the regulation term lambda/alpha is 239.0310600839382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.05683625543962746
the lambda is 20.0
the regulation term lambda/alpha is 351.88806590617804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08181011442889598
the lambda is 20.0
the regulation term lambda/alpha is 244.4685493916855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10818869369987603
the lambda is 20.0
the regulation term lambda/alpha is 184.8622006240465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.12323476549738788
the lambda is 20.0
the regulation term lambda/alpha is 162.29186560527782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.2737551403799908
the lambda is 20.0
the regulation term lambda/alpha is 73.05798887370165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.08549295026064635
the lambda is 20.0
the regulation term lambda/alpha is 233.93741751834585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.15569779736665185
the lambda is 20.0
the regulation term lambda/alpha is 128.4539687668292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.07537549840040429
the lambda is 20.0
the regulation term lambda/alpha is 265.338212342656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.238763254011716
the lambda is 20.0
the regulation term lambda/alpha is 83.76498336305389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.14890027362892924
the lambda is 20.0
the regulation term lambda/alpha is 134.31808762045335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.2436645370588924
the lambda is 20.0
the regulation term lambda/alpha is 82.08006073188282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.058361769377796344
the lambda is 20.0
the regulation term lambda/alpha is 342.69008998909777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.10702378761482984
the lambda is 20.0
the regulation term lambda/alpha is 186.87434303837594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.07140973166989827
the lambda is 20.0
the regulation term lambda/alpha is 280.0738713380533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.07285719714748096
the lambda is 20.0
the regulation term lambda/alpha is 274.5095993675829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.23780406346672867
the lambda is 20.0
the regulation term lambda/alpha is 84.10285219032102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1441152969791512
the lambda is 20.0
the regulation term lambda/alpha is 138.77777320816506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.07468978799802134
the lambda is 20.0
the regulation term lambda/alpha is 267.7742237068585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 0.06996691524833476
the lambda is 20.0
the regulation term lambda/alpha is 285.8493893723006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.2228784551957019
the lambda is 20.0
the regulation term lambda/alpha is 89.73500817940742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10748129606500721
the lambda is 20.0
the regulation term lambda/alpha is 186.07888751084218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.10387235928149607
the lambda is 20.0
the regulation term lambda/alpha is 192.54400437559735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10006028677687731
the lambda is 20.0
the regulation term lambda/alpha is 199.8794990923587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11617484113776269
the lambda is 20.0
the regulation term lambda/alpha is 172.1543133102593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.16163137678596254
the lambda is 20.0
the regulation term lambda/alpha is 123.73835079363732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.15863472094932482
the lambda is 20.0
the regulation term lambda/alpha is 126.07580408824191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.1323228985143589
the lambda is 20.0
the regulation term lambda/alpha is 151.14541945912495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09205620870318335
the lambda is 20.0
the regulation term lambda/alpha is 217.25856714875104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.05359936274836156
the lambda is 20.0
the regulation term lambda/alpha is 373.1387646136029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.21467080932763605
the lambda is 20.0
the regulation term lambda/alpha is 93.16590393748174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.18166150912963405
the lambda is 20.0
the regulation term lambda/alpha is 110.09486872493147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.15376345783101114
the lambda is 20.0
the regulation term lambda/alpha is 130.0699157141768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.22136337929433655
the lambda is 20.0
the regulation term lambda/alpha is 90.3491808977443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10645465869044934
the lambda is 20.0
the regulation term lambda/alpha is 187.87341245587325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 0.10937606205605849
the lambda is 20.0
the regulation term lambda/alpha is 182.85536729005113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.24941190702611904
the lambda is 20.0
the regulation term lambda/alpha is 80.18863348775706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.15123762583400235
the lambda is 20.0
the regulation term lambda/alpha is 132.24222404781662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.46445053276253395
the lambda is 20.0
the regulation term lambda/alpha is 43.0616364697458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.19794479636523804
the lambda is 20.0
the regulation term lambda/alpha is 101.03827111017851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.12365692612259747
the lambda is 20.0
the regulation term lambda/alpha is 161.7378065840918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.16418309628128847
the lambda is 20.0
the regulation term lambda/alpha is 121.81522003784595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.07801340868563963
the lambda is 20.0
the regulation term lambda/alpha is 256.3661854668006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.2530593018045657
the lambda is 20.0
the regulation term lambda/alpha is 8.876819169376144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.17882100593787437
the lambda is 20.0
the regulation term lambda/alpha is 111.8436835488352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.051353727831132276
the lambda is 20.0
the regulation term lambda/alpha is 389.45566066336005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.3883277891664532
the lambda is 20.0
the regulation term lambda/alpha is 51.50288122034753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1740110724018094
the lambda is 20.0
the regulation term lambda/alpha is 114.93521489148661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.3628685967243456
the lambda is 20.0
the regulation term lambda/alpha is 55.11637044523053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.09268367178667261
the lambda is 20.0
the regulation term lambda/alpha is 215.78773924746352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.4000103977848382
the lambda is 20.0
the regulation term lambda/alpha is 49.99870031067995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.48098028691412464
the lambda is 20.0
the regulation term lambda/alpha is 41.581745747452736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.07755783974156412
the lambda is 20.0
the regulation term lambda/alpha is 257.87206124672105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.14744828438453647
the lambda is 20.0
the regulation term lambda/alpha is 135.64077794110628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.07286822022243504
the lambda is 20.0
the regulation term lambda/alpha is 274.46807317303325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09755629029592719
the lambda is 20.0
the regulation term lambda/alpha is 205.00984548850732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.2098328063463475
the lambda is 20.0
the regulation term lambda/alpha is 95.31398044111482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11658277912990239
the lambda is 20.0
the regulation term lambda/alpha is 171.5519234424408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08667386559242506
the lambda is 20.0
the regulation term lambda/alpha is 230.75006362411415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.07347653166280574
the lambda is 20.0
the regulation term lambda/alpha is 272.195754853847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.12476028221619348
the lambda is 20.0
the regulation term lambda/alpha is 160.30742833157896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.13899653964510222
the lambda is 20.0
the regulation term lambda/alpha is 143.88847413803035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.07578513436712689
the lambda is 20.0
the regulation term lambda/alpha is 263.90399868018636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.30111571254753355
the lambda is 20.0
the regulation term lambda/alpha is 66.4196492132334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.32499882159726606
the lambda is 20.0
the regulation term lambda/alpha is 61.53868466878233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08411329930180124
the lambda is 20.0
the regulation term lambda/alpha is 237.77452752434965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.10925943441947861
the lambda is 20.0
the regulation term lambda/alpha is 183.05055399805758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10996436911181248
the lambda is 20.0
the regulation term lambda/alpha is 181.8770949312124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.3319033142189494
the lambda is 20.0
the regulation term lambda/alpha is 60.25851247392617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.4326395434622432
the lambda is 20.0
the regulation term lambda/alpha is 46.22785943223754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.3661534315802803
the lambda is 20.0
the regulation term lambda/alpha is 54.62191058453848
10
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.20255420570855942
the lambda is 20.0
the regulation term lambda/alpha is 98.73900139489847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11740815992499203
the lambda is 20.0
the regulation term lambda/alpha is 170.3459113299902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1639172536714979
the lambda is 20.0
the regulation term lambda/alpha is 122.01278115653069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12097583119243994
the lambda is 20.0
the regulation term lambda/alpha is 165.32227803572923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.20753973649829588
the lambda is 20.0
the regulation term lambda/alpha is 96.36708775605592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1508639142761724
the lambda is 20.0
the regulation term lambda/alpha is 132.56980700757822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.22806312019194824
the lambda is 20.0
the regulation term lambda/alpha is 87.69502049768982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1948664181255168
the lambda is 20.0
the regulation term lambda/alpha is 102.63441075371775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.15152471909306525
the lambda is 20.0
the regulation term lambda/alpha is 131.99166525242765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.2921692787332211
the lambda is 20.0
the regulation term lambda/alpha is 68.45346672557568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.06282808781204774
the lambda is 20.0
the regulation term lambda/alpha is 318.3289623556688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10748306209496183
the lambda is 20.0
the regulation term lambda/alpha is 186.0758300906044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.19670199237901034
the lambda is 20.0
the regulation term lambda/alpha is 101.67665186361457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1386507018097608
the lambda is 20.0
the regulation term lambda/alpha is 144.24737660139294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11331275958929005
the lambda is 20.0
the regulation term lambda/alpha is 176.50262929339456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08465671640074608
the lambda is 20.0
the regulation term lambda/alpha is 236.2482370013555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.12735857903926565
the lambda is 20.0
the regulation term lambda/alpha is 157.03692794683147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.0648170289131981
the lambda is 20.0
the regulation term lambda/alpha is 308.56088801576624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1563332961473002
the lambda is 20.0
the regulation term lambda/alpha is 127.9318001531524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1740359242358428
the lambda is 20.0
the regulation term lambda/alpha is 114.91880247032921
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13736841974684763
the lambda is 20.0
the regulation term lambda/alpha is 145.59387111577342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09286569446881122
the lambda is 20.0
the regulation term lambda/alpha is 215.36478152023042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1141954675162967
the lambda is 20.0
the regulation term lambda/alpha is 175.1382995752071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08836387397474874
the lambda is 20.0
the regulation term lambda/alpha is 226.3368399365932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1311995758562669
the lambda is 20.0
the regulation term lambda/alpha is 152.4395171971486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.17216451141914524
the lambda is 20.0
the regulation term lambda/alpha is 116.16795955880102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11005443500940755
the lambda is 20.0
the regulation term lambda/alpha is 181.72825109947075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1305521406069019
the lambda is 20.0
the regulation term lambda/alpha is 153.1954965045028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1690462705796145
the lambda is 20.0
the regulation term lambda/alpha is 118.31080290281083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1231912894313849
the lambda is 20.0
the regulation term lambda/alpha is 162.3491408549596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.15209830460741677
the lambda is 20.0
the regulation term lambda/alpha is 131.49390489014525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.14319316304598081
the lambda is 20.0
the regulation term lambda/alpha is 139.67147295697205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.17168102319032733
the lambda is 20.0
the regulation term lambda/alpha is 116.49511185536096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.093304160915589
the lambda is 20.0
the regulation term lambda/alpha is 214.3527127165714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.12187638853735637
the lambda is 20.0
the regulation term lambda/alpha is 164.1006944825067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.18123737704331652
the lambda is 20.0
the regulation term lambda/alpha is 110.35251296546801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.07290966549360428
the lambda is 20.0
the regulation term lambda/alpha is 274.31205265582275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.16082637287349447
the lambda is 20.0
the regulation term lambda/alpha is 124.35771349349487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11905702462150904
the lambda is 20.0
the regulation term lambda/alpha is 167.98672790271266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.09883481100384543
the lambda is 20.0
the regulation term lambda/alpha is 202.35785141757236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11304280326477205
the lambda is 20.0
the regulation term lambda/alpha is 176.92413335818853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.10249138780664489
the lambda is 20.0
the regulation term lambda/alpha is 195.13834701634636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.0810607853163823
the lambda is 20.0
the regulation term lambda/alpha is 246.72842635239087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2476637634979643
the lambda is 20.0
the regulation term lambda/alpha is 80.75464782382019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09581125437779056
the lambda is 20.0
the regulation term lambda/alpha is 208.74374445760395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11058778331945426
the lambda is 20.0
the regulation term lambda/alpha is 180.85180297199847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11361270684641793
the lambda is 20.0
the regulation term lambda/alpha is 176.03664726548652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1321889829464053
the lambda is 20.0
the regulation term lambda/alpha is 151.29853906288696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1511978426469287
the lambda is 20.0
the regulation term lambda/alpha is 132.27701963118096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09558037155281651
the lambda is 20.0
the regulation term lambda/alpha is 209.24798339948126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2118845702031488
the lambda is 20.0
the regulation term lambda/alpha is 94.3910166786783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.14949408226131453
the lambda is 20.0
the regulation term lambda/alpha is 133.78455988003694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11063581474261161
the lambda is 20.0
the regulation term lambda/alpha is 180.7732879857119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.2568208022123511
the lambda is 20.0
the regulation term lambda/alpha is 77.87531160915498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.21308463343085973
the lambda is 20.0
the regulation term lambda/alpha is 93.85941950849057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13436081298016306
the lambda is 20.0
the regulation term lambda/alpha is 148.852924869938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3133661484604368
the lambda is 20.0
the regulation term lambda/alpha is 63.823103096041805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10357192974248093
the lambda is 20.0
the regulation term lambda/alpha is 193.10251387347498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.4569515735279235
the lambda is 20.0
the regulation term lambda/alpha is 43.76831410293379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10035050339515846
the lambda is 20.0
the regulation term lambda/alpha is 199.30144168031077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.17957313495847582
the lambda is 20.0
the regulation term lambda/alpha is 111.3752344114545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1201045599872369
the lambda is 20.0
the regulation term lambda/alpha is 166.5215708889432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10937932507678745
the lambda is 20.0
the regulation term lambda/alpha is 182.84991232081038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09378691186972832
the lambda is 20.0
the regulation term lambda/alpha is 213.24937138116195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.12930352617550228
the lambda is 20.0
the regulation term lambda/alpha is 154.67482281074234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1223136916141768
the lambda is 20.0
the regulation term lambda/alpha is 163.51399206466184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3536274807274043
the lambda is 20.0
the regulation term lambda/alpha is 56.556690557137756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09734693333651336
the lambda is 20.0
the regulation term lambda/alpha is 205.45074523162512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11462573394200133
the lambda is 20.0
the regulation term lambda/alpha is 174.48088934479284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.25611961403439615
the lambda is 20.0
the regulation term lambda/alpha is 78.08851374152881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.07400185938045241
the lambda is 20.0
the regulation term lambda/alpha is 270.26347942391027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.21135826532589252
the lambda is 20.0
the regulation term lambda/alpha is 94.62606049099652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.13174572035697704
the lambda is 20.0
the regulation term lambda/alpha is 151.80758772131782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.0890764864087897
the lambda is 20.0
the regulation term lambda/alpha is 224.52614383795992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.14337658653842797
the lambda is 20.0
the regulation term lambda/alpha is 139.49278946349847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08885916867684732
the lambda is 20.0
the regulation term lambda/alpha is 225.07525444823452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09922536637964816
the lambda is 20.0
the regulation term lambda/alpha is 201.561362076282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11766812902570953
the lambda is 20.0
the regulation term lambda/alpha is 169.9695590097312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09547737516974339
the lambda is 20.0
the regulation term lambda/alpha is 209.4737100223296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.38299558649591064
the lambda is 20.0
the regulation term lambda/alpha is 52.21992290559606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10212993038345473
the lambda is 20.0
the regulation term lambda/alpha is 195.82897907507086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08037800665611072
the lambda is 20.0
the regulation term lambda/alpha is 248.82428455296238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.32471756182732825
the lambda is 20.0
the regulation term lambda/alpha is 61.591987471977866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11630355801115862
the lambda is 20.0
the regulation term lambda/alpha is 171.96378461681388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.0877668851287646
the lambda is 20.0
the regulation term lambda/alpha is 227.87637923640094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1715382189373374
the lambda is 20.0
the regulation term lambda/alpha is 116.59209314342925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.17254680080664725
the lambda is 20.0
the regulation term lambda/alpha is 115.91058139879179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.07822332773712866
the lambda is 20.0
the regulation term lambda/alpha is 255.67820468096772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09522762902748295
the lambda is 20.0
the regulation term lambda/alpha is 210.0230805308399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.12219019013733812
the lambda is 20.0
the regulation term lambda/alpha is 163.67926081071317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.07571278917294183
the lambda is 20.0
the regulation term lambda/alpha is 264.1561646119832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09224978806000696
the lambda is 20.0
the regulation term lambda/alpha is 216.8026661155073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1284326316722235
the lambda is 20.0
the regulation term lambda/alpha is 155.7236641466832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.07092001889218826
the lambda is 20.0
the regulation term lambda/alpha is 282.0078210977884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.21141948603762023
the lambda is 20.0
the regulation term lambda/alpha is 94.5986596355701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.16934674869661784
the lambda is 20.0
the regulation term lambda/alpha is 118.10087972713134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.13008641119277495
the lambda is 20.0
the regulation term lambda/alpha is 153.74396000795207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08299196203226432
the lambda is 20.0
the regulation term lambda/alpha is 240.98719334078055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.0990289748721257
the lambda is 20.0
the regulation term lambda/alpha is 201.96109296118266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10943287313746708
the lambda is 20.0
the regulation term lambda/alpha is 182.7604395881707
20
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.15423332485297672
the lambda is 20.0
the regulation term lambda/alpha is 129.67366176580222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.07546778704172867
the lambda is 20.0
the regulation term lambda/alpha is 265.0137334614215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11195441094775835
the lambda is 20.0
the regulation term lambda/alpha is 178.6441447968733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.07985994771044676
the lambda is 20.0
the regulation term lambda/alpha is 250.43843094557562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.0861404178988727
the lambda is 20.0
the regulation term lambda/alpha is 232.17904542185576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.18851172309496375
the lambda is 20.0
the regulation term lambda/alpha is 106.0941976002463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1198882800749479
the lambda is 20.0
the regulation term lambda/alpha is 166.82197782382934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10795722370446081
the lambda is 20.0
the regulation term lambda/alpha is 185.2585618054718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.18770033580365778
the lambda is 20.0
the regulation term lambda/alpha is 106.55281949479738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09815375583870412
the lambda is 20.0
the regulation term lambda/alpha is 203.76194297512123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.0626741079364291
the lambda is 20.0
the regulation term lambda/alpha is 319.1110437548817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.07526404551304659
the lambda is 20.0
the regulation term lambda/alpha is 265.73113182619335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2887925908684904
the lambda is 20.0
the regulation term lambda/alpha is 69.25385426216681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.14639841705713313
the lambda is 20.0
the regulation term lambda/alpha is 136.61349898472497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.13984716204325873
the lambda is 20.0
the regulation term lambda/alpha is 143.013270400249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10208614413920963
the lambda is 20.0
the regulation term lambda/alpha is 195.9129729958948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.22637042657959724
the lambda is 20.0
the regulation term lambda/alpha is 88.35076340224823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.089951536494766
the lambda is 20.0
the regulation term lambda/alpha is 222.3419496693504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10398250286772763
the lambda is 20.0
the regulation term lambda/alpha is 192.34005191663135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10737147760839665
the lambda is 20.0
the regulation term lambda/alpha is 186.26920710678536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09451487067105314
the lambda is 20.0
the regulation term lambda/alpha is 211.60691283816521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10158995735674234
the lambda is 20.0
the regulation term lambda/alpha is 196.86985328449532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10090551698391484
the lambda is 20.0
the regulation term lambda/alpha is 198.20521808721483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26660015391832625
the lambda is 20.0
the regulation term lambda/alpha is 75.01871137751503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11457734777773292
the lambda is 20.0
the regulation term lambda/alpha is 174.55457285324613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08952663342335403
the lambda is 20.0
the regulation term lambda/alpha is 223.39720857617746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09546864103438245
the lambda is 20.0
the regulation term lambda/alpha is 209.49287413441994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.093832040670559
the lambda is 20.0
the regulation term lambda/alpha is 213.14680845767063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1554594910910533
the lambda is 20.0
the regulation term lambda/alpha is 128.65087785657238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.13036074870320422
the lambda is 20.0
the regulation term lambda/alpha is 153.42041372847999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10094582783144675
the lambda is 20.0
the regulation term lambda/alpha is 198.12606850274975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.129732491122938
the lambda is 20.0
the regulation term lambda/alpha is 154.1633851850379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13054601247250727
the lambda is 20.0
the regulation term lambda/alpha is 153.20268785852008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.13305869382610697
the lambda is 20.0
the regulation term lambda/alpha is 150.30960717334108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1908528521123777
the lambda is 20.0
the regulation term lambda/alpha is 104.79277505490789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12382167370260383
the lambda is 20.0
the regulation term lambda/alpha is 161.52261071867116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.16978002415633459
the lambda is 20.0
the regulation term lambda/alpha is 117.79948848154166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.08196144488792974
the lambda is 20.0
the regulation term lambda/alpha is 244.01717206604968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.2036577559329306
the lambda is 20.0
the regulation term lambda/alpha is 98.2039692442967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.0867749701213062
the lambda is 20.0
the regulation term lambda/alpha is 230.48120871768901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.19490020611705364
the lambda is 20.0
the regulation term lambda/alpha is 102.61661800392531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.0783640328661228
the lambda is 20.0
the regulation term lambda/alpha is 255.21912628167087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1619792459716424
the lambda is 20.0
the regulation term lambda/alpha is 123.47260835811883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11189451992352108
the lambda is 20.0
the regulation term lambda/alpha is 178.73976324908338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.2017492161309869
the lambda is 20.0
the regulation term lambda/alpha is 99.1329750050423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1930252922950758
the lambda is 20.0
the regulation term lambda/alpha is 103.61336466428556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09556709893906527
the lambda is 20.0
the regulation term lambda/alpha is 209.2770443178592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 0.14679300172076498
the lambda is 20.0
the regulation term lambda/alpha is 136.24627717637884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09021983091269276
the lambda is 20.0
the regulation term lambda/alpha is 221.68075242076586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.0875256798287043
the lambda is 20.0
the regulation term lambda/alpha is 228.50436625161686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.2530578259772647
the lambda is 20.0
the regulation term lambda/alpha is 79.03331945085486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.05913624483599108
the lambda is 20.0
the regulation term lambda/alpha is 338.20206297285455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.13600060058241467
the lambda is 20.0
the regulation term lambda/alpha is 147.05817411357864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.0960702669054026
the lambda is 20.0
the regulation term lambda/alpha is 208.18095592149626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.06817491479372494
the lambda is 20.0
the regulation term lambda/alpha is 293.3630362504079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09800995333943932
the lambda is 20.0
the regulation term lambda/alpha is 204.06090727064938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.15620665642553597
the lambda is 20.0
the regulation term lambda/alpha is 128.03551690855147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11210152092866048
the lambda is 20.0
the regulation term lambda/alpha is 178.40971143226204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.10050189865560766
the lambda is 20.0
the regulation term lambda/alpha is 199.00121557438925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13466431852243932
the lambda is 20.0
the regulation term lambda/alpha is 148.5174411413768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1648435829899442
the lambda is 20.0
the regulation term lambda/alpha is 121.32713713957577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.146390118643606
the lambda is 20.0
the regulation term lambda/alpha is 136.62124319122245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.16705430236652744
the lambda is 20.0
the regulation term lambda/alpha is 119.72154991925181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09244115847019674
the lambda is 20.0
the regulation term lambda/alpha is 216.35384422889996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13709392263775474
the lambda is 20.0
the regulation term lambda/alpha is 145.88538729646163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08945654730458646
the lambda is 20.0
the regulation term lambda/alpha is 223.5722325824059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.07488516882504126
the lambda is 20.0
the regulation term lambda/alpha is 267.07558137082134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1183893262782809
the lambda is 20.0
the regulation term lambda/alpha is 168.93414827776664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12954066315254362
the lambda is 20.0
the regulation term lambda/alpha is 154.39167527225436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.13131603770949848
the lambda is 20.0
the regulation term lambda/alpha is 152.3043213064701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.06115154794999714
the lambda is 20.0
the regulation term lambda/alpha is 327.05631615987465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.14708972099644532
the lambda is 20.0
the regulation term lambda/alpha is 135.9714320246983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.11399386740179283
the lambda is 20.0
the regulation term lambda/alpha is 175.44803466932336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13525252342097566
the lambda is 20.0
the regulation term lambda/alpha is 147.871547932231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09605506958591087
the lambda is 20.0
the regulation term lambda/alpha is 208.21389319917324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1227955203807165
the lambda is 20.0
the regulation term lambda/alpha is 162.8723909308075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11799771740505265
the lambda is 20.0
the regulation term lambda/alpha is 169.4948041354536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1639998675744776
the lambda is 20.0
the regulation term lambda/alpha is 121.95131798455483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12296056963734407
the lambda is 20.0
the regulation term lambda/alpha is 162.65376826886336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.16663642310991025
the lambda is 20.0
the regulation term lambda/alpha is 120.02177931296795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09573758545846671
the lambda is 20.0
the regulation term lambda/alpha is 208.9043702556765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1348132858689566
the lambda is 20.0
the regulation term lambda/alpha is 148.3533308389258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1419184373446752
the lambda is 20.0
the regulation term lambda/alpha is 140.92601619778475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1827442081175658
the lambda is 20.0
the regulation term lambda/alpha is 109.44259304313104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.05312248397960826
the lambda is 20.0
the regulation term lambda/alpha is 376.4884188713249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.15078472637816065
the lambda is 20.0
the regulation term lambda/alpha is 132.63942894216612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.13435802404408667
the lambda is 20.0
the regulation term lambda/alpha is 148.8560146838527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.1788851082550007
the lambda is 20.0
the regulation term lambda/alpha is 111.80360509098388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13460351504202728
the lambda is 20.0
the regulation term lambda/alpha is 148.58452985982868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1686809590363915
the lambda is 20.0
the regulation term lambda/alpha is 118.56702804070001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.2913677606050649
the lambda is 20.0
the regulation term lambda/alpha is 68.64177408807093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08775484902218826
the lambda is 20.0
the regulation term lambda/alpha is 227.90763385557332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.08150921544347815
the lambda is 20.0
the regulation term lambda/alpha is 245.3710281859948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.16410363333022443
the lambda is 20.0
the regulation term lambda/alpha is 121.87420591568598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09781440665224854
the lambda is 20.0
the regulation term lambda/alpha is 204.46885775327905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.15439780652575608
the lambda is 20.0
the regulation term lambda/alpha is 129.5355189949779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.14154226390589386
the lambda is 20.0
the regulation term lambda/alpha is 141.30055184999196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.07380118065792102
the lambda is 20.0
the regulation term lambda/alpha is 270.9983745748303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08246218938244268
the lambda is 20.0
the regulation term lambda/alpha is 242.5353989480453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11838317741554075
the lambda is 20.0
the regulation term lambda/alpha is 168.94292277522956
30
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11471439515638686
the lambda is 20.0
the regulation term lambda/alpha is 174.34603541024273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13395667456577517
the lambda is 20.0
the regulation term lambda/alpha is 149.30200428482297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.08318738292497706
the lambda is 20.0
the regulation term lambda/alpha is 240.42107464826844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13421067254285687
the lambda is 20.0
the regulation term lambda/alpha is 149.01944548123393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13608194651339317
the lambda is 20.0
the regulation term lambda/alpha is 146.97026690481388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1166937744244348
the lambda is 20.0
the regulation term lambda/alpha is 171.38874887409716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12175064848451211
the lambda is 20.0
the regulation term lambda/alpha is 164.27017226560562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10844968350036785
the lambda is 20.0
the regulation term lambda/alpha is 184.41732012922068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09283510445051386
the lambda is 20.0
the regulation term lambda/alpha is 215.43574619082895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2154500601527188
the lambda is 20.0
the regulation term lambda/alpha is 92.82893671890031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1302453290356518
the lambda is 20.0
the regulation term lambda/alpha is 153.5563704900729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1577988630722961
the lambda is 20.0
the regulation term lambda/alpha is 126.74362546475972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12228891922307986
the lambda is 20.0
the regulation term lambda/alpha is 163.54711552823468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1152029001232189
the lambda is 20.0
the regulation term lambda/alpha is 173.60674061684531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.17555855256951497
the lambda is 20.0
the regulation term lambda/alpha is 113.92210580046056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.21284759247037588
the lambda is 20.0
the regulation term lambda/alpha is 93.96394747938528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.22218316869119126
the lambda is 20.0
the regulation term lambda/alpha is 90.01581946019355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.08211536378537976
the lambda is 20.0
the regulation term lambda/alpha is 243.5597807527573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.2080550843491133
the lambda is 20.0
the regulation term lambda/alpha is 96.12838860712628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18631968035161275
the lambda is 20.0
the regulation term lambda/alpha is 107.342391111111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2086446524241168
the lambda is 20.0
the regulation term lambda/alpha is 95.8567582136998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12229955027546255
the lambda is 20.0
the regulation term lambda/alpha is 163.53289897593908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11928524427985487
the lambda is 20.0
the regulation term lambda/alpha is 167.66533128840345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09109009981061568
the lambda is 20.0
the regulation term lambda/alpha is 219.5628289087591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11762160612145099
the lambda is 20.0
the regulation term lambda/alpha is 170.0367871133205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15441043039025423
the lambda is 20.0
the regulation term lambda/alpha is 129.5249287852663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15078924927204304
the lambda is 20.0
the regulation term lambda/alpha is 132.63545044857574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.15625105415507495
the lambda is 20.0
the regulation term lambda/alpha is 127.99913644198867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.0718461194563891
the lambda is 20.0
the regulation term lambda/alpha is 278.37272425186563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.16465658456777715
the lambda is 20.0
the regulation term lambda/alpha is 121.46492685063228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12981956953514737
the lambda is 20.0
the regulation term lambda/alpha is 154.05997779545245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09593886108545793
the lambda is 20.0
the regulation term lambda/alpha is 208.46609782228828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.08169695739543585
the lambda is 20.0
the regulation term lambda/alpha is 244.80715852359683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1587630082203103
the lambda is 20.0
the regulation term lambda/alpha is 125.97392947006045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16248767986030482
the lambda is 20.0
the regulation term lambda/alpha is 123.08625501450052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.14263300605509793
the lambda is 20.0
the regulation term lambda/alpha is 140.21999923547966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09284814720432351
the lambda is 20.0
the regulation term lambda/alpha is 215.40548306244168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09063858400122199
the lambda is 20.0
the regulation term lambda/alpha is 220.65658042197967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12094370034490384
the lambda is 20.0
the regulation term lambda/alpha is 165.3661988426397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.07767365652647723
the lambda is 20.0
the regulation term lambda/alpha is 257.48755619844474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09597268723703671
the lambda is 20.0
the regulation term lambda/alpha is 208.39262269069636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11278197082850262
the lambda is 20.0
the regulation term lambda/alpha is 177.3333082679695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10804697653243593
the lambda is 20.0
the regulation term lambda/alpha is 185.10467059664512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.12572842900281014
the lambda is 20.0
the regulation term lambda/alpha is 159.0730128311154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1374466405770531
the lambda is 20.0
the regulation term lambda/alpha is 145.51101369980682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.0701237451168082
the lambda is 20.0
the regulation term lambda/alpha is 285.2100949070122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11019601617590506
the lambda is 20.0
the regulation term lambda/alpha is 181.4947644574932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08191013949878857
the lambda is 20.0
the regulation term lambda/alpha is 244.17001512121456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.0703318094178158
the lambda is 20.0
the regulation term lambda/alpha is 284.36635095205986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11357459149010518
the lambda is 20.0
the regulation term lambda/alpha is 176.09572473560195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.19505546897361117
the lambda is 20.0
the regulation term lambda/alpha is 102.53493585819825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13082022907680818
the lambda is 20.0
the regulation term lambda/alpha is 152.88155464287902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.16575324009810505
the lambda is 20.0
the regulation term lambda/alpha is 120.66129137603897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11696326030549747
the lambda is 20.0
the regulation term lambda/alpha is 170.9938654904267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09518256250032107
the lambda is 20.0
the regulation term lambda/alpha is 210.12252112809566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11848007289499754
the lambda is 20.0
the regulation term lambda/alpha is 168.80475772263335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09567909111472493
the lambda is 20.0
the regulation term lambda/alpha is 209.03208597601338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08905612976333975
the lambda is 20.0
the regulation term lambda/alpha is 224.5774665163258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.07420116639862034
the lambda is 20.0
the regulation term lambda/alpha is 269.53754193777564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.08356072262102253
the lambda is 20.0
the regulation term lambda/alpha is 239.34690094420418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.0980128210095158
the lambda is 20.0
the regulation term lambda/alpha is 204.0549368338072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13499413222174156
the lambda is 20.0
the regulation term lambda/alpha is 148.1545876908781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.08466370087964184
the lambda is 20.0
the regulation term lambda/alpha is 236.2287472931529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11785206327879705
the lambda is 20.0
the regulation term lambda/alpha is 169.70428385871315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09151745264276258
the lambda is 20.0
the regulation term lambda/alpha is 218.53755128073539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.14340388207828306
the lambda is 20.0
the regulation term lambda/alpha is 139.46623836223733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13401537645622577
the lambda is 20.0
the regulation term lambda/alpha is 149.2366064914403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12278992232797802
the lambda is 20.0
the regulation term lambda/alpha is 162.8798163629341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10119913898075948
the lambda is 20.0
the regulation term lambda/alpha is 197.6301399540811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.17067217372456092
the lambda is 20.0
the regulation term lambda/alpha is 117.1837187254495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11605749558449828
the lambda is 20.0
the regulation term lambda/alpha is 172.32837826867072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09159723363714944
the lambda is 20.0
the regulation term lambda/alpha is 218.34720554146216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14175655186831818
the lambda is 20.0
the regulation term lambda/alpha is 141.08695320536992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1663207839352088
the lambda is 20.0
the regulation term lambda/alpha is 120.24955346405241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10005305950918064
the lambda is 20.0
the regulation term lambda/alpha is 199.89393725800903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09255703640421645
the lambda is 20.0
the regulation term lambda/alpha is 216.08297734010958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20144547573505242
the lambda is 20.0
the regulation term lambda/alpha is 99.28244815140273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.19630849433820416
the lambda is 20.0
the regulation term lambda/alpha is 101.88046150231077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.14020300563417845
the lambda is 20.0
the regulation term lambda/alpha is 142.65029418973052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.14688545656679475
the lambda is 20.0
the regulation term lambda/alpha is 136.16051900213273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10718603611339667
the lambda is 20.0
the regulation term lambda/alpha is 186.59146960935425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12384314475062139
the lambda is 20.0
the regulation term lambda/alpha is 161.49460707149598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11666077750374669
the lambda is 20.0
the regulation term lambda/alpha is 171.4372253292901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.08952631114464848
the lambda is 20.0
the regulation term lambda/alpha is 223.39801276616677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.0852371615292584
the lambda is 20.0
the regulation term lambda/alpha is 234.6394417783941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1340595948120117
the lambda is 20.0
the regulation term lambda/alpha is 149.18738213438195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15590896494802214
the lambda is 20.0
the regulation term lambda/alpha is 128.27998702106527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12892247345264063
the lambda is 20.0
the regulation term lambda/alpha is 155.131991067073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.07103084745594156
the lambda is 20.0
the regulation term lambda/alpha is 281.56780773881997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.22067596145059595
the lambda is 20.0
the regulation term lambda/alpha is 90.63062360091958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11843271071450476
the lambda is 20.0
the regulation term lambda/alpha is 168.87226408430547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20562736611145546
the lambda is 20.0
the regulation term lambda/alpha is 97.2633184882574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.17745742189829916
the lambda is 20.0
the regulation term lambda/alpha is 112.70309117565112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.06923524361191817
the lambda is 20.0
the regulation term lambda/alpha is 288.8702192210846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09858885633409349
the lambda is 20.0
the regulation term lambda/alpha is 202.8626839145481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.0946460309188229
the lambda is 20.0
the regulation term lambda/alpha is 211.3136684744216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1420317575057145
the lambda is 20.0
the regulation term lambda/alpha is 140.813578253408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09115758952747474
the lambda is 20.0
the regulation term lambda/alpha is 219.4002726890012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.17813405799678567
the lambda is 20.0
the regulation term lambda/alpha is 112.27499235637966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1655362486355278
the lambda is 20.0
the regulation term lambda/alpha is 120.81945896959
40
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1415335774412945
the lambda is 20.0
the regulation term lambda/alpha is 141.30922401290698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12055552237940492
the lambda is 20.0
the regulation term lambda/alpha is 165.8986631658169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10922419008189145
the lambda is 20.0
the regulation term lambda/alpha is 183.10962054289337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.14919156305577827
the lambda is 20.0
the regulation term lambda/alpha is 134.05583794656403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09254667401398466
the lambda is 20.0
the regulation term lambda/alpha is 216.10717200898884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.17080567570632246
the lambda is 20.0
the regulation term lambda/alpha is 117.09212774865472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18254448527215164
the lambda is 20.0
the regulation term lambda/alpha is 109.56233473820056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11876177777709253
the lambda is 20.0
the regulation term lambda/alpha is 168.40435007244997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09712825130108381
the lambda is 20.0
the regulation term lambda/alpha is 205.9133128836309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09045951285812875
the lambda is 20.0
the regulation term lambda/alpha is 221.09338606948717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14698565014383053
the lambda is 20.0
the regulation term lambda/alpha is 136.06770443529223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.12894649905285396
the lambda is 20.0
the regulation term lambda/alpha is 155.10308652739914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13898676812063146
the lambda is 20.0
the regulation term lambda/alpha is 143.89859027904947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09591253063696399
the lambda is 20.0
the regulation term lambda/alpha is 208.52332711042186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10540083699303661
the lambda is 20.0
the regulation term lambda/alpha is 189.75181384300882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16686155156735458
the lambda is 20.0
the regulation term lambda/alpha is 119.85984675401326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12298758376273015
the lambda is 20.0
the regulation term lambda/alpha is 162.61804149746007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18877631308882126
the lambda is 20.0
the regulation term lambda/alpha is 105.94549534712964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.07350713650236304
the lambda is 20.0
the regulation term lambda/alpha is 272.08242562077027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1340026769595937
the lambda is 20.0
the regulation term lambda/alpha is 149.25074971472898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1050263088728119
the lambda is 20.0
the regulation term lambda/alpha is 190.42847658504533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.06938618225964997
the lambda is 20.0
the regulation term lambda/alpha is 288.24182782038673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10974222942094644
the lambda is 20.0
the regulation term lambda/alpha is 182.2452496685165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.222622811370144
the lambda is 20.0
the regulation term lambda/alpha is 89.83805332844793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.0944669135602562
the lambda is 20.0
the regulation term lambda/alpha is 211.71433728744506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11521692932836335
the lambda is 20.0
the regulation term lambda/alpha is 173.58560166970645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13396621450391305
the lambda is 20.0
the regulation term lambda/alpha is 149.29137226174151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10971744574525803
the lambda is 20.0
the regulation term lambda/alpha is 182.28641638665195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10280597449222272
the lambda is 20.0
the regulation term lambda/alpha is 194.54122290833402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12647526645440652
the lambda is 20.0
the regulation term lambda/alpha is 158.13368542860405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1759463336746982
the lambda is 20.0
the regulation term lambda/alpha is 113.67102446691153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14846694891679563
the lambda is 20.0
the regulation term lambda/alpha is 134.71011660115997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10886274286556426
the lambda is 20.0
the regulation term lambda/alpha is 183.7175830182619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1284877224527301
the lambda is 20.0
the regulation term lambda/alpha is 155.65689560228515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11532740966588546
the lambda is 20.0
the regulation term lambda/alpha is 173.41931166183227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12722042490877503
the lambda is 20.0
the regulation term lambda/alpha is 157.20746110022228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11931019461224524
the lambda is 20.0
the regulation term lambda/alpha is 167.63026885505832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15070479680183696
the lambda is 20.0
the regulation term lambda/alpha is 132.70977715658364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14753001763046422
the lambda is 20.0
the regulation term lambda/alpha is 135.56563146421055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13668839745951505
the lambda is 20.0
the regulation term lambda/alpha is 146.31819797231645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11661543704787246
the lambda is 20.0
the regulation term lambda/alpha is 171.50388067224486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16089269966405947
the lambda is 20.0
the regulation term lambda/alpha is 124.30644797283888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13377733213097048
the lambda is 20.0
the regulation term lambda/alpha is 149.5021591581721
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11995850309657137
the lambda is 20.0
the regulation term lambda/alpha is 166.72432119213096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10441136037630125
the lambda is 20.0
the regulation term lambda/alpha is 191.55003754303632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1555853676239224
the lambda is 20.0
the regulation term lambda/alpha is 128.54679270574835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1135811371708188
the lambda is 20.0
the regulation term lambda/alpha is 176.0855763393289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14620063188408203
the lambda is 20.0
the regulation term lambda/alpha is 136.79831435925246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10887559097086193
the lambda is 20.0
the regulation term lambda/alpha is 183.69590301789998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11114327001563401
the lambda is 20.0
the regulation term lambda/alpha is 179.94791764887512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.17155688129265156
the lambda is 20.0
the regulation term lambda/alpha is 116.57940998520982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14532001848076698
the lambda is 20.0
the regulation term lambda/alpha is 137.62728775490066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.08761691460006386
the lambda is 20.0
the regulation term lambda/alpha is 228.2664265375241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11767979906757388
the lambda is 20.0
the regulation term lambda/alpha is 169.95270350959416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16592671310541693
the lambda is 20.0
the regulation term lambda/alpha is 120.53514244745845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12397548977949635
the lambda is 20.0
the regulation term lambda/alpha is 161.3222100237082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1495455019198116
the lambda is 20.0
the regulation term lambda/alpha is 133.73855945680185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15923605244425085
the lambda is 20.0
the regulation term lambda/alpha is 125.59969738638225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.09200076094456193
the lambda is 20.0
the regulation term lambda/alpha is 217.38950628953663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10183443285021121
the lambda is 20.0
the regulation term lambda/alpha is 196.39722479152118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.06855961050231527
the lambda is 20.0
the regulation term lambda/alpha is 291.7169431603553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11415578694637052
the lambda is 20.0
the regulation term lambda/alpha is 175.19917767634365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1419866186429891
the lambda is 20.0
the regulation term lambda/alpha is 140.85834419571583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.08619266024831354
the lambda is 20.0
the regulation term lambda/alpha is 232.03831906779234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.0965142455104453
the lambda is 20.0
the regulation term lambda/alpha is 207.22329532002084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10391501174681067
the lambda is 20.0
the regulation term lambda/alpha is 192.4649736722359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10121216752161089
the lambda is 20.0
the regulation term lambda/alpha is 197.6047000053584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15486123946170577
the lambda is 20.0
the regulation term lambda/alpha is 129.1478750235989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14744813276374646
the lambda is 20.0
the regulation term lambda/alpha is 135.64091742040333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.15367853957495184
the lambda is 20.0
the regulation term lambda/alpha is 130.14178853675034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14840109392635184
the lambda is 20.0
the regulation term lambda/alpha is 134.76989603543998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11989273723419314
the lambda is 20.0
the regulation term lambda/alpha is 166.81577601262777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1442992470625029
the lambda is 20.0
the regulation term lambda/alpha is 138.60086180031863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.15890064126967196
the lambda is 20.0
the regulation term lambda/alpha is 125.8648161529933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09822656772371201
the lambda is 20.0
the regulation term lambda/alpha is 203.61090144425333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11348604415490506
the lambda is 20.0
the regulation term lambda/alpha is 176.23312319090618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.134694242246161
the lambda is 20.0
the regulation term lambda/alpha is 148.48444645056856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.17317626663172378
the lambda is 20.0
the regulation term lambda/alpha is 115.48926645088123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13219339589546802
the lambda is 20.0
the regulation term lambda/alpha is 151.29348833594537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09615568613105734
the lambda is 20.0
the regulation term lambda/alpha is 207.9960198374602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.18624458406076516
the lambda is 20.0
the regulation term lambda/alpha is 107.38567298942068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1328885914317841
the lambda is 20.0
the regulation term lambda/alpha is 150.50200912293235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13183602312236614
the lambda is 20.0
the regulation term lambda/alpha is 151.70360517805224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15235470779196847
the lambda is 20.0
the regulation term lambda/alpha is 131.2726090965882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1780944414527602
the lambda is 20.0
the regulation term lambda/alpha is 112.29996757257035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15295333747369336
the lambda is 20.0
the regulation term lambda/alpha is 130.75883357850773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12341460581617789
the lambda is 20.0
the regulation term lambda/alpha is 162.05537316862933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11870685482549559
the lambda is 20.0
the regulation term lambda/alpha is 168.48226692048155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10656170615659534
the lambda is 20.0
the regulation term lambda/alpha is 187.68468262519607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.15850415201058957
the lambda is 20.0
the regulation term lambda/alpha is 126.17965994142419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11093099622934588
the lambda is 20.0
the regulation term lambda/alpha is 180.29225987162968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11355109361814657
the lambda is 20.0
the regulation term lambda/alpha is 176.13216537796345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 0.07607791236270131
the lambda is 20.0
the regulation term lambda/alpha is 262.8883913723872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1199813959785112
the lambda is 20.0
the regulation term lambda/alpha is 166.69250959192058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12685736544154264
the lambda is 20.0
the regulation term lambda/alpha is 157.6573810309519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10591302328730386
the lambda is 20.0
the regulation term lambda/alpha is 188.83419035020094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1627017918378021
the lambda is 20.0
the regulation term lambda/alpha is 122.92427621164775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14232934069465097
the lambda is 20.0
the regulation term lambda/alpha is 140.5191642312697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09697376391948734
the lambda is 20.0
the regulation term lambda/alpha is 206.24135015121246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18808371714490663
the lambda is 20.0
the regulation term lambda/alpha is 106.33562704734967
50
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11252348459835863
the lambda is 20.0
the regulation term lambda/alpha is 177.7406740591798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11592370189060464
the lambda is 20.0
the regulation term lambda/alpha is 172.52727159173784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1003486076350092
the lambda is 20.0
the regulation term lambda/alpha is 199.30520683201271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.14118170805338875
the lambda is 20.0
the regulation term lambda/alpha is 141.66141121084095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11063190245640427
the lambda is 20.0
the regulation term lambda/alpha is 180.77968068822844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14532647794877138
the lambda is 20.0
the regulation term lambda/alpha is 137.62117050032785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1441401678766904
the lambda is 20.0
the regulation term lambda/alpha is 138.75382757365512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08403404982946514
the lambda is 20.0
the regulation term lambda/alpha is 237.99876407940695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09836893255860542
the lambda is 20.0
the regulation term lambda/alpha is 203.31622474488648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.15761642385721533
the lambda is 20.0
the regulation term lambda/alpha is 126.8903297673978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11245992700922788
the lambda is 20.0
the regulation term lambda/alpha is 177.84112556252063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1686243831828175
the lambda is 20.0
the regulation term lambda/alpha is 118.60680894717699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16066715454550748
the lambda is 20.0
the regulation term lambda/alpha is 124.48094980318572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11736253146253234
the lambda is 20.0
the regulation term lambda/alpha is 170.4121387871132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09964388878004134
the lambda is 20.0
the regulation term lambda/alpha is 200.71476780827925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16606453958634382
the lambda is 20.0
the regulation term lambda/alpha is 120.43510342315538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.17563780596592676
the lambda is 20.0
the regulation term lambda/alpha is 113.87070050214555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14922355268051854
the lambda is 20.0
the regulation term lambda/alpha is 134.02709988294657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1120225613776535
the lambda is 20.0
the regulation term lambda/alpha is 178.53546423184753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13570203944792938
the lambda is 20.0
the regulation term lambda/alpha is 147.38172013748002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12920285981194046
the lambda is 20.0
the regulation term lambda/alpha is 154.79533525117586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.0998605119728448
the lambda is 20.0
the regulation term lambda/alpha is 200.27936573606416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.07926336773588737
the lambda is 20.0
the regulation term lambda/alpha is 252.32336918413296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12003073814215057
the lambda is 20.0
the regulation term lambda/alpha is 166.62398573533977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07975895264979707
the lambda is 20.0
the regulation term lambda/alpha is 250.75554950947424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12987661844064763
the lambda is 20.0
the regulation term lambda/alpha is 153.99230623747576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09496269900046941
the lambda is 20.0
the regulation term lambda/alpha is 210.60900975341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11411651131185449
the lambda is 20.0
the regulation term lambda/alpha is 175.25947621501103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09920251480980284
the lambda is 20.0
the regulation term lambda/alpha is 201.6077922857624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11676144018052673
the lambda is 20.0
the regulation term lambda/alpha is 171.28942542227708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10676157687642622
the lambda is 20.0
the regulation term lambda/alpha is 187.33331396134665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1763204486665771
the lambda is 20.0
the regulation term lambda/alpha is 113.42983840643524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.158266451291342
the lambda is 20.0
the regulation term lambda/alpha is 126.36916944061223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1267084347220948
the lambda is 20.0
the regulation term lambda/alpha is 157.84268856185702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11306388358454875
the lambda is 20.0
the regulation term lambda/alpha is 176.89114654410466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14869594024832547
the lambda is 20.0
the regulation term lambda/alpha is 134.50266339887668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16456378405219266
the lambda is 20.0
the regulation term lambda/alpha is 121.53342313553539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1702757538104937
the lambda is 20.0
the regulation term lambda/alpha is 117.4565347821555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18021183288139458
the lambda is 20.0
the regulation term lambda/alpha is 110.9805037783667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18495360056194637
the lambda is 20.0
the regulation term lambda/alpha is 108.13522926417112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15984219134499336
the lambda is 20.0
the regulation term lambda/alpha is 125.12340973124708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13838092558226833
the lambda is 20.0
the regulation term lambda/alpha is 144.52858958592435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.15836645053272794
the lambda is 20.0
the regulation term lambda/alpha is 126.28937462904625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1772489832852542
the lambda is 20.0
the regulation term lambda/alpha is 112.83562607416012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.2158354313454478
the lambda is 20.0
the regulation term lambda/alpha is 92.66319192973327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19159876307410809
the lambda is 20.0
the regulation term lambda/alpha is 104.38480749619579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21076978733638943
the lambda is 20.0
the regulation term lambda/alpha is 94.89026037721393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14521802110084095
the lambda is 20.0
the regulation term lambda/alpha is 137.723953600165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.21129036082747593
the lambda is 20.0
the regulation term lambda/alpha is 94.65647141532651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.17074652910159394
the lambda is 20.0
the regulation term lambda/alpha is 117.13268846653995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1649529532560714
the lambda is 20.0
the regulation term lambda/alpha is 121.24669249754012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16541095099675918
the lambda is 20.0
the regulation term lambda/alpha is 120.91097886494741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11538421526090248
the lambda is 20.0
the regulation term lambda/alpha is 173.33393441015087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14569083733638802
the lambda is 20.0
the regulation term lambda/alpha is 137.27699260744632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.096141402290861
the lambda is 20.0
the regulation term lambda/alpha is 208.02692204855802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09035891123447029
the lambda is 20.0
the regulation term lambda/alpha is 221.3395416872881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15555083306919834
the lambda is 20.0
the regulation term lambda/alpha is 128.57533196947136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16044142037798304
the lambda is 20.0
the regulation term lambda/alpha is 124.65608913759372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10542481035447324
the lambda is 20.0
the regulation term lambda/alpha is 189.70866471329998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.228841308259263
the lambda is 20.0
the regulation term lambda/alpha is 87.39680852261709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13844733724845795
the lambda is 20.0
the regulation term lambda/alpha is 144.4592608098193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.07222557208836666
the lambda is 20.0
the regulation term lambda/alpha is 276.91023306164146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10871250418091717
the lambda is 20.0
the regulation term lambda/alpha is 183.9714773446521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.0937011707109993
the lambda is 20.0
the regulation term lambda/alpha is 213.4445049964809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09546665971079776
the lambda is 20.0
the regulation term lambda/alpha is 209.49722196824592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11597561911804136
the lambda is 20.0
the regulation term lambda/alpha is 172.4500386554847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15247347351656673
the lambda is 20.0
the regulation term lambda/alpha is 131.17035730039257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13581951738325906
the lambda is 20.0
the regulation term lambda/alpha is 147.2542414030487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10387623468950762
the lambda is 20.0
the regulation term lambda/alpha is 192.5368209560273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.13223869106408281
the lambda is 20.0
the regulation term lambda/alpha is 151.24166640690666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1411952962396637
the lambda is 20.0
the regulation term lambda/alpha is 141.64777816714354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12109301267758897
the lambda is 20.0
the regulation term lambda/alpha is 165.16229597202397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.0871699111915156
the lambda is 20.0
the regulation term lambda/alpha is 229.43696657048602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15040938525105177
the lambda is 20.0
the regulation term lambda/alpha is 132.97042579236356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14925556325592998
the lambda is 20.0
the regulation term lambda/alpha is 133.99835532901244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09966279560057685
the lambda is 20.0
the regulation term lambda/alpha is 200.6766906294192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1374817959339672
the lambda is 20.0
the regulation term lambda/alpha is 145.4738051982245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13166119576829494
the lambda is 20.0
the regulation term lambda/alpha is 151.90504600305445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10459160362837759
the lambda is 20.0
the regulation term lambda/alpha is 191.21993837155048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12921243886689018
the lambda is 20.0
the regulation term lambda/alpha is 154.78385962982443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1087675479806061
the lambda is 20.0
the regulation term lambda/alpha is 183.87837522609334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1294310962116237
the lambda is 20.0
the regulation term lambda/alpha is 154.5223720217853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1337385928429572
the lambda is 20.0
the regulation term lambda/alpha is 149.5454645876605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.181788415172261
the lambda is 20.0
the regulation term lambda/alpha is 110.01801176960693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12054578521844744
the lambda is 20.0
the regulation term lambda/alpha is 165.91206373376667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10424550287971784
the lambda is 20.0
the regulation term lambda/alpha is 191.8547989842469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22067293224333417
the lambda is 20.0
the regulation term lambda/alpha is 90.63186769977828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11068690132783505
the lambda is 20.0
the regulation term lambda/alpha is 180.68985363284796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08515970789651363
the lambda is 20.0
the regulation term lambda/alpha is 234.85284877097124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.07608851727277968
the lambda is 20.0
the regulation term lambda/alpha is 262.85175105067935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08202008264540792
the lambda is 20.0
the regulation term lambda/alpha is 243.8427194284197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2055395413718589
the lambda is 20.0
the regulation term lambda/alpha is 97.30487801282146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1608366458699166
the lambda is 20.0
the regulation term lambda/alpha is 124.34977048810033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11885567947413056
the lambda is 20.0
the regulation term lambda/alpha is 168.27130254514327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13087041814596145
the lambda is 20.0
the regulation term lambda/alpha is 152.82292425851153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11238758036648769
the lambda is 20.0
the regulation term lambda/alpha is 177.95560625810666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10600396277083934
the lambda is 20.0
the regulation term lambda/alpha is 188.6721918428299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13529909959080358
the lambda is 20.0
the regulation term lambda/alpha is 147.82064374772395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14816043206977356
the lambda is 20.0
the regulation term lambda/alpha is 134.98880720448594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11313640258242898
the lambda is 20.0
the regulation term lambda/alpha is 176.77776156465987
60
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10731666816274327
the lambda is 20.0
the regulation term lambda/alpha is 186.36433969111357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07874725863934705
the lambda is 20.0
the regulation term lambda/alpha is 253.97709514686204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11751743311134163
the lambda is 20.0
the regulation term lambda/alpha is 170.1875157624575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14939933655414706
the lambda is 20.0
the regulation term lambda/alpha is 133.86940304618665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10812949326968943
the lambda is 20.0
the regulation term lambda/alpha is 184.96341187984044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18639727104525047
the lambda is 20.0
the regulation term lambda/alpha is 107.29770821132209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13200725063234717
the lambda is 20.0
the regulation term lambda/alpha is 151.5068293915303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1286101322952306
the lambda is 20.0
the regulation term lambda/alpha is 155.50874291995174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1668600208782477
the lambda is 20.0
the regulation term lambda/alpha is 119.86094628738748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1464738206477972
the lambda is 20.0
the regulation term lambda/alpha is 136.54317141143525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1335701229431471
the lambda is 20.0
the regulation term lambda/alpha is 149.73408393516877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13461696461975742
the lambda is 20.0
the regulation term lambda/alpha is 148.56968478298793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10340580818328275
the lambda is 20.0
the regulation term lambda/alpha is 193.41273330169986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10850922255831355
the lambda is 20.0
the regulation term lambda/alpha is 184.31613026488944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13512687064570938
the lambda is 20.0
the regulation term lambda/alpha is 148.0090518224034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10370765578191932
the lambda is 20.0
the regulation term lambda/alpha is 192.84979348156142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1053336861939211
the lambda is 20.0
the regulation term lambda/alpha is 189.8727816586582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16925492354515667
the lambda is 20.0
the regulation term lambda/alpha is 118.16495249347393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1678518783750819
the lambda is 20.0
the regulation term lambda/alpha is 119.15267314023136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12619050117833913
the lambda is 20.0
the regulation term lambda/alpha is 158.49053465391137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10690313211869513
the lambda is 20.0
the regulation term lambda/alpha is 187.08525750016275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09668000351643394
the lambda is 20.0
the regulation term lambda/alpha is 206.8680106802059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10042369436508014
the lambda is 20.0
the regulation term lambda/alpha is 199.1561864602594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1607255153954883
the lambda is 20.0
the regulation term lambda/alpha is 124.43574967413927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1865753571853175
the lambda is 20.0
the regulation term lambda/alpha is 107.1952925708985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14405127190784928
the lambda is 20.0
the regulation term lambda/alpha is 138.83945441866112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1195725468384119
the lambda is 20.0
the regulation term lambda/alpha is 167.26247394418743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.22234902676548823
the lambda is 20.0
the regulation term lambda/alpha is 89.94867344795722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1496725186481373
the lambda is 20.0
the regulation term lambda/alpha is 133.6250647790439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08625350964322567
the lambda is 20.0
the regulation term lambda/alpha is 231.87462264117613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1380387099672169
the lambda is 20.0
the regulation term lambda/alpha is 144.88689444250704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14234811742521514
the lambda is 20.0
the regulation term lambda/alpha is 140.50062875265857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13284524557969254
the lambda is 20.0
the regulation term lambda/alpha is 150.5511161707492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.18715703695491137
the lambda is 20.0
the regulation term lambda/alpha is 106.86213206516123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.192484807974329
the lambda is 20.0
the regulation term lambda/alpha is 103.90430398365427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11091697536155924
the lambda is 20.0
the regulation term lambda/alpha is 180.31505037714405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09947164321609885
the lambda is 20.0
the regulation term lambda/alpha is 201.0623264416238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1688753965777498
the lambda is 20.0
the regulation term lambda/alpha is 118.43051388952358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1319223150045859
the lambda is 20.0
the regulation term lambda/alpha is 151.60437412961377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11426137534864053
the lambda is 20.0
the regulation term lambda/alpha is 175.03727693610296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12832463434710975
the lambda is 20.0
the regulation term lambda/alpha is 155.85472034855994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13851214775551413
the lambda is 20.0
the regulation term lambda/alpha is 144.3916676196641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13100221970354717
the lambda is 20.0
the regulation term lambda/alpha is 152.66916885270498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11799180317183416
the lambda is 20.0
the regulation term lambda/alpha is 169.5032999103636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1197948275851161
the lambda is 20.0
the regulation term lambda/alpha is 166.95211640744412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12098804703049865
the lambda is 20.0
the regulation term lambda/alpha is 165.30558588947554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19560194148518206
the lambda is 20.0
the regulation term lambda/alpha is 102.24847385533293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09564400400409935
the lambda is 20.0
the regulation term lambda/alpha is 209.1087696322583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17941534258585368
the lambda is 20.0
the regulation term lambda/alpha is 111.47318680636032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17249880689541738
the lambda is 20.0
the regulation term lambda/alpha is 115.94283090969786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08863273712825379
the lambda is 20.0
the regulation term lambda/alpha is 225.65025799733004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10888610428272812
the lambda is 20.0
the regulation term lambda/alpha is 183.6781665736614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10136645651224747
the lambda is 20.0
the regulation term lambda/alpha is 197.30392763195314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1258932900061201
the lambda is 20.0
the regulation term lambda/alpha is 158.86470199506053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13548124424954527
the lambda is 20.0
the regulation term lambda/alpha is 147.62190966567778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17312597932399937
the lambda is 20.0
the regulation term lambda/alpha is 115.52281222086653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12548850883971344
the lambda is 20.0
the regulation term lambda/alpha is 159.37714285493675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14841916638923514
the lambda is 20.0
the regulation term lambda/alpha is 134.75348559463816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20252697521105617
the lambda is 20.0
the regulation term lambda/alpha is 98.75227721718414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16532217881717023
the lambda is 20.0
the regulation term lambda/alpha is 120.97590379641679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11782220609469181
the lambda is 20.0
the regulation term lambda/alpha is 169.74728841799416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08650112246990492
the lambda is 20.0
the regulation term lambda/alpha is 231.21087251738624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11312111467682372
the lambda is 20.0
the regulation term lambda/alpha is 176.80165243366017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1387607191711023
the lambda is 20.0
the regulation term lambda/alpha is 144.13300910712715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10504109359619836
the lambda is 20.0
the regulation term lambda/alpha is 190.40167343348983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0870142927650779
the lambda is 20.0
the regulation term lambda/alpha is 229.8472970871143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13774820992299142
the lambda is 20.0
the regulation term lambda/alpha is 145.19244940592014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11154225965484117
the lambda is 20.0
the regulation term lambda/alpha is 179.30423914566947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15475423312860886
the lambda is 20.0
the regulation term lambda/alpha is 129.23717558910943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13181044915494516
the lambda is 20.0
the regulation term lambda/alpha is 151.73303883131223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13490824534571833
the lambda is 20.0
the regulation term lambda/alpha is 148.24890760937285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13854407619580517
the lambda is 20.0
the regulation term lambda/alpha is 144.3583915614976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12352533040613722
the lambda is 20.0
the regulation term lambda/alpha is 161.91011134511663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09336416061984586
the lambda is 20.0
the regulation term lambda/alpha is 214.21496072175603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1640253368711418
the lambda is 20.0
the regulation term lambda/alpha is 121.93238179850219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12308580393145961
the lambda is 20.0
the regulation term lambda/alpha is 162.48827534276015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1041042985769956
the lambda is 20.0
the regulation term lambda/alpha is 192.11502573265972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11107116433678783
the lambda is 20.0
the regulation term lambda/alpha is 180.0647370487302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12699823807983446
the lambda is 20.0
the regulation term lambda/alpha is 157.48249977631556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1348277733971824
the lambda is 20.0
the regulation term lambda/alpha is 148.33738996106536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.12327163493561057
the lambda is 20.0
the regulation term lambda/alpha is 162.24332556671902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1352439914500494
the lambda is 20.0
the regulation term lambda/alpha is 147.8808765222427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12480861779479249
the lambda is 20.0
the regulation term lambda/alpha is 160.24534485978802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11826916278547882
the lambda is 20.0
the regulation term lambda/alpha is 169.10578826263253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11827816084457525
the lambda is 20.0
the regulation term lambda/alpha is 169.09292347114888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1075396729230561
the lambda is 20.0
the regulation term lambda/alpha is 185.9778764094797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13409624855529997
the lambda is 20.0
the regulation term lambda/alpha is 149.14660339474148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15128061282275346
the lambda is 20.0
the regulation term lambda/alpha is 132.20464689307423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.139223665029093
the lambda is 20.0
the regulation term lambda/alpha is 143.65373872193842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.08495241387481567
the lambda is 20.0
the regulation term lambda/alpha is 235.4259177316802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1384984587462649
the lambda is 20.0
the regulation term lambda/alpha is 144.40593910608678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13851238455931744
the lambda is 20.0
the regulation term lambda/alpha is 144.39142076450983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10309128069619956
the lambda is 20.0
the regulation term lambda/alpha is 194.00282802711652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11104258499805725
the lambda is 20.0
the regulation term lambda/alpha is 180.1110808105729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14676709233899626
the lambda is 20.0
the regulation term lambda/alpha is 136.27032927657154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18340192242993747
the lambda is 20.0
the regulation term lambda/alpha is 109.05011100764402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11773429908413315
the lambda is 20.0
the regulation term lambda/alpha is 169.87403123458495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.11504481346890219
the lambda is 20.0
the regulation term lambda/alpha is 173.8452990356337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.20378220027917288
the lambda is 20.0
the regulation term lambda/alpha is 98.14399870352199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09529608774655139
the lambda is 20.0
the regulation term lambda/alpha is 209.87220433636077
70
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11880206190328386
the lambda is 20.0
the regulation term lambda/alpha is 168.34724650050177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.1296856649150598
the lambda is 20.0
the regulation term lambda/alpha is 154.2190496775368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.17373698754480135
the lambda is 20.0
the regulation term lambda/alpha is 115.11653495685611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1196137641992048
the lambda is 20.0
the regulation term lambda/alpha is 167.20483745241887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10569752026654695
the lambda is 20.0
the regulation term lambda/alpha is 189.21919785406695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14385653100878829
the lambda is 20.0
the regulation term lambda/alpha is 139.0274036204737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10199534814788822
the lambda is 20.0
the regulation term lambda/alpha is 196.08737421044916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15058239267778695
the lambda is 20.0
the regulation term lambda/alpha is 132.81765314219427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1499344374409766
the lambda is 20.0
the regulation term lambda/alpha is 133.39163664700598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15704894031863886
the lambda is 20.0
the regulation term lambda/alpha is 127.34883762616742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.108358991996254
the lambda is 20.0
the regulation term lambda/alpha is 184.5716689639509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09143955271251478
the lambda is 20.0
the regulation term lambda/alpha is 218.72372957553543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12635490930063675
the lambda is 20.0
the regulation term lambda/alpha is 158.2843128984717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12481704224050535
the lambda is 20.0
the regulation term lambda/alpha is 160.23452920365423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15711171430973608
the lambda is 20.0
the regulation term lambda/alpha is 127.29795539351846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14155969675859956
the lambda is 20.0
the regulation term lambda/alpha is 141.28315091057178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12527788930157016
the lambda is 20.0
the regulation term lambda/alpha is 159.64509069797467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14013280778656054
the lambda is 20.0
the regulation term lambda/alpha is 142.721753141937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.127858737324356
the lambda is 20.0
the regulation term lambda/alpha is 156.42263030694087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18217103571022705
the lambda is 20.0
the regulation term lambda/alpha is 109.78693688613203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13131143900942577
the lambda is 20.0
the regulation term lambda/alpha is 152.30965520501505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09213076744935633
the lambda is 20.0
the regulation term lambda/alpha is 217.08274611946402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13237876083403782
the lambda is 20.0
the regulation term lambda/alpha is 151.0816378246193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12682939008658092
the lambda is 20.0
the regulation term lambda/alpha is 157.6921562608388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08665736521350588
the lambda is 20.0
the regulation term lambda/alpha is 230.79400061061312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.156644233714621
the lambda is 20.0
the regulation term lambda/alpha is 127.67785653978544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11060547935161953
the lambda is 20.0
the regulation term lambda/alpha is 180.82286806442156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13179065391295028
the lambda is 20.0
the regulation term lambda/alpha is 151.75582946276526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11027633966561448
the lambda is 20.0
the regulation term lambda/alpha is 181.3625666271207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13946964806771647
the lambda is 20.0
the regulation term lambda/alpha is 143.40037619001828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.09866597072516879
the lambda is 20.0
the regulation term lambda/alpha is 202.70413246842136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12580363214644924
the lambda is 20.0
the regulation term lambda/alpha is 158.9779218513962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13770719237821538
the lambda is 20.0
the regulation term lambda/alpha is 145.23569651372767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13112361254636407
the lambda is 20.0
the regulation term lambda/alpha is 152.52782936351903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10770928237875489
the lambda is 20.0
the regulation term lambda/alpha is 185.6850176540114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1428558599126563
the lambda is 20.0
the regulation term lambda/alpha is 140.0012572968881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12558243252325102
the lambda is 20.0
the regulation term lambda/alpha is 159.25794395085546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.20324731076454344
the lambda is 20.0
the regulation term lambda/alpha is 98.40228598728898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12267343281205853
the lambda is 20.0
the regulation term lambda/alpha is 163.03448547527762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10379954840570912
the lambda is 20.0
the regulation term lambda/alpha is 192.67906563358392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1519442621016787
the lambda is 20.0
the regulation term lambda/alpha is 131.62721463358923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.18921536829211105
the lambda is 20.0
the regulation term lambda/alpha is 105.69965949660052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1669171439417771
the lambda is 20.0
the regulation term lambda/alpha is 119.81992698710604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14917913730350296
the lambda is 20.0
the regulation term lambda/alpha is 134.0670040161867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10259578625319715
the lambda is 20.0
the regulation term lambda/alpha is 194.93977998903193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11914398909645073
the lambda is 20.0
the regulation term lambda/alpha is 167.8641125890907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14155672124587204
the lambda is 20.0
the regulation term lambda/alpha is 141.28612067286932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13422309188990886
the lambda is 20.0
the regulation term lambda/alpha is 149.0056570623794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13879947035382925
the lambda is 20.0
the regulation term lambda/alpha is 144.0927688629918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14353201735771018
the lambda is 20.0
the regulation term lambda/alpha is 139.34173272403777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09982501509504145
the lambda is 20.0
the regulation term lambda/alpha is 200.35058327773245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11095587341077472
the lambda is 20.0
the regulation term lambda/alpha is 180.25183692581197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17752596246690772
the lambda is 20.0
the regulation term lambda/alpha is 112.65957791231895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10769902554953886
the lambda is 20.0
the regulation term lambda/alpha is 185.7027015606608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14478784261143784
the lambda is 20.0
the regulation term lambda/alpha is 138.13314460160382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10594702394493848
the lambda is 20.0
the regulation term lambda/alpha is 188.77358943460425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10896642263870827
the lambda is 20.0
the regulation term lambda/alpha is 183.54277873572565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12285533818389956
the lambda is 20.0
the regulation term lambda/alpha is 162.79308897479427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1193052729367236
the lambda is 20.0
the regulation term lambda/alpha is 167.6371840715496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13824595470260842
the lambda is 20.0
the regulation term lambda/alpha is 144.66969426355766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18965298479454143
the lambda is 20.0
the regulation term lambda/alpha is 105.45576185719824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15566203170262125
the lambda is 20.0
the regulation term lambda/alpha is 128.48348297424423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1487591727174226
the lambda is 20.0
the regulation term lambda/alpha is 134.44549088741746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1078380139585876
the lambda is 20.0
the regulation term lambda/alpha is 185.46335624912828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17682936510461822
the lambda is 20.0
the regulation term lambda/alpha is 113.10338635309427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15603249410394268
the lambda is 20.0
the regulation term lambda/alpha is 128.1784292102438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12346463514491535
the lambda is 20.0
the regulation term lambda/alpha is 161.98970641694447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12205654627679385
the lambda is 20.0
the regulation term lambda/alpha is 163.85847879592612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13268885952850348
the lambda is 20.0
the regulation term lambda/alpha is 150.72855453779607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14404057268172132
the lambda is 20.0
the regulation term lambda/alpha is 138.8497673096102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13654956997870238
the lambda is 20.0
the regulation term lambda/alpha is 146.46695704072445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.18363087536739153
the lambda is 20.0
the regulation term lambda/alpha is 108.9141461640689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16450833556877548
the lambda is 20.0
the regulation term lambda/alpha is 121.5743866768299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10206414066863366
the lambda is 20.0
the regulation term lambda/alpha is 195.95520884198655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11586226528793304
the lambda is 20.0
the regulation term lambda/alpha is 172.61875512529775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1534698185320684
the lambda is 20.0
the regulation term lambda/alpha is 130.3187831412004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1655093069576043
the lambda is 20.0
the regulation term lambda/alpha is 120.83912601436401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12930239597362778
the lambda is 20.0
the regulation term lambda/alpha is 154.6761747870407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11316622119698062
the lambda is 20.0
the regulation term lambda/alpha is 176.7311816941151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11042138339782477
the lambda is 20.0
the regulation term lambda/alpha is 181.1243382809673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0963499777822211
the lambda is 20.0
the regulation term lambda/alpha is 207.57659171656275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09436984727074015
the lambda is 20.0
the regulation term lambda/alpha is 211.93210096675764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12311321359887106
the lambda is 20.0
the regulation term lambda/alpha is 162.45209929426616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.125252630837699
the lambda is 20.0
the regulation term lambda/alpha is 159.67728475033616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0991918741707915
the lambda is 20.0
the regulation term lambda/alpha is 201.62941941759672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.100160582083746
the lambda is 20.0
the regulation term lambda/alpha is 199.6793507377748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13116970446468604
the lambda is 20.0
the regulation term lambda/alpha is 152.47423238179567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10563308535535766
the lambda is 20.0
the regulation term lambda/alpha is 189.33461928825133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12076929620287681
the lambda is 20.0
the regulation term lambda/alpha is 165.6050058154068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1298914379632963
the lambda is 20.0
the regulation term lambda/alpha is 153.97473700808087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22625028809042472
the lambda is 20.0
the regulation term lambda/alpha is 88.39767749602451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11828930070478676
the lambda is 20.0
the regulation term lambda/alpha is 169.07699919465895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10037527196501356
the lambda is 20.0
the regulation term lambda/alpha is 199.25226212060605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09113616865370473
the lambda is 20.0
the regulation term lambda/alpha is 219.45184107963914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12854131356399331
the lambda is 20.0
the regulation term lambda/alpha is 155.59199953284397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12646466994900518
the lambda is 20.0
the regulation term lambda/alpha is 158.14693548850184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11162826537847971
the lambda is 20.0
the regulation term lambda/alpha is 179.16609142128357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11997102579188561
the lambda is 20.0
the regulation term lambda/alpha is 166.70691834121772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23533399393967572
the lambda is 20.0
the regulation term lambda/alpha is 84.98559713020761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15420896560252678
the lambda is 20.0
the regulation term lambda/alpha is 129.69414535565946
80
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09860505919770622
the lambda is 20.0
the regulation term lambda/alpha is 202.82934935315413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12309749414055847
the lambda is 20.0
the regulation term lambda/alpha is 162.4728443063436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10137622560371778
the lambda is 20.0
the regulation term lambda/alpha is 197.28491449445457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14208522155430436
the lambda is 20.0
the regulation term lambda/alpha is 140.7605927007411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1373833088251518
the lambda is 20.0
the regulation term lambda/alpha is 145.5780922080867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12312904698133952
the lambda is 20.0
the regulation term lambda/alpha is 162.43120929077804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11692061995906411
the lambda is 20.0
the regulation term lambda/alpha is 171.05622607032308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13898590524479568
the lambda is 20.0
the regulation term lambda/alpha is 143.8994836546485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1649473945220239
the lambda is 20.0
the regulation term lambda/alpha is 121.25077851611402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1303611522889703
the lambda is 20.0
the regulation term lambda/alpha is 153.41993875342706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14454148934275293
the lambda is 20.0
the regulation term lambda/alpha is 138.36857563141447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16293768963624755
the lambda is 20.0
the regulation term lambda/alpha is 122.74630900100075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11979800637598531
the lambda is 20.0
the regulation term lambda/alpha is 166.94768640164278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14235501472534154
the lambda is 20.0
the regulation term lambda/alpha is 140.49382130013345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13106286020299993
the lambda is 20.0
the regulation term lambda/alpha is 152.59853149109145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17008426169668667
the lambda is 20.0
the regulation term lambda/alpha is 117.5887751193949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15743855438064047
the lambda is 20.0
the regulation term lambda/alpha is 127.03368675277491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10125440075395682
the lambda is 20.0
the regulation term lambda/alpha is 197.5222790424587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15242795873941903
the lambda is 20.0
the regulation term lambda/alpha is 131.20952458722292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12064135933249066
the lambda is 20.0
the regulation term lambda/alpha is 165.78062540624637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.098923826240528
the lambda is 20.0
the regulation term lambda/alpha is 202.17576250408135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.20595358130689306
the lambda is 20.0
the regulation term lambda/alpha is 97.10926060663078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13113726144082588
the lambda is 20.0
the regulation term lambda/alpha is 152.51195411782152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1985999315206407
the lambda is 20.0
the regulation term lambda/alpha is 100.70496926592031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11787020106161115
the lambda is 20.0
the regulation term lambda/alpha is 169.6781698840569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1276282562544745
the lambda is 20.0
the regulation term lambda/alpha is 156.7051105056434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09737869877916716
the lambda is 20.0
the regulation term lambda/alpha is 205.38372612018026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15634564396635703
the lambda is 20.0
the regulation term lambda/alpha is 127.92169639407201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1449665343016931
the lambda is 20.0
the regulation term lambda/alpha is 137.96287602749442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11671568552905125
the lambda is 20.0
the regulation term lambda/alpha is 171.3565739629904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11655725545559305
the lambda is 20.0
the regulation term lambda/alpha is 171.58948983334432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12564012731783475
the lambda is 20.0
the regulation term lambda/alpha is 159.1848116279406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15244998821013173
the lambda is 20.0
the regulation term lambda/alpha is 131.19056442584107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07946289804393268
the lambda is 20.0
the regulation term lambda/alpha is 251.68978847137683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.18070182840020801
the lambda is 20.0
the regulation term lambda/alpha is 110.67956631686731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1007440899457567
the lambda is 20.0
the regulation term lambda/alpha is 198.52281171797304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11052562689510843
the lambda is 20.0
the regulation term lambda/alpha is 180.95350880914248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10721122505528943
the lambda is 20.0
the regulation term lambda/alpha is 186.54763052736212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14020323835679158
the lambda is 20.0
the regulation term lambda/alpha is 142.65005740526237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1165390317526006
the lambda is 20.0
the regulation term lambda/alpha is 171.61632201010366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1398907196246671
the lambda is 20.0
the regulation term lambda/alpha is 142.9687405544905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14122496199651294
the lambda is 20.0
the regulation term lambda/alpha is 141.61802359340575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14279572255306466
the lambda is 20.0
the regulation term lambda/alpha is 140.06021778816066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10862134223663761
the lambda is 20.0
the regulation term lambda/alpha is 184.1258779184379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08921850511686366
the lambda is 20.0
the regulation term lambda/alpha is 224.16874138165417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09524507951520027
the lambda is 20.0
the regulation term lambda/alpha is 209.9846007982825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1648699053403663
the lambda is 20.0
the regulation term lambda/alpha is 121.30776662187634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1663704537055344
the lambda is 20.0
the regulation term lambda/alpha is 120.21365305283584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10888270306900835
the lambda is 20.0
the regulation term lambda/alpha is 183.68390420399717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15790256837957714
the lambda is 20.0
the regulation term lambda/alpha is 126.66038434487407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15895704011338624
the lambda is 20.0
the regulation term lambda/alpha is 125.82015861476614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10037263457858857
the lambda is 20.0
the regulation term lambda/alpha is 199.25749766327633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15285255540720485
the lambda is 20.0
the regulation term lambda/alpha is 130.84504833248786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11099025725009559
the lambda is 20.0
the regulation term lambda/alpha is 180.19599643718075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1365646538876499
the lambda is 20.0
the regulation term lambda/alpha is 146.45077939752815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08109236952365002
the lambda is 20.0
the regulation term lambda/alpha is 246.63232949639163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12036615057657399
the lambda is 20.0
the regulation term lambda/alpha is 166.159671171643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 0.10685343616564397
the lambda is 20.0
the regulation term lambda/alpha is 187.17226808687784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22600725203864536
the lambda is 20.0
the regulation term lambda/alpha is 88.49273560735196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1358894065794202
the lambda is 20.0
the regulation term lambda/alpha is 147.1785071657595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13211098021501103
the lambda is 20.0
the regulation term lambda/alpha is 151.387870769333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10865124183496254
the lambda is 20.0
the regulation term lambda/alpha is 184.07520855011768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12666050545505955
the lambda is 20.0
the regulation term lambda/alpha is 157.9024173963699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10784048975119008
the lambda is 20.0
the regulation term lambda/alpha is 185.4590983974949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11125855140053238
the lambda is 20.0
the regulation term lambda/alpha is 179.76146326047078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17056957915700352
the lambda is 20.0
the regulation term lambda/alpha is 117.25420264765195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11788337987523015
the lambda is 20.0
the regulation term lambda/alpha is 169.6592006538017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11381566283454102
the lambda is 20.0
the regulation term lambda/alpha is 175.72273887360217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1429879629194394
the lambda is 20.0
the regulation term lambda/alpha is 139.8719136328151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16065333491533762
the lambda is 20.0
the regulation term lambda/alpha is 124.49165783293425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16742828835061904
the lambda is 20.0
the regulation term lambda/alpha is 119.45412688038182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14937619508522837
the lambda is 20.0
the regulation term lambda/alpha is 133.89014219159057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12208877249269576
the lambda is 20.0
the regulation term lambda/alpha is 163.81522716346868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11808823092310046
the lambda is 20.0
the regulation term lambda/alpha is 169.36488796266312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1368029590521537
the lambda is 20.0
the regulation term lambda/alpha is 146.1956681242206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1038075911636552
the lambda is 20.0
the regulation term lambda/alpha is 192.6641373314357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12702588403284096
the lambda is 20.0
the regulation term lambda/alpha is 157.44822523596252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1149276559764375
the lambda is 20.0
the regulation term lambda/alpha is 174.02251729644956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.17202230840701216
the lambda is 20.0
the regulation term lambda/alpha is 116.26399032315706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11402730239349261
the lambda is 20.0
the regulation term lambda/alpha is 175.3965899410892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14116707928379815
the lambda is 20.0
the regulation term lambda/alpha is 141.67609120673657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2043516528295496
the lambda is 20.0
the regulation term lambda/alpha is 97.87050764244157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14117436073657774
the lambda is 20.0
the regulation term lambda/alpha is 141.66878387583927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16009527701760057
the lambda is 20.0
the regulation term lambda/alpha is 124.92560912837696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1711619262731096
the lambda is 20.0
the regulation term lambda/alpha is 116.8484162072795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1191964037013597
the lambda is 20.0
the regulation term lambda/alpha is 167.79029718135578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14564189226266763
the lambda is 20.0
the regulation term lambda/alpha is 137.32312653511573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15912337939295657
the lambda is 20.0
the regulation term lambda/alpha is 125.68863278481427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12333440946589817
the lambda is 20.0
the regulation term lambda/alpha is 162.16074724491205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12482479172988259
the lambda is 20.0
the regulation term lambda/alpha is 160.2245813738624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09095174928386036
the lambda is 20.0
the regulation term lambda/alpha is 219.89681515173513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14458011629866574
the lambda is 20.0
the regulation term lambda/alpha is 138.33160819074934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.171163375300396
the lambda is 20.0
the regulation term lambda/alpha is 116.84742699715696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13469015582222257
the lambda is 20.0
the regulation term lambda/alpha is 148.48895138556364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18779614694734612
the lambda is 20.0
the regulation term lambda/alpha is 106.49845763666045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17639787829256706
the lambda is 20.0
the regulation term lambda/alpha is 113.38004852206177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10419962120299182
the lambda is 20.0
the regulation term lambda/alpha is 191.93927740905983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10204914619987691
the lambda is 20.0
the regulation term lambda/alpha is 195.98400128529565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1243654506817958
the lambda is 20.0
the regulation term lambda/alpha is 160.81636732996242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11005205979737961
the lambda is 20.0
the regulation term lambda/alpha is 181.73217327165565
90
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12466112646565397
the lambda is 20.0
the regulation term lambda/alpha is 160.43493723370375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14528705108618134
the lambda is 20.0
the regulation term lambda/alpha is 137.65851705625442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11596496084614366
the lambda is 20.0
the regulation term lambda/alpha is 172.46588843793057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09691255130356098
the lambda is 20.0
the regulation term lambda/alpha is 206.37161782433762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09659368009887687
the lambda is 20.0
the regulation term lambda/alpha is 207.05288357920787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15501078727836873
the lambda is 20.0
the regulation term lambda/alpha is 129.02327864501427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14310394662850132
the lambda is 20.0
the regulation term lambda/alpha is 139.7585494404296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14881096568190866
the lambda is 20.0
the regulation term lambda/alpha is 134.39869775961984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13539003820312284
the lambda is 20.0
the regulation term lambda/alpha is 147.7213557617468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13674973249060926
the lambda is 20.0
the regulation term lambda/alpha is 146.25257129021017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13846565794081225
the lambda is 20.0
the regulation term lambda/alpha is 144.4401470908338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1381804658430221
the lambda is 20.0
the regulation term lambda/alpha is 144.73825860972786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11912694795487883
the lambda is 20.0
the regulation term lambda/alpha is 167.8881255950191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1605227210908233
the lambda is 20.0
the regulation term lambda/alpha is 124.59295396994956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1959162096387177
the lambda is 20.0
the regulation term lambda/alpha is 102.08445762033324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15837534628275474
the lambda is 20.0
the regulation term lambda/alpha is 126.28228110891128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12496853022317024
the lambda is 20.0
the regulation term lambda/alpha is 160.04029145804765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12527133626854364
the lambda is 20.0
the regulation term lambda/alpha is 159.65344184663348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.17171109745391075
the lambda is 20.0
the regulation term lambda/alpha is 116.47470837094983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1402831531395945
the lambda is 20.0
the regulation term lambda/alpha is 142.56879427352322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13661221227114514
the lambda is 20.0
the regulation term lambda/alpha is 146.39979594433626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11747593855002475
the lambda is 20.0
the regulation term lambda/alpha is 170.24762897708968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1606067100953023
the lambda is 20.0
the regulation term lambda/alpha is 124.52779829766897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11911491616998678
the lambda is 20.0
the regulation term lambda/alpha is 167.90508395655803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1968174137180429
the lambda is 20.0
the regulation term lambda/alpha is 101.61702474483097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12908551871914553
the lambda is 20.0
the regulation term lambda/alpha is 154.93604703649586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10689321558285667
the lambda is 20.0
the regulation term lambda/alpha is 187.10261349091235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13385333272700148
the lambda is 20.0
the regulation term lambda/alpha is 149.41727331355054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0969080910385509
the lambda is 20.0
the regulation term lambda/alpha is 206.38111622737281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16623966087904402
the lambda is 20.0
the regulation term lambda/alpha is 120.30823387297451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11748834757401115
the lambda is 20.0
the regulation term lambda/alpha is 170.22964756058985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13793423924344164
the lambda is 20.0
the regulation term lambda/alpha is 144.99663107360735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1179180271338735
the lambda is 20.0
the regulation term lambda/alpha is 169.60935054734085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09538006665471954
the lambda is 20.0
the regulation term lambda/alpha is 209.6874189908146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11038659425950795
the lambda is 20.0
the regulation term lambda/alpha is 181.18142093397665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10749464780825249
the lambda is 20.0
the regulation term lambda/alpha is 186.05577494123924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14920440069729515
the lambda is 20.0
the regulation term lambda/alpha is 134.04430369701936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10898691951359955
the lambda is 20.0
the regulation term lambda/alpha is 183.50826034223647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10097390317026533
the lambda is 20.0
the regulation term lambda/alpha is 198.07098044209877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10607578614685595
the lambda is 20.0
the regulation term lambda/alpha is 188.54444286004278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14849656634850247
the lambda is 20.0
the regulation term lambda/alpha is 134.68324885750258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.17899914318910615
the lambda is 20.0
the regulation term lambda/alpha is 111.73237839954754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15304098398678115
the lambda is 20.0
the regulation term lambda/alpha is 130.68394804444992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1084470599549737
the lambda is 20.0
the regulation term lambda/alpha is 184.42178154302968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09782722255493873
the lambda is 20.0
the regulation term lambda/alpha is 204.44207121149958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14131223577515037
the lambda is 20.0
the regulation term lambda/alpha is 141.530560961636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09859477476888939
the lambda is 20.0
the regulation term lambda/alpha is 202.85050649875618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14904751209382913
the lambda is 20.0
the regulation term lambda/alpha is 134.18539980331573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15634574039019358
the lambda is 20.0
the regulation term lambda/alpha is 127.92161750032848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0901616759532457
the lambda is 20.0
the regulation term lambda/alpha is 221.8237381742018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11263553720376404
the lambda is 20.0
the regulation term lambda/alpha is 177.56385326079524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1403918948974057
the lambda is 20.0
the regulation term lambda/alpha is 142.458366379451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15602662498657305
the lambda is 20.0
the regulation term lambda/alpha is 128.18325078633924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1575302276373593
the lambda is 20.0
the regulation term lambda/alpha is 126.9597606755243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13466924834132712
the lambda is 20.0
the regulation term lambda/alpha is 148.51200438357557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14739345135642629
the lambda is 20.0
the regulation term lambda/alpha is 135.6912387622709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15807882887931637
the lambda is 20.0
the regulation term lambda/alpha is 126.51915592864614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1429904376158763
the lambda is 20.0
the regulation term lambda/alpha is 139.86949290782078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14680977550272606
the lambda is 20.0
the regulation term lambda/alpha is 136.230710329154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1505840208715831
the lambda is 20.0
the regulation term lambda/alpha is 132.81621704772942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09682473199563008
the lambda is 20.0
the regulation term lambda/alpha is 206.5587953385985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1215888034594748
the lambda is 20.0
the regulation term lambda/alpha is 164.48882981783714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12392745385392272
the lambda is 20.0
the regulation term lambda/alpha is 161.38474065298433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19562575687040235
the lambda is 20.0
the regulation term lambda/alpha is 102.23602617547724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1542590504711625
the lambda is 20.0
the regulation term lambda/alpha is 129.65203622680693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13501728926316228
the lambda is 20.0
the regulation term lambda/alpha is 148.1291774494005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11707334847607856
the lambda is 20.0
the regulation term lambda/alpha is 170.83307396889373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14249671900366706
the lambda is 20.0
the regulation term lambda/alpha is 140.35410878116647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1793626419958429
the lambda is 20.0
the regulation term lambda/alpha is 111.50594001878909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.19114570171194858
the lambda is 20.0
the regulation term lambda/alpha is 104.63222463741016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12277048534886069
the lambda is 20.0
the regulation term lambda/alpha is 162.90560343692246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10683895417318573
the lambda is 20.0
the regulation term lambda/alpha is 187.19763923914905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1074195740676342
the lambda is 20.0
the regulation term lambda/alpha is 186.1858062051845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1890266401817847
the lambda is 20.0
the regulation term lambda/alpha is 105.80519222457869
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13604585791467202
the lambda is 20.0
the regulation term lambda/alpha is 147.00925339854155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15664239367305477
the lambda is 20.0
the regulation term lambda/alpha is 127.67935634170757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10297148374290926
the lambda is 20.0
the regulation term lambda/alpha is 194.2285307836717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1543048831965959
the lambda is 20.0
the regulation term lambda/alpha is 129.6135260639711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11982898766025449
the lambda is 20.0
the regulation term lambda/alpha is 166.90452277461495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09414557051977275
the lambda is 20.0
the regulation term lambda/alpha is 212.43697276017394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.17036275262198203
the lambda is 20.0
the regulation term lambda/alpha is 117.39655348477497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11098409755008613
the lambda is 20.0
the regulation term lambda/alpha is 180.2059974490866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15018000178410051
the lambda is 20.0
the regulation term lambda/alpha is 133.17352352114162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16185164601443475
the lambda is 20.0
the regulation term lambda/alpha is 123.5699512022034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09830149950544254
the lambda is 20.0
the regulation term lambda/alpha is 203.4556960028131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12198031780653436
the lambda is 20.0
the regulation term lambda/alpha is 163.96087794852934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16356483745667863
the lambda is 20.0
the regulation term lambda/alpha is 122.27566945919627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1370669409337381
the lambda is 20.0
the regulation term lambda/alpha is 145.914104916579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20546612335487818
the lambda is 20.0
the regulation term lambda/alpha is 97.33964739995743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13170568790361892
the lambda is 20.0
the regulation term lambda/alpha is 151.85373022489225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13716881891562346
the lambda is 20.0
the regulation term lambda/alpha is 145.80573163863562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11455336241896559
the lambda is 20.0
the regulation term lambda/alpha is 174.5911213575061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13218184362295926
the lambda is 20.0
the regulation term lambda/alpha is 151.30671090538573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12476387901267455
the lambda is 20.0
the regulation term lambda/alpha is 160.30280685620744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10868274936734278
the lambda is 20.0
the regulation term lambda/alpha is 184.02184446402717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15780290819474618
the lambda is 20.0
the regulation term lambda/alpha is 126.74037651649483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14782635367258257
the lambda is 20.0
the regulation term lambda/alpha is 135.29387354231557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11382034103620443
the lambda is 20.0
the regulation term lambda/alpha is 175.71551638242167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14017567145469656
the lambda is 20.0
the regulation term lambda/alpha is 142.67811091929607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16571387220354938
the lambda is 20.0
the regulation term lambda/alpha is 120.68995633288705
100
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16751889155320812
the lambda is 20.0
the regulation term lambda/alpha is 119.38951968081467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14625477788398303
the lambda is 20.0
the regulation term lambda/alpha is 136.74766930257178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15660232767751492
the lambda is 20.0
the regulation term lambda/alpha is 127.7120225261608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11038045904377078
the lambda is 20.0
the regulation term lambda/alpha is 181.19149144024766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10912022683099966
the lambda is 20.0
the regulation term lambda/alpha is 183.2840764799277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13381855756934463
the lambda is 20.0
the regulation term lambda/alpha is 149.45610207789022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13266059320587145
the lambda is 20.0
the regulation term lambda/alpha is 150.7606706458992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11936857379064222
the lambda is 20.0
the regulation term lambda/alpha is 167.5482864952172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15836646803631496
the lambda is 20.0
the regulation term lambda/alpha is 126.28936067080694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16541642187739788
the lambda is 20.0
the regulation term lambda/alpha is 120.90697992986121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11808690819990456
the lambda is 20.0
the regulation term lambda/alpha is 169.36678506429186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1141130695226241
the lambda is 20.0
the regulation term lambda/alpha is 175.2647622543778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10882985141684237
the lambda is 20.0
the regulation term lambda/alpha is 183.77310765035946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13371464607313674
the lambda is 20.0
the regulation term lambda/alpha is 149.57224647673056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12029556646057116
the lambda is 20.0
the regulation term lambda/alpha is 166.2571663150639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1395695361219438
the lambda is 20.0
the regulation term lambda/alpha is 143.29774645468282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10816475537326564
the lambda is 20.0
the regulation term lambda/alpha is 184.90311313497656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.147499064055322
the lambda is 20.0
the regulation term lambda/alpha is 135.594080735988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10716959507284206
the lambda is 20.0
the regulation term lambda/alpha is 186.6200948730487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1360338752415441
the lambda is 20.0
the regulation term lambda/alpha is 147.02220284828067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19275131972675524
the lambda is 20.0
the regulation term lambda/alpha is 103.76063846593658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22252897439621486
the lambda is 20.0
the regulation term lambda/alpha is 89.87593662472833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14997774358709642
the lambda is 20.0
the regulation term lambda/alpha is 133.3531197473005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12268126031334878
the lambda is 20.0
the regulation term lambda/alpha is 163.0240832945195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15221160668471628
the lambda is 20.0
the regulation term lambda/alpha is 131.39602449258044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11517485940203959
the lambda is 20.0
the regulation term lambda/alpha is 173.64900729061213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1022330778723267
the lambda is 20.0
the regulation term lambda/alpha is 195.63139852814473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17728502752567776
the lambda is 20.0
the regulation term lambda/alpha is 112.81268519476764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15740681355267241
the lambda is 20.0
the regulation term lambda/alpha is 127.05930288911846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1743491939160985
the lambda is 20.0
the regulation term lambda/alpha is 114.71231699312895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12398958896521563
the lambda is 20.0
the regulation term lambda/alpha is 161.30386564642015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16221580857459786
the lambda is 20.0
the regulation term lambda/alpha is 123.29254574964955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.18581470166660888
the lambda is 20.0
the regulation term lambda/alpha is 107.63410979118464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10982147131564313
the lambda is 20.0
the regulation term lambda/alpha is 182.1137502566966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1507197814382163
the lambda is 20.0
the regulation term lambda/alpha is 132.69658308387667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13353473359510445
the lambda is 20.0
the regulation term lambda/alpha is 149.77376643175648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11500853105689833
the lambda is 20.0
the regulation term lambda/alpha is 173.9001430259584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11033658093937716
the lambda is 20.0
the regulation term lambda/alpha is 181.2635467741085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11309689530315535
the lambda is 20.0
the regulation term lambda/alpha is 176.83951399718052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12270259481383658
the lambda is 20.0
the regulation term lambda/alpha is 162.99573803099963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09118368734606455
the lambda is 20.0
the regulation term lambda/alpha is 219.33747781108121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10551337568232617
the lambda is 20.0
the regulation term lambda/alpha is 189.54942793428287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15840803220212452
the lambda is 20.0
the regulation term lambda/alpha is 126.25622401823995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1101155675305497
the lambda is 20.0
the regulation term lambda/alpha is 181.62736158492157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1604571719961905
the lambda is 20.0
the regulation term lambda/alpha is 124.64385200852743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12335290305313182
the lambda is 20.0
the regulation term lambda/alpha is 162.13643542207836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1522411716167297
the lambda is 20.0
the regulation term lambda/alpha is 131.37050764658073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10722129879218241
the lambda is 20.0
the regulation term lambda/alpha is 186.53010386270583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10157834280305275
the lambda is 20.0
the regulation term lambda/alpha is 196.8923635501458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11167207070134194
the lambda is 20.0
the regulation term lambda/alpha is 179.09581038833252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1024682566443233
the lambda is 20.0
the regulation term lambda/alpha is 195.18239750503253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10128044473730091
the lambda is 20.0
the regulation term lambda/alpha is 197.47148674036316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14571764865633122
the lambda is 20.0
the regulation term lambda/alpha is 137.2517343260811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1428529039877516
the lambda is 20.0
the regulation term lambda/alpha is 140.00415421526765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11420128363065736
the lambda is 20.0
the regulation term lambda/alpha is 175.12938002240628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1350387980335542
the lambda is 20.0
the regulation term lambda/alpha is 148.10558366367002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1313477042242997
the lambda is 20.0
the regulation term lambda/alpha is 152.2676023773238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11771853196326308
the lambda is 20.0
the regulation term lambda/alpha is 169.8967840190318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12979769620143816
the lambda is 20.0
the regulation term lambda/alpha is 154.0859397763209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14292160884050312
the lambda is 20.0
the regulation term lambda/alpha is 139.93685183266788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1318006459103818
the lambda is 20.0
the regulation term lambda/alpha is 151.74432463403141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12455751522584785
the lambda is 20.0
the regulation term lambda/alpha is 160.56839255131234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1910529759689823
the lambda is 20.0
the regulation term lambda/alpha is 104.68300689148661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.147543400359209
the lambda is 20.0
the regulation term lambda/alpha is 135.55333516313183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10546613409866314
the lambda is 20.0
the regulation term lambda/alpha is 189.63433305794715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14208591828509767
the lambda is 20.0
the regulation term lambda/alpha is 140.75990246879834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0848236617351496
the lambda is 20.0
the regulation term lambda/alpha is 235.7832660236632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2143931855846016
the lambda is 20.0
the regulation term lambda/alpha is 93.28654707687903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14145727872013783
the lambda is 20.0
the regulation term lambda/alpha is 141.38544287684508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16993400700667122
the lambda is 20.0
the regulation term lambda/alpha is 117.69274645077277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1263588176129617
the lambda is 20.0
the regulation term lambda/alpha is 158.27941712196292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1177937507997748
the lambda is 20.0
the regulation term lambda/alpha is 169.78829406660032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11182096162702071
the lambda is 20.0
the regulation term lambda/alpha is 178.8573422102207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.18801449624245403
the lambda is 20.0
the regulation term lambda/alpha is 106.37477641196882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09262568797506522
the lambda is 20.0
the regulation term lambda/alpha is 215.9228226772684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13708956995283003
the lambda is 20.0
the regulation term lambda/alpha is 145.8900192544307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1408622429635773
the lambda is 20.0
the regulation term lambda/alpha is 141.98268875479565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1476840920543032
the lambda is 20.0
the regulation term lambda/alpha is 135.4241998701257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14727610289295096
the lambda is 20.0
the regulation term lambda/alpha is 135.79935649531134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1295747701749074
the lambda is 20.0
the regulation term lambda/alpha is 154.35103587683668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16871156869121312
the lambda is 20.0
the regulation term lambda/alpha is 118.54551620348751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13609641015795698
the lambda is 20.0
the regulation term lambda/alpha is 146.9546476412382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1525308989710387
the lambda is 20.0
the regulation term lambda/alpha is 131.12097374970193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13560050400396984
the lambda is 20.0
the regulation term lambda/alpha is 147.4920771637728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09554606606748381
the lambda is 20.0
the regulation term lambda/alpha is 209.32311316589508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12512715083225287
the lambda is 20.0
the regulation term lambda/alpha is 159.83741231998695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1874376321028205
the lambda is 20.0
the regulation term lambda/alpha is 106.70215887612596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15184976449663193
the lambda is 20.0
the regulation term lambda/alpha is 131.70912754654688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0928933217728314
the lambda is 20.0
the regulation term lambda/alpha is 215.3007301096366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1728707571079151
the lambda is 20.0
the regulation term lambda/alpha is 115.69336731437427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12649573049285032
the lambda is 20.0
the regulation term lambda/alpha is 158.10810311206845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1129541124581787
the lambda is 20.0
the regulation term lambda/alpha is 177.0630529933561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12577118200658197
the lambda is 20.0
the regulation term lambda/alpha is 159.01893964034895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15628919071528877
the lambda is 20.0
the regulation term lambda/alpha is 127.96790301661936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12608900990370434
the lambda is 20.0
the regulation term lambda/alpha is 158.6181064890131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13171590860614782
the lambda is 20.0
the regulation term lambda/alpha is 151.841946896508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1577099613918773
the lambda is 20.0
the regulation term lambda/alpha is 126.81507130867944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11615742140687808
the lambda is 20.0
the regulation term lambda/alpha is 172.18013070334678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1245574170116913
the lambda is 20.0
the regulation term lambda/alpha is 160.56851916030615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15047584877257217
the lambda is 20.0
the regulation term lambda/alpha is 132.91169422295678
110
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12700956038991743
the lambda is 20.0
the regulation term lambda/alpha is 157.46846094577685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13782446437270418
the lambda is 20.0
the regulation term lambda/alpha is 145.1121184546461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1254566445185452
the lambda is 20.0
the regulation term lambda/alpha is 159.4176225320897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16519404757309605
the lambda is 20.0
the regulation term lambda/alpha is 121.06973764384749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1285501451789949
the lambda is 20.0
the regulation term lambda/alpha is 155.58131009616315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11247097125799876
the lambda is 20.0
the regulation term lambda/alpha is 177.82366219743685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.17854441548332997
the lambda is 20.0
the regulation term lambda/alpha is 112.01694517220744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16279247193879726
the lambda is 20.0
the regulation term lambda/alpha is 122.85580384527309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13841553390626501
the lambda is 20.0
the regulation term lambda/alpha is 144.4924528018943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12889688593518414
the lambda is 20.0
the regulation term lambda/alpha is 155.16278655527032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12016424019032987
the lambda is 20.0
the regulation term lambda/alpha is 166.43886707327997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13012886669364698
the lambda is 20.0
the regulation term lambda/alpha is 153.69379990901297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12015456563179741
the lambda is 20.0
the regulation term lambda/alpha is 166.45226833317474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14298942180898508
the lambda is 20.0
the regulation term lambda/alpha is 139.87048655051805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13121417468923696
the lambda is 20.0
the regulation term lambda/alpha is 152.42255684164684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1931878680148795
the lambda is 20.0
the regulation term lambda/alpha is 103.52616965812565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11385694757687523
the lambda is 20.0
the regulation term lambda/alpha is 175.6590214795296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0954004655698899
the lambda is 20.0
the regulation term lambda/alpha is 209.64258277490376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15729456235007583
the lambda is 20.0
the regulation term lambda/alpha is 127.14997709512593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1428206304332964
the lambda is 20.0
the regulation term lambda/alpha is 140.03579132316526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.17909524557767434
the lambda is 20.0
the regulation term lambda/alpha is 111.67242288029314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12992662931364482
the lambda is 20.0
the regulation term lambda/alpha is 153.93303209398053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12298375270595381
the lambda is 20.0
the regulation term lambda/alpha is 162.62310719871027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12092827829387906
the lambda is 20.0
the regulation term lambda/alpha is 165.38728808654778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12481601841599661
the lambda is 20.0
the regulation term lambda/alpha is 160.2358435544902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11386100000655516
the lambda is 20.0
the regulation term lambda/alpha is 175.65276959493212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1307815837580806
the lambda is 20.0
the regulation term lambda/alpha is 152.92673039497626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2331256826639755
the lambda is 20.0
the regulation term lambda/alpha is 85.7906334963006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11828874103593666
the lambda is 20.0
the regulation term lambda/alpha is 169.07779916200062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13991271467533
the lambda is 20.0
the regulation term lambda/alpha is 142.9462650796989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1307542073676228
the lambda is 20.0
the regulation term lambda/alpha is 152.95874911136798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1955531446537557
the lambda is 20.0
the regulation term lambda/alpha is 102.27398815504493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11015411819319115
the lambda is 20.0
the regulation term lambda/alpha is 181.56379741448686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.102590173606069
the lambda is 20.0
the regulation term lambda/alpha is 194.95044502797145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15821750761787806
the lambda is 20.0
the regulation term lambda/alpha is 126.40826101434595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13505600565719753
the lambda is 20.0
the regulation term lambda/alpha is 148.08671337996248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1356356715657788
the lambda is 20.0
the regulation term lambda/alpha is 147.45383547793816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15673463167387622
the lambda is 20.0
the regulation term lambda/alpha is 127.6042173092592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21126089786006316
the lambda is 20.0
the regulation term lambda/alpha is 94.66967244098231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09160916016509525
the lambda is 20.0
the regulation term lambda/alpha is 218.31877908231672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12908829298509955
the lambda is 20.0
the regulation term lambda/alpha is 154.93271727056276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15674969552821855
the lambda is 20.0
the regulation term lambda/alpha is 127.59195437416042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14409054001460472
the lambda is 20.0
the regulation term lambda/alpha is 138.8016173578976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11390805845960572
the lambda is 20.0
the regulation term lambda/alpha is 175.5802027570546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.18474419107582482
the lambda is 20.0
the regulation term lambda/alpha is 108.25780168531183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11141620938979147
the lambda is 20.0
the regulation term lambda/alpha is 179.50709425079853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12542574969202674
the lambda is 20.0
the regulation term lambda/alpha is 159.45689022476213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10078667456582482
the lambda is 20.0
the regulation term lambda/alpha is 198.43893139799738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1603400398676762
the lambda is 20.0
the regulation term lambda/alpha is 124.73490724154364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12083980344295864
the lambda is 20.0
the regulation term lambda/alpha is 165.50837911153027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1883785697489502
the lambda is 20.0
the regulation term lambda/alpha is 106.1691891315119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11506704564234012
the lambda is 20.0
the regulation term lambda/alpha is 173.8117102803306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11592692500199828
the lambda is 20.0
the regulation term lambda/alpha is 172.52247482330142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1416250583234943
the lambda is 20.0
the regulation term lambda/alpha is 141.2179471398119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1611095440140411
the lambda is 20.0
the regulation term lambda/alpha is 124.13913851222216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1108391195812897
the lambda is 20.0
the regulation term lambda/alpha is 180.44170754470807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14510785092130918
the lambda is 20.0
the regulation term lambda/alpha is 137.82851770608772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14650098498999967
the lambda is 20.0
the regulation term lambda/alpha is 136.51785345583323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.143833956412905
the lambda is 20.0
the regulation term lambda/alpha is 139.04922383269414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10108170568602796
the lambda is 20.0
the regulation term lambda/alpha is 197.85973994267988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08973651978228293
the lambda is 20.0
the regulation term lambda/alpha is 222.8747008299812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14576364157852323
the lambda is 20.0
the regulation term lambda/alpha is 137.20842717301318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1049365186862262
the lambda is 20.0
the regulation term lambda/alpha is 190.591418987346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.10610198192930219
the lambda is 20.0
the regulation term lambda/alpha is 188.49789265318708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12902623955813525
the lambda is 20.0
the regulation term lambda/alpha is 155.00723006802517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10926157732210892
the lambda is 20.0
the regulation term lambda/alpha is 183.04696390240588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11106714671995582
the lambda is 20.0
the regulation term lambda/alpha is 180.07125050603761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11606041529709195
the lambda is 20.0
the regulation term lambda/alpha is 172.3240430322769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11945127854637011
the lambda is 20.0
the regulation term lambda/alpha is 167.4322807037695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1464833829090928
the lambda is 20.0
the regulation term lambda/alpha is 136.53425803534282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11020706162185095
the lambda is 20.0
the regulation term lambda/alpha is 181.47657423827516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11603158804340627
the lambda is 20.0
the regulation term lambda/alpha is 172.36685576102084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16678287180998744
the lambda is 20.0
the regulation term lambda/alpha is 119.91639059186858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13461125289871737
the lambda is 20.0
the regulation term lambda/alpha is 148.57598877746253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13851503680518068
the lambda is 20.0
the regulation term lambda/alpha is 144.38865599934613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13482835687892308
the lambda is 20.0
the regulation term lambda/alpha is 148.33674801777906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13599364325638288
the lambda is 20.0
the regulation term lambda/alpha is 147.06569749216052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10734824956732132
the lambda is 20.0
the regulation term lambda/alpha is 186.309512084381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11352206463619313
the lambda is 20.0
the regulation term lambda/alpha is 176.1772045293087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16518209870607956
the lambda is 20.0
the regulation term lambda/alpha is 121.07849553108927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08135038611956288
the lambda is 20.0
the regulation term lambda/alpha is 245.85009308505866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11246380983375488
the lambda is 20.0
the regulation term lambda/alpha is 177.8349855794873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13572533678734897
the lambda is 20.0
the regulation term lambda/alpha is 147.35642197252747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13692504078744258
the lambda is 20.0
the regulation term lambda/alpha is 146.06532074032586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12307677347214975
the lambda is 20.0
the regulation term lambda/alpha is 162.50019752529238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.123467706964759
the lambda is 20.0
the regulation term lambda/alpha is 161.98567618744661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13406850308052737
the lambda is 20.0
the regulation term lambda/alpha is 149.17746928215593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15410286162246808
the lambda is 20.0
the regulation term lambda/alpha is 129.7834432756829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15121990200907132
the lambda is 20.0
the regulation term lambda/alpha is 132.25772358191483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1485051709707016
the lambda is 20.0
the regulation term lambda/alpha is 134.67544509911897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.17218611864378786
the lambda is 20.0
the regulation term lambda/alpha is 116.15338191910374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17379345049198228
the lambda is 20.0
the regulation term lambda/alpha is 115.07913528031756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.17455375459043318
the lambda is 20.0
the regulation term lambda/alpha is 114.57788488667745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.18170598591008938
the lambda is 20.0
the regulation term lambda/alpha is 110.06792043656876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16129178399722685
the lambda is 20.0
the regulation term lambda/alpha is 123.99887647311203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10838591973271829
the lambda is 20.0
the regulation term lambda/alpha is 184.52581340196565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15133316389557505
the lambda is 20.0
the regulation term lambda/alpha is 132.15873827762346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1420085919404049
the lambda is 20.0
the regulation term lambda/alpha is 140.83654887862818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0999181587060604
the lambda is 20.0
the regulation term lambda/alpha is 200.16381665755142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14546554568772832
the lambda is 20.0
the regulation term lambda/alpha is 137.48960212842502
120
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13252045983591637
the lambda is 20.0
the regulation term lambda/alpha is 150.92009207305435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15116962485181087
the lambda is 20.0
the regulation term lambda/alpha is 132.3017108735017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15418930131268313
the lambda is 20.0
the regulation term lambda/alpha is 129.71068569434436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1558810632475253
the lambda is 20.0
the regulation term lambda/alpha is 128.30294830772212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.17449974421524683
the lambda is 20.0
the regulation term lambda/alpha is 114.6133485177482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13132717328132557
the lambda is 20.0
the regulation term lambda/alpha is 152.29140702782456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0991858342973558
the lambda is 20.0
the regulation term lambda/alpha is 201.6416975436298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.138309734196064
the lambda is 20.0
the regulation term lambda/alpha is 144.60298196834478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.20886340602169293
the lambda is 20.0
the regulation term lambda/alpha is 95.75636240425364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12872511693428332
the lambda is 20.0
the regulation term lambda/alpha is 155.3698336138268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13106911256851242
the lambda is 20.0
the regulation term lambda/alpha is 152.5912521117102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12700337743500575
the lambda is 20.0
the regulation term lambda/alpha is 157.47612704422008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11105331491991191
the lambda is 20.0
the regulation term lambda/alpha is 180.0936785581174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1999156100502716
the lambda is 20.0
the regulation term lambda/alpha is 100.04221278653887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15284807703199602
the lambda is 20.0
the regulation term lambda/alpha is 130.84888202952894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2375986732562278
the lambda is 20.0
the regulation term lambda/alpha is 84.17555420619661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.18998236576685767
the lambda is 20.0
the regulation term lambda/alpha is 105.27292845981071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15291355105631071
the lambda is 20.0
the regulation term lambda/alpha is 130.79285558305398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18536409277571622
the lambda is 20.0
the regulation term lambda/alpha is 107.89576179783249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15923959157064632
the lambda is 20.0
the regulation term lambda/alpha is 125.5969059122275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14669387295646405
the lambda is 20.0
the regulation term lambda/alpha is 136.3383459507925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17685487829917398
the lambda is 20.0
the regulation term lambda/alpha is 113.08706998835108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12251846032174002
the lambda is 20.0
the regulation term lambda/alpha is 163.24070631869623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1449068224061701
the lambda is 20.0
the regulation term lambda/alpha is 138.01972652426616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1236286954630739
the lambda is 20.0
the regulation term lambda/alpha is 161.7747394736015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14084637367840905
the lambda is 20.0
the regulation term lambda/alpha is 141.99868606958594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1534044631459527
the lambda is 20.0
the regulation term lambda/alpha is 130.3743032624254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15610654491062395
the lambda is 20.0
the regulation term lambda/alpha is 128.1176264034967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11930235905883851
the lambda is 20.0
the regulation term lambda/alpha is 167.6412784942185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1558350377624755
the lambda is 20.0
the regulation term lambda/alpha is 128.340842259647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1568978751055594
the lambda is 20.0
the regulation term lambda/alpha is 127.4714522841319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1460186987667874
the lambda is 20.0
the regulation term lambda/alpha is 136.96875926789923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16708899307106267
the lambda is 20.0
the regulation term lambda/alpha is 119.69669355475757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1945269158402616
the lambda is 20.0
the regulation term lambda/alpha is 102.81353566733803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15034637669074885
the lambda is 20.0
the regulation term lambda/alpha is 133.0261522772743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.18293330792580922
the lambda is 20.0
the regulation term lambda/alpha is 109.32946124885709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.099932121316879
the lambda is 20.0
the regulation term lambda/alpha is 200.13584957914736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14153226652783046
the lambda is 20.0
the regulation term lambda/alpha is 141.31053286048564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12414389926762036
the lambda is 20.0
the regulation term lambda/alpha is 161.1033656747438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.18461242808852224
the lambda is 20.0
the regulation term lambda/alpha is 108.33506826750546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11754469888265093
the lambda is 20.0
the regulation term lambda/alpha is 170.14803891723534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1570189058934935
the lambda is 20.0
the regulation term lambda/alpha is 127.37319678922024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14345147050494575
the lambda is 20.0
the regulation term lambda/alpha is 139.41997199192505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13150040663374846
the lambda is 20.0
the regulation term lambda/alpha is 152.09078444680011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14905276668173853
the lambda is 20.0
the regulation term lambda/alpha is 134.18066933775566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1318548197629334
the lambda is 20.0
the regulation term lambda/alpha is 151.68197898232867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11634366038584999
the lambda is 20.0
the regulation term lambda/alpha is 171.90451059963772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14975057415313858
the lambda is 20.0
the regulation term lambda/alpha is 133.55541448240135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1085717659386687
the lambda is 20.0
the regulation term lambda/alpha is 184.20995391470225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12544813780594766
the lambda is 20.0
the regulation term lambda/alpha is 159.4284327355856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1386548319423362
the lambda is 20.0
the regulation term lambda/alpha is 144.24307988283888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15520210309501897
the lambda is 20.0
the regulation term lambda/alpha is 128.86423315897628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14331786931503906
the lambda is 20.0
the regulation term lambda/alpha is 139.54993955454583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10631737757808224
the lambda is 20.0
the regulation term lambda/alpha is 188.11600187665917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1496883869516572
the lambda is 20.0
the regulation term lambda/alpha is 133.61089933088212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16792158994726739
the lambda is 20.0
the regulation term lambda/alpha is 119.10320767139368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16277987412194672
the lambda is 20.0
the regulation term lambda/alpha is 122.86531186906421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08763636336530255
the lambda is 20.0
the regulation term lambda/alpha is 228.21576834073088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11453084369063102
the lambda is 20.0
the regulation term lambda/alpha is 174.62544896660063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15979748391232854
the lambda is 20.0
the regulation term lambda/alpha is 125.15841620493111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10463529155105672
the lambda is 20.0
the regulation term lambda/alpha is 191.14009913415316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11690346055614513
the lambda is 20.0
the regulation term lambda/alpha is 171.08133416114416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1357592947520035
the lambda is 20.0
the regulation term lambda/alpha is 147.31956317639052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1309656101674433
the lambda is 20.0
the regulation term lambda/alpha is 152.71184530373606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11730523905750498
the lambda is 20.0
the regulation term lambda/alpha is 170.49536884022433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11994701722363653
the lambda is 20.0
the regulation term lambda/alpha is 166.74028636085865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14685908275299325
the lambda is 20.0
the regulation term lambda/alpha is 136.18497150522592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14292917968877528
the lambda is 20.0
the regulation term lambda/alpha is 139.92943948569146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12816799530612472
the lambda is 20.0
the regulation term lambda/alpha is 156.0451964020402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1291765742087693
the lambda is 20.0
the regulation term lambda/alpha is 154.8268339093504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13388620681149896
the lambda is 20.0
the regulation term lambda/alpha is 149.38058576981268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.196910611855366
the lambda is 20.0
the regulation term lambda/alpha is 101.56892922911803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10392750096549172
the lambda is 20.0
the regulation term lambda/alpha is 192.4418446917225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.20448295175233636
the lambda is 20.0
the regulation term lambda/alpha is 97.80766478871746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15216772324597813
the lambda is 20.0
the regulation term lambda/alpha is 131.43391760991344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1778724887326737
the lambda is 20.0
the regulation term lambda/alpha is 112.44009763678629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1543323126220316
the lambda is 20.0
the regulation term lambda/alpha is 129.59048989942315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13071567882780158
the lambda is 20.0
the regulation term lambda/alpha is 153.00383381206333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13484054557733066
the lambda is 20.0
the regulation term lambda/alpha is 148.32333935144203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13214635120222987
the lambda is 20.0
the regulation term lambda/alpha is 151.34734949581048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13457166680633023
the lambda is 20.0
the regulation term lambda/alpha is 148.6196944322845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13742024708683398
the lambda is 20.0
the regulation term lambda/alpha is 145.53896113548882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14328494392667168
the lambda is 20.0
the regulation term lambda/alpha is 139.58200667779383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1389103980388084
the lambda is 20.0
the regulation term lambda/alpha is 143.97770276644414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1340697439924615
the lambda is 20.0
the regulation term lambda/alpha is 149.17608853735535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11039330335089836
the lambda is 20.0
the regulation term lambda/alpha is 181.17040973425352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1561134436910993
the lambda is 20.0
the regulation term lambda/alpha is 128.1119647810337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15968142846247568
the lambda is 20.0
the regulation term lambda/alpha is 125.24938054834534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10970113671789743
the lambda is 20.0
the regulation term lambda/alpha is 182.31351650832127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12008117937544642
the lambda is 20.0
the regulation term lambda/alpha is 166.55399375673935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15744036955056936
the lambda is 20.0
the regulation term lambda/alpha is 127.03222214919955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14112309133959033
the lambda is 20.0
the regulation term lambda/alpha is 141.72025152051958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15290050176930062
the lambda is 20.0
the regulation term lambda/alpha is 130.80401809391316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14683769926001977
the lambda is 20.0
the regulation term lambda/alpha is 136.20480367636418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15333454228098162
the lambda is 20.0
the regulation term lambda/alpha is 130.4337542114321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.17079007024098056
the lambda is 20.0
the regulation term lambda/alpha is 117.10282671457712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16200650021176216
the lambda is 20.0
the regulation term lambda/alpha is 123.45183664765038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11860037943260854
the lambda is 20.0
the regulation term lambda/alpha is 168.63352457792482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12697461616382044
the lambda is 20.0
the regulation term lambda/alpha is 157.51179727290017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1093735661552571
the lambda is 20.0
the regulation term lambda/alpha is 182.85954004288163
130
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.20305416617946515
the lambda is 20.0
the regulation term lambda/alpha is 98.49588598110034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13549189115214066
the lambda is 20.0
the regulation term lambda/alpha is 147.6103095907228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1289212869653455
the lambda is 20.0
the regulation term lambda/alpha is 155.13341877649788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12826325170727684
the lambda is 20.0
the regulation term lambda/alpha is 155.92930737202983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15460309653376197
the lambda is 20.0
the regulation term lambda/alpha is 129.36351501622372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14831273368926068
the lambda is 20.0
the regulation term lambda/alpha is 134.85018785981828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.194654649636009
the lambda is 20.0
the regulation term lambda/alpha is 102.74606867803386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14074540180537673
the lambda is 20.0
the regulation term lambda/alpha is 142.10055705873842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12919854837579245
the lambda is 20.0
the regulation term lambda/alpha is 154.80050086806813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.19620935174071658
the lambda is 20.0
the regulation term lambda/alpha is 101.93194066727901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15755379471779726
the lambda is 20.0
the regulation term lambda/alpha is 126.94076988639361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20181046243375197
the lambda is 20.0
the regulation term lambda/alpha is 99.1028897055591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12884498610138254
the lambda is 20.0
the regulation term lambda/alpha is 155.22528741834677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19180182985292032
the lambda is 20.0
the regulation term lambda/alpha is 104.27429193630024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10294971534691073
the lambda is 20.0
the regulation term lambda/alpha is 194.26959980030824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21374901237087335
the lambda is 20.0
the regulation term lambda/alpha is 93.56768379026819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1704568222058637
the lambda is 20.0
the regulation term lambda/alpha is 117.33176613984772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11722988687066027
the lambda is 20.0
the regulation term lambda/alpha is 170.6049586319741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15153270033786206
the lambda is 20.0
the regulation term lambda/alpha is 131.98471323620163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11386242638774607
the lambda is 20.0
the regulation term lambda/alpha is 175.65056915168998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.163562309874544
the lambda is 20.0
the regulation term lambda/alpha is 122.27755902530633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13228256999799715
the lambda is 20.0
the regulation term lambda/alpha is 151.1914986252748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13962976344061973
the lambda is 20.0
the regulation term lambda/alpha is 143.23593700354144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14194467411185138
the lambda is 20.0
the regulation term lambda/alpha is 140.89996771728218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16636969029530319
the lambda is 20.0
the regulation term lambda/alpha is 120.21420466973498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15803142142774437
the lambda is 20.0
the regulation term lambda/alpha is 126.55711009436477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16051842738109565
the lambda is 20.0
the regulation term lambda/alpha is 124.59628670867113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10907091170409944
the lambda is 20.0
the regulation term lambda/alpha is 183.36694621438926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08770136452231991
the lambda is 20.0
the regulation term lambda/alpha is 228.04662286537194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1674469867976083
the lambda is 20.0
the regulation term lambda/alpha is 119.44078769344368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14148320410200396
the lambda is 20.0
the regulation term lambda/alpha is 141.35953540874553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12682602615397234
the lambda is 20.0
the regulation term lambda/alpha is 157.6963388864611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.118482038900242
the lambda is 20.0
the regulation term lambda/alpha is 168.80195669859586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14522284815944567
the lambda is 20.0
the regulation term lambda/alpha is 137.7193757971283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1805891449481255
the lambda is 20.0
the regulation term lambda/alpha is 110.74862780786204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1720265803665925
the lambda is 20.0
the regulation term lambda/alpha is 116.26110312359609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18955979087801142
the lambda is 20.0
the regulation term lambda/alpha is 105.50760742751991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1075966439724317
the lambda is 20.0
the regulation term lambda/alpha is 185.8794034981647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10497728579906965
the lambda is 20.0
the regulation term lambda/alpha is 190.51740429144576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25944253691232294
the lambda is 20.0
the regulation term lambda/alpha is 77.08836121487234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13823363866994814
the lambda is 20.0
the regulation term lambda/alpha is 144.68258372155532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13715816966450387
the lambda is 20.0
the regulation term lambda/alpha is 145.81705230480296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13043997652551506
the lambda is 20.0
the regulation term lambda/alpha is 153.32722783868215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11396754681557267
the lambda is 20.0
the regulation term lambda/alpha is 175.4885540562252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17835084493568473
the lambda is 20.0
the regulation term lambda/alpha is 112.13852116715353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09658401122790848
the lambda is 20.0
the regulation term lambda/alpha is 207.07361131239588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15248618299820751
the lambda is 20.0
the regulation term lambda/alpha is 131.1594244590351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10501736294920239
the lambda is 20.0
the regulation term lambda/alpha is 190.44469827026734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19992175446527535
the lambda is 20.0
the regulation term lambda/alpha is 100.03913807926202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13643094431934807
the lambda is 20.0
the regulation term lambda/alpha is 146.59430893614126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1543807547832266
the lambda is 20.0
the regulation term lambda/alpha is 129.54982651874553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12293838378829693
the lambda is 20.0
the regulation term lambda/alpha is 162.68312128163745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14069783322137466
the lambda is 20.0
the regulation term lambda/alpha is 142.1485998901767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10955577010073446
the lambda is 20.0
the regulation term lambda/alpha is 182.55542343055393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10140997673654147
the lambda is 20.0
the regulation term lambda/alpha is 197.21925439307708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17443120447359836
the lambda is 20.0
the regulation term lambda/alpha is 114.65838386174286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16181435587453885
the lambda is 20.0
the regulation term lambda/alpha is 123.5984279139411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1291694631169428
the lambda is 20.0
the regulation term lambda/alpha is 154.83535750158782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14504122696939772
the lambda is 20.0
the regulation term lambda/alpha is 137.8918285365843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11132709457223637
the lambda is 20.0
the regulation term lambda/alpha is 179.65078561376342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14701295887870197
the lambda is 20.0
the regulation term lambda/alpha is 136.04242886167387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09412685155420909
the lambda is 20.0
the regulation term lambda/alpha is 212.47922000749907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17266818687772775
the lambda is 20.0
the regulation term lambda/alpha is 115.82909603471242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13239744042856824
the lambda is 20.0
the regulation term lambda/alpha is 151.06032212753013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15012693009253344
the lambda is 20.0
the regulation term lambda/alpha is 133.22060197775735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.09952329991053768
the lambda is 20.0
the regulation term lambda/alpha is 200.95796680755325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15894531040216867
the lambda is 20.0
the regulation term lambda/alpha is 125.82944378412512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15134352266643708
the lambda is 20.0
the regulation term lambda/alpha is 132.14969261737244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17845079575751724
the lambda is 20.0
the regulation term lambda/alpha is 112.0757120476864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14148033464057777
the lambda is 20.0
the regulation term lambda/alpha is 141.3624024201582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14097412784417912
the lambda is 20.0
the regulation term lambda/alpha is 141.87000342436102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11349902884290336
the lambda is 20.0
the regulation term lambda/alpha is 176.21296150192143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1484045659533212
the lambda is 20.0
the regulation term lambda/alpha is 134.7667430009583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17150788740450243
the lambda is 20.0
the regulation term lambda/alpha is 116.61271270183553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13047516376968454
the lambda is 20.0
the regulation term lambda/alpha is 153.28587772692208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13896301596597468
the lambda is 20.0
the regulation term lambda/alpha is 143.92318604323492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13637224750489982
the lambda is 20.0
the regulation term lambda/alpha is 146.65740549066925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13529044683923425
the lambda is 20.0
the regulation term lambda/alpha is 147.8300978912873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14625776170445773
the lambda is 20.0
the regulation term lambda/alpha is 136.74487949852463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13452463484772792
the lambda is 20.0
the regulation term lambda/alpha is 148.67165424859576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13325054899680444
the lambda is 20.0
the regulation term lambda/alpha is 150.09319023878567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13647651133451782
the lambda is 20.0
the regulation term lambda/alpha is 146.5453637730962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10703911953352871
the lambda is 20.0
the regulation term lambda/alpha is 186.84757579433602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11576469142522247
the lambda is 20.0
the regulation term lambda/alpha is 172.76424921772355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12363645151204505
the lambda is 20.0
the regulation term lambda/alpha is 161.76459090668368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1462754590407876
the lambda is 20.0
the regulation term lambda/alpha is 136.7283352323863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1514994204953788
the lambda is 20.0
the regulation term lambda/alpha is 132.0137062874776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19915733748886738
the lambda is 20.0
the regulation term lambda/alpha is 100.42311396695577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2146805387339283
the lambda is 20.0
the regulation term lambda/alpha is 93.16168162214129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15591723454441464
the lambda is 20.0
the regulation term lambda/alpha is 128.27318325930668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12063695637125717
the lambda is 20.0
the regulation term lambda/alpha is 165.78667600374888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17244924072185497
the lambda is 20.0
the regulation term lambda/alpha is 115.97615574462395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13923153852591577
the lambda is 20.0
the regulation term lambda/alpha is 143.6456151511772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13329982978594787
the lambda is 20.0
the regulation term lambda/alpha is 150.03770096417895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1295260996558656
the lambda is 20.0
the regulation term lambda/alpha is 154.40903457401606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13854183602271183
the lambda is 20.0
the regulation term lambda/alpha is 144.36072578626215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19429351133614745
the lambda is 20.0
the regulation term lambda/alpha is 102.93704541371932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13178342456029432
the lambda is 20.0
the regulation term lambda/alpha is 151.76415445820717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1034621453590701
the lambda is 20.0
the regulation term lambda/alpha is 193.30741625924233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1683672320405624
the lambda is 20.0
the regulation term lambda/alpha is 118.78795985184145
140
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1575278084453789
the lambda is 20.0
the regulation term lambda/alpha is 126.96171042673262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15479033947836973
the lambda is 20.0
the regulation term lambda/alpha is 129.2070297629574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1187888244136113
the lambda is 20.0
the regulation term lambda/alpha is 168.36600664016942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11185368941850712
the lambda is 20.0
the regulation term lambda/alpha is 178.80500950816946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11194086236886003
the lambda is 20.0
the regulation term lambda/alpha is 178.6657666982888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13768845153250642
the lambda is 20.0
the regulation term lambda/alpha is 145.25546461881927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13622925015561463
the lambda is 20.0
the regulation term lambda/alpha is 146.81134908365132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14212778819484048
the lambda is 20.0
the regulation term lambda/alpha is 140.7184355291757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11864682599064744
the lambda is 20.0
the regulation term lambda/alpha is 168.56750977541142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1342103901664666
the lambda is 20.0
the regulation term lambda/alpha is 149.01975901562605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0982415265711695
the lambda is 20.0
the regulation term lambda/alpha is 203.57989842015863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1385665105630614
the lambda is 20.0
the regulation term lambda/alpha is 144.33501946993195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17131373938865277
the lambda is 20.0
the regulation term lambda/alpha is 116.7448686332553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1268608949394204
the lambda is 20.0
the regulation term lambda/alpha is 157.65299471953557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14405318271437087
the lambda is 20.0
the regulation term lambda/alpha is 138.8376127701119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16890554213008394
the lambda is 20.0
the regulation term lambda/alpha is 118.40937690840744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12909148188607789
the lambda is 20.0
the regulation term lambda/alpha is 154.92889002273463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1042805473490884
the lambda is 20.0
the regulation term lambda/alpha is 191.79032435501344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14133208159825392
the lambda is 20.0
the regulation term lambda/alpha is 141.51068726809928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13479324614269012
the lambda is 20.0
the regulation term lambda/alpha is 148.37538654442892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16032858871785283
the lambda is 20.0
the regulation term lambda/alpha is 124.74381618362597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15853256005801006
the lambda is 20.0
the regulation term lambda/alpha is 126.1570493322105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16721238341525207
the lambda is 20.0
the regulation term lambda/alpha is 119.60836626754119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2739452836135439
the lambda is 20.0
the regulation term lambda/alpha is 73.00727990708577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14896429633920136
the lambda is 20.0
the regulation term lambda/alpha is 134.26035963986098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14954748123831837
the lambda is 20.0
the regulation term lambda/alpha is 133.73678937546308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13718657058600311
the lambda is 20.0
the regulation term lambda/alpha is 145.78686466589582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1427752587841446
the lambda is 20.0
the regulation term lambda/alpha is 140.08029241422764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1302633968383597
the lambda is 20.0
the regulation term lambda/alpha is 153.53507190371718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14382252684425179
the lambda is 20.0
the regulation term lambda/alpha is 139.06027406720776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12362281608144075
the lambda is 20.0
the regulation term lambda/alpha is 161.78243332383173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20190183333839615
the lambda is 20.0
the regulation term lambda/alpha is 99.05804057994432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10941450147663544
the lambda is 20.0
the regulation term lambda/alpha is 182.79112667959131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.11772526813059149
the lambda is 20.0
the regulation term lambda/alpha is 169.8870626296998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16032338539233756
the lambda is 20.0
the regulation term lambda/alpha is 124.74786476755544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13315959078887155
the lambda is 20.0
the regulation term lambda/alpha is 150.19571539319753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19093972954238037
the lambda is 20.0
the regulation term lambda/alpha is 104.74509442290199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12175179452328347
the lambda is 20.0
the regulation term lambda/alpha is 164.2686260051408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10831337680061223
the lambda is 20.0
the regulation term lambda/alpha is 184.6493996472553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1032139186025874
the lambda is 20.0
the regulation term lambda/alpha is 193.77231550531047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16516099477031787
the lambda is 20.0
the regulation term lambda/alpha is 121.09396669481872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1316115567301221
the lambda is 20.0
the regulation term lambda/alpha is 151.96233899893213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1389268230486626
the lambda is 20.0
the regulation term lambda/alpha is 143.96068060229447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14667303875379675
the lambda is 20.0
the regulation term lambda/alpha is 136.35771215984494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13498271610348336
the lambda is 20.0
the regulation term lambda/alpha is 148.16711781578886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13609042843693145
the lambda is 20.0
the regulation term lambda/alpha is 146.96110688834096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1432809580397235
the lambda is 20.0
the regulation term lambda/alpha is 139.58588966480224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15825695642288284
the lambda is 20.0
the regulation term lambda/alpha is 126.37675115245766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1553355245414173
the lambda is 20.0
the regulation term lambda/alpha is 128.75354854624626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14974286763640088
the lambda is 20.0
the regulation term lambda/alpha is 133.56228791185654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12238781853541128
the lambda is 20.0
the regulation term lambda/alpha is 163.4149561560595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1362379012949344
the lambda is 20.0
the regulation term lambda/alpha is 146.80202652786784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.10672510354960331
the lambda is 20.0
the regulation term lambda/alpha is 187.39733516121137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13284516892358655
the lambda is 20.0
the regulation term lambda/alpha is 150.551203043779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12240513883324416
the lambda is 20.0
the regulation term lambda/alpha is 163.39183297889593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14324926468761479
the lambda is 20.0
the regulation term lambda/alpha is 139.6167725091938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14106888627499847
the lambda is 20.0
the regulation term lambda/alpha is 141.77470686918284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11337138972306937
the lambda is 20.0
the regulation term lambda/alpha is 176.41135077248066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11838966729714998
the lambda is 20.0
the regulation term lambda/alpha is 168.93366166661627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11350759385545181
the lambda is 20.0
the regulation term lambda/alpha is 176.19966489175468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.18667780361069336
the lambda is 20.0
the regulation term lambda/alpha is 107.136465145631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10966960470669322
the lambda is 20.0
the regulation term lambda/alpha is 182.36593496884726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1605452031964249
the lambda is 20.0
the regulation term lambda/alpha is 124.5755064729668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17383282553576276
the lambda is 20.0
the regulation term lambda/alpha is 115.05306859253338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14736015127566574
the lambda is 20.0
the regulation term lambda/alpha is 135.72190193118166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12960356548870797
the lambda is 20.0
the regulation term lambda/alpha is 154.31674217128347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11785486760096221
the lambda is 20.0
the regulation term lambda/alpha is 169.70024579482632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13588025076403137
the lambda is 20.0
the regulation term lambda/alpha is 147.18842427463466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17023131614104037
the lambda is 20.0
the regulation term lambda/alpha is 117.48719597180089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12068109048962992
the lambda is 20.0
the regulation term lambda/alpha is 165.72604638270641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13944207727488322
the lambda is 20.0
the regulation term lambda/alpha is 143.42872962637992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10136396541859434
the lambda is 20.0
the regulation term lambda/alpha is 197.30877652041002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.147219663856534
the lambda is 20.0
the regulation term lambda/alpha is 135.85141737241065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18915510291164392
the lambda is 20.0
the regulation term lambda/alpha is 105.7333357236584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15007264379030946
the lambda is 20.0
the regulation term lambda/alpha is 133.26879233196695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16890179063789434
the lambda is 20.0
the regulation term lambda/alpha is 118.41200690925567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13766736309544655
the lambda is 20.0
the regulation term lambda/alpha is 145.277715431607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1395581427111612
the lambda is 20.0
the regulation term lambda/alpha is 143.30944516360702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10123648662706207
the lambda is 20.0
the regulation term lambda/alpha is 197.55723125474103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1999280461500279
the lambda is 20.0
the regulation term lambda/alpha is 100.03598987303567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11271344129439886
the lambda is 20.0
the regulation term lambda/alpha is 177.44112654462864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1171275993911587
the lambda is 20.0
the regulation term lambda/alpha is 170.75394786508096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14491188220949353
the lambda is 20.0
the regulation term lambda/alpha is 138.0149073703064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12333614472492088
the lambda is 20.0
the regulation term lambda/alpha is 162.15846574908278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12851268514702305
the lambda is 20.0
the regulation term lambda/alpha is 155.6266603341086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11471397900049687
the lambda is 20.0
the regulation term lambda/alpha is 174.34666789749636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.11486471441553676
the lambda is 20.0
the regulation term lambda/alpha is 174.11787511739786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1319260450772509
the lambda is 20.0
the regulation term lambda/alpha is 151.60008767251955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18264650099144036
the lambda is 20.0
the regulation term lambda/alpha is 109.50113958622886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16134223157761368
the lambda is 20.0
the regulation term lambda/alpha is 123.96010520270386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11892200995930838
the lambda is 20.0
the regulation term lambda/alpha is 168.1774467724134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17906047589615534
the lambda is 20.0
the regulation term lambda/alpha is 111.69410725568962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1730688338792421
the lambda is 20.0
the regulation term lambda/alpha is 115.56095659577217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15731894341972227
the lambda is 20.0
the regulation term lambda/alpha is 127.13027156965194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12298817918635273
the lambda is 20.0
the regulation term lambda/alpha is 162.61725421347876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.10688480406873224
the lambda is 20.0
the regulation term lambda/alpha is 187.1173379065092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1110054182129594
the lambda is 20.0
the regulation term lambda/alpha is 180.17138552309953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1279002956445312
the lambda is 20.0
the regulation term lambda/alpha is 156.3718042965694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15015915281976097
the lambda is 20.0
the regulation term lambda/alpha is 133.19201410257287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11664300017358648
the lambda is 20.0
the regulation term lambda/alpha is 171.46335373949813
150
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18135703625006805
the lambda is 20.0
the regulation term lambda/alpha is 110.2797024782792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16563073115333535
the lambda is 20.0
the regulation term lambda/alpha is 120.75053862730748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20471964676004503
the lambda is 20.0
the regulation term lambda/alpha is 97.69458044953693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.10496744766462235
the lambda is 20.0
the regulation term lambda/alpha is 190.53526064481693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1618727328264021
the lambda is 20.0
the regulation term lambda/alpha is 123.55385401103155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19329233011051938
the lambda is 20.0
the regulation term lambda/alpha is 103.47022040949341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14953975903272818
the lambda is 20.0
the regulation term lambda/alpha is 133.7436955186133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.142370037862773
the lambda is 20.0
the regulation term lambda/alpha is 140.47899614438194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14815853760185538
the lambda is 20.0
the regulation term lambda/alpha is 134.99053327419952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19072706893694727
the lambda is 20.0
the regulation term lambda/alpha is 104.86188516120818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12503025511281207
the lambda is 20.0
the regulation term lambda/alpha is 159.9612828267401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16311916146613403
the lambda is 20.0
the regulation term lambda/alpha is 122.609752405773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16402509553965952
the lambda is 20.0
the regulation term lambda/alpha is 121.93256119862593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1451917887866782
the lambda is 20.0
the regulation term lambda/alpha is 137.74883667412368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15114544997378468
the lambda is 20.0
the regulation term lambda/alpha is 132.32287179977226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1408385582437668
the lambda is 20.0
the regulation term lambda/alpha is 142.00656588221753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15094970740336158
the lambda is 20.0
the regulation term lambda/alpha is 132.4944602016142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12595019498706655
the lambda is 20.0
the regulation term lambda/alpha is 158.79292606139862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13674302805064686
the lambda is 20.0
the regulation term lambda/alpha is 146.2597419781607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15661674058576394
the lambda is 20.0
the regulation term lambda/alpha is 127.70026962122814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18965388771329775
the lambda is 20.0
the regulation term lambda/alpha is 105.45525979532917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14248615662375538
the lambda is 20.0
the regulation term lambda/alpha is 140.36451311415038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15051528119185004
the lambda is 20.0
the regulation term lambda/alpha is 132.8768736412057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15323251935456825
the lambda is 20.0
the regulation term lambda/alpha is 130.52059761362756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10141958171529773
the lambda is 20.0
the regulation term lambda/alpha is 197.20057667111516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1490779333432757
the lambda is 20.0
the regulation term lambda/alpha is 134.1580175648586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16181263469067358
the lambda is 20.0
the regulation term lambda/alpha is 123.59974261733433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13573048966278092
the lambda is 20.0
the regulation term lambda/alpha is 147.35082772993385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16451188220814167
the lambda is 20.0
the regulation term lambda/alpha is 121.571765708059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14213374431160747
the lambda is 20.0
the regulation term lambda/alpha is 140.71253872094528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13881643820321402
the lambda is 20.0
the regulation term lambda/alpha is 144.07515607569408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.11834053850083105
the lambda is 20.0
the regulation term lambda/alpha is 169.00379407906402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1930929712175765
the lambda is 20.0
the regulation term lambda/alpha is 103.57704826792514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15366517147810785
the lambda is 20.0
the regulation term lambda/alpha is 130.1531102176223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13873697147471528
the lambda is 20.0
the regulation term lambda/alpha is 144.1576804467365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13458710545955987
the lambda is 20.0
the regulation term lambda/alpha is 148.60264608342817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12237236485422989
the lambda is 20.0
the regulation term lambda/alpha is 163.43559286301303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14979018244269732
the lambda is 20.0
the regulation term lambda/alpha is 133.52009907358956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14925856675669769
the lambda is 20.0
the regulation term lambda/alpha is 133.9956589064764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.18083433041893346
the lambda is 20.0
the regulation term lambda/alpha is 110.5984685190395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12887181623050978
the lambda is 20.0
the regulation term lambda/alpha is 155.19297069753796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10560730074105805
the lambda is 20.0
the regulation term lambda/alpha is 189.38084639658243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15987581439191648
the lambda is 20.0
the regulation term lambda/alpha is 125.09709536786087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13981325918346257
the lambda is 20.0
the regulation term lambda/alpha is 143.04794922029572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1416773479285547
the lambda is 20.0
the regulation term lambda/alpha is 141.16582708822045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1857199327917926
the lambda is 20.0
the regulation term lambda/alpha is 107.68903315521685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18820343215193544
the lambda is 20.0
the regulation term lambda/alpha is 106.26798763082135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15646814409905613
the lambda is 20.0
the regulation term lambda/alpha is 127.82154549835072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15904599150652038
the lambda is 20.0
the regulation term lambda/alpha is 125.74978979699758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13602604301595692
the lambda is 20.0
the regulation term lambda/alpha is 147.03066822030428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15706786987836213
the lambda is 20.0
the regulation term lambda/alpha is 127.33348975502484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14757904707192698
the lambda is 20.0
the regulation term lambda/alpha is 135.52059317914157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1259110332777732
the lambda is 20.0
the regulation term lambda/alpha is 158.84231492150383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12512548237128684
the lambda is 20.0
the regulation term lambda/alpha is 159.83954364030885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1229730081082492
the lambda is 20.0
the regulation term lambda/alpha is 162.63731616937142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12374781467897161
the lambda is 20.0
the regulation term lambda/alpha is 161.6190156721902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.18598548053525665
the lambda is 20.0
the regulation term lambda/alpha is 107.53527610026885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13716078714492944
the lambda is 20.0
the regulation term lambda/alpha is 145.81426963427398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13515604210800314
the lambda is 20.0
the regulation term lambda/alpha is 147.97710622524747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1351125431577883
the lambda is 20.0
the regulation term lambda/alpha is 148.02474687078774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16502546513955998
the lambda is 20.0
the regulation term lambda/alpha is 121.19341692560144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12369208680320663
the lambda is 20.0
the regulation term lambda/alpha is 161.69183103701596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.147459775589218
the lambda is 20.0
the regulation term lambda/alpha is 135.6302077640105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11153495402871735
the lambda is 20.0
the regulation term lambda/alpha is 179.31598371260833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1883461138361438
the lambda is 20.0
the regulation term lambda/alpha is 106.18748426845418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13484324011255272
the lambda is 20.0
the regulation term lambda/alpha is 148.32037544712023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12934529514721546
the lambda is 20.0
the regulation term lambda/alpha is 154.62487427344635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14157168518857666
the lambda is 20.0
the regulation term lambda/alpha is 141.271186913962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1564451240987573
the lambda is 20.0
the regulation term lambda/alpha is 127.84035370367204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15060063181777106
the lambda is 20.0
the regulation term lambda/alpha is 132.80156768665015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1963395466980501
the lambda is 20.0
the regulation term lambda/alpha is 101.86434845323306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17035825989872802
the lambda is 20.0
the regulation term lambda/alpha is 117.39964949095685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.10787577024357961
the lambda is 20.0
the regulation term lambda/alpha is 185.39844447776102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14413336767325477
the lambda is 20.0
the regulation term lambda/alpha is 138.7603739707192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14939006268035332
the lambda is 20.0
the regulation term lambda/alpha is 133.87771342457742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1674602773945356
the lambda is 20.0
the regulation term lambda/alpha is 119.43130819543609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16019012248500997
the lambda is 20.0
the regulation term lambda/alpha is 124.85164309598134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13791869610353655
the lambda is 20.0
the regulation term lambda/alpha is 145.01297188153416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14342184247427325
the lambda is 20.0
the regulation term lambda/alpha is 139.4487733176874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1408152867892191
the lambda is 20.0
the regulation term lambda/alpha is 142.03003421025744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1766856066634866
the lambda is 20.0
the regulation term lambda/alpha is 113.19541176940221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15696012139368243
the lambda is 20.0
the regulation term lambda/alpha is 127.42090043264321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1548913567421799
the lambda is 20.0
the regulation term lambda/alpha is 129.12276333979335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14993646518825804
the lambda is 20.0
the regulation term lambda/alpha is 133.38983265270588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1251655050320141
the lambda is 20.0
the regulation term lambda/alpha is 159.78843368134469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21678917574218165
the lambda is 20.0
the regulation term lambda/alpha is 92.25552858683852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24386523689352704
the lambda is 20.0
the regulation term lambda/alpha is 82.01250926441851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15716486451492226
the lambda is 20.0
the regulation term lambda/alpha is 127.25490561601362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13540148951578695
the lambda is 20.0
the regulation term lambda/alpha is 147.708862520808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14050753060960786
the lambda is 20.0
the regulation term lambda/alpha is 142.34112515697723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.119339846561386
the lambda is 20.0
the regulation term lambda/alpha is 167.5886183556672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.10668676977585773
the lambda is 20.0
the regulation term lambda/alpha is 187.46466916205972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1308149852859038
the lambda is 20.0
the regulation term lambda/alpha is 152.8876829843984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11927626718907344
the lambda is 20.0
the regulation term lambda/alpha is 167.67795028575594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15472297880612368
the lambda is 20.0
the regulation term lambda/alpha is 129.26328173309724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14696642734996118
the lambda is 20.0
the regulation term lambda/alpha is 136.0855017069671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1342959011356732
the lambda is 20.0
the regulation term lambda/alpha is 148.92487284325148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12171670581750173
the lambda is 20.0
the regulation term lambda/alpha is 164.3159816532283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16650332084842898
the lambda is 20.0
the regulation term lambda/alpha is 120.11772436783028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13312267572542727
the lambda is 20.0
the regulation term lambda/alpha is 150.23736482919773
160
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19291728487449905
the lambda is 20.0
the regulation term lambda/alpha is 103.67137404515545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18315670600424405
the lambda is 20.0
the regulation term lambda/alpha is 109.19611100418331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12685600945657108
the lambda is 20.0
the regulation term lambda/alpha is 157.65906625690417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1351017777922169
the lambda is 20.0
the regulation term lambda/alpha is 148.03654198214542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14690224128467366
the lambda is 20.0
the regulation term lambda/alpha is 136.1449616091501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19157130523600718
the lambda is 20.0
the regulation term lambda/alpha is 104.39976892865508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17642131863152968
the lambda is 20.0
the regulation term lambda/alpha is 113.3649842044976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.10744764691207939
the lambda is 20.0
the regulation term lambda/alpha is 186.1371614435195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16551421099512234
the lambda is 20.0
the regulation term lambda/alpha is 120.83554565951678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15024301957565434
the lambda is 20.0
the regulation term lambda/alpha is 133.11766534304158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11536414600758167
the lambda is 20.0
the regulation term lambda/alpha is 173.36408834236602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17088569925028677
the lambda is 20.0
the regulation term lambda/alpha is 117.03729503255339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12586883780125752
the lambda is 20.0
the regulation term lambda/alpha is 158.89556421883628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.12643863902023628
the lambda is 20.0
the regulation term lambda/alpha is 158.17949445658803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12156502144900967
the lambda is 20.0
the regulation term lambda/alpha is 164.52100909955402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15576164374930807
the lambda is 20.0
the regulation term lambda/alpha is 128.401315744903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14624391308207427
the lambda is 20.0
the regulation term lambda/alpha is 136.75782860634823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.18828529149827203
the lambda is 20.0
the regulation term lambda/alpha is 106.2217863161316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1550093679186429
the lambda is 20.0
the regulation term lambda/alpha is 129.0244600603562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12638544753398745
the lambda is 20.0
the regulation term lambda/alpha is 158.24606701354298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18808036596864375
the lambda is 20.0
the regulation term lambda/alpha is 106.33752171310825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15208774527808036
the lambda is 20.0
the regulation term lambda/alpha is 131.50303440577403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1653458882011535
the lambda is 20.0
the regulation term lambda/alpha is 120.9585567417846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17449740998552216
the lambda is 20.0
the regulation term lambda/alpha is 114.61488168597675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17872373211527676
the lambda is 20.0
the regulation term lambda/alpha is 111.90455662094168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12123668379018848
the lambda is 20.0
the regulation term lambda/alpha is 164.96657096470807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1013780115846303
the lambda is 20.0
the regulation term lambda/alpha is 197.28143891739296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1065370211804146
the lambda is 20.0
the regulation term lambda/alpha is 187.7281697798843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16809550365461928
the lambda is 20.0
the regulation term lambda/alpha is 118.97998200530927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19864007218482035
the lambda is 20.0
the regulation term lambda/alpha is 100.68461907017146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13898025817979615
the lambda is 20.0
the regulation term lambda/alpha is 143.9053305982953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19626659576045247
the lambda is 20.0
the regulation term lambda/alpha is 101.90221072775127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11704879067332359
the lambda is 20.0
the regulation term lambda/alpha is 170.86891615838087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1541510869593503
the lambda is 20.0
the regulation term lambda/alpha is 129.74284122481737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14989370832380564
the lambda is 20.0
the regulation term lambda/alpha is 133.42788182139907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12749926029599487
the lambda is 20.0
the regulation term lambda/alpha is 156.8636551582273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1296860907477109
the lambda is 20.0
the regulation term lambda/alpha is 154.2185432893313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13987933003560354
the lambda is 20.0
the regulation term lambda/alpha is 142.9803816969197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1344234195233608
the lambda is 20.0
the regulation term lambda/alpha is 148.78359790962094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15946501050445003
the lambda is 20.0
the regulation term lambda/alpha is 125.41936276009514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17712799574655674
the lambda is 20.0
the regulation term lambda/alpha is 112.91269861494375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12940481641678486
the lambda is 20.0
the regulation term lambda/alpha is 154.55375274119888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15952823909335181
the lambda is 20.0
the regulation term lambda/alpha is 125.36965313267524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14311819221875388
the lambda is 20.0
the regulation term lambda/alpha is 139.7446382597561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11272736789211522
the lambda is 20.0
the regulation term lambda/alpha is 177.4192050606631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17464325599453717
the lambda is 20.0
the regulation term lambda/alpha is 114.5191658624688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13246119192297245
the lambda is 20.0
the regulation term lambda/alpha is 150.9876191634317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16929610514921467
the lambda is 20.0
the regulation term lambda/alpha is 118.13620864090373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.11771024987216386
the lambda is 20.0
the regulation term lambda/alpha is 169.90873795375066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18757704845603362
the lambda is 20.0
the regulation term lambda/alpha is 106.62285266039795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14937036060824224
the lambda is 20.0
the regulation term lambda/alpha is 133.89537200391817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16473009938027156
the lambda is 20.0
the regulation term lambda/alpha is 121.41072017343325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1427693922826423
the lambda is 20.0
the regulation term lambda/alpha is 140.08604841859773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1546317641125583
the lambda is 20.0
the regulation term lambda/alpha is 129.33953198284513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17929338098443248
the lambda is 20.0
the regulation term lambda/alpha is 111.54901474994519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17950203551929225
the lambda is 20.0
the regulation term lambda/alpha is 111.41934932459566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1323515027564796
the lambda is 20.0
the regulation term lambda/alpha is 151.11275341390748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14355445226684446
the lambda is 20.0
the regulation term lambda/alpha is 139.31995618515015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1329902382472017
the lambda is 20.0
the regulation term lambda/alpha is 150.38697774812678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12046471980173583
the lambda is 20.0
the regulation term lambda/alpha is 166.0237124439135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14350852744023201
the lambda is 20.0
the regulation term lambda/alpha is 139.36454060773175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14636240369784503
the lambda is 20.0
the regulation term lambda/alpha is 136.64711356673675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15157736261063098
the lambda is 20.0
the regulation term lambda/alpha is 131.9458239379426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1688214420915223
the lambda is 20.0
the regulation term lambda/alpha is 118.46836368781581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2022691225429406
the lambda is 20.0
the regulation term lambda/alpha is 98.87816661563907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16193281182007807
the lambda is 20.0
the regulation term lambda/alpha is 123.50801406586949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16306345286546328
the lambda is 20.0
the regulation term lambda/alpha is 122.65164050279954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12193028580865381
the lambda is 20.0
the regulation term lambda/alpha is 164.0281564777611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13980822458149897
the lambda is 20.0
the regulation term lambda/alpha is 143.0531004872415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13266966141016603
the lambda is 20.0
the regulation term lambda/alpha is 150.75036588935973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18468768263137383
the lambda is 20.0
the regulation term lambda/alpha is 108.29092506357811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12800829358181617
the lambda is 20.0
the regulation term lambda/alpha is 156.23987665468763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23042232033913604
the lambda is 20.0
the regulation term lambda/alpha is 86.79714695418377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17990533410937423
the lambda is 20.0
the regulation term lambda/alpha is 111.16957759485281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16591584222238298
the lambda is 20.0
the regulation term lambda/alpha is 120.54303996596829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15258060599371875
the lambda is 20.0
the regulation term lambda/alpha is 131.07825774937174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15293078217559933
the lambda is 20.0
the regulation term lambda/alpha is 130.77811880302457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1506929438140037
the lambda is 20.0
the regulation term lambda/alpha is 132.72021565047842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17840781482133541
the lambda is 20.0
the regulation term lambda/alpha is 112.1027126531917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12297867882407422
the lambda is 20.0
the regulation term lambda/alpha is 162.62981673929656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.17728263666574495
the lambda is 20.0
the regulation term lambda/alpha is 112.81420660337265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14421841383800968
the lambda is 20.0
the regulation term lambda/alpha is 138.678546433499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1814838113321977
the lambda is 20.0
the regulation term lambda/alpha is 110.20266685600363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17587808067340635
the lambda is 20.0
the regulation term lambda/alpha is 113.71513677783783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13926091636293939
the lambda is 20.0
the regulation term lambda/alpha is 143.61531233843345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.11240946717272877
the lambda is 20.0
the regulation term lambda/alpha is 177.9209572203374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16430763324739445
the lambda is 20.0
the regulation term lambda/alpha is 121.72289019516478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15623284072234267
the lambda is 20.0
the regulation term lambda/alpha is 128.01405842414425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16692823371652776
the lambda is 20.0
the regulation term lambda/alpha is 119.81196682379905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.10781103545467079
the lambda is 20.0
the regulation term lambda/alpha is 185.50976637645792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14172470743442397
the lambda is 20.0
the regulation term lambda/alpha is 141.1186543408742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13584432425981346
the lambda is 20.0
the regulation term lambda/alpha is 147.22735093258922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1772695211515945
the lambda is 20.0
the regulation term lambda/alpha is 112.82255330794695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13392570387214356
the lambda is 20.0
the regulation term lambda/alpha is 149.33653079093494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22154907938483556
the lambda is 20.0
the regulation term lambda/alpha is 90.27345117178106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1769693467029612
the lambda is 20.0
the regulation term lambda/alpha is 113.01392231259983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.18932633045514016
the lambda is 20.0
the regulation term lambda/alpha is 105.6377100423382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.161952926627573
the lambda is 20.0
the regulation term lambda/alpha is 123.49267417681193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11853271426583178
the lambda is 20.0
the regulation term lambda/alpha is 168.72979011639148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16676907825510504
the lambda is 20.0
the regulation term lambda/alpha is 119.92630893723712
170
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11080537519103845
the lambda is 20.0
the regulation term lambda/alpha is 180.49665880845762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14601696227052954
the lambda is 20.0
the regulation term lambda/alpha is 136.97038815905142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15313547346100126
the lambda is 20.0
the regulation term lambda/alpha is 130.60331187791942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.14369648066579824
the lambda is 20.0
the regulation term lambda/alpha is 139.18225350636774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1348751050264957
the lambda is 20.0
the regulation term lambda/alpha is 148.28533402121226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1449255618565958
the lambda is 20.0
the regulation term lambda/alpha is 138.00188002576144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17792998688959757
the lambda is 20.0
the regulation term lambda/alpha is 112.40376256763088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14196793897009424
the lambda is 20.0
the regulation term lambda/alpha is 140.8768778717921
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13075275301183076
the lambda is 20.0
the regulation term lambda/alpha is 152.9604504632523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1637686289277731
the lambda is 20.0
the regulation term lambda/alpha is 122.1235112667433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17507507305618145
the lambda is 20.0
the regulation term lambda/alpha is 114.23670800686753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1248385048860195
the lambda is 20.0
the regulation term lambda/alpha is 160.20698115745998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1804470218007309
the lambda is 20.0
the regulation term lambda/alpha is 110.83585531317974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13901087714105018
the lambda is 20.0
the regulation term lambda/alpha is 143.87363356974288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1301274313291927
the lambda is 20.0
the regulation term lambda/alpha is 153.6954952211772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1252565213905936
the lambda is 20.0
the regulation term lambda/alpha is 159.67232506507995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14565884278747898
the lambda is 20.0
the regulation term lambda/alpha is 137.30714604935216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16299785625367036
the lambda is 20.0
the regulation term lambda/alpha is 122.70100024428784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15850883018698167
the lambda is 20.0
the regulation term lambda/alpha is 126.17593591730765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16782843717572482
the lambda is 20.0
the regulation term lambda/alpha is 119.16931562116015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14364482210092164
the lambda is 20.0
the regulation term lambda/alpha is 139.2323072108262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20568671538643737
the lambda is 20.0
the regulation term lambda/alpha is 97.23525392694742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15013753525851214
the lambda is 20.0
the regulation term lambda/alpha is 133.21119176202865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17280955088751612
the lambda is 20.0
the regulation term lambda/alpha is 115.73434394849072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15856629934988195
the lambda is 20.0
the regulation term lambda/alpha is 126.13020598954206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14708445609319523
the lambda is 20.0
the regulation term lambda/alpha is 135.9762991361076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12520235208987793
the lambda is 20.0
the regulation term lambda/alpha is 159.74140793810946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1679633145305909
the lambda is 20.0
the regulation term lambda/alpha is 119.07362066469241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15198871699699537
the lambda is 20.0
the regulation term lambda/alpha is 131.5887152359828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16852907409505408
the lambda is 20.0
the regulation term lambda/alpha is 118.67388524735834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.18591279437381075
the lambda is 20.0
the regulation term lambda/alpha is 107.57731907243803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13070049093996267
the lambda is 20.0
the regulation term lambda/alpha is 153.021613432095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2114781927009804
the lambda is 20.0
the regulation term lambda/alpha is 94.57239890582478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1777026883618462
the lambda is 20.0
the regulation term lambda/alpha is 112.54753759985388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15135037978794394
the lambda is 20.0
the regulation term lambda/alpha is 132.1437054074253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1772737540455101
the lambda is 20.0
the regulation term lambda/alpha is 112.81985936206641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19928559800611412
the lambda is 20.0
the regulation term lambda/alpha is 100.35848149642202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1705433686554979
the lambda is 20.0
the regulation term lambda/alpha is 117.27222323373081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14666064758455302
the lambda is 20.0
the regulation term lambda/alpha is 136.36923284734283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15387424798776217
the lambda is 20.0
the regulation term lambda/alpha is 129.9762647846742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1566608639697414
the lambda is 20.0
the regulation term lambda/alpha is 127.66430296122293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20793469577325624
the lambda is 20.0
the regulation term lambda/alpha is 96.18404434923708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13567832869603755
the lambda is 20.0
the regulation term lambda/alpha is 147.4074761401752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1780252306335834
the lambda is 20.0
the regulation term lambda/alpha is 112.34362639958923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13450858504948002
the lambda is 20.0
the regulation term lambda/alpha is 148.68939400888684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14229314261146772
the lambda is 20.0
the regulation term lambda/alpha is 140.5549110304642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1656444219672361
the lambda is 20.0
the regulation term lambda/alpha is 120.74055837482973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1928319163743191
the lambda is 20.0
the regulation term lambda/alpha is 103.71727033597823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11476877547889516
the lambda is 20.0
the regulation term lambda/alpha is 174.26342588867126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1385926183585425
the lambda is 20.0
the regulation term lambda/alpha is 144.30782993261235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15337405613468516
the lambda is 20.0
the regulation term lambda/alpha is 130.40015048201525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16840981690256077
the lambda is 20.0
the regulation term lambda/alpha is 118.75792259528244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18465778400281985
the lambda is 20.0
the regulation term lambda/alpha is 108.30845884999133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11830592724504252
the lambda is 20.0
the regulation term lambda/alpha is 169.05323736294943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1777817973735222
the lambda is 20.0
the regulation term lambda/alpha is 112.49745640707918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13773466536274695
the lambda is 20.0
the regulation term lambda/alpha is 145.20672735020412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1156817186828112
the lambda is 20.0
the regulation term lambda/alpha is 172.8881644198094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14182582352993867
the lambda is 20.0
the regulation term lambda/alpha is 141.018042428487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1355812399058722
the lambda is 20.0
the regulation term lambda/alpha is 147.51303361648763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17226297453564315
the lambda is 20.0
the regulation term lambda/alpha is 116.10155957142011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14788019055754884
the lambda is 20.0
the regulation term lambda/alpha is 135.24461879981706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13957385578662063
the lambda is 20.0
the regulation term lambda/alpha is 143.29331153948945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1635416237465891
the lambda is 20.0
the regulation term lambda/alpha is 122.2930257253064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13883754381275273
the lambda is 20.0
the regulation term lambda/alpha is 144.05325426221583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.137333403644008
the lambda is 20.0
the regulation term lambda/alpha is 145.6309934023296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1470795266060934
the lambda is 20.0
the regulation term lambda/alpha is 135.98085648972582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15525294948948398
the lambda is 20.0
the regulation term lambda/alpha is 128.82202924817668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1383726427366982
the lambda is 20.0
the regulation term lambda/alpha is 144.5372409202079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16868299723479818
the lambda is 20.0
the regulation term lambda/alpha is 118.56559539406935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17395097740921656
the lambda is 20.0
the regulation term lambda/alpha is 114.97492165824603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.142910995603993
the lambda is 20.0
the regulation term lambda/alpha is 139.9472441954018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1262099415952318
the lambda is 20.0
the regulation term lambda/alpha is 158.46612198064435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1420844047458949
the lambda is 20.0
the regulation term lambda/alpha is 140.76140189887968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.156594120891824
the lambda is 20.0
the regulation term lambda/alpha is 127.71871565865553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16988630629673138
the lambda is 20.0
the regulation term lambda/alpha is 117.72579224288427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.18650711379249812
the lambda is 20.0
the regulation term lambda/alpha is 107.23451558127356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.133211245408499
the lambda is 20.0
the regulation term lambda/alpha is 150.1374747955324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1422631678728232
the lambda is 20.0
the regulation term lambda/alpha is 140.58452584072282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1579366625573035
the lambda is 20.0
the regulation term lambda/alpha is 126.63304185463261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1467544093038623
the lambda is 20.0
the regulation term lambda/alpha is 136.28210624042651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.160273907842274
the lambda is 20.0
the regulation term lambda/alpha is 124.78637520763552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13811161262062283
the lambda is 20.0
the regulation term lambda/alpha is 144.8104154350711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.11926381614041727
the lambda is 20.0
the regulation term lambda/alpha is 167.69545573196032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14763931268970906
the lambda is 20.0
the regulation term lambda/alpha is 135.46527436112933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18629212987946125
the lambda is 20.0
the regulation term lambda/alpha is 107.35826582121763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14883235066247374
the lambda is 20.0
the regulation term lambda/alpha is 134.37938667888523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14783480652911624
the lambda is 20.0
the regulation term lambda/alpha is 135.28613774768243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2159884262916087
the lambda is 20.0
the regulation term lambda/alpha is 92.5975541531922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1663030050993597
the lambda is 20.0
the regulation term lambda/alpha is 120.2624088966448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21334319602733984
the lambda is 20.0
the regulation term lambda/alpha is 93.74566600866432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1995968111132771
the lambda is 20.0
the regulation term lambda/alpha is 100.20200166749862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1583528002352434
the lambda is 20.0
the regulation term lambda/alpha is 126.30026100131288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1420294756883999
the lambda is 20.0
the regulation term lambda/alpha is 140.81584053635618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16291371789439357
the lambda is 20.0
the regulation term lambda/alpha is 122.76437035808554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16320015495526138
the lambda is 20.0
the regulation term lambda/alpha is 122.54890325001632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1327716771881124
the lambda is 20.0
the regulation term lambda/alpha is 150.63453609660874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1787726128054731
the lambda is 20.0
the regulation term lambda/alpha is 111.87395924991316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14236193115074616
the lambda is 20.0
the regulation term lambda/alpha is 140.48699563384065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1503797553484023
the lambda is 20.0
the regulation term lambda/alpha is 132.9966254677278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17579946326623813
the lambda is 20.0
the regulation term lambda/alpha is 113.7659901140378
180
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12254156730268545
the lambda is 20.0
the regulation term lambda/alpha is 163.20992492774906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13726481499360518
the lambda is 20.0
the regulation term lambda/alpha is 145.70376247497765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.206185901940588
the lambda is 20.0
the regulation term lambda/alpha is 96.99984243230632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15746747753710671
the lambda is 20.0
the regulation term lambda/alpha is 127.01035358420003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15567790946198792
the lambda is 20.0
the regulation term lambda/alpha is 128.47037880402308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1458407129263487
the lambda is 20.0
the regulation term lambda/alpha is 137.13591766450182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16750941301217068
the lambda is 20.0
the regulation term lambda/alpha is 119.39627535168347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1438484309727839
the lambda is 20.0
the regulation term lambda/alpha is 139.0352321867452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14662862673057472
the lambda is 20.0
the regulation term lambda/alpha is 136.3990132482748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16213151079440558
the lambda is 20.0
the regulation term lambda/alpha is 123.35664980857077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1875456008019616
the lambda is 20.0
the regulation term lambda/alpha is 106.64073118472643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1142799177747305
the lambda is 20.0
the regulation term lambda/alpha is 175.0088763576481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1330481663792576
the lambda is 20.0
the regulation term lambda/alpha is 150.32150043307948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17842568629197814
the lambda is 20.0
the regulation term lambda/alpha is 112.0914842231389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12737955389791855
the lambda is 20.0
the regulation term lambda/alpha is 157.01106957893666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13988371213482567
the lambda is 20.0
the regulation term lambda/alpha is 142.97590258916762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15916774315913762
the lambda is 20.0
the regulation term lambda/alpha is 125.65360042834675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11274161242515622
the lambda is 20.0
the regulation term lambda/alpha is 177.3967887258757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13449210022703148
the lambda is 20.0
the regulation term lambda/alpha is 148.7076190069059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12895158348378238
the lambda is 20.0
the regulation term lambda/alpha is 155.09697096907152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1699445236268514
the lambda is 20.0
the regulation term lambda/alpha is 117.68546330986321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1708013255150796
the lambda is 20.0
the regulation term lambda/alpha is 117.09511000389897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.16893675917567716
the lambda is 20.0
the regulation term lambda/alpha is 118.38749658505063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12831727368450319
the lambda is 20.0
the regulation term lambda/alpha is 155.86366064146975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1764956872227284
the lambda is 20.0
the regulation term lambda/alpha is 113.31721649810648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12712536986303516
the lambda is 20.0
the regulation term lambda/alpha is 157.32500933171715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09759243250420094
the lambda is 20.0
the regulation term lambda/alpha is 204.93392250612348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14900642070089623
the lambda is 20.0
the regulation term lambda/alpha is 134.22240401402854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11855140782574514
the lambda is 20.0
the regulation term lambda/alpha is 168.70318427088904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17845414819330466
the lambda is 20.0
the regulation term lambda/alpha is 112.07360659577188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14803851321564135
the lambda is 20.0
the regulation term lambda/alpha is 135.09997882015242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16245660172923446
the lambda is 20.0
the regulation term lambda/alpha is 123.10980155385678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17266405594582823
the lambda is 20.0
the regulation term lambda/alpha is 115.83186720851047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11067032521264665
the lambda is 20.0
the regulation term lambda/alpha is 180.71691721851502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15799836341894782
the lambda is 20.0
the regulation term lambda/alpha is 126.58358964749578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1533802625800177
the lambda is 20.0
the regulation term lambda/alpha is 130.39487391388514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12991809277583785
the lambda is 20.0
the regulation term lambda/alpha is 153.9431465831955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17032230390588443
the lambda is 20.0
the regulation term lambda/alpha is 117.424433214874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21101669698986258
the lambda is 20.0
the regulation term lambda/alpha is 94.77922972588665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14548829192921867
the lambda is 20.0
the regulation term lambda/alpha is 137.4681064351912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.173855795845509
the lambda is 20.0
the regulation term lambda/alpha is 115.03786746213693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1320030194028258
the lambda is 20.0
the regulation term lambda/alpha is 151.511685796877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1420558069070734
the lambda is 20.0
the regulation term lambda/alpha is 140.78973915570458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16592412164966447
the lambda is 20.0
the regulation term lambda/alpha is 120.53702500368453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16133493810552507
the lambda is 20.0
the regulation term lambda/alpha is 123.96570906990097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1303751566377328
the lambda is 20.0
the regulation term lambda/alpha is 153.40345903148588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19923095359736553
the lambda is 20.0
the regulation term lambda/alpha is 100.38600748967384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16673308045012666
the lambda is 20.0
the regulation term lambda/alpha is 119.95220112293443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19018876796921097
the lambda is 20.0
the regulation term lambda/alpha is 105.15868110170278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16855620669399488
the lambda is 20.0
the regulation term lambda/alpha is 118.65478223717369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17070905165029635
the lambda is 20.0
the regulation term lambda/alpha is 117.15840376742717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1278655484428298
the lambda is 20.0
the regulation term lambda/alpha is 156.4142980150923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13025856423719773
the lambda is 20.0
the regulation term lambda/alpha is 153.54076806481976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14522481871232948
the lambda is 20.0
the regulation term lambda/alpha is 137.71750708546082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16824690877710982
the lambda is 20.0
the regulation term lambda/alpha is 118.87291211094764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1251014218869442
the lambda is 20.0
the regulation term lambda/alpha is 159.87028523204367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16584586778086455
the lambda is 20.0
the regulation term lambda/alpha is 120.59390003268818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13029117505915935
the lambda is 20.0
the regulation term lambda/alpha is 153.50233805872807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15940336718454798
the lambda is 20.0
the regulation term lambda/alpha is 125.46786403103492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13366651839950808
the lambda is 20.0
the regulation term lambda/alpha is 149.62610113194663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1316544275526401
the lambda is 20.0
the regulation term lambda/alpha is 151.91285528170553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14270674026162064
the lambda is 20.0
the regulation term lambda/alpha is 140.14754988681338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14495712847782366
the lambda is 20.0
the regulation term lambda/alpha is 137.97182801575508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12714925261960966
the lambda is 20.0
the regulation term lambda/alpha is 157.2954585886059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19358027988474774
the lambda is 20.0
the regulation term lambda/alpha is 103.31630893346905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.11898988010452766
the lambda is 20.0
the regulation term lambda/alpha is 168.08152073462745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.11486942301156056
the lambda is 20.0
the regulation term lambda/alpha is 174.11073787658168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14522958921349177
the lambda is 20.0
the regulation term lambda/alpha is 137.7129833411524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14282587679228986
the lambda is 20.0
the regulation term lambda/alpha is 140.0306474511323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12084393626374658
the lambda is 20.0
the regulation term lambda/alpha is 165.50271878225834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13025239818101922
the lambda is 20.0
the regulation term lambda/alpha is 153.54803657591665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15179870493408026
the lambda is 20.0
the regulation term lambda/alpha is 131.75342970603833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17112087923006356
the lambda is 20.0
the regulation term lambda/alpha is 116.87644482653101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12403610360302807
the lambda is 20.0
the regulation term lambda/alpha is 161.24337526764864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16387742638334893
the lambda is 20.0
the regulation term lambda/alpha is 122.04243403978754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17743028709746067
the lambda is 20.0
the regulation term lambda/alpha is 112.72032710522642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13476605363916924
the lambda is 20.0
the regulation term lambda/alpha is 148.40532507948333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1347815290479539
the lambda is 20.0
the regulation term lambda/alpha is 148.3882854072994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1583462798993535
the lambda is 20.0
the regulation term lambda/alpha is 126.30546175579371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13569696859137304
the lambda is 20.0
the regulation term lambda/alpha is 147.3872276412187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1382043776180701
the lambda is 20.0
the regulation term lambda/alpha is 144.71321635896587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17192846062508316
the lambda is 20.0
the regulation term lambda/alpha is 116.32745344945025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17401866417193956
the lambda is 20.0
the regulation term lambda/alpha is 114.93020070674116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1753455458493822
the lambda is 20.0
the regulation term lambda/alpha is 114.06049639367254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15186287648768157
the lambda is 20.0
the regulation term lambda/alpha is 131.6977556501263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1548413401532857
the lambda is 20.0
the regulation term lambda/alpha is 129.16447235732352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14520106334027355
the lambda is 20.0
the regulation term lambda/alpha is 137.74003812307288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11867467472112503
the lambda is 20.0
the regulation term lambda/alpha is 168.52795296888934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16555651327220186
the lambda is 20.0
the regulation term lambda/alpha is 120.80467028872941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17422019800842004
the lambda is 20.0
the regulation term lambda/alpha is 114.79725214772975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18862220076470046
the lambda is 20.0
the regulation term lambda/alpha is 106.03205730246619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19975766599346054
the lambda is 20.0
the regulation term lambda/alpha is 100.12131399580299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1388348787924965
the lambda is 20.0
the regulation term lambda/alpha is 144.05601945237498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1745465245354967
the lambda is 20.0
the regulation term lambda/alpha is 114.58263092447133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16408194780734026
the lambda is 20.0
the regulation term lambda/alpha is 121.8903131469609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15751380489144703
the lambda is 20.0
the regulation term lambda/alpha is 126.97299778761166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15882384394849386
the lambda is 20.0
the regulation term lambda/alpha is 125.92567654064553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14385807355638658
the lambda is 20.0
the regulation term lambda/alpha is 139.02591287072119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12208630125405984
the lambda is 20.0
the regulation term lambda/alpha is 163.8185430679916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1368297816088797
the lambda is 20.0
the regulation term lambda/alpha is 146.1670095854489
190
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14010890313022678
the lambda is 20.0
the regulation term lambda/alpha is 142.7461035892247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1636050629185831
the lambda is 20.0
the regulation term lambda/alpha is 122.2456056262321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12989760863748942
the lambda is 20.0
the regulation term lambda/alpha is 153.96742257060959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19716962987101083
the lambda is 20.0
the regulation term lambda/alpha is 101.4355000467571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1388545795663162
the lambda is 20.0
the regulation term lambda/alpha is 144.0355806950401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23044463983337757
the lambda is 20.0
the regulation term lambda/alpha is 86.788740299887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15828227069113757
the lambda is 20.0
the regulation term lambda/alpha is 126.35653957117401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20141437514568325
the lambda is 20.0
the regulation term lambda/alpha is 99.29777845068892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15807861624638847
the lambda is 20.0
the regulation term lambda/alpha is 126.51932611066823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1501243916459654
the lambda is 20.0
the regulation term lambda/alpha is 133.22285459890824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16526818476657773
the lambda is 20.0
the regulation term lambda/alpha is 121.0154273083334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13948284026364674
the lambda is 20.0
the regulation term lambda/alpha is 143.3868134760988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16115412294563558
the lambda is 20.0
the regulation term lambda/alpha is 124.10479877543614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14131050880691573
the lambda is 20.0
the regulation term lambda/alpha is 141.53229061914752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13418390927302765
the lambda is 20.0
the regulation term lambda/alpha is 149.04916773072586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15627111016025447
the lambda is 20.0
the regulation term lambda/alpha is 127.98270889283502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24682904346567194
the lambda is 20.0
the regulation term lambda/alpha is 81.02774178915264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14886000850211747
the lambda is 20.0
the regulation term lambda/alpha is 134.35441930473561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15808658799376887
the lambda is 20.0
the regulation term lambda/alpha is 126.51294618863125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.165105741270091
the lambda is 20.0
the regulation term lambda/alpha is 121.13449142439367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21481144587648823
the lambda is 20.0
the regulation term lambda/alpha is 93.10490843909477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1488309930998238
the lambda is 20.0
the regulation term lambda/alpha is 134.3806124211347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14327793239002407
the lambda is 20.0
the regulation term lambda/alpha is 139.5888373483573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16224879357065103
the lambda is 20.0
the regulation term lambda/alpha is 123.26748051467652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14814707637006003
the lambda is 20.0
the regulation term lambda/alpha is 135.00097666484848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13149903877561264
the lambda is 20.0
the regulation term lambda/alpha is 152.09236650107843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1274020430696496
the lambda is 20.0
the regulation term lambda/alpha is 156.98335378394341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1388062044037105
the lambda is 20.0
the regulation term lambda/alpha is 144.085778340506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16124717553614534
the lambda is 20.0
the regulation term lambda/alpha is 124.03318032393553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 0.2834376104743758
the lambda is 20.0
the regulation term lambda/alpha is 70.56226577174063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15183533869215948
the lambda is 20.0
the regulation term lambda/alpha is 131.72164116911713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18072839570148663
the lambda is 20.0
the regulation term lambda/alpha is 110.66329628153439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14818551849648257
the lambda is 20.0
the regulation term lambda/alpha is 134.9659548579623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.09807576099155393
the lambda is 20.0
the regulation term lambda/alpha is 203.92398486433723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19084764375604607
the lambda is 20.0
the regulation term lambda/alpha is 104.79563491789979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2017208634939684
the lambda is 20.0
the regulation term lambda/alpha is 99.14690852291545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13327010422978183
the lambda is 20.0
the regulation term lambda/alpha is 150.07116648994565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16235552103422451
the lambda is 20.0
the regulation term lambda/alpha is 123.18644831169001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12184659930426474
the lambda is 20.0
the regulation term lambda/alpha is 164.1408140579922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18340497177302062
the lambda is 20.0
the regulation term lambda/alpha is 109.04829790956657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13058893774765207
the lambda is 20.0
the regulation term lambda/alpha is 153.15232932400195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12726086739958745
the lambda is 20.0
the regulation term lambda/alpha is 157.15750182027153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17504403660036202
the lambda is 20.0
the regulation term lambda/alpha is 114.25696292448637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15687415668567536
the lambda is 20.0
the regulation term lambda/alpha is 127.49072519365619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.17777846527807808
the lambda is 20.0
the regulation term lambda/alpha is 112.49956494289866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20521386172780196
the lambda is 20.0
the regulation term lambda/alpha is 97.45930334144889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12947835817661082
the lambda is 20.0
the regulation term lambda/alpha is 154.46596853444527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19382655661343287
the lambda is 20.0
the regulation term lambda/alpha is 103.1850348550944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15422294751978516
the lambda is 20.0
the regulation term lambda/alpha is 129.68238722991734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14104988467444285
the lambda is 20.0
the regulation term lambda/alpha is 141.79380611449622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15870877367329658
the lambda is 20.0
the regulation term lambda/alpha is 126.0169777454785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14848984870974247
the lambda is 20.0
the regulation term lambda/alpha is 134.68934188959003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20422337742108157
the lambda is 20.0
the regulation term lambda/alpha is 97.9319814046687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19382381890241487
the lambda is 20.0
the regulation term lambda/alpha is 103.18649231686776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.168707728183544
the lambda is 20.0
the regulation term lambda/alpha is 118.5482148051996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1282685709469138
the lambda is 20.0
the regulation term lambda/alpha is 155.9228410541609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2186445785235229
the lambda is 20.0
the regulation term lambda/alpha is 91.47265454765574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14923260000546365
the lambda is 20.0
the regulation term lambda/alpha is 134.0189744014898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1508162777714184
the lambda is 20.0
the regulation term lambda/alpha is 132.6116802213657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13467847235872463
the lambda is 20.0
the regulation term lambda/alpha is 148.50183291898898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15038108118922164
the lambda is 20.0
the regulation term lambda/alpha is 132.99545289765794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14239604787958818
the lambda is 20.0
the regulation term lambda/alpha is 140.453336295627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15664509722383604
the lambda is 20.0
the regulation term lambda/alpha is 127.67715271306099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15335386395098297
the lambda is 20.0
the regulation term lambda/alpha is 130.41732033822552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14160172392470727
the lambda is 20.0
the regulation term lambda/alpha is 141.2412182964272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16698481276815685
the lambda is 20.0
the regulation term lambda/alpha is 119.77137123103627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1109133851127016
the lambda is 20.0
the regulation term lambda/alpha is 180.32088714700708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14202012437028336
the lambda is 20.0
the regulation term lambda/alpha is 140.82511255837804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1610652770864027
the lambda is 20.0
the regulation term lambda/alpha is 124.1732567179647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13027432460677232
the lambda is 20.0
the regulation term lambda/alpha is 153.52219295988812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1478214506950364
the lambda is 20.0
the regulation term lambda/alpha is 135.2983610021598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23325371090823083
the lambda is 20.0
the regulation term lambda/alpha is 85.743544752729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19243368694078392
the lambda is 20.0
the regulation term lambda/alpha is 103.93190671524388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13902337087353847
the lambda is 20.0
the regulation term lambda/alpha is 143.86070395453757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13466096056832721
the lambda is 20.0
the regulation term lambda/alpha is 148.52114462566874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17661549733308773
the lambda is 20.0
the regulation term lambda/alpha is 113.24034584734673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1254294641488116
the lambda is 20.0
the regulation term lambda/alpha is 159.45216808286503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1648260312642497
the lambda is 20.0
the regulation term lambda/alpha is 121.3400568259508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14857904426732155
the lambda is 20.0
the regulation term lambda/alpha is 134.60848465289797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1847858060942969
the lambda is 20.0
the regulation term lambda/alpha is 108.23342129315887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11380124937967886
the lambda is 20.0
the regulation term lambda/alpha is 175.74499497165746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15432063346045868
the lambda is 20.0
the regulation term lambda/alpha is 129.60029745552183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12927851386400707
the lambda is 20.0
the regulation term lambda/alpha is 154.70474870277943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12044149123227037
the lambda is 20.0
the regulation term lambda/alpha is 166.0557320851348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16190500073937153
the lambda is 20.0
the regulation term lambda/alpha is 123.52922953995247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21633266824214248
the lambda is 20.0
the regulation term lambda/alpha is 92.4502071856012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23303033450196523
the lambda is 20.0
the regulation term lambda/alpha is 85.82573613321287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13583017296363833
the lambda is 20.0
the regulation term lambda/alpha is 147.2426896294536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13396183480200072
the lambda is 20.0
the regulation term lambda/alpha is 149.2962531422517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14598969318448096
the lambda is 20.0
the regulation term lambda/alpha is 136.9959725494241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.12489469258859613
the lambda is 20.0
the regulation term lambda/alpha is 160.1349071403708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15825243408051487
the lambda is 20.0
the regulation term lambda/alpha is 126.38036259097602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17026391166358207
the lambda is 20.0
the regulation term lambda/alpha is 117.46470408548602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1493708463680956
the lambda is 20.0
the regulation term lambda/alpha is 133.89493657091467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18590780696101364
the lambda is 20.0
the regulation term lambda/alpha is 107.58020508624557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15079206637105305
the lambda is 20.0
the regulation term lambda/alpha is 132.63297255166017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.12411639915368522
the lambda is 20.0
the regulation term lambda/alpha is 161.13906088457585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13592652856094914
the lambda is 20.0
the regulation term lambda/alpha is 147.13831223190584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1578164305293169
the lambda is 20.0
the regulation term lambda/alpha is 126.72951690086973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16785306740817155
the lambda is 20.0
the regulation term lambda/alpha is 119.15182908969791
200
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15244638377673891
the lambda is 20.0
the regulation term lambda/alpha is 131.19366628788282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13805184271469642
the lambda is 20.0
the regulation term lambda/alpha is 144.87311148271172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22907361060213846
the lambda is 20.0
the regulation term lambda/alpha is 87.308179879072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1753526059124879
the lambda is 20.0
the regulation term lambda/alpha is 114.05590407924288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.152305502027247
the lambda is 20.0
the regulation term lambda/alpha is 131.31501970573632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1332193453227194
the lambda is 20.0
the regulation term lambda/alpha is 150.1283462364319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16454996269334557
the lambda is 20.0
the regulation term lambda/alpha is 121.54363132413401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20634736229285675
the lambda is 20.0
the regulation term lambda/alpha is 96.92394309172302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15029723643798004
the lambda is 20.0
the regulation term lambda/alpha is 133.06964568342528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19974592840410896
the lambda is 20.0
the regulation term lambda/alpha is 100.12719738415745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1334172347748347
the lambda is 20.0
the regulation term lambda/alpha is 149.90567023633457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16343117179412067
the lambda is 20.0
the regulation term lambda/alpha is 122.37567521815619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12760703588934616
the lambda is 20.0
the regulation term lambda/alpha is 156.7311697243944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.3048591620483199
the lambda is 20.0
the regulation term lambda/alpha is 65.6040640721502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16640097949639218
the lambda is 20.0
the regulation term lambda/alpha is 120.19160019688243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14997231340772355
the lambda is 20.0
the regulation term lambda/alpha is 133.35794818092074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17529439684857354
the lambda is 20.0
the regulation term lambda/alpha is 114.09377800750138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1367163527898018
the lambda is 20.0
the regulation term lambda/alpha is 146.2882792868936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1470957620609588
the lambda is 20.0
the regulation term lambda/alpha is 135.96584782443756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13407036393993477
the lambda is 20.0
the regulation term lambda/alpha is 149.17539874032306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1483645538597843
the lambda is 20.0
the regulation term lambda/alpha is 134.80308793232047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17016258903448347
the lambda is 20.0
the regulation term lambda/alpha is 117.53464797098849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1986098087633756
the lambda is 20.0
the regulation term lambda/alpha is 100.69996101666895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17926915057454662
the lambda is 20.0
the regulation term lambda/alpha is 111.5640919583834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12750594854372485
the lambda is 20.0
the regulation term lambda/alpha is 156.85542696967994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1994149631236077
the lambda is 20.0
the regulation term lambda/alpha is 100.29337661889979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16127242410461545
the lambda is 20.0
the regulation term lambda/alpha is 124.01376187553456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16221954906982106
the lambda is 20.0
the regulation term lambda/alpha is 123.2897028421142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14784102207375902
the lambda is 20.0
the regulation term lambda/alpha is 135.2804500365389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14602129053280494
the lambda is 20.0
the regulation term lambda/alpha is 136.96632817737512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1486964780372085
the lambda is 20.0
the regulation term lambda/alpha is 134.50217694460372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19252942739911183
the lambda is 20.0
the regulation term lambda/alpha is 103.88022376724871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11962636198964835
the lambda is 20.0
the regulation term lambda/alpha is 167.18722919727898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17454003423589273
the lambda is 20.0
the regulation term lambda/alpha is 114.58689169826668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16378983412779077
the lambda is 20.0
the regulation term lambda/alpha is 122.10770043515498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15000389536785413
the lambda is 20.0
the regulation term lambda/alpha is 133.32987087404666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15121750308947352
the lambda is 20.0
the regulation term lambda/alpha is 132.25982172292746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17410459399068168
the lambda is 20.0
the regulation term lambda/alpha is 114.8734765785125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14303883017142371
the lambda is 20.0
the regulation term lambda/alpha is 139.82217259489025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18281661383088804
the lambda is 20.0
the regulation term lambda/alpha is 109.39924758972246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15857526291275864
the lambda is 20.0
the regulation term lambda/alpha is 126.12307640317866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19242571237969555
the lambda is 20.0
the regulation term lambda/alpha is 103.93621389087484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1993668877897429
the lambda is 20.0
the regulation term lambda/alpha is 100.31756136501704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1594510324327281
the lambda is 20.0
the regulation term lambda/alpha is 125.4303574888293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1395117547218183
the lambda is 20.0
the regulation term lambda/alpha is 143.3570958940293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1768176404371434
the lambda is 20.0
the regulation term lambda/alpha is 113.11088616811266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1719685773038823
the lambda is 20.0
the regulation term lambda/alpha is 116.30031668319494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1537219077509509
the lambda is 20.0
the regulation term lambda/alpha is 130.10507280720554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15399434075338736
the lambda is 20.0
the regulation term lambda/alpha is 129.87490255910632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2011884565944239
the lambda is 20.0
the regulation term lambda/alpha is 99.40928191679521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14400629049940988
the lambda is 20.0
the regulation term lambda/alpha is 138.88282192840705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1650084538756752
the lambda is 20.0
the regulation term lambda/alpha is 121.20591115330916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1698802288681662
the lambda is 20.0
the regulation term lambda/alpha is 117.73000385772256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15059750297371285
the lambda is 20.0
the regulation term lambda/alpha is 132.804326798772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16481812703609583
the lambda is 20.0
the regulation term lambda/alpha is 121.3458759643587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13613599155950998
the lambda is 20.0
the regulation term lambda/alpha is 146.91192072639566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15723393863435434
the lambda is 20.0
the regulation term lambda/alpha is 127.19900152415417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1432575456440788
the lambda is 20.0
the regulation term lambda/alpha is 139.60870200645275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17017024606951833
the lambda is 20.0
the regulation term lambda/alpha is 117.52935934422727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12568272176044631
the lambda is 20.0
the regulation term lambda/alpha is 159.13086317561124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2038570457000954
the lambda is 20.0
the regulation term lambda/alpha is 98.1079654682283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.20213314858076964
the lambda is 20.0
the regulation term lambda/alpha is 98.9446814657828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17423774588444396
the lambda is 20.0
the regulation term lambda/alpha is 114.78569065777619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1566645726667365
the lambda is 20.0
the regulation term lambda/alpha is 127.66128078327476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.18448983987871334
the lambda is 20.0
the regulation term lambda/alpha is 108.40705381471592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.17909635731937223
the lambda is 20.0
the regulation term lambda/alpha is 111.67172967306728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13700465347647556
the lambda is 20.0
the regulation term lambda/alpha is 145.98044294483842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14110564705446435
the lambda is 20.0
the regulation term lambda/alpha is 141.7377717865561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16365708848427557
the lambda is 20.0
the regulation term lambda/alpha is 122.20674451214883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14694827334657745
the lambda is 20.0
the regulation term lambda/alpha is 136.10231372253014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1225500385766222
the lambda is 20.0
the regulation term lambda/alpha is 163.19864303833214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15255123925942196
the lambda is 20.0
the regulation term lambda/alpha is 131.1034908473531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16571007339397625
the lambda is 20.0
the regulation term lambda/alpha is 120.69272308177628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16618975925610452
the lambda is 20.0
the regulation term lambda/alpha is 120.34435869889712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19384870977462848
the lambda is 20.0
the regulation term lambda/alpha is 103.17324279977055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15379547872196064
the lambda is 20.0
the regulation term lambda/alpha is 130.04283458915606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20034105454773057
the lambda is 20.0
the regulation term lambda/alpha is 99.82976302660455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13682895908182563
the lambda is 20.0
the regulation term lambda/alpha is 146.16788824681274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12377183341440867
the lambda is 20.0
the regulation term lambda/alpha is 161.58765244299707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18590345382794826
the lambda is 20.0
the regulation term lambda/alpha is 107.58272419462305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15373529845386616
the lambda is 20.0
the regulation term lambda/alpha is 130.09374035203584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20680587688047905
the lambda is 20.0
the regulation term lambda/alpha is 96.70905054385257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17175574316951298
the lambda is 20.0
the regulation term lambda/alpha is 116.44443225552672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.15551524115890591
the lambda is 20.0
the regulation term lambda/alpha is 128.60475829223674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16696779452447955
the lambda is 20.0
the regulation term lambda/alpha is 119.78357896479103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15747861565993412
the lambda is 20.0
the regulation term lambda/alpha is 127.00137041583368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15432871094971046
the lambda is 20.0
the regulation term lambda/alpha is 129.59351423933813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1462915693176265
the lambda is 20.0
the regulation term lambda/alpha is 136.71327810132544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1894051914956879
the lambda is 20.0
the regulation term lambda/alpha is 105.59372656084419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17983754937234073
the lambda is 20.0
the regulation term lambda/alpha is 111.21147985947827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15236265876344635
the lambda is 20.0
the regulation term lambda/alpha is 131.26575869912716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19793492383510014
the lambda is 20.0
the regulation term lambda/alpha is 101.04331066235703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19023990337778976
the lambda is 20.0
the regulation term lambda/alpha is 105.13041504380291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17492411547716244
the lambda is 20.0
the regulation term lambda/alpha is 114.33529302374056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1379515161934869
the lambda is 20.0
the regulation term lambda/alpha is 144.9784717983713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17886495741280725
the lambda is 20.0
the regulation term lambda/alpha is 111.81620083268442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1464798609612825
the lambda is 20.0
the regulation term lambda/alpha is 136.53754085202465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22648937262487706
the lambda is 20.0
the regulation term lambda/alpha is 88.30436398940887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1477066705746938
the lambda is 20.0
the regulation term lambda/alpha is 135.40349885475348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1996277294809795
the lambda is 20.0
the regulation term lambda/alpha is 100.18648236895163
210
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13553786045638222
the lambda is 20.0
the regulation term lambda/alpha is 147.56024576938228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14998151838623255
the lambda is 20.0
the regulation term lambda/alpha is 133.34976345882816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17351571548379152
the lambda is 20.0
the regulation term lambda/alpha is 115.26333476040816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16052137575008768
the lambda is 20.0
the regulation term lambda/alpha is 124.59399819210107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17414371934231754
the lambda is 20.0
the regulation term lambda/alpha is 114.84766763644016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16336348274925072
the lambda is 20.0
the regulation term lambda/alpha is 122.42638111907988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16724500382209673
the lambda is 20.0
the regulation term lambda/alpha is 119.58503717859679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13352058428813143
the lambda is 20.0
the regulation term lambda/alpha is 149.78963810434576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1968727951682317
the lambda is 20.0
the regulation term lambda/alpha is 101.58843929101329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1515788555353979
the lambda is 20.0
the regulation term lambda/alpha is 131.9445243820926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1579654249753044
the lambda is 20.0
the regulation term lambda/alpha is 126.60998445151341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18942933283384394
the lambda is 20.0
the regulation term lambda/alpha is 105.58026943769475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14611950791102088
the lambda is 20.0
the regulation term lambda/alpha is 136.8742633062996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12100744439807706
the lambda is 20.0
the regulation term lambda/alpha is 165.27908757585348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1821366475974623
the lambda is 20.0
the regulation term lambda/alpha is 109.80766509001377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1834678620718209
the lambda is 20.0
the regulation term lambda/alpha is 109.01091762965406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17753385966854587
the lambda is 20.0
the regulation term lambda/alpha is 112.65456649982049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17442648228360544
the lambda is 20.0
the regulation term lambda/alpha is 114.66148796993669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14712441403414034
the lambda is 20.0
the regulation term lambda/alpha is 135.93936894361383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1308197946797805
the lambda is 20.0
the regulation term lambda/alpha is 152.88206229765012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.14829866757267274
the lambda is 20.0
the regulation term lambda/alpha is 134.8629783891965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16522456673810143
the lambda is 20.0
the regulation term lambda/alpha is 121.04737446037389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18892946332045257
the lambda is 20.0
the regulation term lambda/alpha is 105.85961368067306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16263651878681226
the lambda is 20.0
the regulation term lambda/alpha is 122.9736110265399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12193888839528629
the lambda is 20.0
the regulation term lambda/alpha is 164.0165845629697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16764598257211283
the lambda is 20.0
the regulation term lambda/alpha is 119.29901148330238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16398803569227144
the lambda is 20.0
the regulation term lambda/alpha is 121.96011688029859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18804601839162471
the lambda is 20.0
the regulation term lambda/alpha is 106.35694481096638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17392286906707807
the lambda is 20.0
the regulation term lambda/alpha is 114.99350319644542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14967153488585014
the lambda is 20.0
the regulation term lambda/alpha is 133.62594307096123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12438759057949739
the lambda is 20.0
the regulation term lambda/alpha is 160.78774343022422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14876388834946097
the lambda is 20.0
the regulation term lambda/alpha is 134.44122913094364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15783319600325899
the lambda is 20.0
the regulation term lambda/alpha is 126.71605534482768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14652727362112358
the lambda is 20.0
the regulation term lambda/alpha is 136.49336062659648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18263320955388365
the lambda is 20.0
the regulation term lambda/alpha is 109.50910871496922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17291004363241447
the lambda is 20.0
the regulation term lambda/alpha is 115.66708086961997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16105928110329076
the lambda is 20.0
the regulation term lambda/alpha is 124.1778794925427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18136529947755575
the lambda is 20.0
the regulation term lambda/alpha is 110.27467799856076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2114359789934013
the lambda is 20.0
the regulation term lambda/alpha is 94.59128051533831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19874884134307802
the lambda is 20.0
the regulation term lambda/alpha is 100.62951745955704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20900190466365337
the lambda is 20.0
the regulation term lambda/alpha is 95.69290783347638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13693248227848115
the lambda is 20.0
the regulation term lambda/alpha is 146.05738293216487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16723152951265066
the lambda is 20.0
the regulation term lambda/alpha is 119.59467247763854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22496414508701035
the lambda is 20.0
the regulation term lambda/alpha is 88.90305605039644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17296664603595582
the lambda is 20.0
the regulation term lambda/alpha is 115.62922944023818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15113573379856027
the lambda is 20.0
the regulation term lambda/alpha is 132.3313785385579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15173452839300614
the lambda is 20.0
the regulation term lambda/alpha is 131.8091551858137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18838775901892138
the lambda is 20.0
the regulation term lambda/alpha is 106.16401035903415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19546450714748734
the lambda is 20.0
the regulation term lambda/alpha is 102.32036645358352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15066803020551822
the lambda is 20.0
the regulation term lambda/alpha is 132.742161510435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1659253043694423
the lambda is 20.0
the regulation term lambda/alpha is 120.53616581271318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18360223086657904
the lambda is 20.0
the regulation term lambda/alpha is 108.93113828520796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19113754644768277
the lambda is 20.0
the regulation term lambda/alpha is 104.6366889797568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15837526772641053
the lambda is 20.0
the regulation term lambda/alpha is 126.282343746686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.23835221263774808
the lambda is 20.0
the regulation term lambda/alpha is 83.90943712528633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18384958326171463
the lambda is 20.0
the regulation term lambda/alpha is 108.78458164101184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16217068649170616
the lambda is 20.0
the regulation term lambda/alpha is 123.32685044792515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18366914991431205
the lambda is 20.0
the regulation term lambda/alpha is 108.89144970361481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17791926633935318
the lambda is 20.0
the regulation term lambda/alpha is 112.41053547204454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20172890741611565
the lambda is 20.0
the regulation term lambda/alpha is 99.14295504880252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16281884679881264
the lambda is 20.0
the regulation term lambda/alpha is 122.83590255809287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17255856856338223
the lambda is 20.0
the regulation term lambda/alpha is 115.90267679262668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14908419189649258
the lambda is 20.0
the regulation term lambda/alpha is 134.15238561232414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25151060039730194
the lambda is 20.0
the regulation term lambda/alpha is 79.51951117927732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17803102271400834
the lambda is 20.0
the regulation term lambda/alpha is 112.33997139997503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12492325854626118
the lambda is 20.0
the regulation term lambda/alpha is 160.09828940375954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18139327632047395
the lambda is 20.0
the regulation term lambda/alpha is 110.25766999580122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1457024454627716
the lambda is 20.0
the regulation term lambda/alpha is 137.26605573761762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1450987935392043
the lambda is 20.0
the regulation term lambda/alpha is 137.83712126177116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15502372039698087
the lambda is 20.0
the regulation term lambda/alpha is 129.0125146576569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15687627493756517
the lambda is 20.0
the regulation term lambda/alpha is 127.48900372576895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.148928041299959
the lambda is 20.0
the regulation term lambda/alpha is 134.29304397898844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18372885227575445
the lambda is 20.0
the regulation term lambda/alpha is 108.85606562208561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17132549586192006
the lambda is 20.0
the regulation term lambda/alpha is 116.73685752013827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2119442470324322
the lambda is 20.0
the regulation term lambda/alpha is 94.36443913922115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18944998209929467
the lambda is 20.0
the regulation term lambda/alpha is 105.56876162446711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14717882308877886
the lambda is 20.0
the regulation term lambda/alpha is 135.8891148894153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15930051207081425
the lambda is 20.0
the regulation term lambda/alpha is 125.5488745140339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16554900294397393
the lambda is 20.0
the regulation term lambda/alpha is 120.81015073686984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17616072040579597
the lambda is 20.0
the regulation term lambda/alpha is 113.5326873887033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13393811588905172
the lambda is 20.0
the regulation term lambda/alpha is 149.32269180617035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14975500649227533
the lambda is 20.0
the regulation term lambda/alpha is 133.55146160693894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16692149773755874
the lambda is 20.0
the regulation term lambda/alpha is 119.81680173661557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1751546188767432
the lambda is 20.0
the regulation term lambda/alpha is 114.18482782959927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16788668170358373
the lambda is 20.0
the regulation term lambda/alpha is 119.12797249344334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1751386306488421
the lambda is 20.0
the regulation term lambda/alpha is 114.19525164668305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2035419030549551
the lambda is 20.0
the regulation term lambda/alpha is 98.25986541257856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1551202125405848
the lambda is 20.0
the regulation term lambda/alpha is 128.9322627427893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.127469722860286
the lambda is 20.0
the regulation term lambda/alpha is 156.90000379086985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22963239281464434
the lambda is 20.0
the regulation term lambda/alpha is 87.09572615107349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13351655082136618
the lambda is 20.0
the regulation term lambda/alpha is 149.79416317276127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1351278629909417
the lambda is 20.0
the regulation term lambda/alpha is 148.0079648809417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16609336804719596
the lambda is 20.0
the regulation term lambda/alpha is 120.41419976694637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14663499952893028
the lambda is 20.0
the regulation term lambda/alpha is 136.3930853087643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20614749339568963
the lambda is 20.0
the regulation term lambda/alpha is 97.01791504013593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14910881517336394
the lambda is 20.0
the regulation term lambda/alpha is 134.13023218477497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13761449284245386
the lambda is 20.0
the regulation term lambda/alpha is 145.33352982593726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.1270547047827925
the lambda is 20.0
the regulation term lambda/alpha is 157.41251010099296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1547423523729473
the lambda is 20.0
the regulation term lambda/alpha is 129.24709811698895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1836471277417604
the lambda is 20.0
the regulation term lambda/alpha is 108.9045074972447
220
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1750915515176022
the lambda is 20.0
the regulation term lambda/alpha is 114.22595680174422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20540258231057212
the lambda is 20.0
the regulation term lambda/alpha is 97.36975930399778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15903676977512013
the lambda is 20.0
the regulation term lambda/alpha is 125.75708138614885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22098354406546483
the lambda is 20.0
the regulation term lambda/alpha is 90.50447663231947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15959230632134452
the lambda is 20.0
the regulation term lambda/alpha is 125.31932435219854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17665351164455517
the lambda is 20.0
the regulation term lambda/alpha is 113.21597750200422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1512603479782742
the lambda is 20.0
the regulation term lambda/alpha is 132.22235878283604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18592988393020063
the lambda is 20.0
the regulation term lambda/alpha is 107.56743121244641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17642853355859806
the lambda is 20.0
the regulation term lambda/alpha is 113.3603482191689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1864203941971275
the lambda is 20.0
the regulation term lambda/alpha is 107.28439925328821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1776762614491645
the lambda is 20.0
the regulation term lambda/alpha is 112.56427750604298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1995866517974035
the lambda is 20.0
the regulation term lambda/alpha is 100.20710212775957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.2451482425216193
the lambda is 20.0
the regulation term lambda/alpha is 81.58328933659897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1926794433223877
the lambda is 20.0
the regulation term lambda/alpha is 103.79934493861064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15285570256387232
the lambda is 20.0
the regulation term lambda/alpha is 130.8423543547078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17133157813348399
the lambda is 20.0
the regulation term lambda/alpha is 116.73271336132824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15620559265290745
the lambda is 20.0
the regulation term lambda/alpha is 128.03638884070224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20318135595043463
the lambda is 20.0
the regulation term lambda/alpha is 98.43422840862884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19911720490743318
the lambda is 20.0
the regulation term lambda/alpha is 100.44335450217736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17220986982672387
the lambda is 20.0
the regulation term lambda/alpha is 116.13736204622785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15775843979761323
the lambda is 20.0
the regulation term lambda/alpha is 126.7761016504588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15279072062361257
the lambda is 20.0
the regulation term lambda/alpha is 130.89800164807366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1594021950668486
the lambda is 20.0
the regulation term lambda/alpha is 125.46878662249655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17786449918350508
the lambda is 20.0
the regulation term lambda/alpha is 112.44514836749825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19673145279165424
the lambda is 20.0
the regulation term lambda/alpha is 101.66142584826396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17844542945219374
the lambda is 20.0
the regulation term lambda/alpha is 112.07908244776917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1772134811461491
the lambda is 20.0
the regulation term lambda/alpha is 112.85823104792954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1244608050384916
the lambda is 20.0
the regulation term lambda/alpha is 160.69315953576438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15256476909476588
the lambda is 20.0
the regulation term lambda/alpha is 131.09186425325342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19532680950784082
the lambda is 20.0
the regulation term lambda/alpha is 102.39249824636674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16654829931591678
the lambda is 20.0
the regulation term lambda/alpha is 120.08528506234124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1527276993841795
the lambda is 20.0
the regulation term lambda/alpha is 130.95201512654833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.18039461792391084
the lambda is 20.0
the regulation term lambda/alpha is 110.86805266239072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13506203567813838
the lambda is 20.0
the regulation term lambda/alpha is 148.08010185527857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19767270628690198
the lambda is 20.0
the regulation term lambda/alpha is 101.177347018116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1853728581026752
the lambda is 20.0
the regulation term lambda/alpha is 107.89065996340362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21557328513647586
the lambda is 20.0
the regulation term lambda/alpha is 92.77587428023993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13776513792654488
the lambda is 20.0
the regulation term lambda/alpha is 145.174608765418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15118834678262058
the lambda is 20.0
the regulation term lambda/alpha is 132.2853277095232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1893441740440956
the lambda is 20.0
the regulation term lambda/alpha is 105.62775485947765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15600684545996232
the lambda is 20.0
the regulation term lambda/alpha is 128.1995026630598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17098812814035813
the lambda is 20.0
the regulation term lambda/alpha is 116.96718490059558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14462388248327707
the lambda is 20.0
the regulation term lambda/alpha is 138.28974617876554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2060668578527983
the lambda is 20.0
the regulation term lambda/alpha is 97.0558788948332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20024125402707765
the lambda is 20.0
the regulation term lambda/alpha is 99.87951831991373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16711697501545855
the lambda is 20.0
the regulation term lambda/alpha is 119.67665162769953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14980662094302175
the lambda is 20.0
the regulation term lambda/alpha is 133.50544771720675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18401247184877267
the lambda is 20.0
the regulation term lambda/alpha is 108.6882850877447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19584508700295372
the lambda is 20.0
the regulation term lambda/alpha is 102.12153036904296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23346378256379335
the lambda is 20.0
the regulation term lambda/alpha is 85.66639236445616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14207274609295323
the lambda is 20.0
the regulation term lambda/alpha is 140.77295294140862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1849923383895298
the lambda is 20.0
the regulation term lambda/alpha is 108.11258549468641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18974431114692542
the lambda is 20.0
the regulation term lambda/alpha is 105.40500465657348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19375918338786555
the lambda is 20.0
the regulation term lambda/alpha is 103.22091397321883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1519872824299164
the lambda is 20.0
the regulation term lambda/alpha is 131.5899572664726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17546704408965852
the lambda is 20.0
the regulation term lambda/alpha is 113.98151774746137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14119745166364564
the lambda is 20.0
the regulation term lambda/alpha is 141.64561586878438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18391428469887428
the lambda is 20.0
the regulation term lambda/alpha is 108.74631099344084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13804706751274892
the lambda is 20.0
the regulation term lambda/alpha is 144.8781228051292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17980427669719834
the lambda is 20.0
the regulation term lambda/alpha is 111.2320594781027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18953367643527683
the lambda is 20.0
the regulation term lambda/alpha is 105.5221445399954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15850159053381294
the lambda is 20.0
the regulation term lambda/alpha is 126.18169907723056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.146340381438611
the lambda is 20.0
the regulation term lambda/alpha is 136.66767711952352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17687873351697325
the lambda is 20.0
the regulation term lambda/alpha is 113.07181820182359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18367755255653995
the lambda is 20.0
the regulation term lambda/alpha is 108.88646827893444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15938610754236307
the lambda is 20.0
the regulation term lambda/alpha is 125.48145072608803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2684652715816332
the lambda is 20.0
the regulation term lambda/alpha is 74.49753140200306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13900986986371042
the lambda is 20.0
the regulation term lambda/alpha is 143.8746760903281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16364314753782308
the lambda is 20.0
the regulation term lambda/alpha is 122.21715544414941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14800265893153838
the lambda is 20.0
the regulation term lambda/alpha is 135.13270737420606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16893416062417313
the lambda is 20.0
the regulation term lambda/alpha is 118.38931762589975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19941747572355306
the lambda is 20.0
the regulation term lambda/alpha is 100.2921129526554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13445926374105857
the lambda is 20.0
the regulation term lambda/alpha is 148.74393510376473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13578789325140433
the lambda is 20.0
the regulation term lambda/alpha is 147.28853597405052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16186320316382832
the lambda is 20.0
the regulation term lambda/alpha is 123.5611282186056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15707301036634488
the lambda is 20.0
the regulation term lambda/alpha is 127.32932254467877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15282585467531254
the lambda is 20.0
the regulation term lambda/alpha is 130.86790872193168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14593941509777442
the lambda is 20.0
the regulation term lambda/alpha is 137.04316950017022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13016279211529133
the lambda is 20.0
the regulation term lambda/alpha is 153.65374140318883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.27630799560911223
the lambda is 20.0
the regulation term lambda/alpha is 72.38299404224851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.194217496011389
the lambda is 20.0
the regulation term lambda/alpha is 102.97733422959584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15385837484540255
the lambda is 20.0
the regulation term lambda/alpha is 129.98967407589006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16243964009478457
the lambda is 20.0
the regulation term lambda/alpha is 123.12265644229372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17985983033828704
the lambda is 20.0
the regulation term lambda/alpha is 111.19770302453449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17286693636636194
the lambda is 20.0
the regulation term lambda/alpha is 115.69592439362387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16249254715903677
the lambda is 20.0
the regulation term lambda/alpha is 123.08256809110972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1847924777837832
the lambda is 20.0
the regulation term lambda/alpha is 108.22951366776434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16170118487956783
the lambda is 20.0
the regulation term lambda/alpha is 123.68493165276213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18647527418358992
the lambda is 20.0
the regulation term lambda/alpha is 107.25282527435495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1208465064882917
the lambda is 20.0
the regulation term lambda/alpha is 165.49919878683224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.18802985806120237
the lambda is 20.0
the regulation term lambda/alpha is 106.36608571756803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12384167279271731
the lambda is 20.0
the regulation term lambda/alpha is 161.4965265648134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16311544436860928
the lambda is 20.0
the regulation term lambda/alpha is 122.61254645393282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1314526743031823
the lambda is 20.0
the regulation term lambda/alpha is 152.14601076789066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16590147941955577
the lambda is 20.0
the regulation term lambda/alpha is 120.5534758940943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16289704125787693
the lambda is 20.0
the regulation term lambda/alpha is 122.7769383996279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15371778399564742
the lambda is 20.0
the regulation term lambda/alpha is 130.10856310917356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15673334029009575
the lambda is 20.0
the regulation term lambda/alpha is 127.6052686874551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15137800375628926
the lambda is 20.0
the regulation term lambda/alpha is 132.1195913786719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15978865041669368
the lambda is 20.0
the regulation term lambda/alpha is 125.16533525907126
230
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1225255246589776
the lambda is 20.0
the regulation term lambda/alpha is 163.23129450508804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18362830626735419
the lambda is 20.0
the regulation term lambda/alpha is 108.91566995603031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23113898793831342
the lambda is 20.0
the regulation term lambda/alpha is 86.52802445140765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1768894187642826
the lambda is 20.0
the regulation term lambda/alpha is 113.06498794397298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1644572740162663
the lambda is 20.0
the regulation term lambda/alpha is 121.61213372673208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20701025539096177
the lambda is 20.0
the regulation term lambda/alpha is 96.61357096646148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16877146829964537
the lambda is 20.0
the regulation term lambda/alpha is 118.50344256347283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21791887128839574
the lambda is 20.0
the regulation term lambda/alpha is 91.77727418352781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21361634022450543
the lambda is 20.0
the regulation term lambda/alpha is 93.6257965049888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17033236415540884
the lambda is 20.0
the regulation term lambda/alpha is 117.41749783823985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18758233334273466
the lambda is 20.0
the regulation term lambda/alpha is 106.61984870109107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1723100699158908
the lambda is 20.0
the regulation term lambda/alpha is 116.06982696810779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14758022608409108
the lambda is 20.0
the regulation term lambda/alpha is 135.51951051087303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18045676788891665
the lambda is 20.0
the regulation term lambda/alpha is 110.8298693031638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16265328397516318
the lambda is 20.0
the regulation term lambda/alpha is 122.96093574756202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15430006833125823
the lambda is 20.0
the regulation term lambda/alpha is 129.6175705966838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16490596128046514
the lambda is 20.0
the regulation term lambda/alpha is 121.28124322919315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.18288848538760732
the lambda is 20.0
the regulation term lambda/alpha is 109.35625584963817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19595013330092173
the lambda is 20.0
the regulation term lambda/alpha is 102.06678435521086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.17093114549070426
the lambda is 20.0
the regulation term lambda/alpha is 117.00617779506813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17435776485130927
the lambda is 20.0
the regulation term lambda/alpha is 114.70667805965407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14754077291197243
the lambda is 20.0
the regulation term lambda/alpha is 135.5557491347334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1835612356360102
the lambda is 20.0
the regulation term lambda/alpha is 108.95546617292705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.13324663366168885
the lambda is 20.0
the regulation term lambda/alpha is 150.09760059514667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16172747051351904
the lambda is 20.0
the regulation term lambda/alpha is 123.664829088687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1753314587579816
the lambda is 20.0
the regulation term lambda/alpha is 114.0696606397769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19324856733894533
the lambda is 20.0
the regulation term lambda/alpha is 103.49365211552285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1571479586773473
the lambda is 20.0
the regulation term lambda/alpha is 127.26859558553704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18355857946275722
the lambda is 20.0
the regulation term lambda/alpha is 108.95704280636942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14830956848312243
the lambda is 20.0
the regulation term lambda/alpha is 134.8530658173683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25347772541114216
the lambda is 20.0
the regulation term lambda/alpha is 78.90239652245536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17145587749814323
the lambda is 20.0
the regulation term lambda/alpha is 116.64808632889583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.11510795783792392
the lambda is 20.0
the regulation term lambda/alpha is 173.7499333292031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16356286331901795
the lambda is 20.0
the regulation term lambda/alpha is 122.27714527711217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1803071988291574
the lambda is 20.0
the regulation term lambda/alpha is 110.92180528493579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16981069503907134
the lambda is 20.0
the regulation term lambda/alpha is 117.77821176338891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17916771104008838
the lambda is 20.0
the regulation term lambda/alpha is 111.62725629466263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16227408088117642
the lambda is 20.0
the regulation term lambda/alpha is 123.24827163645931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19821540397872972
the lambda is 20.0
the regulation term lambda/alpha is 100.90033165205556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16400282731307828
the lambda is 20.0
the regulation term lambda/alpha is 121.94911714430619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1661614025737065
the lambda is 20.0
the regulation term lambda/alpha is 120.36489636110483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2083359872684529
the lambda is 20.0
the regulation term lambda/alpha is 95.99877708227552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15377236131493288
the lambda is 20.0
the regulation term lambda/alpha is 130.06238461175138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15295632596275016
the lambda is 20.0
the regulation term lambda/alpha is 130.75627878817284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16024507221666506
the lambda is 20.0
the regulation term lambda/alpha is 124.80883014585488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19496718169825158
the lambda is 20.0
the regulation term lambda/alpha is 102.5813669038606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2178560589845668
the lambda is 20.0
the regulation term lambda/alpha is 91.80373542613668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15678157328073278
the lambda is 20.0
the regulation term lambda/alpha is 127.56601162681305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16137627986901898
the lambda is 20.0
the regulation term lambda/alpha is 123.93395123640845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17697797256745815
the lambda is 20.0
the regulation term lambda/alpha is 113.0084140407737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16388665300794603
the lambda is 20.0
the regulation term lambda/alpha is 122.03556319519383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.12547090733408722
the lambda is 20.0
the regulation term lambda/alpha is 159.39950084800665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17694106956350308
the lambda is 20.0
the regulation term lambda/alpha is 113.03198318704703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17088623697572464
the lambda is 20.0
the regulation term lambda/alpha is 117.0369267528614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2001778653533754
the lambda is 20.0
the regulation term lambda/alpha is 99.9111463432476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1409798052516671
the lambda is 20.0
the regulation term lambda/alpha is 141.86429016764086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.140509501481313
the lambda is 20.0
the regulation term lambda/alpha is 142.33912859380467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.12950709141686545
the lambda is 20.0
the regulation term lambda/alpha is 154.4316977641229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18142616592379054
the lambda is 20.0
the regulation term lambda/alpha is 110.23768207944798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21774568741502626
the lambda is 20.0
the regulation term lambda/alpha is 91.8502691714841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1499514208926283
the lambda is 20.0
the regulation term lambda/alpha is 133.3765287514072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24965565623970032
the lambda is 20.0
the regulation term lambda/alpha is 80.11034198559285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1813957715386921
the lambda is 20.0
the regulation term lambda/alpha is 110.25615332898737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1540757416527617
the lambda is 20.0
the regulation term lambda/alpha is 129.80628738477026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19330194530924258
the lambda is 20.0
the regulation term lambda/alpha is 103.46507360804979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20405270994581545
the lambda is 20.0
the regulation term lambda/alpha is 98.01389065262029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17514219774563936
the lambda is 20.0
the regulation term lambda/alpha is 114.19292584786555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17013131727178477
the lambda is 20.0
the regulation term lambda/alpha is 117.55625196300574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14450253032556615
the lambda is 20.0
the regulation term lambda/alpha is 138.4058808862359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15016347198151483
the lambda is 20.0
the regulation term lambda/alpha is 133.18818309197064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17534104094317696
the lambda is 20.0
the regulation term lambda/alpha is 114.06342686468612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19783406789471722
the lambda is 20.0
the regulation term lambda/alpha is 101.09482260984262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17806942402926798
the lambda is 20.0
the regulation term lambda/alpha is 112.31574487887794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17209973410614945
the lambda is 20.0
the regulation term lambda/alpha is 116.21168448560294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18365070359598296
the lambda is 20.0
the regulation term lambda/alpha is 108.90238702269511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1659089869910718
the lambda is 20.0
the regulation term lambda/alpha is 120.54802071135711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.20951814843464547
the lambda is 20.0
the regulation term lambda/alpha is 95.45712459481072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15787603639939884
the lambda is 20.0
the regulation term lambda/alpha is 126.68167035434996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13862791630754612
the lambda is 20.0
the regulation term lambda/alpha is 144.2710857431485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17247051621420942
the lambda is 20.0
the regulation term lambda/alpha is 115.96184924245185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1664255763767162
the lambda is 20.0
the regulation term lambda/alpha is 120.17383647047475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17204702586177018
the lambda is 20.0
the regulation term lambda/alpha is 116.24728704156061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1388957724782584
the lambda is 20.0
the regulation term lambda/alpha is 143.99286344824233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.12814156825398035
the lambda is 20.0
the regulation term lambda/alpha is 156.07737811011813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.26345282883060744
the lambda is 20.0
the regulation term lambda/alpha is 75.91491838889846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14460337188440184
the lambda is 20.0
the regulation term lambda/alpha is 138.3093612504991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14431786069979738
the lambda is 20.0
the regulation term lambda/alpha is 138.58298552251253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1378825886989889
the lambda is 20.0
the regulation term lambda/alpha is 145.05094652423406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1704066664107111
the lambda is 20.0
the regulation term lambda/alpha is 117.36630039928343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1527541445886309
the lambda is 20.0
the regulation term lambda/alpha is 130.92934436483074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18327980694177964
the lambda is 20.0
the regulation term lambda/alpha is 109.12276880754881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15575029351861602
the lambda is 20.0
the regulation term lambda/alpha is 128.4106729314735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1931622988584017
the lambda is 20.0
the regulation term lambda/alpha is 103.53987355814745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13403479415634367
the lambda is 20.0
the regulation term lambda/alpha is 149.2149864957541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2269941190359087
the lambda is 20.0
the regulation term lambda/alpha is 88.10800951559523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1527721681602372
the lambda is 20.0
the regulation term lambda/alpha is 130.9138977396899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2245742931002786
the lambda is 20.0
the regulation term lambda/alpha is 89.05738819834312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16118935899787165
the lambda is 20.0
the regulation term lambda/alpha is 124.07766942149128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1663405807501274
the lambda is 20.0
the regulation term lambda/alpha is 120.23524211475186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19308288716539393
the lambda is 20.0
the regulation term lambda/alpha is 103.58245773934429
240
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19503336181497985
the lambda is 20.0
the regulation term lambda/alpha is 102.5465582599821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16579867498927098
the lambda is 20.0
the regulation term lambda/alpha is 120.62822577619649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14077553536300919
the lambda is 20.0
the regulation term lambda/alpha is 142.07013987499485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23459201219473919
the lambda is 20.0
the regulation term lambda/alpha is 85.25439469523637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2009079327301411
the lambda is 20.0
the regulation term lambda/alpha is 99.54808517622814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15042835136913424
the lambda is 20.0
the regulation term lambda/alpha is 132.95366078248276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23831097367197612
the lambda is 20.0
the regulation term lambda/alpha is 83.92395738993145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19797101157810323
the lambda is 20.0
the regulation term lambda/alpha is 101.02489167768701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15363731041546907
the lambda is 20.0
the regulation term lambda/alpha is 130.1767125831323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15306737306471863
the lambda is 20.0
the regulation term lambda/alpha is 130.66141790741892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14907305153546124
the lambda is 20.0
the regulation term lambda/alpha is 134.1624109387902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1485434932617967
the lambda is 20.0
the regulation term lambda/alpha is 134.64070058424915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.27298018649596045
the lambda is 20.0
the regulation term lambda/alpha is 73.26539063777788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16602344311631637
the lambda is 20.0
the regulation term lambda/alpha is 120.46491522277344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14504951110232228
the lambda is 20.0
the regulation term lambda/alpha is 137.88395319644613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16581974319917991
the lambda is 20.0
the regulation term lambda/alpha is 120.61289936974714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14325238396961082
the lambda is 20.0
the regulation term lambda/alpha is 139.61373239165601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17499823762664662
the lambda is 20.0
the regulation term lambda/alpha is 114.28686523500532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14219662447528444
the lambda is 20.0
the regulation term lambda/alpha is 140.6503148285088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17646727648157015
the lambda is 20.0
the regulation term lambda/alpha is 113.33546025508448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.197112274261254
the lambda is 20.0
the regulation term lambda/alpha is 101.46501568690674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17331200571843522
the lambda is 20.0
the regulation term lambda/alpha is 115.39881450851271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19992908921285857
the lambda is 20.0
the regulation term lambda/alpha is 100.03546796887868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14522854672878646
the lambda is 20.0
the regulation term lambda/alpha is 137.71397187737404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14063291290696397
the lambda is 20.0
the regulation term lambda/alpha is 142.21421989055327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1854792708325281
the lambda is 20.0
the regulation term lambda/alpha is 107.8287611884041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24871111413385902
the lambda is 20.0
the regulation term lambda/alpha is 80.4145808668437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.198277803172321
the lambda is 20.0
the regulation term lambda/alpha is 100.86857772283379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21014213335074583
the lambda is 20.0
the regulation term lambda/alpha is 95.17367926696656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1389674193000113
the lambda is 20.0
the regulation term lambda/alpha is 143.91862568033147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2214545480916489
the lambda is 20.0
the regulation term lambda/alpha is 90.31198578826661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21733760192138368
the lambda is 20.0
the regulation term lambda/alpha is 92.02273248250198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.11835732606694671
the lambda is 20.0
the regulation term lambda/alpha is 168.97982291934642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.18477043008461172
the lambda is 20.0
the regulation term lambda/alpha is 108.24242813550535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22140223685547344
the lambda is 20.0
the regulation term lambda/alpha is 90.33332401720749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14839895084830437
the lambda is 20.0
the regulation term lambda/alpha is 134.77184229182524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2020299497076265
the lambda is 20.0
the regulation term lambda/alpha is 98.99522337625476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1529858329801463
the lambda is 20.0
the regulation term lambda/alpha is 130.73105927785807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20184498641011236
the lambda is 20.0
the regulation term lambda/alpha is 99.08593894605652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19153656837414507
the lambda is 20.0
the regulation term lambda/alpha is 104.4187027561873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22750724670489467
the lambda is 20.0
the regulation term lambda/alpha is 87.90928768059199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22619578501151527
the lambda is 20.0
the regulation term lambda/alpha is 88.418977387142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2190441882543066
the lambda is 20.0
the regulation term lambda/alpha is 91.30577788615116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15001176077350856
the lambda is 20.0
the regulation term lambda/alpha is 133.32288013202174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23033776466104589
the lambda is 20.0
the regulation term lambda/alpha is 86.82900969118568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16863814641153638
the lambda is 20.0
the regulation term lambda/alpha is 118.59712897456171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15867929013265059
the lambda is 20.0
the regulation term lambda/alpha is 126.04039243735379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16007445026794967
the lambda is 20.0
the regulation term lambda/alpha is 124.94186278023675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17047557515261777
the lambda is 20.0
the regulation term lambda/alpha is 117.31885920956745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15384376059335636
the lambda is 20.0
the regulation term lambda/alpha is 130.00202233007354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21681446034731572
the lambda is 20.0
the regulation term lambda/alpha is 92.24476987356813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17797434108379578
the lambda is 20.0
the regulation term lambda/alpha is 112.37574966260662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16032145592249183
the lambda is 20.0
the regulation term lambda/alpha is 124.74936610898229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18592742079314123
the lambda is 20.0
the regulation term lambda/alpha is 107.56885624875936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15569745788321768
the lambda is 20.0
the regulation term lambda/alpha is 128.45424884843774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1448687272737631
the lambda is 20.0
the regulation term lambda/alpha is 138.05602062207225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1991232257791816
the lambda is 20.0
the regulation term lambda/alpha is 100.44031740515831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18732137523567477
the lambda is 20.0
the regulation term lambda/alpha is 106.76838121029907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1560169201672356
the lambda is 20.0
the regulation term lambda/alpha is 128.1912242503048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.189674385165009
the lambda is 20.0
the regulation term lambda/alpha is 105.44386361184623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2854064739678571
the lambda is 20.0
the regulation term lambda/alpha is 70.07549521197066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18540061888826523
the lambda is 20.0
the regulation term lambda/alpha is 107.87450505790022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17076727641665446
the lambda is 20.0
the regulation term lambda/alpha is 117.11845746840906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17619655520479885
the lambda is 20.0
the regulation term lambda/alpha is 113.50959714708023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1637592033731489
the lambda is 20.0
the regulation term lambda/alpha is 122.13054037901689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20159997831507762
the lambda is 20.0
the regulation term lambda/alpha is 99.20635987739193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1736572005249152
the lambda is 20.0
the regulation term lambda/alpha is 115.16942539408569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1905458871567597
the lambda is 20.0
the regulation term lambda/alpha is 104.96159375797102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15763343000933192
the lambda is 20.0
the regulation term lambda/alpha is 126.87664030920344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1486632569794168
the lambda is 20.0
the regulation term lambda/alpha is 134.53223349444784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16305957386923664
the lambda is 20.0
the regulation term lambda/alpha is 122.65455824163212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18673441101782925
the lambda is 20.0
the regulation term lambda/alpha is 107.10398737429502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16610361609636487
the lambda is 20.0
the regulation term lambda/alpha is 120.40677060514454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.153275385371995
the lambda is 20.0
the regulation term lambda/alpha is 130.48409535203953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18218864062553888
the lambda is 20.0
the regulation term lambda/alpha is 109.77632815816968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19665315164719974
the lambda is 20.0
the regulation term lambda/alpha is 101.70190425363973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.172088361018766
the lambda is 20.0
the regulation term lambda/alpha is 116.21936475889282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16407284740416198
the lambda is 20.0
the regulation term lambda/alpha is 121.89707386947359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16081054640380157
the lambda is 20.0
the regulation term lambda/alpha is 124.3699523896848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20499416596741032
the lambda is 20.0
the regulation term lambda/alpha is 97.56375214687608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14190674223260155
the lambda is 20.0
the regulation term lambda/alpha is 140.93763048423511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18349970339934232
the lambda is 20.0
the regulation term lambda/alpha is 108.99200178255809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1702400743978829
the lambda is 20.0
the regulation term lambda/alpha is 117.48115166618324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1594486607782195
the lambda is 20.0
the regulation term lambda/alpha is 125.43222315186718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.14711984597328456
the lambda is 20.0
the regulation term lambda/alpha is 135.94358985144527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14880218036498222
the lambda is 20.0
the regulation term lambda/alpha is 134.40663269142945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13763866905732092
the lambda is 20.0
the regulation term lambda/alpha is 145.30800200974633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17576526422664465
the lambda is 20.0
the regulation term lambda/alpha is 113.78812581654661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1624574004737284
the lambda is 20.0
the regulation term lambda/alpha is 123.10919626732718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20910788867203406
the lambda is 20.0
the regulation term lambda/alpha is 95.64440694711479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1966478685428355
the lambda is 20.0
the regulation term lambda/alpha is 101.70463655772313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18279173656220854
the lambda is 20.0
the regulation term lambda/alpha is 109.41413641635549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1822439323148754
the lambda is 20.0
the regulation term lambda/alpha is 109.74302269468495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16608960097274214
the lambda is 20.0
the regulation term lambda/alpha is 120.41693087866656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.22682959100771433
the lambda is 20.0
the regulation term lambda/alpha is 88.17191756660979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23927944734638285
the lambda is 20.0
the regulation term lambda/alpha is 83.58427864073022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19442808523332386
the lambda is 20.0
the regulation term lambda/alpha is 102.865797274087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1414725592001867
the lambda is 20.0
the regulation term lambda/alpha is 141.3701718062481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1814343633383309
the lambda is 20.0
the regulation term lambda/alpha is 110.23270141337487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1431415602156479
the lambda is 20.0
the regulation term lambda/alpha is 139.72182481362702
250
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21284026798475342
the lambda is 20.0
the regulation term lambda/alpha is 93.96718106666111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1502740154868197
the lambda is 20.0
the regulation term lambda/alpha is 133.09020814549385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16068406988167705
the lambda is 20.0
the regulation term lambda/alpha is 124.46784559743479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14877998372091336
the lambda is 20.0
the regulation term lambda/alpha is 134.4266849599654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1505291722304771
the lambda is 20.0
the regulation term lambda/alpha is 132.86461158092166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1545336750095366
the lambda is 20.0
the regulation term lambda/alpha is 129.42162929061098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2025094249754306
the lambda is 20.0
the regulation term lambda/alpha is 98.76083546445552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18673873564786916
the lambda is 20.0
the regulation term lambda/alpha is 107.10150698307042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14207310906304377
the lambda is 20.0
the regulation term lambda/alpha is 140.7725932929726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19730400932533268
the lambda is 20.0
the regulation term lambda/alpha is 101.36641454164366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13238089660855062
the lambda is 20.0
the regulation term lambda/alpha is 151.07920034066439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1713360422092803
the lambda is 20.0
the regulation term lambda/alpha is 116.7296719482453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1881164862876147
the lambda is 20.0
the regulation term lambda/alpha is 106.31710380461624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1846459285516182
the lambda is 20.0
the regulation term lambda/alpha is 108.31541294672496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21171360970144207
the lambda is 20.0
the regulation term lambda/alpha is 94.46723821016487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17617845826669667
the lambda is 20.0
the regulation term lambda/alpha is 113.52125678001029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1831891242634344
the lambda is 20.0
the regulation term lambda/alpha is 109.17678699767721
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2056316735304648
the lambda is 20.0
the regulation term lambda/alpha is 97.26128108876648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17491924646522142
the lambda is 20.0
the regulation term lambda/alpha is 114.33847563467826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1617507219589701
the lambda is 20.0
the regulation term lambda/alpha is 123.64705243833919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13760531027443776
the lambda is 20.0
the regulation term lambda/alpha is 145.34322810734795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1739051590399655
the lambda is 20.0
the regulation term lambda/alpha is 115.0052138211941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.26481293173893666
the lambda is 20.0
the regulation term lambda/alpha is 75.52501257648856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.13942795835708052
the lambda is 20.0
the regulation term lambda/alpha is 143.44325367498539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21243521467482682
the lambda is 20.0
the regulation term lambda/alpha is 94.14634965588859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18097835277509206
the lambda is 20.0
the regulation term lambda/alpha is 110.51045439039153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1927829179329774
the lambda is 20.0
the regulation term lambda/alpha is 103.74363151279394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2119483047378418
the lambda is 20.0
the regulation term lambda/alpha is 94.36263255201753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.12117297728010634
the lambda is 20.0
the regulation term lambda/alpha is 165.0533018906313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1644964072792738
the lambda is 20.0
the regulation term lambda/alpha is 121.58320251970608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13442345623462768
the lambda is 20.0
the regulation term lambda/alpha is 148.78355727657575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14829728272072065
the lambda is 20.0
the regulation term lambda/alpha is 134.86423778691073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1834003580550351
the lambda is 20.0
the regulation term lambda/alpha is 109.0510411871626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21233158026161894
the lambda is 20.0
the regulation term lambda/alpha is 94.19230043575011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15543095918631775
the lambda is 20.0
the regulation term lambda/alpha is 128.67449383765083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17699788007502404
the lambda is 20.0
the regulation term lambda/alpha is 112.99570362945933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21683735955109196
the lambda is 20.0
the regulation term lambda/alpha is 92.23502832447807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20207352786974359
the lambda is 20.0
the regulation term lambda/alpha is 98.97387456357956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19294964301149398
the lambda is 20.0
the regulation term lambda/alpha is 103.65398809682485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16440250394110253
the lambda is 20.0
the regulation term lambda/alpha is 121.65264835117738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23819856079650725
the lambda is 20.0
the regulation term lambda/alpha is 83.96356356277894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.213903333914574
the lambda is 20.0
the regulation term lambda/alpha is 93.50017895460829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20014151920457587
the lambda is 20.0
the regulation term lambda/alpha is 99.9292904315215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2037070297209458
the lambda is 20.0
the regulation term lambda/alpha is 98.18021512265729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17281902237957722
the lambda is 20.0
the regulation term lambda/alpha is 115.72800103030491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1385739512880638
the lambda is 20.0
the regulation term lambda/alpha is 144.32726940451124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18461347734857272
the lambda is 20.0
the regulation term lambda/alpha is 108.33445253965704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.17735150194229082
the lambda is 20.0
the regulation term lambda/alpha is 112.77040104519604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18225775720889478
the lambda is 20.0
the regulation term lambda/alpha is 109.73469829916208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19000646413226946
the lambda is 20.0
the regulation term lambda/alpha is 105.25957677985825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15454534495905056
the lambda is 20.0
the regulation term lambda/alpha is 129.41185647034106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17895430678452154
the lambda is 20.0
the regulation term lambda/alpha is 111.7603725742234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21325553118265672
the lambda is 20.0
the regulation term lambda/alpha is 93.78420287195124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15239588830590808
the lambda is 20.0
the regulation term lambda/alpha is 131.23713652860172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2035977775896334
the lambda is 20.0
the regulation term lambda/alpha is 98.23289938022556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1286296688092486
the lambda is 20.0
the regulation term lambda/alpha is 155.48512396202315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16370330276434394
the lambda is 20.0
the regulation term lambda/alpha is 122.1722449228201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20530197551095655
the lambda is 20.0
the regulation term lambda/alpha is 97.41747467467813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.217116998705574
the lambda is 20.0
the regulation term lambda/alpha is 92.11623281105416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.29877402896678346
the lambda is 20.0
the regulation term lambda/alpha is 66.94022257946497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21653929542565972
the lambda is 20.0
the regulation term lambda/alpha is 92.36198889760503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1543620367314097
the lambda is 20.0
the regulation term lambda/alpha is 129.56553582407082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22534946763236313
the lambda is 20.0
the regulation term lambda/alpha is 88.75104170482513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1703781259194119
the lambda is 20.0
the regulation term lambda/alpha is 117.38596073923193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19305375757126783
the lambda is 20.0
the regulation term lambda/alpha is 103.59808714221369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19019234679738473
the lambda is 20.0
the regulation term lambda/alpha is 105.15670234253092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18024670798208264
the lambda is 20.0
the regulation term lambda/alpha is 110.9590306747133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19861175529505654
the lambda is 20.0
the regulation term lambda/alpha is 100.69897408785351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15983743200756584
the lambda is 20.0
the regulation term lambda/alpha is 125.12713542002669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16817877853252783
the lambda is 20.0
the regulation term lambda/alpha is 118.92106824959343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21977659996808024
the lambda is 20.0
the regulation term lambda/alpha is 91.00149880790195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20657791945019668
the lambda is 20.0
the regulation term lambda/alpha is 96.81576837074181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1311118379654122
the lambda is 20.0
the regulation term lambda/alpha is 152.54152722102847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16631844871283444
the lambda is 20.0
the regulation term lambda/alpha is 120.25124184829318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16428783519662032
the lambda is 20.0
the regulation term lambda/alpha is 121.73755881598855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18182517977559542
the lambda is 20.0
the regulation term lambda/alpha is 109.99576639871086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15846071754766206
the lambda is 20.0
the regulation term lambda/alpha is 126.21424608899912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1564697902709279
the lambda is 20.0
the regulation term lambda/alpha is 127.82020072609507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2474795334058717
the lambda is 20.0
the regulation term lambda/alpha is 80.81476364835218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22375315336167947
the lambda is 20.0
the regulation term lambda/alpha is 89.38421514744672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21174651490559082
the lambda is 20.0
the regulation term lambda/alpha is 94.45255809247764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18708555717719091
the lambda is 20.0
the regulation term lambda/alpha is 106.9029608793252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14960716444811686
the lambda is 20.0
the regulation term lambda/alpha is 133.68343737933697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18355971178383526
the lambda is 20.0
the regulation term lambda/alpha is 108.95637068526521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1291835639550248
the lambda is 20.0
the regulation term lambda/alpha is 154.81845668047205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19011336371481705
the lambda is 20.0
the regulation term lambda/alpha is 105.2003899631241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19132208660702077
the lambda is 20.0
the regulation term lambda/alpha is 104.5357614203758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13912740013815933
the lambda is 20.0
the regulation term lambda/alpha is 143.75313547251773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1677551691531554
the lambda is 20.0
the regulation term lambda/alpha is 119.22136349634988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15773558921916006
the lambda is 20.0
the regulation term lambda/alpha is 126.79446724107213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.2453063082543653
the lambda is 20.0
the regulation term lambda/alpha is 81.53072027508324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1189917489452677
the lambda is 20.0
the regulation term lambda/alpha is 168.07888090794717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15109247606831208
the lambda is 20.0
the regulation term lambda/alpha is 132.3692649722517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19162176748795903
the lambda is 20.0
the regulation term lambda/alpha is 104.37227597985049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17907625168440006
the lambda is 20.0
the regulation term lambda/alpha is 111.6842675222371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19473967526298977
the lambda is 20.0
the regulation term lambda/alpha is 102.70120853899255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.217020513632405
the lambda is 20.0
the regulation term lambda/alpha is 92.15718673432191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19848914849985635
the lambda is 20.0
the regulation term lambda/alpha is 100.76117586858646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18829024648369388
the lambda is 20.0
the regulation term lambda/alpha is 106.21899101784871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20258857185042053
the lambda is 20.0
the regulation term lambda/alpha is 98.72225179003098
260
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15387328981997653
the lambda is 20.0
the regulation term lambda/alpha is 129.97707414586978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15593899430631641
the lambda is 20.0
the regulation term lambda/alpha is 128.25528399082336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16733058055855185
the lambda is 20.0
the regulation term lambda/alpha is 119.52387861943535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20069809491555624
the lambda is 20.0
the regulation term lambda/alpha is 99.65216664570237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21424031741710542
the lambda is 20.0
the regulation term lambda/alpha is 93.35311038146901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18250121696933697
the lambda is 20.0
the regulation term lambda/alpha is 109.58831032540627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16378389435190233
the lambda is 20.0
the regulation term lambda/alpha is 122.11212878494914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16954623534406996
the lambda is 20.0
the regulation term lambda/alpha is 117.96192324419853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17675175451209013
the lambda is 20.0
the regulation term lambda/alpha is 113.15304934431055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14566344576473905
the lambda is 20.0
the regulation term lambda/alpha is 137.30280713187292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2078661743251467
the lambda is 20.0
the regulation term lambda/alpha is 96.21575066232646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1746396337446434
the lambda is 20.0
the regulation term lambda/alpha is 114.5215411367836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.17828171372107804
the lambda is 20.0
the regulation term lambda/alpha is 112.18200443871672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18323819158494484
the lambda is 20.0
the regulation term lambda/alpha is 109.14755175767209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1887004725943468
the lambda is 20.0
the regulation term lambda/alpha is 105.98807583802083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1790823753569261
the lambda is 20.0
the regulation term lambda/alpha is 111.68044850945456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1622567146531763
the lambda is 20.0
the regulation term lambda/alpha is 123.26146281680853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1736078470836166
the lambda is 20.0
the regulation term lambda/alpha is 115.20216589269255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17476998859166493
the lambda is 20.0
the regulation term lambda/alpha is 114.43612350818586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1886631866198969
the lambda is 20.0
the regulation term lambda/alpha is 106.00902252485727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16350604464426938
the lambda is 20.0
the regulation term lambda/alpha is 122.31963682757319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1699189531293743
the lambda is 20.0
the regulation term lambda/alpha is 117.70317337567536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18088048070373355
the lambda is 20.0
the regulation term lambda/alpha is 110.57025015738571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15677949725075532
the lambda is 20.0
the regulation term lambda/alpha is 127.56770082003592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16156717504668341
the lambda is 20.0
the regulation term lambda/alpha is 123.7875205419738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15756839538055512
the lambda is 20.0
the regulation term lambda/alpha is 126.92900725235233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14487638560245772
the lambda is 20.0
the regulation term lambda/alpha is 138.0487228255418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1872474427835398
the lambda is 20.0
the regulation term lambda/alpha is 106.81053745081171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16047896273350737
the lambda is 20.0
the regulation term lambda/alpha is 124.62692716435461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23177267319532144
the lambda is 20.0
the regulation term lambda/alpha is 86.29144982568945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13800465951411386
the lambda is 20.0
the regulation term lambda/alpha is 144.92264297753354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18746216659810386
the lambda is 20.0
the regulation term lambda/alpha is 106.6881940123821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.23377426084031896
the lambda is 20.0
the regulation term lambda/alpha is 85.55261784641523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18301885895380074
the lambda is 20.0
the regulation term lambda/alpha is 109.27835587177701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22682486047927608
the lambda is 20.0
the regulation term lambda/alpha is 88.17375642925748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.226668414053827
the lambda is 20.0
the regulation term lambda/alpha is 88.23461391162597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22771854285208715
the lambda is 20.0
the regulation term lambda/alpha is 87.82771815376866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13252366403342633
the lambda is 20.0
the regulation term lambda/alpha is 150.9164430811045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18369575297177118
the lambda is 20.0
the regulation term lambda/alpha is 108.87567990248219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1523115618469927
the lambda is 20.0
the regulation term lambda/alpha is 131.30979524779187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18888479881104192
the lambda is 20.0
the regulation term lambda/alpha is 105.88464569881963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16521675119986146
the lambda is 20.0
the regulation term lambda/alpha is 121.0531005769878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18171376377905465
the lambda is 20.0
the regulation term lambda/alpha is 110.06320921467432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17951620005688815
the lambda is 20.0
the regulation term lambda/alpha is 111.4105578976274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2059989748700875
the lambda is 20.0
the regulation term lambda/alpha is 97.08786178481192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17884602599805316
the lambda is 20.0
the regulation term lambda/alpha is 111.82803692947425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17608425178526446
the lambda is 20.0
the regulation term lambda/alpha is 113.58199155930248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18553286447918527
the lambda is 20.0
the regulation term lambda/alpha is 107.79761341012325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15789907091568003
the lambda is 20.0
the regulation term lambda/alpha is 126.66318987196723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1557790131841615
the lambda is 20.0
the regulation term lambda/alpha is 128.38699893647455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13208399581789043
the lambda is 20.0
the regulation term lambda/alpha is 151.4187988950214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15084479754993363
the lambda is 20.0
the regulation term lambda/alpha is 132.58660772427018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22629634140399404
the lambda is 20.0
the regulation term lambda/alpha is 88.37968778423657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20064235135580666
the lambda is 20.0
the regulation term lambda/alpha is 99.6798525578144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2136485464444436
the lambda is 20.0
the regulation term lambda/alpha is 93.61168298517177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18183968869370026
the lambda is 20.0
the regulation term lambda/alpha is 109.9869898792501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17261635616324583
the lambda is 20.0
the regulation term lambda/alpha is 115.86387550137894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20563174757720246
the lambda is 20.0
the regulation term lambda/alpha is 97.26124606557259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20550319114119414
the lambda is 20.0
the regulation term lambda/alpha is 97.32208969085396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22096101657720107
the lambda is 20.0
the regulation term lambda/alpha is 90.51370377368012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24288643838129978
the lambda is 20.0
the regulation term lambda/alpha is 82.34300825228713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1473719177156528
the lambda is 20.0
the regulation term lambda/alpha is 135.71106564948866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22480003240962823
the lambda is 20.0
the regulation term lambda/alpha is 88.96795870365452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22807517552645606
the lambda is 20.0
the regulation term lambda/alpha is 87.6903852154662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23635670094383493
the lambda is 20.0
the regulation term lambda/alpha is 84.61786748645035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18388740646111149
the lambda is 20.0
the regulation term lambda/alpha is 108.7622060960961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2319726458493425
the lambda is 20.0
the regulation term lambda/alpha is 86.21706204527773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14615290586766183
the lambda is 20.0
the regulation term lambda/alpha is 136.84298564757617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18329172729788507
the lambda is 20.0
the regulation term lambda/alpha is 109.11567202100764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18925722869227057
the lambda is 20.0
the regulation term lambda/alpha is 105.6762805743061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17645019802032746
the lambda is 20.0
the regulation term lambda/alpha is 113.34642989573723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.17197023171346673
the lambda is 20.0
the regulation term lambda/alpha is 116.29919783630686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24175984550877483
the lambda is 20.0
the regulation term lambda/alpha is 82.72672394338574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18414554222447282
the lambda is 20.0
the regulation term lambda/alpha is 108.60974291530806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19356945820551846
the lambda is 20.0
the regulation term lambda/alpha is 103.32208492708288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17288020935246654
the lambda is 20.0
the regulation term lambda/alpha is 115.68704176673103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19501005664913107
the lambda is 20.0
the regulation term lambda/alpha is 102.55881334358412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13470377290844476
the lambda is 20.0
the regulation term lambda/alpha is 148.4739407677435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.18499298641669396
the lambda is 20.0
the regulation term lambda/alpha is 108.11220677820886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24403910548531937
the lambda is 20.0
the regulation term lambda/alpha is 81.95407846716246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19636764637704732
the lambda is 20.0
the regulation term lambda/alpha is 101.84977194052536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17249088804119925
the lambda is 20.0
the regulation term lambda/alpha is 115.9481537089833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16514294242254984
the lambda is 20.0
the regulation term lambda/alpha is 121.1072038962838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18070846416853498
the lambda is 20.0
the regulation term lambda/alpha is 110.67550206916322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15382295700419546
the lambda is 20.0
the regulation term lambda/alpha is 130.01960428737894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15685557724063734
the lambda is 20.0
the regulation term lambda/alpha is 127.5058263903319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15615656118891683
the lambda is 20.0
the regulation term lambda/alpha is 128.07659087602588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15879680318846873
the lambda is 20.0
the regulation term lambda/alpha is 125.9471198312658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15049113894928207
the lambda is 20.0
the regulation term lambda/alpha is 132.89819015018765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1822395337316725
the lambda is 20.0
the regulation term lambda/alpha is 109.74567148227992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16576328538297672
the lambda is 20.0
the regulation term lambda/alpha is 120.65397928010619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13921771129578026
the lambda is 20.0
the regulation term lambda/alpha is 143.65988216476453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15480900931055072
the lambda is 20.0
the regulation term lambda/alpha is 129.1914475072927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19597357981346009
the lambda is 20.0
the regulation term lambda/alpha is 102.05457296354565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17206737230060073
the lambda is 20.0
the regulation term lambda/alpha is 116.23354115654251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16205268667534103
the lambda is 20.0
the regulation term lambda/alpha is 123.41665177121267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.181531063341751
the lambda is 20.0
the regulation term lambda/alpha is 110.17398142128397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18259895747689708
the lambda is 20.0
the regulation term lambda/alpha is 109.52965053226251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16855124623281317
the lambda is 20.0
the regulation term lambda/alpha is 118.65827424601056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1713150180311585
the lambda is 20.0
the regulation term lambda/alpha is 116.74399728552946
270
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1545071233416075
the lambda is 20.0
the regulation term lambda/alpha is 129.44387007828115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19499406918709844
the lambda is 20.0
the regulation term lambda/alpha is 102.56722208720016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16083836258527395
the lambda is 20.0
the regulation term lambda/alpha is 124.34844323534018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19192784555436262
the lambda is 20.0
the regulation term lambda/alpha is 104.2058276756673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14892683482307043
the lambda is 20.0
the regulation term lambda/alpha is 134.2941319055132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17715247274513407
the lambda is 20.0
the regulation term lambda/alpha is 112.89709756845237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19660127228544952
the lambda is 20.0
the regulation term lambda/alpha is 101.72874146491574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23919563707702776
the lambda is 20.0
the regulation term lambda/alpha is 83.61356521548691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16236946254129925
the lambda is 20.0
the regulation term lambda/alpha is 123.17587117043594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.13757647168236234
the lambda is 20.0
the regulation term lambda/alpha is 145.3736947562964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16983756629103808
the lambda is 20.0
the regulation term lambda/alpha is 117.75957720524256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14091924886525134
the lambda is 20.0
the regulation term lambda/alpha is 141.92525266100614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17960604044706494
the lambda is 20.0
the regulation term lambda/alpha is 111.35482943790286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17039456062666067
the lambda is 20.0
the regulation term lambda/alpha is 117.37463875869001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17076444506071095
the lambda is 20.0
the regulation term lambda/alpha is 117.12039934829238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2107043333025751
the lambda is 20.0
the regulation term lambda/alpha is 94.91973746586243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16465075487203928
the lambda is 20.0
the regulation term lambda/alpha is 121.46922749029173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15104040401665772
the lambda is 20.0
the regulation term lambda/alpha is 132.41490004088092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1919211821956452
the lambda is 20.0
the regulation term lambda/alpha is 104.20944562342224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2219377614988534
the lambda is 20.0
the regulation term lambda/alpha is 90.11535425486089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16036387543620795
the lambda is 20.0
the regulation term lambda/alpha is 124.7163673589063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14322645762313863
the lambda is 20.0
the regulation term lambda/alpha is 139.63900477539246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21278953035598494
the lambda is 20.0
the regulation term lambda/alpha is 93.98958664244957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15134994762946186
the lambda is 20.0
the regulation term lambda/alpha is 132.14408272518483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14422792678540913
the lambda is 20.0
the regulation term lambda/alpha is 138.66939951065916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14534650545424402
the lambda is 20.0
the regulation term lambda/alpha is 137.6022074799461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13675629064377212
the lambda is 20.0
the regulation term lambda/alpha is 146.2455577425447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20294978287876256
the lambda is 20.0
the regulation term lambda/alpha is 98.5465454375358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.213684466720981
the lambda is 20.0
the regulation term lambda/alpha is 93.59594689732431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16841528120069596
the lambda is 20.0
the regulation term lambda/alpha is 118.7540694491169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18604839949295227
the lambda is 20.0
the regulation term lambda/alpha is 107.49890917904737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.17406901319956408
the lambda is 20.0
the regulation term lambda/alpha is 114.89695743303085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.200980853157958
the lambda is 20.0
the regulation term lambda/alpha is 99.51196686522815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1801036918602598
the lambda is 20.0
the regulation term lambda/alpha is 111.04714064116881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.17371370178095102
the lambda is 20.0
the regulation term lambda/alpha is 115.13196595867572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14304163443624818
the lambda is 20.0
the regulation term lambda/alpha is 139.8194314461203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20228144957959387
the lambda is 20.0
the regulation term lambda/alpha is 98.8721409776648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16812833735836732
the lambda is 20.0
the regulation term lambda/alpha is 118.95674646070988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18351872340940886
the lambda is 20.0
the regulation term lambda/alpha is 108.98070577454014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18996482048993782
the lambda is 20.0
the regulation term lambda/alpha is 105.28265153736385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.14530837951133238
the lambda is 20.0
the regulation term lambda/alpha is 137.63831148113678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16495795673785169
the lambda is 20.0
the regulation term lambda/alpha is 121.24301485974182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18539979964084455
the lambda is 20.0
the regulation term lambda/alpha is 107.87498173538422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22056275616734378
the lambda is 20.0
the regulation term lambda/alpha is 90.67714036374186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2377076013585845
the lambda is 20.0
the regulation term lambda/alpha is 84.13698125635361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17043853544578802
the lambda is 20.0
the regulation term lambda/alpha is 117.34435494701532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23400087308214176
the lambda is 20.0
the regulation term lambda/alpha is 85.46976657210746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1799388623577121
the lambda is 20.0
the regulation term lambda/alpha is 111.14886321911222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1947953451763083
the lambda is 20.0
the regulation term lambda/alpha is 102.67185790244679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1822048988322837
the lambda is 20.0
the regulation term lambda/alpha is 109.76653277807661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14924660933049314
the lambda is 20.0
the regulation term lambda/alpha is 134.00639444821024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13628730308343737
the lambda is 20.0
the regulation term lambda/alpha is 146.74881333410542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1830906617336342
the lambda is 20.0
the regulation term lambda/alpha is 109.23550011030383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18038677575399842
the lambda is 20.0
the regulation term lambda/alpha is 110.87287256176086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15236943759414928
the lambda is 20.0
the regulation term lambda/alpha is 131.25991875924575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14853850760672235
the lambda is 20.0
the regulation term lambda/alpha is 134.6452197631671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18489808311353595
the lambda is 20.0
the regulation term lambda/alpha is 108.16769791885336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18330481479459318
the lambda is 20.0
the regulation term lambda/alpha is 109.10788144005657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21579394097534424
the lambda is 20.0
the regulation term lambda/alpha is 92.68100813954327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1484601245154782
the lambda is 20.0
the regulation term lambda/alpha is 134.7163089433812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1312268043354204
the lambda is 20.0
the regulation term lambda/alpha is 152.40788725510137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16818141229969114
the lambda is 20.0
the regulation term lambda/alpha is 118.9192059129636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22430915655018902
the lambda is 20.0
the regulation term lambda/alpha is 89.16265527272407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.14467801308980968
the lambda is 20.0
the regulation term lambda/alpha is 138.23800571262262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1309834387655979
the lambda is 20.0
the regulation term lambda/alpha is 152.69105917879514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19642429125089556
the lambda is 20.0
the regulation term lambda/alpha is 101.82040048424415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1923021533381449
the lambda is 20.0
the regulation term lambda/alpha is 104.0029955610113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1432526813047524
the lambda is 20.0
the regulation term lambda/alpha is 139.61344260951364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24902570877302596
the lambda is 20.0
the regulation term lambda/alpha is 80.3129929778815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.16238398906025478
the lambda is 20.0
the regulation term lambda/alpha is 123.16485212454492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.20734449804055796
the lambda is 20.0
the regulation term lambda/alpha is 96.4578283436673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16179709857212363
the lambda is 20.0
the regulation term lambda/alpha is 123.61161094050573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20610332405860834
the lambda is 20.0
the regulation term lambda/alpha is 97.03870663586542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23343072588129923
the lambda is 20.0
the regulation term lambda/alpha is 85.67852378683904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19098743563818998
the lambda is 20.0
the regulation term lambda/alpha is 104.7189305053991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14113137624324315
the lambda is 20.0
the regulation term lambda/alpha is 141.71193204783566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.2858528645438778
the lambda is 20.0
the regulation term lambda/alpha is 69.96606464627554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1744323999431431
the lambda is 20.0
the regulation term lambda/alpha is 114.65759805242074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13929883876266408
the lambda is 20.0
the regulation term lambda/alpha is 143.57621483173878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14677411557196038
the lambda is 20.0
the regulation term lambda/alpha is 136.26380865633223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2104303086500639
the lambda is 20.0
the regulation term lambda/alpha is 95.04334298753083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23832500538146184
the lambda is 20.0
the regulation term lambda/alpha is 83.91901625256695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1575954680726682
the lambda is 20.0
the regulation term lambda/alpha is 126.90720262830072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19600548660922906
the lambda is 20.0
the regulation term lambda/alpha is 102.03795998768886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17317072393437413
the lambda is 20.0
the regulation term lambda/alpha is 115.49296293049699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16776157422687152
the lambda is 20.0
the regulation term lambda/alpha is 119.21681166959664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14680585292799625
the lambda is 20.0
the regulation term lambda/alpha is 136.2343503416678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19513757892710962
the lambda is 20.0
the regulation term lambda/alpha is 102.49179122730976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16048800536170096
the lambda is 20.0
the regulation term lambda/alpha is 124.61990511331274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22563018398755794
the lambda is 20.0
the regulation term lambda/alpha is 88.64062266200551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19338172376209103
the lambda is 20.0
the regulation term lambda/alpha is 103.42238972181835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18218381809333545
the lambda is 20.0
the regulation term lambda/alpha is 109.77923401382282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17248747376065196
the lambda is 20.0
the regulation term lambda/alpha is 115.95044882941768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20352609892425344
the lambda is 20.0
the regulation term lambda/alpha is 98.26749545002298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1850887112296298
the lambda is 20.0
the regulation term lambda/alpha is 108.05629293721245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1912133527821174
the lambda is 20.0
the regulation term lambda/alpha is 104.59520587345945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17657886942481452
the lambda is 20.0
the regulation term lambda/alpha is 113.26383539065412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26274290267521055
the lambda is 20.0
the regulation term lambda/alpha is 76.12003900528946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21047711547862497
the lambda is 20.0
the regulation term lambda/alpha is 95.02220683003945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21501498898122476
the lambda is 20.0
the regulation term lambda/alpha is 93.01677103890842
280
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15018717427078623
the lambda is 20.0
the regulation term lambda/alpha is 133.167163555126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21980390055080454
the lambda is 20.0
the regulation term lambda/alpha is 90.99019603329235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16042899320569798
the lambda is 20.0
the regulation term lambda/alpha is 124.66574526436446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21939689495018125
the lambda is 20.0
the regulation term lambda/alpha is 91.15899294992953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19519945674493863
the lambda is 20.0
the regulation term lambda/alpha is 102.45930154474462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22663933479903683
the lambda is 20.0
the regulation term lambda/alpha is 88.24593496858867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23023202841270027
the lambda is 20.0
the regulation term lambda/alpha is 86.86888673955123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1451131453440808
the lambda is 20.0
the regulation term lambda/alpha is 137.8234890614326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19156843867894627
the lambda is 20.0
the regulation term lambda/alpha is 104.401331126984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18038176261301278
the lambda is 20.0
the regulation term lambda/alpha is 110.87595392283409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.27027706469944734
the lambda is 20.0
the regulation term lambda/alpha is 73.99813973205731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17148200586051157
the lambda is 20.0
the regulation term lambda/alpha is 116.63031289865235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2002349260316046
the lambda is 20.0
the regulation term lambda/alpha is 99.88267479791837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19655796678108864
the lambda is 20.0
the regulation term lambda/alpha is 101.75115426521727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1758124659130477
the lambda is 20.0
the regulation term lambda/alpha is 113.75757626817818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17248430623739414
the lambda is 20.0
the regulation term lambda/alpha is 115.95257815788491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2326237288752754
the lambda is 20.0
the regulation term lambda/alpha is 85.97575190071555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1696523424675252
the lambda is 20.0
the regulation term lambda/alpha is 117.88814530414393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17764423513397726
the lambda is 20.0
the regulation term lambda/alpha is 112.58457098208804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24846644509338822
the lambda is 20.0
the regulation term lambda/alpha is 80.49376644191464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21376395621410796
the lambda is 20.0
the regulation term lambda/alpha is 93.56114264636744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.14983710125139804
the lambda is 20.0
the regulation term lambda/alpha is 133.47828964232176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17392208377039817
the lambda is 20.0
the regulation term lambda/alpha is 114.99402241754899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1456474139211715
the lambda is 20.0
the regulation term lambda/alpha is 137.31792045977943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21966249064502796
the lambda is 20.0
the regulation term lambda/alpha is 91.04877187393713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17602399867959453
the lambda is 20.0
the regulation term lambda/alpha is 113.62087073368188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17466303401253477
the lambda is 20.0
the regulation term lambda/alpha is 114.50619825237142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1923294965968671
the lambda is 20.0
the regulation term lambda/alpha is 103.98820957723957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18720267119937162
the lambda is 20.0
the regulation term lambda/alpha is 106.83608236925166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20731776625973553
the lambda is 20.0
the regulation term lambda/alpha is 96.47026572215353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17601640566914614
the lambda is 20.0
the regulation term lambda/alpha is 113.62577212031886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15054026036594192
the lambda is 20.0
the regulation term lambda/alpha is 132.85482535623925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14720652572456505
the lambda is 20.0
the regulation term lambda/alpha is 135.8635420648509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20193093137450444
the lambda is 20.0
the regulation term lambda/alpha is 99.04376641985408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15839600024213607
the lambda is 20.0
the regulation term lambda/alpha is 126.26581460028342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1651363607751063
the lambda is 20.0
the regulation term lambda/alpha is 121.11203072494332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13731315199660724
the lambda is 20.0
the regulation term lambda/alpha is 145.6524718076107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18320054119318085
the lambda is 20.0
the regulation term lambda/alpha is 109.16998317658052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15062282198924945
the lambda is 20.0
the regulation term lambda/alpha is 132.7820029917344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1890382609851615
the lambda is 20.0
the regulation term lambda/alpha is 105.79868803157206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1941607727226784
the lambda is 20.0
the regulation term lambda/alpha is 103.0074186435495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19316283675215987
the lambda is 20.0
the regulation term lambda/alpha is 103.53958523430293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19686003833053792
the lambda is 20.0
the regulation term lambda/alpha is 101.5950223804132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1602805297495388
the lambda is 20.0
the regulation term lambda/alpha is 124.78121972302472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17214720755205695
the lambda is 20.0
the regulation term lambda/alpha is 116.17963651226839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17956638187126484
the lambda is 20.0
the regulation term lambda/alpha is 111.37942298318652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2123790364754956
the lambda is 20.0
the regulation term lambda/alpha is 94.17125311380536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2031657702085731
the lambda is 20.0
the regulation term lambda/alpha is 98.44177973222405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1888898367934815
the lambda is 20.0
the regulation term lambda/alpha is 105.88182159247961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20595687844527003
the lambda is 20.0
the regulation term lambda/alpha is 97.10770599640207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17779957804222501
the lambda is 20.0
the regulation term lambda/alpha is 112.4862062116383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15938972210113403
the lambda is 20.0
the regulation term lambda/alpha is 125.47860512178974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17279567344503863
the lambda is 20.0
the regulation term lambda/alpha is 115.74363872230533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17324093474190908
the lambda is 20.0
the regulation term lambda/alpha is 115.44615612814376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1560555073677933
the lambda is 20.0
the regulation term lambda/alpha is 128.15952693591123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21995555340509246
the lambda is 20.0
the regulation term lambda/alpha is 90.92746098192835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24364342603215502
the lambda is 20.0
the regulation term lambda/alpha is 82.08717274136707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1661024413460507
the lambda is 20.0
the regulation term lambda/alpha is 120.40762217535898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.18740389924950798
the lambda is 20.0
the regulation term lambda/alpha is 106.72136535095338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17638749124715877
the lambda is 20.0
the regulation term lambda/alpha is 113.38672520703567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22267867297857408
the lambda is 20.0
the regulation term lambda/alpha is 89.81551637827651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22463514540441792
the lambda is 20.0
the regulation term lambda/alpha is 89.03326308976875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17763682716436366
the lambda is 20.0
the regulation term lambda/alpha is 112.58926608441625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.18907434403518242
the lambda is 20.0
the regulation term lambda/alpha is 105.77849735275801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16751351987652632
the lambda is 20.0
the regulation term lambda/alpha is 119.39334815925267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17703136000969244
the lambda is 20.0
the regulation term lambda/alpha is 112.97433403271037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.18686495841544068
the lambda is 20.0
the regulation term lambda/alpha is 107.0291625010599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.24728180651961973
the lambda is 20.0
the regulation term lambda/alpha is 80.8793832489782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17022939912298937
the lambda is 20.0
the regulation term lambda/alpha is 117.48851903982907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1822039364005935
the lambda is 20.0
the regulation term lambda/alpha is 109.76711258327596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14786049283045075
the lambda is 20.0
the regulation term lambda/alpha is 135.2626358613161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14950672363450426
the lambda is 20.0
the regulation term lambda/alpha is 133.7732478767547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2366695692284494
the lambda is 20.0
the regulation term lambda/alpha is 84.50600584266351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19707408753605715
the lambda is 20.0
the regulation term lambda/alpha is 101.48467639785851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21222857930578992
the lambda is 20.0
the regulation term lambda/alpha is 94.23801481129912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20106678917278553
the lambda is 20.0
the regulation term lambda/alpha is 99.46943541637361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23586576065814305
the lambda is 20.0
the regulation term lambda/alpha is 84.79399444918764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1909678406392303
the lambda is 20.0
the regulation term lambda/alpha is 104.72967559906222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17061907151338576
the lambda is 20.0
the regulation term lambda/alpha is 117.22019011474293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1857496149414554
the lambda is 20.0
the regulation term lambda/alpha is 107.67182481806816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16114351310672378
the lambda is 20.0
the regulation term lambda/alpha is 124.11296995091695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2436193470984408
the lambda is 20.0
the regulation term lambda/alpha is 82.0952861018812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16430064186954474
the lambda is 20.0
the regulation term lambda/alpha is 121.72806978977032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15782511792187026
the lambda is 20.0
the regulation term lambda/alpha is 126.7225411477329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15964306727484884
the lambda is 20.0
the regulation term lambda/alpha is 125.2794771574207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18649349084713637
the lambda is 20.0
the regulation term lambda/alpha is 107.24234883025196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18085921494425047
the lambda is 20.0
the regulation term lambda/alpha is 110.58325121097624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2386090681754734
the lambda is 20.0
the regulation term lambda/alpha is 83.81911112151018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.18093000785941352
the lambda is 20.0
the regulation term lambda/alpha is 110.53998303885791
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.15107806692186496
the lambda is 20.0
the regulation term lambda/alpha is 132.38188975732436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16823803619289315
the lambda is 20.0
the regulation term lambda/alpha is 118.87918126355814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16645144689751634
the lambda is 20.0
the regulation term lambda/alpha is 120.1551585929676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17733177676897524
the lambda is 20.0
the regulation term lambda/alpha is 112.78294485288811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20914583764206662
the lambda is 20.0
the regulation term lambda/alpha is 95.62705251743098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1977433136766242
the lambda is 20.0
the regulation term lambda/alpha is 101.1412200399687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1947917012355424
the lambda is 20.0
the regulation term lambda/alpha is 102.67377857035075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19828042918035893
the lambda is 20.0
the regulation term lambda/alpha is 100.8672418285301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1600362952027687
the lambda is 20.0
the regulation term lambda/alpha is 124.97165080371086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19902467282755207
the lambda is 20.0
the regulation term lambda/alpha is 100.49005339820005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.228540843891613
the lambda is 20.0
the regulation term lambda/alpha is 87.51170976460178
290
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18399606559749082
the lambda is 20.0
the regulation term lambda/alpha is 108.69797642169118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.14772741970824915
the lambda is 20.0
the regulation term lambda/alpha is 135.38448068407703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20262235209190657
the lambda is 20.0
the regulation term lambda/alpha is 98.70579328251154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20886743668304777
the lambda is 20.0
the regulation term lambda/alpha is 95.7545145265971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18472634397893026
the lambda is 20.0
the regulation term lambda/alpha is 108.26826087285734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1545343853612391
the lambda is 20.0
the regulation term lambda/alpha is 129.421034375282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18378658532076994
the lambda is 20.0
the regulation term lambda/alpha is 108.82187056848146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23471738688874708
the lambda is 20.0
the regulation term lambda/alpha is 85.20885591436706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1499477957745161
the lambda is 20.0
the regulation term lambda/alpha is 133.37975324475582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2220952145944053
the lambda is 20.0
the regulation term lambda/alpha is 90.05146750471143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22002925382195337
the lambda is 20.0
the regulation term lambda/alpha is 90.89700416011003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24318197640659725
the lambda is 20.0
the regulation term lambda/alpha is 82.24293714333602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1809988473600522
the lambda is 20.0
the regulation term lambda/alpha is 110.49794123945426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1735542445074926
the lambda is 20.0
the regulation term lambda/alpha is 115.23774631243069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19820594485617765
the lambda is 20.0
the regulation term lambda/alpha is 100.9051469899776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23909450262428011
the lambda is 20.0
the regulation term lambda/alpha is 83.64893287165438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15889987540813227
the lambda is 20.0
the regulation term lambda/alpha is 125.86542279300257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15513338481052336
the lambda is 20.0
the regulation term lambda/alpha is 128.9213151922623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2618430593115141
the lambda is 20.0
the regulation term lambda/alpha is 76.38163124349249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22654697369669913
the lambda is 20.0
the regulation term lambda/alpha is 88.28191201872323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22329358437316532
the lambda is 20.0
the regulation term lambda/alpha is 89.5681801881789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19324606720648727
the lambda is 20.0
the regulation term lambda/alpha is 103.49499107078645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19171910203538658
the lambda is 20.0
the regulation term lambda/alpha is 104.31928685076198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16362794026092112
the lambda is 20.0
the regulation term lambda/alpha is 122.22851407961257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21011192509629295
the lambda is 20.0
the regulation term lambda/alpha is 95.18736259655005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19588900994159827
the lambda is 20.0
the regulation term lambda/alpha is 102.09863231205638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17970656183056624
the lambda is 20.0
the regulation term lambda/alpha is 111.29254155369526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16299954324323607
the lambda is 20.0
the regulation term lambda/alpha is 122.6997303308697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15699526328241137
the lambda is 20.0
the regulation term lambda/alpha is 127.39237848229182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20361743204381025
the lambda is 20.0
the regulation term lambda/alpha is 98.22341731378287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21108737529446642
the lambda is 20.0
the regulation term lambda/alpha is 94.74749483288636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1528081639457025
the lambda is 20.0
the regulation term lambda/alpha is 130.88305940974868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2001239718340493
the lambda is 20.0
the regulation term lambda/alpha is 99.93805248171263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1803741661663967
the lambda is 20.0
the regulation term lambda/alpha is 110.88062345663087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2028763346318067
the lambda is 20.0
the regulation term lambda/alpha is 98.58222269392492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1788623421069736
the lambda is 20.0
the regulation term lambda/alpha is 111.81783579708714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2348006079099106
the lambda is 20.0
the regulation term lambda/alpha is 85.17865510669245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16734536492032218
the lambda is 20.0
the regulation term lambda/alpha is 119.51331911417182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2219588750891239
the lambda is 20.0
the regulation term lambda/alpha is 90.10678213236272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17797832275461045
the lambda is 20.0
the regulation term lambda/alpha is 112.37323563035942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19305002645983493
the lambda is 20.0
the regulation term lambda/alpha is 103.60008940045965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19905278628651524
the lambda is 20.0
the regulation term lambda/alpha is 100.47586056500678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19020429710261685
the lambda is 20.0
the regulation term lambda/alpha is 105.15009547449829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19342711130437076
the lambda is 20.0
the regulation term lambda/alpha is 103.39812172725175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17951388282712893
the lambda is 20.0
the regulation term lambda/alpha is 111.41199602517601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.22710640811596108
the lambda is 20.0
the regulation term lambda/alpha is 88.06444593931472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.3064134374704163
the lambda is 20.0
the regulation term lambda/alpha is 65.27128890008606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20110570074000664
the lambda is 20.0
the regulation term lambda/alpha is 99.4501892607032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22593643449104858
the lambda is 20.0
the regulation term lambda/alpha is 88.52047278276574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16474318334075116
the lambda is 20.0
the regulation term lambda/alpha is 121.40107769213395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21194138500809642
the lambda is 20.0
the regulation term lambda/alpha is 94.36571342230295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2062219763766653
the lambda is 20.0
the regulation term lambda/alpha is 96.98287423775784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18238320726364662
the lambda is 20.0
the regulation term lambda/alpha is 109.65921863128943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20652722586347172
the lambda is 20.0
the regulation term lambda/alpha is 96.83953249447768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15037650153285761
the lambda is 20.0
the regulation term lambda/alpha is 132.99950322111965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1627465488515458
the lambda is 20.0
the regulation term lambda/alpha is 122.89047074198548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21920243901408676
the lambda is 20.0
the regulation term lambda/alpha is 91.23986069659894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22193031504087773
the lambda is 20.0
the regulation term lambda/alpha is 90.11837790757052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17711425387465932
the lambda is 20.0
the regulation term lambda/alpha is 112.92145924152244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.22641343072452286
the lambda is 20.0
the regulation term lambda/alpha is 88.33398237904885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19544633874030704
the lambda is 20.0
the regulation term lambda/alpha is 102.3298780059234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15655639674451471
the lambda is 20.0
the regulation term lambda/alpha is 127.74949101976405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17667996627678553
the lambda is 20.0
the regulation term lambda/alpha is 113.19902545525817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17267669117718087
the lambda is 20.0
the regulation term lambda/alpha is 115.82339147023792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25013697006776275
the lambda is 20.0
the regulation term lambda/alpha is 79.95619357898974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22011461961999726
the lambda is 20.0
the regulation term lambda/alpha is 90.86175209319451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21897505008301346
the lambda is 20.0
the regulation term lambda/alpha is 91.33460635089705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1871267006066148
the lambda is 20.0
the regulation term lambda/alpha is 106.87945619286474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22487789060993052
the lambda is 20.0
the regulation term lambda/alpha is 88.93715583045766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15448250841940095
the lambda is 20.0
the regulation term lambda/alpha is 129.46449539583128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20035818582417245
the lambda is 20.0
the regulation term lambda/alpha is 99.82122725722483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19177998364433205
the lambda is 20.0
the regulation term lambda/alpha is 104.28617012029393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18030908862464498
the lambda is 20.0
the regulation term lambda/alpha is 110.92064272830207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24773478796861761
the lambda is 20.0
the regulation term lambda/alpha is 80.73149582259536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21732561922440982
the lambda is 20.0
the regulation term lambda/alpha is 92.02780634596078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.181376438248463
the lambda is 20.0
the regulation term lambda/alpha is 110.26790576073891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15863074936206048
the lambda is 20.0
the regulation term lambda/alpha is 126.07896060776837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18459409943967545
the lambda is 20.0
the regulation term lambda/alpha is 108.34582503291723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2000110668550825
the lambda is 20.0
the regulation term lambda/alpha is 99.99446687863002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19434795683560854
the lambda is 20.0
the regulation term lambda/alpha is 102.90820817281465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19009178510271493
the lambda is 20.0
the regulation term lambda/alpha is 105.21233197527775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1810670380954447
the lambda is 20.0
the regulation term lambda/alpha is 110.45632717235662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1691060174380723
the lambda is 20.0
the regulation term lambda/alpha is 118.2690025050358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1655517611976393
the lambda is 20.0
the regulation term lambda/alpha is 120.80813792203372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18312439795788835
the lambda is 20.0
the regulation term lambda/alpha is 109.21537612153264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19065572388895755
the lambda is 20.0
the regulation term lambda/alpha is 104.90112540050714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1980134951840848
the lambda is 20.0
the regulation term lambda/alpha is 101.00321688381312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17557081498875415
the lambda is 20.0
the regulation term lambda/alpha is 113.91414912143036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1986106361303919
the lambda is 20.0
the regulation term lambda/alpha is 100.69954152339352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17099934998808797
the lambda is 20.0
the regulation term lambda/alpha is 116.95950891856154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1794444481899861
the lambda is 20.0
the regulation term lambda/alpha is 111.45510603273209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16026247928263926
the lambda is 20.0
the regulation term lambda/alpha is 124.79527391266646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.153250593612009
the lambda is 20.0
the regulation term lambda/alpha is 130.505204114477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16343365551801362
the lambda is 20.0
the regulation term lambda/alpha is 122.373815458075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19864520404115163
the lambda is 20.0
the regulation term lambda/alpha is 100.68201795527251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18728207488847295
the lambda is 20.0
the regulation term lambda/alpha is 106.79078610117952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2175854502218759
the lambda is 20.0
the regulation term lambda/alpha is 91.91791077760774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.20685249518415105
the lambda is 20.0
the regulation term lambda/alpha is 96.68725524531352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18841550779579996
the lambda is 20.0
the regulation term lambda/alpha is 106.14837512035103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19470901048506592
the lambda is 20.0
the regulation term lambda/alpha is 102.7173829817906
300
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16079052819642764
the lambda is 20.0
the regulation term lambda/alpha is 124.38543628370486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22525051518462527
the lambda is 20.0
the regulation term lambda/alpha is 88.79002999663338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20213944525885022
the lambda is 20.0
the regulation term lambda/alpha is 98.94159932213599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1924180604586789
the lambda is 20.0
the regulation term lambda/alpha is 103.94034713958116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.22553054221609847
the lambda is 20.0
the regulation term lambda/alpha is 88.67978502369064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16662638487727902
the lambda is 20.0
the regulation term lambda/alpha is 120.02900989978315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23464703226640823
the lambda is 20.0
the regulation term lambda/alpha is 85.23440423185431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17314265074615254
the lambda is 20.0
the regulation term lambda/alpha is 115.51168885199955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2814239911961138
the lambda is 20.0
the regulation term lambda/alpha is 71.06714646109455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1833381336121142
the lambda is 20.0
the regulation term lambda/alpha is 109.08805280146304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1694463003593976
the lambda is 20.0
the regulation term lambda/alpha is 118.03149409328952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22399649933775367
the lambda is 20.0
the regulation term lambda/alpha is 89.28710966077622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16202330507492738
the lambda is 20.0
the regulation term lambda/alpha is 123.43903237099772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16217748685928843
the lambda is 20.0
the regulation term lambda/alpha is 123.32167915114375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17576444991630602
the lambda is 20.0
the regulation term lambda/alpha is 113.78865299281752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15019410530911156
the lambda is 20.0
the regulation term lambda/alpha is 133.1610182625902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21889759374264625
the lambda is 20.0
the regulation term lambda/alpha is 91.36692486219661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2068974914124072
the lambda is 20.0
the regulation term lambda/alpha is 96.66622762541935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16125760140838033
the lambda is 20.0
the regulation term lambda/alpha is 124.02516114170993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18642289901500306
the lambda is 20.0
the regulation term lambda/alpha is 107.28295775719285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15360035342737152
the lambda is 20.0
the regulation term lambda/alpha is 130.20803372992765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2094297080504885
the lambda is 20.0
the regulation term lambda/alpha is 95.49743532650334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1598161254692172
the lambda is 20.0
the regulation term lambda/alpha is 125.14381725423745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22709068103476174
the lambda is 20.0
the regulation term lambda/alpha is 88.07054480997621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1788911674212563
the lambda is 20.0
the regulation term lambda/alpha is 111.79981822637237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19701720339020024
the lambda is 20.0
the regulation term lambda/alpha is 101.51397774330002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20091063609053755
the lambda is 20.0
the regulation term lambda/alpha is 99.54674570333489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2315198499571674
the lambda is 20.0
the regulation term lambda/alpha is 86.38568141651838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18168233791407878
the lambda is 20.0
the regulation term lambda/alpha is 110.0822470121361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20395645337300738
the lambda is 20.0
the regulation term lambda/alpha is 98.06014798376025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19389091034148542
the lambda is 20.0
the regulation term lambda/alpha is 103.15078703161231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21818058968532442
the lambda is 20.0
the regulation term lambda/alpha is 91.66718280872476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19603877797500263
the lambda is 20.0
the regulation term lambda/alpha is 102.02063186983469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17173783294923514
the lambda is 20.0
the regulation term lambda/alpha is 116.45657602953393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25983984365678947
the lambda is 20.0
the regulation term lambda/alpha is 76.97048966215159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15851719979427983
the lambda is 20.0
the regulation term lambda/alpha is 126.1692739081662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2661132585854712
the lambda is 20.0
the regulation term lambda/alpha is 75.15596970369039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17803488815135968
the lambda is 20.0
the regulation term lambda/alpha is 112.33753230994044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18501969864750192
the lambda is 20.0
the regulation term lambda/alpha is 108.096598071451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18442118482255296
the lambda is 20.0
the regulation term lambda/alpha is 108.44741085056835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18237126941961027
the lambda is 20.0
the regulation term lambda/alpha is 109.66639681595271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21827253432689278
the lambda is 20.0
the regulation term lambda/alpha is 91.6285691265548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20645809750601266
the lambda is 20.0
the regulation term lambda/alpha is 96.87195727170518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1867193268116024
the lambda is 20.0
the regulation term lambda/alpha is 107.11263981890725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21887330477865996
the lambda is 20.0
the regulation term lambda/alpha is 91.37706409753991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21516165067354423
the lambda is 20.0
the regulation term lambda/alpha is 92.95336756058431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21959431158088247
the lambda is 20.0
the regulation term lambda/alpha is 91.0770404570952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1654445179673338
the lambda is 20.0
the regulation term lambda/alpha is 120.88644728590462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1772963442220136
the lambda is 20.0
the regulation term lambda/alpha is 112.80548444335462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19290656209112694
the lambda is 20.0
the regulation term lambda/alpha is 103.67713665723937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16296240053977976
the lambda is 20.0
the regulation term lambda/alpha is 122.727696289169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2256473567561268
the lambda is 20.0
the regulation term lambda/alpha is 88.6338767159388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18295986729997443
the lambda is 20.0
the regulation term lambda/alpha is 109.31359043461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1897353999133613
the lambda is 20.0
the regulation term lambda/alpha is 105.40995517511536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17391184906968615
the lambda is 20.0
the regulation term lambda/alpha is 115.00078980809431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17225511199117047
the lambda is 20.0
the regulation term lambda/alpha is 116.10685900006943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16362690955895748
the lambda is 20.0
the regulation term lambda/alpha is 122.22928400901974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18962192263591948
the lambda is 20.0
the regulation term lambda/alpha is 105.47303667203437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17348735403460638
the lambda is 20.0
the regulation term lambda/alpha is 115.28217783533952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.22073384394753073
the lambda is 20.0
the regulation term lambda/alpha is 90.60685775378458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1490446163994101
the lambda is 20.0
the regulation term lambda/alpha is 134.18800680733045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.16014183717017058
the lambda is 20.0
the regulation term lambda/alpha is 124.88928785516254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19063493552630734
the lambda is 20.0
the regulation term lambda/alpha is 104.91256466074147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16231064961265135
the lambda is 20.0
the regulation term lambda/alpha is 123.22050369294496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22920218521806587
the lambda is 20.0
the regulation term lambda/alpha is 87.25920296515388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21889752592251316
the lambda is 20.0
the regulation term lambda/alpha is 91.36695317004056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18957881473119384
the lambda is 20.0
the regulation term lambda/alpha is 105.49701995108603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17759750954013725
the lambda is 20.0
the regulation term lambda/alpha is 112.61419178561158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19192849406572085
the lambda is 20.0
the regulation term lambda/alpha is 104.2054755723323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15826134149471158
the lambda is 20.0
the regulation term lambda/alpha is 126.37324953212477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20616614512655743
the lambda is 20.0
the regulation term lambda/alpha is 97.0091378859646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17800227406723002
the lambda is 20.0
the regulation term lambda/alpha is 112.35811511287862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.1871577226699147
the lambda is 20.0
the regulation term lambda/alpha is 106.86174053994816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21788060056945185
the lambda is 20.0
the regulation term lambda/alpha is 91.79339485813827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14903716069840967
the lambda is 20.0
the regulation term lambda/alpha is 134.19471966774668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16192590688326966
the lambda is 20.0
the regulation term lambda/alpha is 123.51328076499672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16836507070359966
the lambda is 20.0
the regulation term lambda/alpha is 118.78948475725849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2059109396216647
the lambda is 20.0
the regulation term lambda/alpha is 97.12937076945727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21634854478675306
the lambda is 20.0
the regulation term lambda/alpha is 92.44342280976873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17562784275806495
the lambda is 20.0
the regulation term lambda/alpha is 113.8771602834687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21142419175773391
the lambda is 20.0
the regulation term lambda/alpha is 94.59655412999065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20867915430236364
the lambda is 20.0
the regulation term lambda/alpha is 95.8409097777979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18227687802161643
the lambda is 20.0
the regulation term lambda/alpha is 109.72318714844444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19708393693962606
the lambda is 20.0
the regulation term lambda/alpha is 101.47960463224724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.17368943733333203
the lambda is 20.0
the regulation term lambda/alpha is 115.14804991634273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2390445989040455
the lambda is 20.0
the regulation term lambda/alpha is 83.66639569224556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19112638800854928
the lambda is 20.0
the regulation term lambda/alpha is 104.64279793277619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17813506414961439
the lambda is 20.0
the regulation term lambda/alpha is 112.2743581982385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19882372432837087
the lambda is 20.0
the regulation term lambda/alpha is 100.59161736135998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20089078957191386
the lambda is 20.0
the regulation term lambda/alpha is 99.55658018278882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1486503886221978
the lambda is 20.0
the regulation term lambda/alpha is 134.5438796721277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2533614696932849
the lambda is 20.0
the regulation term lambda/alpha is 78.93860113856958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18329892688478283
the lambda is 20.0
the regulation term lambda/alpha is 109.11138619251986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2700487669288399
the lambda is 20.0
the regulation term lambda/alpha is 74.06069736015557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1899266921794928
the lambda is 20.0
the regulation term lambda/alpha is 105.30378732178798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.193038278377281
the lambda is 20.0
the regulation term lambda/alpha is 103.60639438003729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2650661371833456
the lambda is 20.0
the regulation term lambda/alpha is 75.45286701849075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2298836816096116
the lambda is 20.0
the regulation term lambda/alpha is 87.00052069795888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18978708328338248
the lambda is 20.0
the regulation term lambda/alpha is 105.38124962981175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1546296712185269
the lambda is 20.0
the regulation term lambda/alpha is 129.34128257787893
310
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2056562833081422
the lambda is 20.0
the regulation term lambda/alpha is 97.24964235609218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16741790080551014
the lambda is 20.0
the regulation term lambda/alpha is 119.46153848407201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.13182363950579318
the lambda is 20.0
the regulation term lambda/alpha is 151.717856334266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17752149969709352
the lambda is 20.0
the regulation term lambda/alpha is 112.66241009751593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2161556216806398
the lambda is 20.0
the regulation term lambda/alpha is 92.52593036672948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20033196284762228
the lambda is 20.0
the regulation term lambda/alpha is 99.83429361800104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20245195035866376
the lambda is 20.0
the regulation term lambda/alpha is 98.78887293784037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20780044004884066
the lambda is 20.0
the regulation term lambda/alpha is 96.2461869440665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24381841450838773
the lambda is 20.0
the regulation term lambda/alpha is 82.02825877744344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1949485634623338
the lambda is 20.0
the regulation term lambda/alpha is 102.591163765432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19972505139136684
the lambda is 20.0
the regulation term lambda/alpha is 100.13766355633294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16429775819438638
the lambda is 20.0
the regulation term lambda/alpha is 121.73020630225098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19796606889921256
the lambda is 20.0
the regulation term lambda/alpha is 101.02741399680112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17463314649627323
the lambda is 20.0
the regulation term lambda/alpha is 114.52579536741503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21027190141344038
the lambda is 20.0
the regulation term lambda/alpha is 95.11494339262973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20098146833383432
the lambda is 20.0
the regulation term lambda/alpha is 99.5116622731584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21993332923475822
the lambda is 20.0
the regulation term lambda/alpha is 90.936649163583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21062910065979457
the lambda is 20.0
the regulation term lambda/alpha is 94.95364096105479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.17927520778202122
the lambda is 20.0
the regulation term lambda/alpha is 111.56032251998717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17791615555121226
the lambda is 20.0
the regulation term lambda/alpha is 112.41250092234093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1985470960186606
the lambda is 20.0
the regulation term lambda/alpha is 100.73176793338888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21640313692371985
the lambda is 20.0
the regulation term lambda/alpha is 92.42010205725354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23383316555072864
the lambda is 20.0
the regulation term lambda/alpha is 85.53106636047796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18198652150351619
the lambda is 20.0
the regulation term lambda/alpha is 109.89824869867397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19434560446736113
the lambda is 20.0
the regulation term lambda/alpha is 102.90945377855896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17504012543309277
the lambda is 20.0
the regulation term lambda/alpha is 114.25951592821949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16893402527389279
the lambda is 20.0
the regulation term lambda/alpha is 118.38941247965882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2856804635617466
the lambda is 20.0
the regulation term lambda/alpha is 70.00828740841506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16486706841751197
the lambda is 20.0
the regulation term lambda/alpha is 121.30985400523822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19304002562344583
the lambda is 20.0
the regulation term lambda/alpha is 103.60545661661415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19858589457582623
the lambda is 20.0
the regulation term lambda/alpha is 100.7120875463961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19407133130542706
the lambda is 20.0
the regulation term lambda/alpha is 103.05489154667697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2108773821708731
the lambda is 20.0
the regulation term lambda/alpha is 94.84184502913679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22963099775908452
the lambda is 20.0
the regulation term lambda/alpha is 87.09625527553051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16983755713126708
the lambda is 20.0
the regulation term lambda/alpha is 117.75958355631577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23916597195789394
the lambda is 20.0
the regulation term lambda/alpha is 83.6239362827128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23668662072792307
the lambda is 20.0
the regulation term lambda/alpha is 84.4999178174523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25547680502502956
the lambda is 20.0
the regulation term lambda/alpha is 78.2849934186415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18642815320969963
the lambda is 20.0
the regulation term lambda/alpha is 107.27993414977102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20040365339146596
the lambda is 20.0
the regulation term lambda/alpha is 99.79857982395288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17924956106897863
the lambda is 20.0
the regulation term lambda/alpha is 111.57628437541122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20089155517874352
the lambda is 20.0
the regulation term lambda/alpha is 99.55620076814566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14706348841498335
the lambda is 20.0
the regulation term lambda/alpha is 135.99568605066716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15677799030416623
the lambda is 20.0
the regulation term lambda/alpha is 127.56892699796599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2110758373425219
the lambda is 20.0
the regulation term lambda/alpha is 94.75267397634498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.20187206290954712
the lambda is 20.0
the regulation term lambda/alpha is 99.07264884374518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21512764206462187
the lambda is 20.0
the regulation term lambda/alpha is 92.968062160939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16318957724791083
the lambda is 20.0
the regulation term lambda/alpha is 122.55684668890851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19230394952007596
the lambda is 20.0
the regulation term lambda/alpha is 104.00202413893771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2163396195339442
the lambda is 20.0
the regulation term lambda/alpha is 92.44723663231714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23650363893254017
the lambda is 20.0
the regulation term lambda/alpha is 84.56529502154832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.250568954281994
the lambda is 20.0
the regulation term lambda/alpha is 79.81834803641199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19910266762541698
the lambda is 20.0
the regulation term lambda/alpha is 100.45068827318337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2177444501308952
the lambda is 20.0
the regulation term lambda/alpha is 91.85079109009287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21842411299903933
the lambda is 20.0
the regulation term lambda/alpha is 91.5649821138931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20419003304322828
the lambda is 20.0
the regulation term lambda/alpha is 97.94797376699518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17567741223427025
the lambda is 20.0
the regulation term lambda/alpha is 113.84502848510483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19407747307520426
the lambda is 20.0
the regulation term lambda/alpha is 103.05163027473095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19589701524125225
the lambda is 20.0
the regulation term lambda/alpha is 102.09446006805913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19609833806732316
the lambda is 20.0
the regulation term lambda/alpha is 101.98964558860123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1590934191371628
the lambda is 20.0
the regulation term lambda/alpha is 125.71230229678419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21716163143048434
the lambda is 20.0
the regulation term lambda/alpha is 92.09730037602064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19245473079466202
the lambda is 20.0
the regulation term lambda/alpha is 103.92054233958444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19037045607977507
the lambda is 20.0
the regulation term lambda/alpha is 105.05831845892602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24629983362209407
the lambda is 20.0
the regulation term lambda/alpha is 81.20184129188921
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1981425596448079
the lambda is 20.0
the regulation term lambda/alpha is 100.93742624427674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1915753522941255
the lambda is 20.0
the regulation term lambda/alpha is 104.39756346784118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15942274245653945
the lambda is 20.0
the regulation term lambda/alpha is 125.45261542876945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.27336010225297364
the lambda is 20.0
the regulation term lambda/alpha is 73.16356642818178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18500595794217406
the lambda is 20.0
the regulation term lambda/alpha is 108.10462658857317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21739276115020248
the lambda is 20.0
the regulation term lambda/alpha is 91.99938348536575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14271402821845927
the lambda is 20.0
the regulation term lambda/alpha is 140.14039299195613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21874813212883806
the lambda is 20.0
the regulation term lambda/alpha is 91.42935212914375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2090730056078991
the lambda is 20.0
the regulation term lambda/alpha is 95.66036486560353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20226132121919674
the lambda is 20.0
the regulation term lambda/alpha is 98.88198039765295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17825724779011326
the lambda is 20.0
the regulation term lambda/alpha is 112.19740149667713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1414277223481991
the lambda is 20.0
the regulation term lambda/alpha is 141.4149904129788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19523773151901883
the lambda is 20.0
the regulation term lambda/alpha is 102.43921522951995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2292438423437761
the lambda is 20.0
the regulation term lambda/alpha is 87.24334662829382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21939726631659923
the lambda is 20.0
the regulation term lambda/alpha is 91.15883864814971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19313539155907566
the lambda is 20.0
the regulation term lambda/alpha is 103.55429855994292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23034032501017268
the lambda is 20.0
the regulation term lambda/alpha is 86.82804454285947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18465183060116525
the lambda is 20.0
the regulation term lambda/alpha is 108.31195084763915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1646558283103944
the lambda is 20.0
the regulation term lambda/alpha is 121.46548473399795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.14858930515711694
the lambda is 20.0
the regulation term lambda/alpha is 134.5991892138683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19389584848706706
the lambda is 20.0
the regulation term lambda/alpha is 103.14815998411646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.17799022738399817
the lambda is 20.0
the regulation term lambda/alpha is 112.36571970241809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.14944537691946055
the lambda is 20.0
the regulation term lambda/alpha is 133.82816124702504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.3135933062977526
the lambda is 20.0
the regulation term lambda/alpha is 63.776871503150865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1731517431995679
the lambda is 20.0
the regulation term lambda/alpha is 115.50562316285078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2086683915475531
the lambda is 20.0
the regulation term lambda/alpha is 95.84585308619793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2638995971852459
the lambda is 20.0
the regulation term lambda/alpha is 75.78639836255938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20385460244114145
the lambda is 20.0
the regulation term lambda/alpha is 98.10914132181324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.13536856228494173
the lambda is 20.0
the regulation term lambda/alpha is 147.7447914228515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1804314298388215
the lambda is 20.0
the regulation term lambda/alpha is 110.84543318126948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20647897921426864
the lambda is 20.0
the regulation term lambda/alpha is 96.86216038120509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19883434429861532
the lambda is 20.0
the regulation term lambda/alpha is 100.58624464777274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2020605368997485
the lambda is 20.0
the regulation term lambda/alpha is 98.98023783794515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1840492791238764
the lambda is 20.0
the regulation term lambda/alpha is 108.66654895474369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2021978906953905
the lambda is 20.0
the regulation term lambda/alpha is 98.9130001861881
320
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.159202954870675
the lambda is 20.0
the regulation term lambda/alpha is 125.62580899485538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1832951112214244
the lambda is 20.0
the regulation term lambda/alpha is 109.11365756962047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22563227207472727
the lambda is 20.0
the regulation term lambda/alpha is 88.63980234784938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17578113886364954
the lambda is 20.0
the regulation term lambda/alpha is 113.77784971295277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19802570559444974
the lambda is 20.0
the regulation term lambda/alpha is 100.99698895132006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20511628336933543
the lambda is 20.0
the regulation term lambda/alpha is 97.50566689036434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23674653165600829
the lambda is 20.0
the regulation term lambda/alpha is 84.47853432150768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19691881290600513
the lambda is 20.0
the regulation term lambda/alpha is 101.56469920193233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17247213694699
the lambda is 20.0
the regulation term lambda/alpha is 115.96075954081255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2804226380292922
the lambda is 20.0
the regulation term lambda/alpha is 71.32091809902614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17428919308912202
the lambda is 20.0
the regulation term lambda/alpha is 114.75180787470332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19982399928023767
the lambda is 20.0
the regulation term lambda/alpha is 100.08807786872262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19743227498643043
the lambda is 20.0
the regulation term lambda/alpha is 101.30055990781956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18810523790475622
the lambda is 20.0
the regulation term lambda/alpha is 106.3234613920036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22351988218096866
the lambda is 20.0
the regulation term lambda/alpha is 89.47749884642198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17673556532639617
the lambda is 20.0
the regulation term lambda/alpha is 113.16341429674267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19422980650128693
the lambda is 20.0
the regulation term lambda/alpha is 102.9708074175911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1688210192904119
the lambda is 20.0
the regulation term lambda/alpha is 118.46866038402061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17197169416420216
the lambda is 20.0
the regulation term lambda/alpha is 116.29820882559652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17436649794996265
the lambda is 20.0
the regulation term lambda/alpha is 114.70093300686311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2027439813835748
the lambda is 20.0
the regulation term lambda/alpha is 98.64657813028569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22518437158347915
the lambda is 20.0
the regulation term lambda/alpha is 88.81611036930113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20019223703881475
the lambda is 20.0
the regulation term lambda/alpha is 99.90397377957395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15948329641050304
the lambda is 20.0
the regulation term lambda/alpha is 125.40498252883407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1762145674770013
the lambda is 20.0
the regulation term lambda/alpha is 113.49799444140909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2841163060969578
the lambda is 20.0
the regulation term lambda/alpha is 70.39370698130497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24372924474876062
the lambda is 20.0
the regulation term lambda/alpha is 82.05826929228894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15692817245217075
the lambda is 20.0
the regulation term lambda/alpha is 127.44684200088857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18412441889137213
the lambda is 20.0
the regulation term lambda/alpha is 108.62220296700244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20212420687191324
the lambda is 20.0
the regulation term lambda/alpha is 98.9490586482502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.223721535613216
the lambda is 20.0
the regulation term lambda/alpha is 89.39684749248848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21318856449836843
the lambda is 20.0
the regulation term lambda/alpha is 93.8136623184264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2220391814537069
the lambda is 20.0
the regulation term lambda/alpha is 90.07419262248457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17699378728615167
the lambda is 20.0
the regulation term lambda/alpha is 112.99831653223706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20243636114154454
the lambda is 20.0
the regulation term lambda/alpha is 98.79648047030393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16083882067574928
the lambda is 20.0
the regulation term lambda/alpha is 124.3480890743408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1542161611858681
the lambda is 20.0
the regulation term lambda/alpha is 129.6880939468797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.229215069688012
the lambda is 20.0
the regulation term lambda/alpha is 87.25429801462136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1771657636019727
the lambda is 20.0
the regulation term lambda/alpha is 112.88862810386298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2151398457461105
the lambda is 20.0
the regulation term lambda/alpha is 92.96278860217403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22906655573460596
the lambda is 20.0
the regulation term lambda/alpha is 87.31086882526746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2944282904979258
the lambda is 20.0
the regulation term lambda/alpha is 67.9282550130518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20910505097079618
the lambda is 20.0
the regulation term lambda/alpha is 95.64570490835834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18401557914778036
the lambda is 20.0
the regulation term lambda/alpha is 108.68644977031144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21103943063046318
the lambda is 20.0
the regulation term lambda/alpha is 94.76901989477332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2483325622680137
the lambda is 20.0
the regulation term lambda/alpha is 80.53716281642895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20927085485433447
the lambda is 20.0
the regulation term lambda/alpha is 95.56992546296637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22942395876038732
the lambda is 20.0
the regulation term lambda/alpha is 87.174853524728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14648265385108922
the lambda is 20.0
the regulation term lambda/alpha is 136.5349375792408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24108043631369194
the lambda is 20.0
the regulation term lambda/alpha is 82.95986313039586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23066534171956532
the lambda is 20.0
the regulation term lambda/alpha is 86.70570034884254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24963825069051157
the lambda is 20.0
the regulation term lambda/alpha is 80.115927525846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24243907526303352
the lambda is 20.0
the regulation term lambda/alpha is 82.494952508382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19291989157503175
the lambda is 20.0
the regulation term lambda/alpha is 103.6699732553056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15701201912775503
the lambda is 20.0
the regulation term lambda/alpha is 127.37878355495015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17395209621714758
the lambda is 20.0
the regulation term lambda/alpha is 114.97418217388788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1616721053768498
the lambda is 20.0
the regulation term lambda/alpha is 123.7071785103619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1547415852833874
the lambda is 20.0
the regulation term lambda/alpha is 129.2477388245236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21536143589715243
the lambda is 20.0
the regulation term lambda/alpha is 92.86713713011814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1875391194865671
the lambda is 20.0
the regulation term lambda/alpha is 106.64441666759849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21750184888429877
the lambda is 20.0
the regulation term lambda/alpha is 91.95324132917648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.3126616010748813
the lambda is 20.0
the regulation term lambda/alpha is 63.96692120568421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20689548774446082
the lambda is 20.0
the regulation term lambda/alpha is 96.66716378417227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19310958979090512
the lambda is 20.0
the regulation term lambda/alpha is 103.56813466206192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19149385065713773
the lambda is 20.0
the regulation term lambda/alpha is 104.44199608168735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16838359148380183
the lambda is 20.0
the regulation term lambda/alpha is 118.77641891207648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.22723762617379203
the lambda is 20.0
the regulation term lambda/alpha is 88.01359324491419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21505992150297012
the lambda is 20.0
the regulation term lambda/alpha is 92.9973370222949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1817928690389245
the lambda is 20.0
the regulation term lambda/alpha is 110.01531636379923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1584466747196232
the lambda is 20.0
the regulation term lambda/alpha is 126.22543221806758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19506270172465198
the lambda is 20.0
the regulation term lambda/alpha is 102.53113395420793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.17966869349848388
the lambda is 20.0
the regulation term lambda/alpha is 111.31599841109085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16317603614174966
the lambda is 20.0
the regulation term lambda/alpha is 122.56701702587117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19268874546994877
the lambda is 20.0
the regulation term lambda/alpha is 103.79433397224099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1975836640670733
the lambda is 20.0
the regulation term lambda/alpha is 101.22294317414136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2616019910746721
the lambda is 20.0
the regulation term lambda/alpha is 76.45201750123977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21304775097409445
the lambda is 20.0
the regulation term lambda/alpha is 93.87566828824164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21114372031034273
the lambda is 20.0
the regulation term lambda/alpha is 94.72221087420289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17389402598374148
the lambda is 20.0
the regulation term lambda/alpha is 115.01257669351985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21704862829060725
the lambda is 20.0
the regulation term lambda/alpha is 92.14524946558024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.23125751714350248
the lambda is 20.0
the regulation term lambda/alpha is 86.4836751991477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20415237328911306
the lambda is 20.0
the regulation term lambda/alpha is 97.96604211735877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1594600715646231
the lambda is 20.0
the regulation term lambda/alpha is 125.42324736067086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19753914619780624
the lambda is 20.0
the regulation term lambda/alpha is 101.24575500581012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19108628460856733
the lambda is 20.0
the regulation term lambda/alpha is 104.66475938327655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1890721643767762
the lambda is 20.0
the regulation term lambda/alpha is 105.77971678657426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17943772975458552
the lambda is 20.0
the regulation term lambda/alpha is 111.45927909004266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21728385478765244
the lambda is 20.0
the regulation term lambda/alpha is 92.04549514065661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1994875513200507
the lambda is 20.0
the regulation term lambda/alpha is 100.25688253555589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22994798740897957
the lambda is 20.0
the regulation term lambda/alpha is 86.97619068275868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25549480914053957
the lambda is 20.0
the regulation term lambda/alpha is 78.27947686012922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20307809350700295
the lambda is 20.0
the regulation term lambda/alpha is 98.48428087252218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2627149646225151
the lambda is 20.0
the regulation term lambda/alpha is 76.12813388356929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20388203024150212
the lambda is 20.0
the regulation term lambda/alpha is 98.09594291517317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17631740554529313
the lambda is 20.0
the regulation term lambda/alpha is 113.4317961300895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19869436063798718
the lambda is 20.0
the regulation term lambda/alpha is 100.65710942063004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17821038531003863
the lambda is 20.0
the regulation term lambda/alpha is 112.22690509986454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1972052297831023
the lambda is 20.0
the regulation term lambda/alpha is 101.41718869219217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1619363628503314
the lambda is 20.0
the regulation term lambda/alpha is 123.50530571373193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23614135452544477
the lambda is 20.0
the regulation term lambda/alpha is 84.69503378682853
330
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.30385268601862037
the lambda is 20.0
the regulation term lambda/alpha is 65.82136976328846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2259728074441074
the lambda is 20.0
the regulation term lambda/alpha is 88.50622438253701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22026468406699382
the lambda is 20.0
the regulation term lambda/alpha is 90.79984875794692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20389685018001896
the lambda is 20.0
the regulation term lambda/alpha is 98.08881295783704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17615837073650356
the lambda is 20.0
the regulation term lambda/alpha is 113.53420173212125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24030683442145856
the lambda is 20.0
the regulation term lambda/alpha is 83.22692963831106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.2348361652109173
the lambda is 20.0
the regulation term lambda/alpha is 85.16575793186313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.17472663746422556
the lambda is 20.0
the regulation term lambda/alpha is 114.46451605923512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19946238628878157
the lambda is 20.0
the regulation term lambda/alpha is 100.26953137442167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2659390142157637
the lambda is 20.0
the regulation term lambda/alpha is 75.20521221370493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17303375769142157
the lambda is 20.0
the regulation term lambda/alpha is 115.58438230109321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2229932273529476
the lambda is 20.0
the regulation term lambda/alpha is 89.68882255937103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25353756528021504
the lambda is 20.0
the regulation term lambda/alpha is 78.88377399970526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1573969223716089
the lambda is 20.0
the regulation term lambda/alpha is 127.06728758508164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1613223732011786
the lambda is 20.0
the regulation term lambda/alpha is 123.97536437837306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19037448145588523
the lambda is 20.0
the regulation term lambda/alpha is 105.05609705171817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18840150103740336
the lambda is 20.0
the regulation term lambda/alpha is 106.15626674879516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16336602240122855
the lambda is 20.0
the regulation term lambda/alpha is 122.42447790569207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21063222327820344
the lambda is 20.0
the regulation term lambda/alpha is 94.95223327526654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2599209343552077
the lambda is 20.0
the regulation term lambda/alpha is 76.94647624137893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19740114464454672
the lambda is 20.0
the regulation term lambda/alpha is 101.31653509919254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.225475018386483
the lambda is 20.0
the regulation term lambda/alpha is 88.70162265922662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22067564170858706
the lambda is 20.0
the regulation term lambda/alpha is 90.630754917713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24887670466989575
the lambda is 20.0
the regulation term lambda/alpha is 80.3610768895688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20361094070038785
the lambda is 20.0
the regulation term lambda/alpha is 98.2265487856562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20416324952004516
the lambda is 20.0
the regulation term lambda/alpha is 97.96082324814466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22915298475009235
the lambda is 20.0
the regulation term lambda/alpha is 87.27793801949132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19808952276904082
the lambda is 20.0
the regulation term lambda/alpha is 100.96445142794688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16785597906250516
the lambda is 20.0
the regulation term lambda/alpha is 119.14976226466455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2007333334475228
the lambda is 20.0
the regulation term lambda/alpha is 99.63467280947908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2016799244949756
the lambda is 20.0
the regulation term lambda/alpha is 99.16703434951086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20077473157246586
the lambda is 20.0
the regulation term lambda/alpha is 99.61412894620844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2301602956752556
the lambda is 20.0
the regulation term lambda/alpha is 86.89596066655639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1969758481568919
the lambda is 20.0
the regulation term lambda/alpha is 101.53529068228677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.3390751794642909
the lambda is 20.0
the regulation term lambda/alpha is 58.98396937103521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18183176712562904
the lambda is 20.0
the regulation term lambda/alpha is 109.99178150307387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23766094365688806
the lambda is 20.0
the regulation term lambda/alpha is 84.15349906577023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19132476721855832
the lambda is 20.0
the regulation term lambda/alpha is 104.53429679155528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23984897837570393
the lambda is 20.0
the regulation term lambda/alpha is 83.38580441510835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21479497634476746
the lambda is 20.0
the regulation term lambda/alpha is 93.11204731295948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18702135999802852
the lambda is 20.0
the regulation term lambda/alpha is 106.93965651950573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21719358367241082
the lambda is 20.0
the regulation term lambda/alpha is 92.08375156314766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21636927656951488
the lambda is 20.0
the regulation term lambda/alpha is 92.4345651891775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18366854678098518
the lambda is 20.0
the regulation term lambda/alpha is 108.89180728287091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23504845676329317
the lambda is 20.0
the regulation term lambda/alpha is 85.08883774608701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18787211393788694
the lambda is 20.0
the regulation term lambda/alpha is 106.45539447441503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20822585292713738
the lambda is 20.0
the regulation term lambda/alpha is 96.04955253562305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1681830875004168
the lambda is 20.0
the regulation term lambda/alpha is 118.91802140896263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19629729100661958
the lambda is 20.0
the regulation term lambda/alpha is 101.8862761551078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18355345052161787
the lambda is 20.0
the regulation term lambda/alpha is 108.96008733785429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18871142264218402
the lambda is 20.0
the regulation term lambda/alpha is 105.98192584198799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.2574339934810652
the lambda is 20.0
the regulation term lambda/alpha is 77.6898176093867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15142705683387364
the lambda is 20.0
the regulation term lambda/alpha is 132.0767927355376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23581903908304383
the lambda is 20.0
the regulation term lambda/alpha is 84.8107942334418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17053053427485138
the lambda is 20.0
the regulation term lambda/alpha is 117.28104931498744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19255277417975436
the lambda is 20.0
the regulation term lambda/alpha is 103.86762842133524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21206619790999043
the lambda is 20.0
the regulation term lambda/alpha is 94.31017388489616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18177438913846128
the lambda is 20.0
the regulation term lambda/alpha is 110.02650095424383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25264935663017746
the lambda is 20.0
the regulation term lambda/alpha is 79.16109610077321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1987460088369745
the lambda is 20.0
the regulation term lambda/alpha is 100.63095162029347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19054711400921362
the lambda is 20.0
the regulation term lambda/alpha is 104.96091795456388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17844360832118467
the lambda is 20.0
the regulation term lambda/alpha is 112.0802262863994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1891980487974813
the lambda is 20.0
the regulation term lambda/alpha is 105.70933541396147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2240507450032392
the lambda is 20.0
the regulation term lambda/alpha is 89.26549206391101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.30094922046870426
the lambda is 20.0
the regulation term lambda/alpha is 66.45639410147534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2065910499022504
the lambda is 20.0
the regulation term lambda/alpha is 96.8096149831423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20521336642267463
the lambda is 20.0
the regulation term lambda/alpha is 97.45953857024267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23837885246447343
the lambda is 20.0
the regulation term lambda/alpha is 83.90005989722046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2434452116581545
the lambda is 20.0
the regulation term lambda/alpha is 82.15400854991545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2272144810824443
the lambda is 20.0
the regulation term lambda/alpha is 88.02255870629584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22657546579255056
the lambda is 20.0
the regulation term lambda/alpha is 88.27081047827009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15389062224588537
the lambda is 20.0
the regulation term lambda/alpha is 129.9624350601698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22123498344139292
the lambda is 20.0
the regulation term lambda/alpha is 90.40161591486356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23657051945249577
the lambda is 20.0
the regulation term lambda/alpha is 84.5413876855272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15897565616035014
the lambda is 20.0
the regulation term lambda/alpha is 125.80542507607002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20721978284782347
the lambda is 20.0
the regulation term lambda/alpha is 96.51588147202843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2096051344084538
the lambda is 20.0
the regulation term lambda/alpha is 95.41750995959076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2206836483601404
the lambda is 20.0
the regulation term lambda/alpha is 90.62746673175073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21539198161352252
the lambda is 20.0
the regulation term lambda/alpha is 92.85396721910459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18136480788116702
the lambda is 20.0
the regulation term lambda/alpha is 110.27497690237846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18250347561324676
the lambda is 20.0
the regulation term lambda/alpha is 109.58695407194935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2226178463129553
the lambda is 20.0
the regulation term lambda/alpha is 89.84005699113663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18973426490698445
the lambda is 20.0
the regulation term lambda/alpha is 105.41058574635859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17914665277815148
the lambda is 20.0
the regulation term lambda/alpha is 111.64037781251349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1582420954393265
the lambda is 20.0
the regulation term lambda/alpha is 126.38861956721523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19499929144805814
the lambda is 20.0
the regulation term lambda/alpha is 102.56447524234923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18453490489823848
the lambda is 20.0
the regulation term lambda/alpha is 108.38057987473411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20849696746431154
the lambda is 20.0
the regulation term lambda/alpha is 95.924656570477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23098561282500094
the lambda is 20.0
the regulation term lambda/alpha is 86.58547930927793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24110789274962466
the lambda is 20.0
the regulation term lambda/alpha is 82.95041598148237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17143430463669693
the lambda is 20.0
the regulation term lambda/alpha is 116.66276503051091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18924974274025697
the lambda is 20.0
the regulation term lambda/alpha is 105.68046069922411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14229633386983676
the lambda is 20.0
the regulation term lambda/alpha is 140.55175882672194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2685993537289768
the lambda is 20.0
the regulation term lambda/alpha is 74.46034296933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18538223800401835
the lambda is 20.0
the regulation term lambda/alpha is 107.88520095202692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19710776686903175
the lambda is 20.0
the regulation term lambda/alpha is 101.46733595378309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19571059286655515
the lambda is 20.0
the regulation term lambda/alpha is 102.1917092328107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1892555596505032
the lambda is 20.0
the regulation term lambda/alpha is 105.67721253174199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18662116088718592
the lambda is 20.0
the regulation term lambda/alpha is 107.16898290055205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21330397621291283
the lambda is 20.0
the regulation term lambda/alpha is 93.76290285389089
340
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18506994174462152
the lambda is 20.0
the regulation term lambda/alpha is 108.06725182632873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21084450396265259
the lambda is 20.0
the regulation term lambda/alpha is 94.85663426893333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20252200904595027
the lambda is 20.0
the regulation term lambda/alpha is 98.75469878171214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.18130471007546245
the lambda is 20.0
the regulation term lambda/alpha is 110.3115301950822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19089406993204205
the lambda is 20.0
the regulation term lambda/alpha is 104.7701482142424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2133488397120001
the lambda is 20.0
the regulation term lambda/alpha is 93.74318616870862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.22698525033904082
the lambda is 20.0
the regulation term lambda/alpha is 88.1114520442479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21677434091289416
the lambda is 20.0
the regulation term lambda/alpha is 92.26184204170431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23648283685029112
the lambda is 20.0
the regulation term lambda/alpha is 84.57273376106059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2419068714993709
the lambda is 20.0
the regulation term lambda/alpha is 82.6764443524789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19857296636631577
the lambda is 20.0
the regulation term lambda/alpha is 100.71864446596004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20614176972487122
the lambda is 20.0
the regulation term lambda/alpha is 97.02060881059263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22484632952231598
the lambda is 20.0
the regulation term lambda/alpha is 88.94963970499239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2215875983145339
the lambda is 20.0
the regulation term lambda/alpha is 90.25775879212732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2092424097463884
the lambda is 20.0
the regulation term lambda/alpha is 95.58291755596265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23765991797027308
the lambda is 20.0
the regulation term lambda/alpha is 84.15386225329605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25360496035651353
the lambda is 20.0
the regulation term lambda/alpha is 78.8628107742228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18041671972842194
the lambda is 20.0
the regulation term lambda/alpha is 110.85447086115767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23880948451311051
the lambda is 20.0
the regulation term lambda/alpha is 83.74876751975071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22994921031110857
the lambda is 20.0
the regulation term lambda/alpha is 86.97572813118647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21239836408851082
the lambda is 20.0
the regulation term lambda/alpha is 94.16268381269445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21398547964555018
the lambda is 20.0
the regulation term lambda/alpha is 93.46428567549724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1598599896200494
the lambda is 20.0
the regulation term lambda/alpha is 125.10947891048548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.243072801817578
the lambda is 20.0
the regulation term lambda/alpha is 82.27987603076078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1516915368975228
the lambda is 20.0
the regulation term lambda/alpha is 131.84651173724518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21972591978478834
the lambda is 20.0
the regulation term lambda/alpha is 91.02248846922157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20963560327312114
the lambda is 20.0
the regulation term lambda/alpha is 95.40364178475566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2915188767982647
the lambda is 20.0
the regulation term lambda/alpha is 68.60619188595561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19071037630001245
the lambda is 20.0
the regulation term lambda/alpha is 104.87106358878646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25561765155038507
the lambda is 20.0
the regulation term lambda/alpha is 78.24185801995672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18792271969290514
the lambda is 20.0
the regulation term lambda/alpha is 106.42672707527382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.18011648910069009
the lambda is 20.0
the regulation term lambda/alpha is 111.0392507640955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20803292902800108
the lambda is 20.0
the regulation term lambda/alpha is 96.13862619464447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20637210451994378
the lambda is 20.0
the regulation term lambda/alpha is 96.91232275080667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20306834107313684
the lambda is 20.0
the regulation term lambda/alpha is 98.48901061735086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22868925138649687
the lambda is 20.0
the regulation term lambda/alpha is 87.45491919162806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21832417201345844
the lambda is 20.0
the regulation term lambda/alpha is 91.60689728284926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.29676338606846403
the lambda is 20.0
the regulation term lambda/alpha is 67.39375859320445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.21108047362023216
the lambda is 20.0
the regulation term lambda/alpha is 94.75059278094679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2065549582437106
the lambda is 20.0
the regulation term lambda/alpha is 96.82653067278274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2365073570439045
the lambda is 20.0
the regulation term lambda/alpha is 84.563965577981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.17723423463664337
the lambda is 20.0
the regulation term lambda/alpha is 112.84501575557897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2016507425220171
the lambda is 20.0
the regulation term lambda/alpha is 99.18138534905873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24155490731009407
the lambda is 20.0
the regulation term lambda/alpha is 82.79691032865323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24185472116287138
the lambda is 20.0
the regulation term lambda/alpha is 82.69427160171692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23883423362129352
the lambda is 20.0
the regulation term lambda/alpha is 83.74008908502168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18469966762217638
the lambda is 20.0
the regulation term lambda/alpha is 108.28389816549218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22454972723272695
the lambda is 20.0
the regulation term lambda/alpha is 89.06713112713639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2297699516446035
the lambda is 20.0
the regulation term lambda/alpha is 87.04358362287068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20382060711030064
the lambda is 20.0
the regulation term lambda/alpha is 98.12550498967308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19433633929042982
the lambda is 20.0
the regulation term lambda/alpha is 102.91436008841661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18389788416489058
the lambda is 20.0
the regulation term lambda/alpha is 108.7560092973509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21904411370772212
the lambda is 20.0
the regulation term lambda/alpha is 91.3058089599553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19535227584933035
the lambda is 20.0
the regulation term lambda/alpha is 102.37915024560775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16619041902930598
the lambda is 20.0
the regulation term lambda/alpha is 120.34388093379322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1826027134310152
the lambda is 20.0
the regulation term lambda/alpha is 109.52739761753719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2026031589200153
the lambda is 20.0
the regulation term lambda/alpha is 98.71514396227012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17918543875079027
the lambda is 20.0
the regulation term lambda/alpha is 111.61621245248531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21626195903663573
the lambda is 20.0
the regulation term lambda/alpha is 92.48043478886599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16121044279052588
the lambda is 20.0
the regulation term lambda/alpha is 124.06144201208889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1958599752530239
the lambda is 20.0
the regulation term lambda/alpha is 102.11376762486964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20547292168348932
the lambda is 20.0
the regulation term lambda/alpha is 97.33642679597469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2015059121862643
the lambda is 20.0
the regulation term lambda/alpha is 99.25267096636237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21807988446211637
the lambda is 20.0
the regulation term lambda/alpha is 91.70951300404916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19156042620865465
the lambda is 20.0
the regulation term lambda/alpha is 104.4056979608892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21973744194340217
the lambda is 20.0
the regulation term lambda/alpha is 91.01771561148603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18852101346553385
the lambda is 20.0
the regulation term lambda/alpha is 106.08896924722123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2552524251146912
the lambda is 20.0
the regulation term lambda/alpha is 78.35380992370007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1776701990435369
the lambda is 20.0
the regulation term lambda/alpha is 112.56811838826799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.19661963788950695
the lambda is 20.0
the regulation term lambda/alpha is 101.71923931239904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2632857348161283
the lambda is 20.0
the regulation term lambda/alpha is 75.96309771194957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15790002740297082
the lambda is 20.0
the regulation term lambda/alpha is 126.66242260337764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17884402588637147
the lambda is 20.0
the regulation term lambda/alpha is 111.82928756427681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1861929930590994
the lambda is 20.0
the regulation term lambda/alpha is 107.41542778493181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18173815939569013
the lambda is 20.0
the regulation term lambda/alpha is 110.04843488292913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2133358636335855
the lambda is 20.0
the regulation term lambda/alpha is 93.74888806483541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18540674083529862
the lambda is 20.0
the regulation term lambda/alpha is 107.87094314853684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2761712652560814
the lambda is 20.0
the regulation term lambda/alpha is 72.41883032782171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20823045871930768
the lambda is 20.0
the regulation term lambda/alpha is 96.0474280420223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18046853852250339
the lambda is 20.0
the regulation term lambda/alpha is 110.82264068706976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20083239569509037
the lambda is 20.0
the regulation term lambda/alpha is 99.58552717941276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18865844450391417
the lambda is 20.0
the regulation term lambda/alpha is 106.01168716614248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21327530769631078
the lambda is 20.0
the regulation term lambda/alpha is 93.77550648516053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2146750856550405
the lambda is 20.0
the regulation term lambda/alpha is 93.16404807280628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.27164594363838546
the lambda is 20.0
the regulation term lambda/alpha is 73.62524811570152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19744815926860226
the lambda is 20.0
the regulation term lambda/alpha is 101.29241049440542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1883839131380579
the lambda is 20.0
the regulation term lambda/alpha is 106.16617771042328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20719154792737735
the lambda is 20.0
the regulation term lambda/alpha is 96.52903412358401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17062849679500156
the lambda is 20.0
the regulation term lambda/alpha is 117.2137150339467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1860297118651771
the lambda is 20.0
the regulation term lambda/alpha is 107.50970798952142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18598336778623456
the lambda is 20.0
the regulation term lambda/alpha is 107.53649768826418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2015217943538376
the lambda is 20.0
the regulation term lambda/alpha is 99.24484874764185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16050281789842144
the lambda is 20.0
the regulation term lambda/alpha is 124.60840415062084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15442118004143351
the lambda is 20.0
the regulation term lambda/alpha is 129.51591222547128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24362026173629156
the lambda is 20.0
the regulation term lambda/alpha is 82.09497788672905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21324000354867695
the lambda is 20.0
the regulation term lambda/alpha is 93.79103201634743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2244575994790294
the lambda is 20.0
the regulation term lambda/alpha is 89.10368838667259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1863384141320475
the lambda is 20.0
the regulation term lambda/alpha is 107.33159930097469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2058662382364186
the lambda is 20.0
the regulation term lambda/alpha is 97.15046124771476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2095091318300363
the lambda is 20.0
the regulation term lambda/alpha is 95.46123276490374
350
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17937563541184737
the lambda is 20.0
the regulation term lambda/alpha is 111.49786287351623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24563657672670233
the lambda is 20.0
the regulation term lambda/alpha is 81.42109887100486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19751116677561248
the lambda is 20.0
the regulation term lambda/alpha is 101.26009747449622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.240415168598949
the lambda is 20.0
the regulation term lambda/alpha is 83.18942650978568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20298218423829356
the lambda is 20.0
the regulation term lambda/alpha is 98.53081478579786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20974392894804256
the lambda is 20.0
the regulation term lambda/alpha is 95.3543690170616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24163181830296418
the lambda is 20.0
the regulation term lambda/alpha is 82.77055621426267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18841899578180132
the lambda is 20.0
the regulation term lambda/alpha is 106.14641011653096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19205100978577555
the lambda is 20.0
the regulation term lambda/alpha is 104.13899943722826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19160075934137985
the lambda is 20.0
the regulation term lambda/alpha is 104.38371992234906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27025839566578347
the lambda is 20.0
the regulation term lambda/alpha is 74.00325140956254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1658595695618474
the lambda is 20.0
the regulation term lambda/alpha is 120.58393768194483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19073549824199054
the lambda is 20.0
the regulation term lambda/alpha is 104.85725092780336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20130298989265524
the lambda is 20.0
the regulation term lambda/alpha is 99.35272203689073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21371151189526547
the lambda is 20.0
the regulation term lambda/alpha is 93.58410233792874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2099492791990602
the lambda is 20.0
the regulation term lambda/alpha is 95.26110342601989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.27865169592819333
the lambda is 20.0
the regulation term lambda/alpha is 71.77419083483298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19364165063102515
the lambda is 20.0
the regulation term lambda/alpha is 103.28356495013068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17991697479476668
the lambda is 20.0
the regulation term lambda/alpha is 111.16238488788635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20814316269549182
the lambda is 20.0
the regulation term lambda/alpha is 96.08771069391068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1915919830794071
the lambda is 20.0
the regulation term lambda/alpha is 104.3885014317682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24821007836368864
the lambda is 20.0
the regulation term lambda/alpha is 80.57690538534497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2112281286217634
the lambda is 20.0
the regulation term lambda/alpha is 94.68435918311377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22324993704144397
the lambda is 20.0
the regulation term lambda/alpha is 89.58569155738311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2354478381506791
the lambda is 20.0
the regulation term lambda/alpha is 84.94450472380484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20200327187967237
the lambda is 20.0
the regulation term lambda/alpha is 99.008297310716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1817556089584823
the lambda is 20.0
the regulation term lambda/alpha is 110.0378696129731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19060784458291502
the lambda is 20.0
the regulation term lambda/alpha is 104.92747580123826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25180688357872927
the lambda is 20.0
the regulation term lambda/alpha is 79.42594624799784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20316562306253227
the lambda is 20.0
the regulation term lambda/alpha is 98.44185103030057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.18151328881227324
the lambda is 20.0
the regulation term lambda/alpha is 110.18477011170587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21622986996326804
the lambda is 20.0
the regulation term lambda/alpha is 92.49415912518235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16671395679417095
the lambda is 20.0
the regulation term lambda/alpha is 119.96596076651507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20310804435341487
the lambda is 20.0
the regulation term lambda/alpha is 98.46975812144261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2304721624510678
the lambda is 20.0
the regulation term lambda/alpha is 86.77837612707893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17547289412082406
the lambda is 20.0
the regulation term lambda/alpha is 113.97771775638891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1971089075624212
the lambda is 20.0
the regulation term lambda/alpha is 101.46674874988247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21031995207918144
the lambda is 20.0
the regulation term lambda/alpha is 95.09321299422122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20983882193854805
the lambda is 20.0
the regulation term lambda/alpha is 95.31124801042327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24280675908950408
the lambda is 20.0
the regulation term lambda/alpha is 82.37002987477604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18526915882241402
the lambda is 20.0
the regulation term lambda/alpha is 107.95104877207649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2610967831985316
the lambda is 20.0
the regulation term lambda/alpha is 76.59994793881658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.229026371790879
the lambda is 20.0
the regulation term lambda/alpha is 87.32618800013886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22372504260047454
the lambda is 20.0
the regulation term lambda/alpha is 89.3954461580582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18929053402927035
the lambda is 20.0
the regulation term lambda/alpha is 105.65768701834484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17813203166724348
the lambda is 20.0
the regulation term lambda/alpha is 112.27626953337995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2508274894848199
the lambda is 20.0
the regulation term lambda/alpha is 79.73607693908845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22030325338533369
the lambda is 20.0
the regulation term lambda/alpha is 90.78395208725259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21668105985521435
the lambda is 20.0
the regulation term lambda/alpha is 92.30156070569316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20983778237601086
the lambda is 20.0
the regulation term lambda/alpha is 95.31172019422965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20035536506626556
the lambda is 20.0
the regulation term lambda/alpha is 99.822632617725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23803674918458878
the lambda is 20.0
the regulation term lambda/alpha is 84.02063995795343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1377846814827232
the lambda is 20.0
the regulation term lambda/alpha is 145.15401701246302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18080686779264785
the lambda is 20.0
the regulation term lambda/alpha is 110.61526724159789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1940934890152168
the lambda is 20.0
the regulation term lambda/alpha is 103.04312680180638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24012656740292407
the lambda is 20.0
the regulation term lambda/alpha is 83.28940948229477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22378119603784624
the lambda is 20.0
the regulation term lambda/alpha is 89.37301415002523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20431338999363866
the lambda is 20.0
the regulation term lambda/alpha is 97.88883636369944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17693117561936547
the lambda is 20.0
the regulation term lambda/alpha is 113.03830390539133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2287036401826118
the lambda is 20.0
the regulation term lambda/alpha is 87.44941700110547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20226952887535354
the lambda is 20.0
the regulation term lambda/alpha is 98.87796798263562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16978262204179115
the lambda is 20.0
the regulation term lambda/alpha is 117.7976860027353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23334007872166238
the lambda is 20.0
the regulation term lambda/alpha is 85.7118078881632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19582878124460892
the lambda is 20.0
the regulation term lambda/alpha is 102.13003355731496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2340128757519125
the lambda is 20.0
the regulation term lambda/alpha is 85.46538277322352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23083608271338718
the lambda is 20.0
the regulation term lambda/alpha is 86.64156731871327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1902688848166703
the lambda is 20.0
the regulation term lambda/alpha is 105.11440175449913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18008752916899626
the lambda is 20.0
the regulation term lambda/alpha is 111.05710702061864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17847487927813369
the lambda is 20.0
the regulation term lambda/alpha is 112.0605884754917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26274781798672786
the lambda is 20.0
the regulation term lambda/alpha is 76.11861500220054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27498788628375304
the lambda is 20.0
the regulation term lambda/alpha is 72.73047649583555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20571573259425044
the lambda is 20.0
the regulation term lambda/alpha is 97.22153841994961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22787320005955392
the lambda is 20.0
the regulation term lambda/alpha is 87.76810960996319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18813095464316135
the lambda is 20.0
the regulation term lambda/alpha is 106.3089274060993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16763701330006833
the lambda is 20.0
the regulation term lambda/alpha is 119.3053944727602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1865163209995233
the lambda is 20.0
the regulation term lambda/alpha is 107.22922204781808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17509563461111533
the lambda is 20.0
the regulation term lambda/alpha is 114.22329314160052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21193104057827664
the lambda is 20.0
the regulation term lambda/alpha is 94.37031944649472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23585227822039054
the lambda is 20.0
the regulation term lambda/alpha is 84.79884167712443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19258480415895712
the lambda is 20.0
the regulation term lambda/alpha is 103.8503535486229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22820838080306796
the lambda is 20.0
the regulation term lambda/alpha is 87.63920032042542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18888618980915484
the lambda is 20.0
the regulation term lambda/alpha is 105.88386594174737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2035622216052523
the lambda is 20.0
the regulation term lambda/alpha is 98.25005761031623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2745059447596021
the lambda is 20.0
the regulation term lambda/alpha is 72.85816712463168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18425808598324978
the lambda is 20.0
the regulation term lambda/alpha is 108.54340472101792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21327332529226412
the lambda is 20.0
the regulation term lambda/alpha is 93.77637814101942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21107325230182908
the lambda is 20.0
the regulation term lambda/alpha is 94.75383442427152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21955000073470343
the lambda is 20.0
the regulation term lambda/alpha is 91.09542215017937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20966837062601293
the lambda is 20.0
the regulation term lambda/alpha is 95.38873193074102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2466370819470116
the lambda is 20.0
the regulation term lambda/alpha is 81.09080695455549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17646677356571133
the lambda is 20.0
the regulation term lambda/alpha is 113.3357832518684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2222840007378014
the lambda is 20.0
the regulation term lambda/alpha is 89.97498665498338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17468778049562672
the lambda is 20.0
the regulation term lambda/alpha is 114.48997716529288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18951713920716018
the lambda is 20.0
the regulation term lambda/alpha is 105.53135238147567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20563236724984518
the lambda is 20.0
the regulation term lambda/alpha is 97.26095296904217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19361657720057482
the lambda is 20.0
the regulation term lambda/alpha is 103.2969402164425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23689185695001314
the lambda is 20.0
the regulation term lambda/alpha is 84.42670954375703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2219679154278719
the lambda is 20.0
the regulation term lambda/alpha is 90.10311225136935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20836000755741463
the lambda is 20.0
the regulation term lambda/alpha is 95.9877100910975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2281766537062748
the lambda is 20.0
the regulation term lambda/alpha is 87.651386218265
360
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21577033551697547
the lambda is 20.0
the regulation term lambda/alpha is 92.6911475207236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1820804143338814
the lambda is 20.0
the regulation term lambda/alpha is 109.84157781696356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21273161209453442
the lambda is 20.0
the regulation term lambda/alpha is 94.01517622642905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1961948296583349
the lambda is 20.0
the regulation term lambda/alpha is 101.93948553501214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24049287614628176
the lambda is 20.0
the regulation term lambda/alpha is 83.16254651898643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18386414136716542
the lambda is 20.0
the regulation term lambda/alpha is 108.77596823004887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2235226596077289
the lambda is 20.0
the regulation term lambda/alpha is 89.47638702536467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2460671994385914
the lambda is 20.0
the regulation term lambda/alpha is 81.27861025618412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20712298417734917
the lambda is 20.0
the regulation term lambda/alpha is 96.56098804985828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19246859104173272
the lambda is 20.0
the regulation term lambda/alpha is 103.91305870610039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20339155932559166
the lambda is 20.0
the regulation term lambda/alpha is 98.33249750538447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22975222326200045
the lambda is 20.0
the regulation term lambda/alpha is 87.05030017138412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21241034644616943
the lambda is 20.0
the regulation term lambda/alpha is 94.15737196713506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2033881755492718
the lambda is 20.0
the regulation term lambda/alpha is 98.33413346664737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21304822525908845
the lambda is 20.0
the regulation term lambda/alpha is 93.8754593035354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21568095094001966
the lambda is 20.0
the regulation term lambda/alpha is 92.72956147880649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21439635327998355
the lambda is 20.0
the regulation term lambda/alpha is 93.28516877281811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.201965714312926
the lambda is 20.0
the regulation term lambda/alpha is 99.02670890472017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20558631688213802
the lambda is 20.0
the regulation term lambda/alpha is 97.2827389648988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20004909288748107
the lambda is 20.0
the regulation term lambda/alpha is 99.97545958005983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25487467600212016
the lambda is 20.0
the regulation term lambda/alpha is 78.46993790718396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1865109774815395
the lambda is 20.0
the regulation term lambda/alpha is 107.23229415265685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21642002312484296
the lambda is 20.0
the regulation term lambda/alpha is 92.41289096648373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22265444764585143
the lambda is 20.0
the regulation term lambda/alpha is 89.82528851977615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20337039405624477
the lambda is 20.0
the regulation term lambda/alpha is 98.3427312161707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3204289931340784
the lambda is 20.0
the regulation term lambda/alpha is 62.41632445423351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21068235498257418
the lambda is 20.0
the regulation term lambda/alpha is 94.92963946436913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21121405035143068
the lambda is 20.0
the regulation term lambda/alpha is 94.69067027843457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2045505098963859
the lambda is 20.0
the regulation term lambda/alpha is 97.77536125493359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1734629916283781
the lambda is 20.0
the regulation term lambda/alpha is 115.29836890422942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23949657928317417
the lambda is 20.0
the regulation term lambda/alpha is 83.50849961974843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2562733260972497
the lambda is 20.0
the regulation term lambda/alpha is 78.04167645762116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18911355898817506
the lambda is 20.0
the regulation term lambda/alpha is 105.75656291916417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1837506290566918
the lambda is 20.0
the regulation term lambda/alpha is 108.8431647971637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1801487319361422
the lambda is 20.0
the regulation term lambda/alpha is 111.01937707277037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18886506247136972
the lambda is 20.0
the regulation term lambda/alpha is 105.89571061101798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18197344413823452
the lambda is 20.0
the regulation term lambda/alpha is 109.90614644193455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23628173177994047
the lambda is 20.0
the regulation term lambda/alpha is 84.64471565083532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18954872529920624
the lambda is 20.0
the regulation term lambda/alpha is 105.51376680813665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.18848201932814654
the lambda is 20.0
the regulation term lambda/alpha is 106.11091748322194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19012640268248163
the lambda is 20.0
the regulation term lambda/alpha is 105.19317526561929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2486783278409148
the lambda is 20.0
the regulation term lambda/alpha is 80.4251829005158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.2443602798964796
the lambda is 20.0
the regulation term lambda/alpha is 81.84636229944068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18582180603918663
the lambda is 20.0
the regulation term lambda/alpha is 107.62999470461686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18420803865964128
the lambda is 20.0
the regulation term lambda/alpha is 108.57289478530159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.194047991015992
the lambda is 20.0
the regulation term lambda/alpha is 103.06728709369503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22043819521361982
the lambda is 20.0
the regulation term lambda/alpha is 90.72837844920033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19105694797476955
the lambda is 20.0
the regulation term lambda/alpha is 104.68083056911986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24582652705701463
the lambda is 20.0
the regulation term lambda/alpha is 81.35818473065518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19532817969491367
the lambda is 20.0
the regulation term lambda/alpha is 102.3917799840163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23859921727917532
the lambda is 20.0
the regulation term lambda/alpha is 83.82257170860207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20761060702307116
the lambda is 20.0
the regulation term lambda/alpha is 96.33419162334735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2240332202035666
the lambda is 20.0
the regulation term lambda/alpha is 89.27247477774549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1915018077891849
the lambda is 20.0
the regulation term lambda/alpha is 104.43765639025735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21062696127455496
the lambda is 20.0
the regulation term lambda/alpha is 94.95460542646173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23513649055044586
the lambda is 20.0
the regulation term lambda/alpha is 85.05698096106111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20444830181064663
the lambda is 20.0
the regulation term lambda/alpha is 97.82424125255562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2633029342262051
the lambda is 20.0
the regulation term lambda/alpha is 75.9581356690005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21111883229166792
the lambda is 20.0
the regulation term lambda/alpha is 94.7333773254738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22126577945502296
the lambda is 20.0
the regulation term lambda/alpha is 90.3890337189056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20360916895348294
the lambda is 20.0
the regulation term lambda/alpha is 98.22740352409792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2521956070914355
the lambda is 20.0
the regulation term lambda/alpha is 79.30352249454069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2192485599186222
the lambda is 20.0
the regulation term lambda/alpha is 91.22066757210783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23356548186931747
the lambda is 20.0
the regulation term lambda/alpha is 85.62909142195176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21139322068813174
the lambda is 20.0
the regulation term lambda/alpha is 94.61041340349313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.18691587335417642
the lambda is 20.0
the regulation term lambda/alpha is 107.00000829840235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20622225635724079
the lambda is 20.0
the regulation term lambda/alpha is 96.98274256758111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17101430854535607
the lambda is 20.0
the regulation term lambda/alpha is 116.9492785142925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22582305347208573
the lambda is 20.0
the regulation term lambda/alpha is 88.56491705561065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20853342756952378
the lambda is 20.0
the regulation term lambda/alpha is 95.90788504798408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19467446582102585
the lambda is 20.0
the regulation term lambda/alpha is 102.73561001259928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19729617639493177
the lambda is 20.0
the regulation term lambda/alpha is 101.3704389281503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1939790561406927
the lambda is 20.0
the regulation term lambda/alpha is 103.10391440142915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23757927369019746
the lambda is 20.0
the regulation term lambda/alpha is 84.18242757185936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21861919559075038
the lambda is 20.0
the regulation term lambda/alpha is 91.48327504342069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1743038639845344
the lambda is 20.0
the regulation term lambda/alpha is 114.74214938674312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22861136834577464
the lambda is 20.0
the regulation term lambda/alpha is 87.48471322629068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2088371805307083
the lambda is 20.0
the regulation term lambda/alpha is 95.76838735887414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2528070718191567
the lambda is 20.0
the regulation term lambda/alpha is 79.11171098214699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18794144747644972
the lambda is 20.0
the regulation term lambda/alpha is 106.4161219813215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24528159745653944
the lambda is 20.0
the regulation term lambda/alpha is 81.53893405535133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2222808043326165
the lambda is 20.0
the regulation term lambda/alpha is 89.97628049821344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27215417015630894
the lambda is 20.0
the regulation term lambda/alpha is 73.48775875274373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17595267536980022
the lambda is 20.0
the regulation term lambda/alpha is 113.6669275301779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21560414242245435
the lambda is 20.0
the regulation term lambda/alpha is 92.76259618802703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2420328708934853
the lambda is 20.0
the regulation term lambda/alpha is 82.63340399247535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20038909913893754
the lambda is 20.0
the regulation term lambda/alpha is 99.80582819094977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20049163405719186
the lambda is 20.0
the regulation term lambda/alpha is 99.75478574978763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.17918232114843335
the lambda is 20.0
the regulation term lambda/alpha is 111.61815446866626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27852303563852826
the lambda is 20.0
the regulation term lambda/alpha is 71.80734603925661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1528923599047066
the lambda is 20.0
the regulation term lambda/alpha is 130.81098370425718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23456369259972992
the lambda is 20.0
the regulation term lambda/alpha is 85.26468772014475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1781976561599671
the lambda is 20.0
the regulation term lambda/alpha is 112.23492177723205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16706921322990076
the lambda is 20.0
the regulation term lambda/alpha is 119.71086481671749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23221383777540744
the lambda is 20.0
the regulation term lambda/alpha is 86.12751157122513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25938307177687703
the lambda is 20.0
the regulation term lambda/alpha is 77.10603418716595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2729492167261314
the lambda is 20.0
the regulation term lambda/alpha is 73.27370358445602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17682482290209708
the lambda is 20.0
the regulation term lambda/alpha is 113.1062917058508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23861751830342015
the lambda is 20.0
the regulation term lambda/alpha is 83.81614284735161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23159374929481402
the lambda is 20.0
the regulation term lambda/alpha is 86.35811657654205
370
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.29643505525388136
the lambda is 20.0
the regulation term lambda/alpha is 67.46840377185158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21537281285099416
the lambda is 20.0
the regulation term lambda/alpha is 92.86223147318513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21939889181113567
the lambda is 20.0
the regulation term lambda/alpha is 91.15816326554888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22268532996431287
the lambda is 20.0
the regulation term lambda/alpha is 89.81283142093447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2741203939306956
the lambda is 20.0
the regulation term lambda/alpha is 72.96064226821626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24925758654155095
the lambda is 20.0
the regulation term lambda/alpha is 80.23827991556848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25793666520589603
the lambda is 20.0
the regulation term lambda/alpha is 77.53841426163724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.256057379698479
the lambda is 20.0
the regulation term lambda/alpha is 78.10749302969143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24219835329908238
the lambda is 20.0
the regulation term lambda/alpha is 82.57694458930813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1705374258389267
the lambda is 20.0
the regulation term lambda/alpha is 117.27630988689886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.3034999115041912
the lambda is 20.0
the regulation term lambda/alpha is 65.8978775343854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2342942938102461
the lambda is 20.0
the regulation term lambda/alpha is 85.36272768212575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1984290417713769
the lambda is 20.0
the regulation term lambda/alpha is 100.79169773466582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2836424358370173
the lambda is 20.0
the regulation term lambda/alpha is 70.51131097848885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2390058074584648
the lambda is 20.0
the regulation term lambda/alpha is 83.67997502937523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19340731466372857
the lambda is 20.0
the regulation term lambda/alpha is 103.40870527453107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23848266150620015
the lambda is 20.0
the regulation term lambda/alpha is 83.86353906688531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25669941650346345
the lambda is 20.0
the regulation term lambda/alpha is 77.91213658535978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26264398268023564
the lambda is 20.0
the regulation term lambda/alpha is 76.14870820912597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19013760286276515
the lambda is 20.0
the regulation term lambda/alpha is 105.18697879259221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2626411314390006
the lambda is 20.0
the regulation term lambda/alpha is 76.14953488214422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19371117287187928
the lambda is 20.0
the regulation term lambda/alpha is 103.24649685141299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.254317279750486
the lambda is 20.0
the regulation term lambda/alpha is 78.64192326853393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22828488144720957
the lambda is 20.0
the regulation term lambda/alpha is 87.6098315105679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21441957168918852
the lambda is 20.0
the regulation term lambda/alpha is 93.27506739445857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22327318845403857
the lambda is 20.0
the regulation term lambda/alpha is 89.57636220668321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18859517830759515
the lambda is 20.0
the regulation term lambda/alpha is 106.04724987921155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2483832475699108
the lambda is 20.0
the regulation term lambda/alpha is 80.52072833281855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17496698262159724
the lambda is 20.0
the regulation term lambda/alpha is 114.30728072423922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2577989887946678
the lambda is 20.0
the regulation term lambda/alpha is 77.57982330927464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2321746828756157
the lambda is 20.0
the regulation term lambda/alpha is 86.14203647136978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23755722844982205
the lambda is 20.0
the regulation term lambda/alpha is 84.19023967618183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2524457065698823
the lambda is 20.0
the regulation term lambda/alpha is 79.22495601826992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2125062018131445
the lambda is 20.0
the regulation term lambda/alpha is 94.11490031517239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19310717872518188
the lambda is 20.0
the regulation term lambda/alpha is 103.56942777597489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2153529647436656
the lambda is 20.0
the regulation term lambda/alpha is 92.87079016444457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.28042911871784315
the lambda is 20.0
the regulation term lambda/alpha is 71.31926987982736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17584405048331436
the lambda is 20.0
the regulation term lambda/alpha is 113.73714348042601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2710583969000069
the lambda is 20.0
the regulation term lambda/alpha is 73.78483835488032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24449859641407956
the lambda is 20.0
the regulation term lambda/alpha is 81.80006058655759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16193041610192538
the lambda is 20.0
the regulation term lambda/alpha is 123.50984133463359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16473326471236
the lambda is 20.0
the regulation term lambda/alpha is 121.40838727941141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18208096759201467
the lambda is 20.0
the regulation term lambda/alpha is 109.84124406024476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19395135125558804
the lambda is 20.0
the regulation term lambda/alpha is 103.11864222922638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.194550830305549
the lambda is 20.0
the regulation term lambda/alpha is 102.8008976810291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21417712706427738
the lambda is 20.0
the regulation term lambda/alpha is 93.38065307971816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23797888371000323
the lambda is 20.0
the regulation term lambda/alpha is 84.0410698974941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.29596852221601666
the lambda is 20.0
the regulation term lambda/alpha is 67.5747537280425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19107512426897452
the lambda is 20.0
the regulation term lambda/alpha is 104.67087265554359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22356872952316795
the lambda is 20.0
the regulation term lambda/alpha is 89.45794898354711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21855901032704764
the lambda is 20.0
the regulation term lambda/alpha is 91.508467072908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1664076424438899
the lambda is 20.0
the regulation term lambda/alpha is 120.18678773568764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20090260084689918
the lambda is 20.0
the regulation term lambda/alpha is 99.55072714683917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17807688946324918
the lambda is 20.0
the regulation term lambda/alpha is 112.31103631854218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1976382412942689
the lambda is 20.0
the regulation term lambda/alpha is 101.19499075192367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24126253033259784
the lambda is 20.0
the regulation term lambda/alpha is 82.89724878715545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23046126623840496
the lambda is 20.0
the regulation term lambda/alpha is 86.78247901020654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1945133815977868
the lambda is 20.0
the regulation term lambda/alpha is 102.82068943388089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1477370962002914
the lambda is 20.0
the regulation term lambda/alpha is 135.37561326429096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22334857649450318
the lambda is 20.0
the regulation term lambda/alpha is 89.54612701770328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1934461679692641
the lambda is 20.0
the regulation term lambda/alpha is 103.3879358270758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19049985950248202
the lambda is 20.0
the regulation term lambda/alpha is 104.98695407037515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2659216546369929
the lambda is 20.0
the regulation term lambda/alpha is 75.21012167024084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21344451953362065
the lambda is 20.0
the regulation term lambda/alpha is 93.70116432926125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2074861516944821
the lambda is 20.0
the regulation term lambda/alpha is 96.39197525553163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2217568360956114
the lambda is 20.0
the regulation term lambda/alpha is 90.18887693444957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2137268012358108
the lambda is 20.0
the regulation term lambda/alpha is 93.57740762672734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2213648121085095
the lambda is 20.0
the regulation term lambda/alpha is 90.34859610025246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.3496105899856067
the lambda is 20.0
the regulation term lambda/alpha is 57.20650510278705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1890438137579674
the lambda is 20.0
the regulation term lambda/alpha is 105.79558041294057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18977247455851082
the lambda is 20.0
the regulation term lambda/alpha is 105.38936190049829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20128229622945798
the lambda is 20.0
the regulation term lambda/alpha is 99.36293640649042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21563269845159613
the lambda is 20.0
the regulation term lambda/alpha is 92.75031172737225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20063955751454773
the lambda is 20.0
the regulation term lambda/alpha is 99.6812405676775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23942322358655468
the lambda is 20.0
the regulation term lambda/alpha is 83.53408537568092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19447750287672502
the lambda is 20.0
the regulation term lambda/alpha is 102.83965859371177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2038067290050547
the lambda is 20.0
the regulation term lambda/alpha is 98.13218679106504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2367750702340736
the lambda is 20.0
the regulation term lambda/alpha is 84.46835209563316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17536532752614836
the lambda is 20.0
the regulation term lambda/alpha is 114.04763006540071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21396527072140464
the lambda is 20.0
the regulation term lambda/alpha is 93.47311333548693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22505315039535242
the lambda is 20.0
the regulation term lambda/alpha is 88.86789616082184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1996831786034198
the lambda is 20.0
the regulation term lambda/alpha is 100.15866203592914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23145521990754256
the lambda is 20.0
the regulation term lambda/alpha is 86.4098031921217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20080372901015514
the lambda is 20.0
the regulation term lambda/alpha is 99.59974398178906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2385360155141689
the lambda is 20.0
the regulation term lambda/alpha is 83.84478107798364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2356554439793002
the lambda is 20.0
the regulation term lambda/alpha is 84.86967100050015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20165040824576913
the lambda is 20.0
the regulation term lambda/alpha is 99.18154976222134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23500116531315265
the lambda is 20.0
the regulation term lambda/alpha is 85.10596095703968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21356388705755885
the lambda is 20.0
the regulation term lambda/alpha is 93.64879182316851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24504970352638988
the lambda is 20.0
the regulation term lambda/alpha is 81.61609547854916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22143206662824433
the lambda is 20.0
the regulation term lambda/alpha is 90.32115494625899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23310230964528564
the lambda is 20.0
the regulation term lambda/alpha is 85.79923566795293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21797232037239822
the lambda is 20.0
the regulation term lambda/alpha is 91.7547694396733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2391011918831521
the lambda is 20.0
the regulation term lambda/alpha is 83.64659265175862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1832640272668737
the lambda is 20.0
the regulation term lambda/alpha is 109.13216466030998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.200909854262949
the lambda is 20.0
the regulation term lambda/alpha is 99.5471330830004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2177885574745468
the lambda is 20.0
the regulation term lambda/alpha is 91.83218912838166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21181094120740782
the lambda is 20.0
the regulation term lambda/alpha is 94.42382856141393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.2615059792958227
the lambda is 20.0
the regulation term lambda/alpha is 76.48008681811231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19559778214257814
the lambda is 20.0
the regulation term lambda/alpha is 102.25064814600654
380
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20124472812998617
the lambda is 20.0
the regulation term lambda/alpha is 99.38148534793807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20920209223774636
the lambda is 20.0
the regulation term lambda/alpha is 95.60133833303699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22500272743233352
the lambda is 20.0
the regulation term lambda/alpha is 88.8878113978184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.233459501800785
the lambda is 20.0
the regulation term lambda/alpha is 85.66796316162082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20699957178342435
the lambda is 20.0
the regulation term lambda/alpha is 96.61855736071391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20605754352267033
the lambda is 20.0
the regulation term lambda/alpha is 97.06026606980109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17181759469097868
the lambda is 20.0
the regulation term lambda/alpha is 116.40251416608909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2295548379964344
the lambda is 20.0
the regulation term lambda/alpha is 87.12515133447397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24942844365440434
the lambda is 20.0
the regulation term lambda/alpha is 80.1833171348774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24870604898439774
the lambda is 20.0
the regulation term lambda/alpha is 80.41621859086618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22801145605885503
the lambda is 20.0
the regulation term lambda/alpha is 87.71489093441663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20374115827651976
the lambda is 20.0
the regulation term lambda/alpha is 98.16376901546705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24662627201010276
the lambda is 20.0
the regulation term lambda/alpha is 81.09436126569972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20293221838684627
the lambda is 20.0
the regulation term lambda/alpha is 98.55507498505898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26779046709546867
the lambda is 20.0
the regulation term lambda/alpha is 74.68525753334565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22412214250086235
the lambda is 20.0
the regulation term lambda/alpha is 89.23705519155942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2031906812242113
the lambda is 20.0
the regulation term lambda/alpha is 98.42971084845641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20446124800561452
the lambda is 20.0
the regulation term lambda/alpha is 97.81804716095051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22356117988403643
the lambda is 20.0
the regulation term lambda/alpha is 89.46096996971573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20608139205246992
the lambda is 20.0
the regulation term lambda/alpha is 97.0490338832137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20797240170363787
the lambda is 20.0
the regulation term lambda/alpha is 96.1666059350516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22249405515310913
the lambda is 20.0
the regulation term lambda/alpha is 89.89004216870879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.29350551124710256
the lambda is 20.0
the regulation term lambda/alpha is 68.14182096622363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2191098007920236
the lambda is 20.0
the regulation term lambda/alpha is 91.27843632601245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20323092745979074
the lambda is 20.0
the regulation term lambda/alpha is 98.41021861181538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18136655494651288
the lambda is 20.0
the regulation term lambda/alpha is 110.27391464704303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2113137766393428
the lambda is 20.0
the regulation term lambda/alpha is 94.64598247247625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2334993965504937
the lambda is 20.0
the regulation term lambda/alpha is 85.65332628461438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22692081204320005
the lambda is 20.0
the regulation term lambda/alpha is 88.13647289518997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2500000551820466
the lambda is 20.0
the regulation term lambda/alpha is 79.99998234174899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25703794672471336
the lambda is 20.0
the regulation term lambda/alpha is 77.80952289281987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20381411881822117
the lambda is 20.0
the regulation term lambda/alpha is 98.12862875234717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1867565285866362
the lambda is 20.0
the regulation term lambda/alpha is 107.09130305301224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.30712866741288225
the lambda is 20.0
the regulation term lambda/alpha is 65.11928752360132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22458386126236135
the lambda is 20.0
the regulation term lambda/alpha is 89.05359400084309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26398868642495227
the lambda is 20.0
the regulation term lambda/alpha is 75.76082244602432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.195374271228646
the lambda is 20.0
the regulation term lambda/alpha is 102.36762432548782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23644273910194757
the lambda is 20.0
the regulation term lambda/alpha is 84.58707624502925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21256901233832304
the lambda is 20.0
the regulation term lambda/alpha is 94.08709096398383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2820408191290031
the lambda is 20.0
the regulation term lambda/alpha is 70.91172143721569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2229153951999455
the lambda is 20.0
the regulation term lambda/alpha is 89.72013791178874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2289270335795655
the lambda is 20.0
the regulation term lambda/alpha is 87.36408141613748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2570528772249194
the lambda is 20.0
the regulation term lambda/alpha is 77.80500345265595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.193467540038933
the lambda is 20.0
the regulation term lambda/alpha is 103.37651471650099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19166125492415037
the lambda is 20.0
the regulation term lambda/alpha is 104.35077244962717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17859725953467315
the lambda is 20.0
the regulation term lambda/alpha is 111.98380116306974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2760704579667164
the lambda is 20.0
the regulation term lambda/alpha is 72.44527410611691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.15762169981776228
the lambda is 20.0
the regulation term lambda/alpha is 126.8860824564348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2048634015832377
the lambda is 20.0
the regulation term lambda/alpha is 97.62602712556168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21280855021707612
the lambda is 20.0
the regulation term lambda/alpha is 93.98118628033943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19091098315260813
the lambda is 20.0
the regulation term lambda/alpha is 104.76086639820319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21198614411052571
the lambda is 20.0
the regulation term lambda/alpha is 94.34578889067564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27001668181455923
the lambda is 20.0
the regulation term lambda/alpha is 74.06949772731265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1897587990591173
the lambda is 20.0
the regulation term lambda/alpha is 105.3969570800731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.29209939694337594
the lambda is 20.0
the regulation term lambda/alpha is 68.46984351657885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24109863248780203
the lambda is 20.0
the regulation term lambda/alpha is 82.95360199113475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2218008769511022
the lambda is 20.0
the regulation term lambda/alpha is 90.17096900121437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1758066403223641
the lambda is 20.0
the regulation term lambda/alpha is 113.76134577924603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2056789456168665
the lambda is 20.0
the regulation term lambda/alpha is 97.23892710562359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2118782318560899
the lambda is 20.0
the regulation term lambda/alpha is 94.39384039028714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2118239961908836
the lambda is 20.0
the regulation term lambda/alpha is 94.41800910023976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17109510992679583
the lambda is 20.0
the regulation term lambda/alpha is 116.8940480447228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24253407611928618
the lambda is 20.0
the regulation term lambda/alpha is 82.46263914751239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20061486663105524
the lambda is 20.0
the regulation term lambda/alpha is 99.69350894009963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 0.24543302607926573
the lambda is 20.0
the regulation term lambda/alpha is 81.48862571388719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.27492966238224603
the lambda is 20.0
the regulation term lambda/alpha is 72.74587917033548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22513949170367714
the lambda is 20.0
the regulation term lambda/alpha is 88.83381519899446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16625312624322788
the lambda is 20.0
the regulation term lambda/alpha is 120.29848973029267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23270249704631643
the lambda is 20.0
the regulation term lambda/alpha is 85.94664970878786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17810715725117193
the lambda is 20.0
the regulation term lambda/alpha is 112.29195001858018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18757954467409196
the lambda is 20.0
the regulation term lambda/alpha is 106.62143377492883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25017747357770775
the lambda is 20.0
the regulation term lambda/alpha is 79.94324874252833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1889240964552362
the lambda is 20.0
the regulation term lambda/alpha is 105.86262088985993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2520544922821227
the lambda is 20.0
the regulation term lambda/alpha is 79.34792123289813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18775116208942533
the lambda is 20.0
the regulation term lambda/alpha is 106.52397448530337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21774222237995167
the lambda is 20.0
the regulation term lambda/alpha is 91.85173082830386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.29616230354685835
the lambda is 20.0
the regulation term lambda/alpha is 67.53053903376204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24957987475461962
the lambda is 20.0
the regulation term lambda/alpha is 80.13466638551476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23407460318735393
the lambda is 20.0
the regulation term lambda/alpha is 85.44284483520815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2353113223548044
the lambda is 20.0
the regulation term lambda/alpha is 84.99378525374921
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2928981548635473
the lambda is 20.0
the regulation term lambda/alpha is 68.28312049052482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19243610321704213
the lambda is 20.0
the regulation term lambda/alpha is 103.93060172000408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21263890707984962
the lambda is 20.0
the regulation term lambda/alpha is 94.0561643899423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20469908211359036
the lambda is 20.0
the regulation term lambda/alpha is 97.70439512230799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21558858600928477
the lambda is 20.0
the regulation term lambda/alpha is 92.76928973938656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1950421499402929
the lambda is 20.0
the regulation term lambda/alpha is 102.54193776126074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1966115378707248
the lambda is 20.0
the regulation term lambda/alpha is 101.72342995023169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20742166434562068
the lambda is 20.0
the regulation term lambda/alpha is 96.42194349899046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22467193112718029
the lambda is 20.0
the regulation term lambda/alpha is 89.0186855993087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22409657721095053
the lambda is 20.0
the regulation term lambda/alpha is 89.24723549513766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22505908390701496
the lambda is 20.0
the regulation term lambda/alpha is 88.86555322629486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.27933135838756956
the lambda is 20.0
the regulation term lambda/alpha is 71.5995515700396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2664058861521975
the lambda is 20.0
the regulation term lambda/alpha is 75.07341631548641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18492888922957493
the lambda is 20.0
the regulation term lambda/alpha is 108.14967895671263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21386734350296832
the lambda is 20.0
the regulation term lambda/alpha is 93.51591352104869
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2191936977345395
the lambda is 20.0
the regulation term lambda/alpha is 91.24349927351263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22251063582471628
the lambda is 20.0
the regulation term lambda/alpha is 89.88334389442439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22571904857704686
the lambda is 20.0
the regulation term lambda/alpha is 88.60572524154162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20197228198333753
the lambda is 20.0
the regulation term lambda/alpha is 99.02348878570366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24122607772246685
the lambda is 20.0
the regulation term lambda/alpha is 82.90977571260024
390
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20704780735800724
the lambda is 20.0
the regulation term lambda/alpha is 96.59604830017791
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21435855093957845
the lambda is 20.0
the regulation term lambda/alpha is 93.30161970369649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21392495472450365
the lambda is 20.0
the regulation term lambda/alpha is 93.49072914731408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23289619848613724
the lambda is 20.0
the regulation term lambda/alpha is 85.87516726336976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20151980912776024
the lambda is 20.0
the regulation term lambda/alpha is 99.24582643545642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2425511503932141
the lambda is 20.0
the regulation term lambda/alpha is 82.45683422889073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25039424359405577
the lambda is 20.0
the regulation term lambda/alpha is 79.87404068451512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.196192739553274
the lambda is 20.0
the regulation term lambda/alpha is 101.94057152950464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21141655060773243
the lambda is 20.0
the regulation term lambda/alpha is 94.59997309817291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2546131201227352
the lambda is 20.0
the regulation term lambda/alpha is 78.5505475537124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20717544881946484
the lambda is 20.0
the regulation term lambda/alpha is 96.53653516362472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25372382513954445
the lambda is 20.0
the regulation term lambda/alpha is 78.82586504834651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2601993655562818
the lambda is 20.0
the regulation term lambda/alpha is 76.8641382243261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.214497697799244
the lambda is 20.0
the regulation term lambda/alpha is 93.24109398469493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23978435802816178
the lambda is 20.0
the regulation term lambda/alpha is 83.40827635492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2315581776900574
the lambda is 20.0
the regulation term lambda/alpha is 86.37138277521846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2398151764829549
the lambda is 20.0
the regulation term lambda/alpha is 83.39755762463815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22320575085347388
the lambda is 20.0
the regulation term lambda/alpha is 89.60342609240944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1944022219137294
the lambda is 20.0
the regulation term lambda/alpha is 102.87948256515028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1969828369480514
the lambda is 20.0
the regulation term lambda/alpha is 101.53168829259185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18554589551201642
the lambda is 20.0
the regulation term lambda/alpha is 107.79004269973059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2621966905678418
the lambda is 20.0
the regulation term lambda/alpha is 76.2786134206569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22540043908160812
the lambda is 20.0
the regulation term lambda/alpha is 88.73097178288474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.28032728738468177
the lambda is 20.0
the regulation term lambda/alpha is 71.34517722691338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19472488120652126
the lambda is 20.0
the regulation term lambda/alpha is 102.70901117555904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20989611682359993
the lambda is 20.0
the regulation term lambda/alpha is 95.28523110700672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2692662752354209
the lambda is 20.0
the regulation term lambda/alpha is 74.27591881870055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20063989160619852
the lambda is 20.0
the regulation term lambda/alpha is 99.68107458537983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20213639905624378
the lambda is 20.0
the regulation term lambda/alpha is 98.9430903754997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24076447795576944
the lambda is 20.0
the regulation term lambda/alpha is 83.06873243848777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19872182398483912
the lambda is 20.0
the regulation term lambda/alpha is 100.64319861277964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18926444559678987
the lambda is 20.0
the regulation term lambda/alpha is 105.6722509974648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20646689301101698
the lambda is 20.0
the regulation term lambda/alpha is 96.8678305191177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20490902078276554
the lambda is 20.0
the regulation term lambda/alpha is 97.60429249819614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21305193410387327
the lambda is 20.0
the regulation term lambda/alpha is 93.87382510336198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20477063609627388
the lambda is 20.0
the regulation term lambda/alpha is 97.67025380825064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2871636812558282
the lambda is 20.0
the regulation term lambda/alpha is 69.6466903911237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2371636136103946
the lambda is 20.0
the regulation term lambda/alpha is 84.32996822546063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17637820559602346
the lambda is 20.0
the regulation term lambda/alpha is 113.39269459293621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22184945061650266
the lambda is 20.0
the regulation term lambda/alpha is 90.15122617802987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2531182815026605
the lambda is 20.0
the regulation term lambda/alpha is 79.01444289708398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24772463296218816
the lambda is 20.0
the regulation term lambda/alpha is 80.73480525875976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24084884431703749
the lambda is 20.0
the regulation term lambda/alpha is 83.03963449238445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22427096994004542
the lambda is 20.0
the regulation term lambda/alpha is 89.17783699489337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19644464240416354
the lambda is 20.0
the regulation term lambda/alpha is 101.80985215596856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2384374800522001
the lambda is 20.0
the regulation term lambda/alpha is 83.87943034635948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2904754608211589
the lambda is 20.0
the regulation term lambda/alpha is 68.85263196918959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22485215589315594
the lambda is 20.0
the regulation term lambda/alpha is 88.9473348412256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25109280379038046
the lambda is 20.0
the regulation term lambda/alpha is 79.65182473607081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18309692580071654
the lambda is 20.0
the regulation term lambda/alpha is 109.23176297218711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23553789373021075
the lambda is 20.0
the regulation term lambda/alpha is 84.91202703420772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19162231123886386
the lambda is 20.0
the regulation term lambda/alpha is 104.37197981120948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2747318113856194
the lambda is 20.0
the regulation term lambda/alpha is 72.79826787851508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21173859888905036
the lambda is 20.0
the regulation term lambda/alpha is 94.45608927675897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26325222033780504
the lambda is 20.0
the regulation term lambda/alpha is 75.97276852721704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23446067628062556
the lambda is 20.0
the regulation term lambda/alpha is 85.3021509503028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20002853435361675
the lambda is 20.0
the regulation term lambda/alpha is 99.98573485842459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2214968994460891
the lambda is 20.0
the regulation term lambda/alpha is 90.29471766880361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21382179686264677
the lambda is 20.0
the regulation term lambda/alpha is 93.53583354669613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24501015491792952
the lambda is 20.0
the regulation term lambda/alpha is 81.62926963863744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.28733682566194857
the lambda is 20.0
the regulation term lambda/alpha is 69.60472245047342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.1974642293238326
the lambda is 20.0
the regulation term lambda/alpha is 101.28416710451839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24679550048832768
the lambda is 20.0
the regulation term lambda/alpha is 81.03875459814516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.28246923661027673
the lambda is 20.0
the regulation term lambda/alpha is 70.80417053554767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17355780458912956
the lambda is 20.0
the regulation term lambda/alpha is 115.23538251331775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17194148311362062
the lambda is 20.0
the regulation term lambda/alpha is 116.31864305127462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21669787770574014
the lambda is 20.0
the regulation term lambda/alpha is 92.29439721213392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2211963676615309
the lambda is 20.0
the regulation term lambda/alpha is 90.41739795023894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21792591974534892
the lambda is 20.0
the regulation term lambda/alpha is 91.77430579790796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2616976620103202
the lambda is 20.0
the regulation term lambda/alpha is 76.42406831747427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18625487879672847
the lambda is 20.0
the regulation term lambda/alpha is 107.3797375360419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20071455261697954
the lambda is 20.0
the regulation term lambda/alpha is 99.64399561084984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21652716335047856
the lambda is 20.0
the regulation term lambda/alpha is 92.36716396467675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23373606495878005
the lambda is 20.0
the regulation term lambda/alpha is 85.56659839176744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19318214289265842
the lambda is 20.0
the regulation term lambda/alpha is 103.52923774695363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18979817672000643
the lambda is 20.0
the regulation term lambda/alpha is 105.37509024390866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19963673420802883
the lambda is 20.0
the regulation term lambda/alpha is 100.18196340138115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2298034352044467
the lambda is 20.0
the regulation term lambda/alpha is 87.03090091846025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19628122015636196
the lambda is 20.0
the regulation term lambda/alpha is 101.8946182628555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21932143750306826
the lambda is 20.0
the regulation term lambda/alpha is 91.19035616260815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21756826394607218
the lambda is 20.0
the regulation term lambda/alpha is 91.92517160939117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17179506891370636
the lambda is 20.0
the regulation term lambda/alpha is 116.4177768690562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2122754159883158
the lambda is 20.0
the regulation term lambda/alpha is 94.21722203149918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1807945804222366
the lambda is 20.0
the regulation term lambda/alpha is 110.62278500434589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18563988807834225
the lambda is 20.0
the regulation term lambda/alpha is 107.73546680635663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19263924661569742
the lambda is 20.0
the regulation term lambda/alpha is 103.82100403402573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2651112986162503
the lambda is 20.0
the regulation term lambda/alpha is 75.44001370137785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25455586659825596
the lambda is 20.0
the regulation term lambda/alpha is 78.56821477842549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20653536498880842
the lambda is 20.0
the regulation term lambda/alpha is 96.83571625171187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21776328603723616
the lambda is 20.0
the regulation term lambda/alpha is 91.84284625728932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20299186382934697
the lambda is 20.0
the regulation term lambda/alpha is 98.5261163807717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17609267150921792
the lambda is 20.0
the regulation term lambda/alpha is 113.57656073127984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.189765005127798
the lambda is 20.0
the regulation term lambda/alpha is 105.3935101813473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24429081230206856
the lambda is 20.0
the regulation term lambda/alpha is 81.86963648583622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23175122731728864
the lambda is 20.0
the regulation term lambda/alpha is 86.29943509476293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22818962077999538
the lambda is 20.0
the regulation term lambda/alpha is 87.64640535198843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23377290437776407
the lambda is 20.0
the regulation term lambda/alpha is 85.55311426375191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16841762970089305
the lambda is 20.0
the regulation term lambda/alpha is 118.7524134826008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23115501958757517
the lambda is 20.0
the regulation term lambda/alpha is 86.5220233403706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22781116190761025
the lambda is 20.0
the regulation term lambda/alpha is 87.79201085902491
400
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22582810021197103
the lambda is 20.0
the regulation term lambda/alpha is 88.56293783292347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2496227853820764
the lambda is 20.0
the regulation term lambda/alpha is 80.12089108527371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1870117119730538
the lambda is 20.0
the regulation term lambda/alpha is 106.94517358828182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28524297791074305
the lambda is 20.0
the regulation term lambda/alpha is 70.11566120396594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21082510059507756
the lambda is 20.0
the regulation term lambda/alpha is 94.86536443501154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20812394461436812
the lambda is 20.0
the regulation term lambda/alpha is 96.09658339437063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23559789142748463
the lambda is 20.0
the regulation term lambda/alpha is 84.89040321549676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2490758410118099
the lambda is 20.0
the regulation term lambda/alpha is 80.29682814180161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2677463012283258
the lambda is 20.0
the regulation term lambda/alpha is 74.69757717752603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23070434422970798
the lambda is 20.0
the regulation term lambda/alpha is 86.69104202080554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20449333248899693
the lambda is 20.0
the regulation term lambda/alpha is 97.80269975832161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2883712821185065
the lambda is 20.0
the regulation term lambda/alpha is 69.35503373661521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21969975284297358
the lambda is 20.0
the regulation term lambda/alpha is 91.03332953812942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2207004305528467
the lambda is 20.0
the regulation term lambda/alpha is 90.62057536499007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21968648903588478
the lambda is 20.0
the regulation term lambda/alpha is 91.03882577290901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25461393495577184
the lambda is 20.0
the regulation term lambda/alpha is 78.55029617084445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19307703698523648
the lambda is 20.0
the regulation term lambda/alpha is 103.58559625880983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19060514347330781
the lambda is 20.0
the regulation term lambda/alpha is 104.92896275278522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27705122401297144
the lambda is 20.0
the regulation term lambda/alpha is 72.18881660332822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20734218133925547
the lambda is 20.0
the regulation term lambda/alpha is 96.45890609820385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.26579958892532635
the lambda is 20.0
the regulation term lambda/alpha is 75.24466114061144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16728505906803096
the lambda is 20.0
the regulation term lambda/alpha is 119.5564033717229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23274938318035734
the lambda is 20.0
the regulation term lambda/alpha is 85.92933621010722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20837645823988976
the lambda is 20.0
the regulation term lambda/alpha is 95.98013215569365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1867457864710131
the lambda is 20.0
the regulation term lambda/alpha is 107.09746323033866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19590746147064347
the lambda is 20.0
the regulation term lambda/alpha is 102.08901616030066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21546509199391692
the lambda is 20.0
the regulation term lambda/alpha is 92.82246054300363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2314702652510018
the lambda is 20.0
the regulation term lambda/alpha is 86.40418663845394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1882293699703486
the lambda is 20.0
the regulation term lambda/alpha is 106.25334400869833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2658562071476893
the lambda is 20.0
the regulation term lambda/alpha is 75.22863661742355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2080267989988894
the lambda is 20.0
the regulation term lambda/alpha is 96.14145915934022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23011496311443275
the lambda is 20.0
the regulation term lambda/alpha is 86.9130791379885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22237982015482718
the lambda is 20.0
the regulation term lambda/alpha is 89.93621807084577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2011215562039798
the lambda is 20.0
the regulation term lambda/alpha is 99.44234908224243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20387172280455124
the lambda is 20.0
the regulation term lambda/alpha is 98.10090249334725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2121393654348769
the lambda is 20.0
the regulation term lambda/alpha is 94.27764601351016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1579002466089431
the lambda is 20.0
the regulation term lambda/alpha is 126.66224676350345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1909151759519684
the lambda is 20.0
the regulation term lambda/alpha is 104.75856568380776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18582170197767156
the lambda is 20.0
the regulation term lambda/alpha is 107.63005497820276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2487294236645697
the lambda is 20.0
the regulation term lambda/alpha is 80.40866136919732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25867955807872983
the lambda is 20.0
the regulation term lambda/alpha is 77.3157343724584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21006448656298074
the lambda is 20.0
the regulation term lambda/alpha is 95.20885860925223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23307828870295183
the lambda is 20.0
the regulation term lambda/alpha is 85.80807809812407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2620424876809966
the lambda is 20.0
the regulation term lambda/alpha is 76.32350073071912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21646868094798097
the lambda is 20.0
the regulation term lambda/alpha is 92.39211839982592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2028689049604953
the lambda is 20.0
the regulation term lambda/alpha is 98.58583307232128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20434225360072372
the lambda is 20.0
the regulation term lambda/alpha is 97.87500943920864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1774428655199952
the lambda is 20.0
the regulation term lambda/alpha is 112.71233668026115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21002728455129346
the lambda is 20.0
the regulation term lambda/alpha is 95.22572289942426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.18022225887217933
the lambda is 20.0
the regulation term lambda/alpha is 110.97408347425488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1780789189617097
the lambda is 20.0
the regulation term lambda/alpha is 112.3097563519036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20366705857863604
the lambda is 20.0
the regulation term lambda/alpha is 98.19948370432218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20979841918295028
the lambda is 20.0
the regulation term lambda/alpha is 95.32960294881642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17578668659171343
the lambda is 20.0
the regulation term lambda/alpha is 113.77425894858865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2526154892462194
the lambda is 20.0
the regulation term lambda/alpha is 79.17170898616747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.269906173732496
the lambda is 20.0
the regulation term lambda/alpha is 74.0998241108112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23920812891519966
the lambda is 20.0
the regulation term lambda/alpha is 83.6091987789014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20680683999075472
the lambda is 20.0
the regulation term lambda/alpha is 96.70860016474357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20147497711197687
the lambda is 20.0
the regulation term lambda/alpha is 99.2679105201451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23660687657479512
the lambda is 20.0
the regulation term lambda/alpha is 84.52839701671853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19891236251285685
the lambda is 20.0
the regulation term lambda/alpha is 100.54679230260153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22639565057245398
the lambda is 20.0
the regulation term lambda/alpha is 88.34091975454868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20331813186346476
the lambda is 20.0
the regulation term lambda/alpha is 98.36800986067834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2263302621486818
the lambda is 20.0
the regulation term lambda/alpha is 88.36644207508371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.30033807487932973
the lambda is 20.0
the regulation term lambda/alpha is 66.59162348308861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25964874152661244
the lambda is 20.0
the regulation term lambda/alpha is 77.02714013713069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20265540891940842
the lambda is 20.0
the regulation term lambda/alpha is 98.68969255073551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24625441409165483
the lambda is 20.0
the regulation term lambda/alpha is 81.21681828028507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21018679366654355
the lambda is 20.0
the regulation term lambda/alpha is 95.1534568424386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1945026103967543
the lambda is 20.0
the regulation term lambda/alpha is 102.8263834567731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2545827592629528
the lambda is 20.0
the regulation term lambda/alpha is 78.5599152821753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2792552023593033
the lambda is 20.0
the regulation term lambda/alpha is 71.61907757144316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2142644725243309
the lambda is 20.0
the regulation term lambda/alpha is 93.34258621773562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21019928942934302
the lambda is 20.0
the regulation term lambda/alpha is 95.14780023422894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17365496905806505
the lambda is 20.0
the regulation term lambda/alpha is 115.17090532153213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23201588126919437
the lambda is 20.0
the regulation term lambda/alpha is 86.20099577060924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20972044858075709
the lambda is 20.0
the regulation term lambda/alpha is 95.36504492216264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25346134923586106
the lambda is 20.0
the regulation term lambda/alpha is 78.90749441797058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1613776394755696
the lambda is 20.0
the regulation term lambda/alpha is 123.93290709291686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20475757680127954
the lambda is 20.0
the regulation term lambda/alpha is 97.67648314870573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20472512731677986
the lambda is 20.0
the regulation term lambda/alpha is 97.69196513456383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20228331996276389
the lambda is 20.0
the regulation term lambda/alpha is 98.87122677085576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25608678520040545
the lambda is 20.0
the regulation term lambda/alpha is 78.09852423407412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22544869165727235
the lambda is 20.0
the regulation term lambda/alpha is 88.71198077478333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22833162610805707
the lambda is 20.0
the regulation term lambda/alpha is 87.59189579167223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21317692954745332
the lambda is 20.0
the regulation term lambda/alpha is 93.81878255990166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20968788292645701
the lambda is 20.0
the regulation term lambda/alpha is 95.37985562577558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19157248632899532
the lambda is 20.0
the regulation term lambda/alpha is 104.39912527758906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2176958271170324
the lambda is 20.0
the regulation term lambda/alpha is 91.87130623890224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25308445405097896
the lambda is 20.0
the regulation term lambda/alpha is 79.02500402482796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19229120409972467
the lambda is 20.0
the regulation term lambda/alpha is 104.0089175874511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22680800043442517
the lambda is 20.0
the regulation term lambda/alpha is 88.18031093123811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22295177648182327
the lambda is 20.0
the regulation term lambda/alpha is 89.70549737526112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24861379148837356
the lambda is 20.0
the regulation term lambda/alpha is 80.44606005268739
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2262088128275377
the lambda is 20.0
the regulation term lambda/alpha is 88.41388516214911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2391896350769021
the lambda is 20.0
the regulation term lambda/alpha is 83.61566333578702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17631455160654702
the lambda is 20.0
the regulation term lambda/alpha is 113.43363220881962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.31694186256553425
the lambda is 20.0
the regulation term lambda/alpha is 63.10305567748908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20024738724190996
the lambda is 20.0
the regulation term lambda/alpha is 99.87645919114485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2268806057973075
the lambda is 20.0
the regulation term lambda/alpha is 88.15209184458793
410
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.239751393724126
the lambda is 20.0
the regulation term lambda/alpha is 83.4197444666926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.15786561146892572
the lambda is 20.0
the regulation term lambda/alpha is 126.69003599898514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2433273116734337
the lambda is 20.0
the regulation term lambda/alpha is 82.19381483506352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.20529814421314602
the lambda is 20.0
the regulation term lambda/alpha is 97.41929269090453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22475815044499764
the lambda is 20.0
the regulation term lambda/alpha is 88.98453720322084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1856328075510079
the lambda is 20.0
the regulation term lambda/alpha is 107.73957612263355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22403343425071678
the lambda is 20.0
the regulation term lambda/alpha is 89.27238948458877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22245150741383807
the lambda is 20.0
the regulation term lambda/alpha is 89.90723521056194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21495089715808968
the lambda is 20.0
the regulation term lambda/alpha is 93.0445058123699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23432347150627486
the lambda is 20.0
the regulation term lambda/alpha is 85.35209841095423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26112871410311483
the lambda is 20.0
the regulation term lambda/alpha is 76.59058127212458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1954778235746222
the lambda is 20.0
the regulation term lambda/alpha is 102.31339614012609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26424222541765374
the lambda is 20.0
the regulation term lambda/alpha is 75.68813034475686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19418244711968746
the lambda is 20.0
the regulation term lambda/alpha is 102.99592108689762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2741914125739885
the lambda is 20.0
the regulation term lambda/alpha is 72.94174464564294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2164390346180406
the lambda is 20.0
the regulation term lambda/alpha is 92.40477363658026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21281013600234858
the lambda is 20.0
the regulation term lambda/alpha is 93.98048596604102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2650178126944855
the lambda is 20.0
the regulation term lambda/alpha is 75.46662541908513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2560399769740157
the lambda is 20.0
the regulation term lambda/alpha is 78.11280190057862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26598733531061136
the lambda is 20.0
the regulation term lambda/alpha is 75.19154991588096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.28127497488669767
the lambda is 20.0
the regulation term lambda/alpha is 71.10479703377928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18137896801321216
the lambda is 20.0
the regulation term lambda/alpha is 110.26636781031384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20280123778527667
the lambda is 20.0
the regulation term lambda/alpha is 98.61872747135666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23858193010118037
the lambda is 20.0
the regulation term lambda/alpha is 83.82864532749059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24247051719832607
the lambda is 20.0
the regulation term lambda/alpha is 82.4842551213813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24768682334121184
the lambda is 20.0
the regulation term lambda/alpha is 80.74712950090253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.28343581223554826
the lambda is 20.0
the regulation term lambda/alpha is 70.56271344913563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21297395156392243
the lambda is 20.0
the regulation term lambda/alpha is 93.90819794221248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22888338689071894
the lambda is 20.0
the regulation term lambda/alpha is 87.3807412223809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24426822607886897
the lambda is 20.0
the regulation term lambda/alpha is 81.87720654892884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20530767276179976
the lambda is 20.0
the regulation term lambda/alpha is 97.41477135734826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2574009969302324
the lambda is 20.0
the regulation term lambda/alpha is 77.69977676279524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25736558577314234
the lambda is 20.0
the regulation term lambda/alpha is 77.71046754335374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19620961565425368
the lambda is 20.0
the regulation term lambda/alpha is 101.93180356279045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1892606906503395
the lambda is 20.0
the regulation term lambda/alpha is 105.6743475429356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23936790057841656
the lambda is 20.0
the regulation term lambda/alpha is 83.55339187782211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23961206415412895
the lambda is 20.0
the regulation term lambda/alpha is 83.46825136122999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2017638207484676
the lambda is 20.0
the regulation term lambda/alpha is 99.12579929249729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21761996937791372
the lambda is 20.0
the regulation term lambda/alpha is 91.90333064181472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22669163178338636
the lambda is 20.0
the regulation term lambda/alpha is 88.22557693312149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.30594296287372597
the lambda is 20.0
the regulation term lambda/alpha is 65.37166212989428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2622696195319445
the lambda is 20.0
the regulation term lambda/alpha is 76.2574027281265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18938087411300675
the lambda is 20.0
the regulation term lambda/alpha is 105.60728528513214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.282857764383288
the lambda is 20.0
the regulation term lambda/alpha is 70.70691534172944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18859377433000218
the lambda is 20.0
the regulation term lambda/alpha is 106.04803934303746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20880412854454558
the lambda is 20.0
the regulation term lambda/alpha is 95.78354671149745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2723816709961509
the lambda is 20.0
the regulation term lambda/alpha is 73.42637970776904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2344931949409056
the lambda is 20.0
the regulation term lambda/alpha is 85.29032155939613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.3084013024047791
the lambda is 20.0
the regulation term lambda/alpha is 64.85056919036563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2733912793515235
the lambda is 20.0
the regulation term lambda/alpha is 73.1552229736056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2628004653628093
the lambda is 20.0
the regulation term lambda/alpha is 76.10336599818798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2493923184442283
the lambda is 20.0
the regulation term lambda/alpha is 80.1949319239863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24442160560777615
the lambda is 20.0
the regulation term lambda/alpha is 81.8258269364863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2262862593735811
the lambda is 20.0
the regulation term lambda/alpha is 88.38362548112808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16372456915881436
the lambda is 20.0
the regulation term lambda/alpha is 122.15637581308773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2295826172491937
the lambda is 20.0
the regulation term lambda/alpha is 87.11460928373157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22478808011100687
the lambda is 20.0
the regulation term lambda/alpha is 88.97268925524618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21585268846193828
the lambda is 20.0
the regulation term lambda/alpha is 92.65578363888037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.244876200243491
the lambda is 20.0
the regulation term lambda/alpha is 81.67392331354837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25151946783287293
the lambda is 20.0
the regulation term lambda/alpha is 79.51670768200493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23572616183762754
the lambda is 20.0
the regulation term lambda/alpha is 84.84421009568027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24762621752651284
the lambda is 20.0
the regulation term lambda/alpha is 80.76689213192314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19264607788116153
the lambda is 20.0
the regulation term lambda/alpha is 103.81732252206812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21885427161752657
the lambda is 20.0
the regulation term lambda/alpha is 91.3850109124319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22472632353118097
the lambda is 20.0
the regulation term lambda/alpha is 88.99713965740636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24195978469406354
the lambda is 20.0
the regulation term lambda/alpha is 82.65836417935405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21480952323877486
the lambda is 20.0
the regulation term lambda/alpha is 93.10574176810908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2974129121263809
the lambda is 20.0
the regulation term lambda/alpha is 67.2465760044114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2578412767755513
the lambda is 20.0
the regulation term lambda/alpha is 77.5670996130299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24317742906860693
the lambda is 20.0
the regulation term lambda/alpha is 82.24447505922706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1965560896712537
the lambda is 20.0
the regulation term lambda/alpha is 101.75212598831527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21768802648069815
the lambda is 20.0
the regulation term lambda/alpha is 91.8745983568065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25717904609081865
the lambda is 20.0
the regulation term lambda/alpha is 77.76683327823419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2419879035313103
the lambda is 20.0
the regulation term lambda/alpha is 82.6487593311136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22640477747056595
the lambda is 20.0
the regulation term lambda/alpha is 88.33735852857666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.16788864987018504
the lambda is 20.0
the regulation term lambda/alpha is 119.12657595057446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21973049682771195
the lambda is 20.0
the regulation term lambda/alpha is 91.02059244730948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2699822669895697
the lambda is 20.0
the regulation term lambda/alpha is 74.07893941705686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1927295125015954
the lambda is 20.0
the regulation term lambda/alpha is 103.77237891801569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20271323962371035
the lambda is 20.0
the regulation term lambda/alpha is 98.66153802842535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.3296082369652423
the lambda is 20.0
the regulation term lambda/alpha is 60.678095256791266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2661648030820931
the lambda is 20.0
the regulation term lambda/alpha is 75.14141527507455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19577059847695444
the lambda is 20.0
the regulation term lambda/alpha is 102.16038647066988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20207002070708552
the lambda is 20.0
the regulation term lambda/alpha is 98.97559237147496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2932080814599011
the lambda is 20.0
the regulation term lambda/alpha is 68.21094391538857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17933377335294642
the lambda is 20.0
the regulation term lambda/alpha is 111.5238899291883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22819137182962276
the lambda is 20.0
the regulation term lambda/alpha is 87.64573278841077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23088907659906546
the lambda is 20.0
the regulation term lambda/alpha is 86.62168126181918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.204811018352705
the lambda is 20.0
the regulation term lambda/alpha is 97.65099632265881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2666407094080764
the lambda is 20.0
the regulation term lambda/alpha is 75.00730118967428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20831684235998216
the lambda is 20.0
the regulation term lambda/alpha is 96.0075996420826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19037964708335894
the lambda is 20.0
the regulation term lambda/alpha is 105.05324653345362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19490534297509501
the lambda is 20.0
the regulation term lambda/alpha is 102.61391347571009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2406581370328248
the lambda is 20.0
the regulation term lambda/alpha is 83.10543847213478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.27320718704580876
the lambda is 20.0
the regulation term lambda/alpha is 73.20451638282339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22022827299816597
the lambda is 20.0
the regulation term lambda/alpha is 90.81486099728238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2056051802848651
the lambda is 20.0
the regulation term lambda/alpha is 97.2738136864552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23023996763883306
the lambda is 20.0
the regulation term lambda/alpha is 86.86589129205008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2066923103833577
the lambda is 20.0
the regulation term lambda/alpha is 96.76218705430053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.212342256137781
the lambda is 20.0
the regulation term lambda/alpha is 94.18756475405792
420
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1903258998082975
the lambda is 20.0
the regulation term lambda/alpha is 105.08291315130866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21246476635952988
the lambda is 20.0
the regulation term lambda/alpha is 94.13325485768442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2313430653296088
the lambda is 20.0
the regulation term lambda/alpha is 86.45169446296028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21498685837569637
the lambda is 20.0
the regulation term lambda/alpha is 93.02894209956483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23336378153271548
the lambda is 20.0
the regulation term lambda/alpha is 85.7031021208241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27092857531579506
the lambda is 20.0
the regulation term lambda/alpha is 73.82019403707397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28112860605005674
the lambda is 20.0
the regulation term lambda/alpha is 71.14181755107082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23791982390122715
the lambda is 20.0
the regulation term lambda/alpha is 84.06193175522455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1850711356256553
the lambda is 20.0
the regulation term lambda/alpha is 108.06655469199768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2315703046378912
the lambda is 20.0
the regulation term lambda/alpha is 86.36685965099973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1906753970097595
the lambda is 20.0
the regulation term lambda/alpha is 104.8903021241714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2240422051298216
the lambda is 20.0
the regulation term lambda/alpha is 89.26889461925698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.3233213912939632
the lambda is 20.0
the regulation term lambda/alpha is 61.85795477360184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20180839224446426
the lambda is 20.0
the regulation term lambda/alpha is 99.10390632205541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22021412316837427
the lambda is 20.0
the regulation term lambda/alpha is 90.82069629434318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2710933757151554
the lambda is 20.0
the regulation term lambda/alpha is 73.77531799601957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1686814529188214
the lambda is 20.0
the regulation term lambda/alpha is 118.56668088829588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25503918452968877
the lambda is 20.0
the regulation term lambda/alpha is 78.41932225779928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24124453701631654
the lambda is 20.0
the regulation term lambda/alpha is 82.90343171023724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23403673732900454
the lambda is 20.0
the regulation term lambda/alpha is 85.45666901809679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23347553113865116
the lambda is 20.0
the regulation term lambda/alpha is 85.66208159998939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25102153113477366
the lambda is 20.0
the regulation term lambda/alpha is 79.67444031429314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21986933780122353
the lambda is 20.0
the regulation term lambda/alpha is 90.9631156395319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23457202625391566
the lambda is 20.0
the regulation term lambda/alpha is 85.26165851656468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27314745410192376
the lambda is 20.0
the regulation term lambda/alpha is 73.22052503018054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2312386162065005
the lambda is 20.0
the regulation term lambda/alpha is 86.49074418495749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2342210418106264
the lambda is 20.0
the regulation term lambda/alpha is 85.38942464516276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27482312408340354
the lambda is 20.0
the regulation term lambda/alpha is 72.77407993488345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22580061060486112
the lambda is 20.0
the regulation term lambda/alpha is 88.57371973629833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22685153700600405
the lambda is 20.0
the regulation term lambda/alpha is 88.16338766737411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19394520765053286
the lambda is 20.0
the regulation term lambda/alpha is 103.12190871989846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16636711295303536
the lambda is 20.0
the regulation term lambda/alpha is 120.21606701587653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22222650986603582
the lambda is 20.0
the regulation term lambda/alpha is 89.99826353775948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26096118807877927
the lambda is 20.0
the regulation term lambda/alpha is 76.63974917972237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22358780990340069
the lambda is 20.0
the regulation term lambda/alpha is 89.45031488362822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19945771810311164
the lambda is 20.0
the regulation term lambda/alpha is 100.27187812136106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17415836558888517
the lambda is 20.0
the regulation term lambda/alpha is 114.8380092588352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25459660666505673
the lambda is 20.0
the regulation term lambda/alpha is 78.5556424415023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21772408042612304
the lambda is 20.0
the regulation term lambda/alpha is 91.85938441378005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18231929223301824
the lambda is 20.0
the regulation term lambda/alpha is 109.69766147643028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20188608459885626
the lambda is 20.0
the regulation term lambda/alpha is 99.06576790440813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26130679049946687
the lambda is 20.0
the regulation term lambda/alpha is 76.53838601657313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20331742672134243
the lambda is 20.0
the regulation term lambda/alpha is 98.36835101897628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17922492942407073
the lambda is 20.0
the regulation term lambda/alpha is 111.59161877908882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17432022013718615
the lambda is 20.0
the regulation term lambda/alpha is 114.73138333728838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20428873689992563
the lambda is 20.0
the regulation term lambda/alpha is 97.90064936275633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21698961082570634
the lambda is 20.0
the regulation term lambda/alpha is 92.17031139829409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1981162579840147
the lambda is 20.0
the regulation term lambda/alpha is 100.95082656777078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.222903797193832
the lambda is 20.0
the regulation term lambda/alpha is 89.72480617998832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2563225962881838
the lambda is 20.0
the regulation term lambda/alpha is 78.02667532874852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2685058735103136
the lambda is 20.0
the regulation term lambda/alpha is 74.4862663096708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25230652364354167
the lambda is 20.0
the regulation term lambda/alpha is 79.2686598474797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24692960163974706
the lambda is 20.0
the regulation term lambda/alpha is 80.99474452309121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.248965648093601
the lambda is 20.0
the regulation term lambda/alpha is 80.33236775091481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2317688291074629
the lambda is 20.0
the regulation term lambda/alpha is 86.29288104452871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1933519500694704
the lambda is 20.0
the regulation term lambda/alpha is 103.43831542849244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2181823657020358
the lambda is 20.0
the regulation term lambda/alpha is 91.66643663270806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.16564823610351334
the lambda is 20.0
the regulation term lambda/alpha is 120.7377782610497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22979874479340562
the lambda is 20.0
the regulation term lambda/alpha is 87.03267730196029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21299662202280845
the lambda is 20.0
the regulation term lambda/alpha is 93.89820275111371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2712399063217133
the lambda is 20.0
the regulation term lambda/alpha is 73.73546271719442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19625725096858354
the lambda is 20.0
the regulation term lambda/alpha is 101.90706280300216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2551362757744677
the lambda is 20.0
the regulation term lambda/alpha is 78.3894800505725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23989668378894335
the lambda is 20.0
the regulation term lambda/alpha is 83.36922246743364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2339617061290304
the lambda is 20.0
the regulation term lambda/alpha is 85.48407485526694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27426010905402004
the lambda is 20.0
the regulation term lambda/alpha is 72.92347424853051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23661501965510942
the lambda is 20.0
the regulation term lambda/alpha is 84.52548798107594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25496276956832686
the lambda is 20.0
the regulation term lambda/alpha is 78.44282533430925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21649281639677112
the lambda is 20.0
the regulation term lambda/alpha is 92.38181817241254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19416289464229916
the lambda is 20.0
the regulation term lambda/alpha is 103.00629292144329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2373603038124549
the lambda is 20.0
the regulation term lambda/alpha is 84.26008763370376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2381468286285893
the lambda is 20.0
the regulation term lambda/alpha is 83.98180280280675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.200541622400591
the lambda is 20.0
the regulation term lambda/alpha is 99.72992020603628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2689606390773988
the lambda is 20.0
the regulation term lambda/alpha is 74.36032301456794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23709697805923638
the lambda is 20.0
the regulation term lambda/alpha is 84.35366896579843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2516954777303504
the lambda is 20.0
the regulation term lambda/alpha is 79.4611018852975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.14781367256204392
the lambda is 20.0
the regulation term lambda/alpha is 135.30548056442558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19358572621621475
the lambda is 20.0
the regulation term lambda/alpha is 103.3134022374259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2313933083677879
the lambda is 20.0
the regulation term lambda/alpha is 86.43292297896107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.19761074936882883
the lambda is 20.0
the regulation term lambda/alpha is 101.2090691618763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22417902288499914
the lambda is 20.0
the regulation term lambda/alpha is 89.21441329619736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20275286234623396
the lambda is 20.0
the regulation term lambda/alpha is 98.64225722173381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2153313540734476
the lambda is 20.0
the regulation term lambda/alpha is 92.88011068364051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25987455765763723
the lambda is 20.0
the regulation term lambda/alpha is 76.96020795674931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20745443638775013
the lambda is 20.0
the regulation term lambda/alpha is 96.40671150853716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19928557810265116
the lambda is 20.0
the regulation term lambda/alpha is 100.35849151963262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1942606608434972
the lambda is 20.0
the regulation term lambda/alpha is 102.95445260588639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19223510657077672
the lambda is 20.0
the regulation term lambda/alpha is 104.03926918851548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2601663919837228
the lambda is 20.0
the regulation term lambda/alpha is 76.8738800100333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2145744128447765
the lambda is 20.0
the regulation term lambda/alpha is 93.2077582543266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20545131841361866
the lambda is 20.0
the regulation term lambda/alpha is 97.34666175145007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20015642970978068
the lambda is 20.0
the regulation term lambda/alpha is 99.92184627293388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21199530986364284
the lambda is 20.0
the regulation term lambda/alpha is 94.34170979001453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22840550320112166
the lambda is 20.0
the regulation term lambda/alpha is 87.56356444874741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24360741459589622
the lambda is 20.0
the regulation term lambda/alpha is 82.09930733502772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2174431391278433
the lambda is 20.0
the regulation term lambda/alpha is 91.97806875038361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1802665517627651
the lambda is 20.0
the regulation term lambda/alpha is 110.94681628081763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23483434178235602
the lambda is 20.0
the regulation term lambda/alpha is 85.16641922217646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26369414160908794
the lambda is 20.0
the regulation term lambda/alpha is 75.84544684215587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20124720541459595
the lambda is 20.0
the regulation term lambda/alpha is 99.38026199567514
430
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23119911258665196
the lambda is 20.0
the regulation term lambda/alpha is 86.50552234496197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20509696951534764
the lambda is 20.0
the regulation term lambda/alpha is 97.5148489383378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22849198588690067
the lambda is 20.0
the regulation term lambda/alpha is 87.53042222627288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2581467305917462
the lambda is 20.0
the regulation term lambda/alpha is 77.4753178324369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2064648978255045
the lambda is 20.0
the regulation term lambda/alpha is 96.86876660701502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19924690405191373
the lambda is 20.0
the regulation term lambda/alpha is 100.37797121700324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21381445135036128
the lambda is 20.0
the regulation term lambda/alpha is 93.53904693386482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.229257098972769
the lambda is 20.0
the regulation term lambda/alpha is 87.23830184371123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21643055165464375
the lambda is 20.0
the regulation term lambda/alpha is 92.40839542798845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1775325777004866
the lambda is 20.0
the regulation term lambda/alpha is 112.6553799818183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.245155034873314
the lambda is 20.0
the regulation term lambda/alpha is 81.58102896126597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1984516911140564
the lambda is 20.0
the regulation term lambda/alpha is 100.78019435221329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2607142751801249
the lambda is 20.0
the regulation term lambda/alpha is 76.71233186668508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24488226068491553
the lambda is 20.0
the regulation term lambda/alpha is 81.67190201553042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27868281005636136
the lambda is 20.0
the regulation term lambda/alpha is 71.76617745441551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22455231138563367
the lambda is 20.0
the regulation term lambda/alpha is 89.06610614064493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25953305590492953
the lambda is 20.0
the regulation term lambda/alpha is 77.06147461742319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2209351423429436
the lambda is 20.0
the regulation term lambda/alpha is 90.52430404645753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.257387950101285
the lambda is 20.0
the regulation term lambda/alpha is 77.70371531429416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2595572244942446
the lambda is 20.0
the regulation term lambda/alpha is 77.05429906245386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19576886032848545
the lambda is 20.0
the regulation term lambda/alpha is 102.16129350930225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2149671060915877
the lambda is 20.0
the regulation term lambda/alpha is 93.03749007756987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2910786699742714
the lambda is 20.0
the regulation term lambda/alpha is 68.70994704547678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2650210107514621
the lambda is 20.0
the regulation term lambda/alpha is 75.46571474952259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23756118873722307
the lambda is 20.0
the regulation term lambda/alpha is 84.18883617442613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2618210386313181
the lambda is 20.0
the regulation term lambda/alpha is 76.38805538527747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2246681263006268
the lambda is 20.0
the regulation term lambda/alpha is 89.02019315921184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21692557955566127
the lambda is 20.0
the regulation term lambda/alpha is 92.19751788132561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2280283532936775
the lambda is 20.0
the regulation term lambda/alpha is 87.70839113257999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25340058163689416
the lambda is 20.0
the regulation term lambda/alpha is 78.9264171013571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2247114901170727
the lambda is 20.0
the regulation term lambda/alpha is 89.00301444122941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20783439121135588
the lambda is 20.0
the regulation term lambda/alpha is 96.23046447428965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23730864035291813
the lambda is 20.0
the regulation term lambda/alpha is 84.27843154069997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24371565677535215
the lambda is 20.0
the regulation term lambda/alpha is 82.06284431875972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24092111302359434
the lambda is 20.0
the regulation term lambda/alpha is 83.01472523099842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20512957962937928
the lambda is 20.0
the regulation term lambda/alpha is 97.49934668678831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23666028362172517
the lambda is 20.0
the regulation term lambda/alpha is 84.50932152167852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2602841492898363
the lambda is 20.0
the regulation term lambda/alpha is 76.83910086176336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22217379529790468
the lambda is 20.0
the regulation term lambda/alpha is 90.01961717934707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23344513564819871
the lambda is 20.0
the regulation term lambda/alpha is 85.6732351456659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.22753365413396992
the lambda is 20.0
the regulation term lambda/alpha is 87.89908497766298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2808277353501456
the lambda is 20.0
the regulation term lambda/alpha is 71.21803683337515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2555975629779607
the lambda is 20.0
the regulation term lambda/alpha is 78.24800740265482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19521335198597042
the lambda is 20.0
the regulation term lambda/alpha is 102.45200851546957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.206557840938105
the lambda is 20.0
the regulation term lambda/alpha is 96.8251793742993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26117096433611636
the lambda is 20.0
the regulation term lambda/alpha is 76.57819103604801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22283644481020984
the lambda is 20.0
the regulation term lambda/alpha is 89.75192553010811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2632584380856367
the lambda is 20.0
the regulation term lambda/alpha is 75.97097417061366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21895521608697446
the lambda is 20.0
the regulation term lambda/alpha is 91.34287987026306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19599495518607768
the lambda is 20.0
the regulation term lambda/alpha is 102.0434428070457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2681702345630094
the lambda is 20.0
the regulation term lambda/alpha is 74.57949251001155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23653885725724186
the lambda is 20.0
the regulation term lambda/alpha is 84.55270407537948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21368055500334343
the lambda is 20.0
the regulation term lambda/alpha is 93.59766030038186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21273676152164636
the lambda is 20.0
the regulation term lambda/alpha is 94.0129005299583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2332500234826029
the lambda is 20.0
the regulation term lambda/alpha is 85.74490026360796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.31683836853358177
the lambda is 20.0
the regulation term lambda/alpha is 63.123668047420196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2132133340685737
the lambda is 20.0
the regulation term lambda/alpha is 93.80276373131333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22008105163455421
the lambda is 20.0
the regulation term lambda/alpha is 90.87561083273134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2520131842565113
the lambda is 20.0
the regulation term lambda/alpha is 79.36092732213179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24571642866494967
the lambda is 20.0
the regulation term lambda/alpha is 81.394638969262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2366586064974831
the lambda is 20.0
the regulation term lambda/alpha is 84.5099204123502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18811049944884817
the lambda is 20.0
the regulation term lambda/alpha is 106.32048747198445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2816951090313592
the lambda is 20.0
the regulation term lambda/alpha is 70.9987477907312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19168438953339093
the lambda is 20.0
the regulation term lambda/alpha is 104.33817823498899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21469061809445342
the lambda is 20.0
the regulation term lambda/alpha is 93.1573078391389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21144562751407
the lambda is 20.0
the regulation term lambda/alpha is 94.58696420037894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21087498857893633
the lambda is 20.0
the regulation term lambda/alpha is 94.84292155640567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21612878797427726
the lambda is 20.0
the regulation term lambda/alpha is 92.53741802494315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25692340667139646
the lambda is 20.0
the regulation term lambda/alpha is 77.84421146797217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2396918884438681
the lambda is 20.0
the regulation term lambda/alpha is 83.44045403390308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21736757889445754
the lambda is 20.0
the regulation term lambda/alpha is 92.01004170778829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19358032436080105
the lambda is 20.0
the regulation term lambda/alpha is 103.31628519602734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25185500094083313
the lambda is 20.0
the regulation term lambda/alpha is 79.41077177458345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24799847513523698
the lambda is 20.0
the regulation term lambda/alpha is 80.64565715210033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20149950844057155
the lambda is 20.0
the regulation term lambda/alpha is 99.2558252612245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2122426413665236
the lambda is 20.0
the regulation term lambda/alpha is 94.23177110513731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26691941122288826
the lambda is 20.0
the regulation term lambda/alpha is 74.92898290300516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25674119115225064
the lambda is 20.0
the regulation term lambda/alpha is 77.89945941373996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2535636599253346
the lambda is 20.0
the regulation term lambda/alpha is 78.87565594332123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19770639375940383
the lambda is 20.0
the regulation term lambda/alpha is 101.16010726663062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23177601616110408
the lambda is 20.0
the regulation term lambda/alpha is 86.29020522165804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23246003722890998
the lambda is 20.0
the regulation term lambda/alpha is 86.03629354281414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23014692710624857
the lambda is 20.0
the regulation term lambda/alpha is 86.901008201456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2940358761645878
the lambda is 20.0
the regulation term lambda/alpha is 68.01891068831654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21974589589841775
the lambda is 20.0
the regulation term lambda/alpha is 91.01421402311617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24854021989226394
the lambda is 20.0
the regulation term lambda/alpha is 80.46987328115146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.256301973309208
the lambda is 20.0
the regulation term lambda/alpha is 78.03295363579423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18022883874357135
the lambda is 20.0
the regulation term lambda/alpha is 110.97003198503596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22997638890139505
the lambda is 20.0
the regulation term lambda/alpha is 86.96544934695545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27744241182230533
the lambda is 20.0
the regulation term lambda/alpha is 72.08703193082636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22156487077951165
the lambda is 20.0
the regulation term lambda/alpha is 90.26701719291424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.198919412460342
the lambda is 20.0
the regulation term lambda/alpha is 100.54322880119778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22620428784732488
the lambda is 20.0
the regulation term lambda/alpha is 88.41565378945809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21897270837422309
the lambda is 20.0
the regulation term lambda/alpha is 91.33558308928671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23065925689369643
the lambda is 20.0
the regulation term lambda/alpha is 86.7079876582511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.23640800273339957
the lambda is 20.0
the regulation term lambda/alpha is 84.59950496072786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24198324952185382
the lambda is 20.0
the regulation term lambda/alpha is 82.65034889612792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23194669109935848
the lambda is 20.0
the regulation term lambda/alpha is 86.22670970301812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19165572093614244
the lambda is 20.0
the regulation term lambda/alpha is 104.35378553956016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.21469694035417042
the lambda is 20.0
the regulation term lambda/alpha is 93.15456460165389
440
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2172507238594891
the lambda is 20.0
the regulation term lambda/alpha is 92.059532160341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24127568658444068
the lambda is 20.0
the regulation term lambda/alpha is 82.89272857586701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19586507994631355
the lambda is 20.0
the regulation term lambda/alpha is 102.11110630584065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22330946265299473
the lambda is 20.0
the regulation term lambda/alpha is 89.56181149868432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2480444741061842
the lambda is 20.0
the regulation term lambda/alpha is 80.6307017000439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2644810679821257
the lambda is 20.0
the regulation term lambda/alpha is 75.61977933842755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26601915892181
the lambda is 20.0
the regulation term lambda/alpha is 75.1825548244761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17541145985797052
the lambda is 20.0
the regulation term lambda/alpha is 114.0176361122236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21087144265150345
the lambda is 20.0
the regulation term lambda/alpha is 94.84451639595878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21135973903341448
the lambda is 20.0
the regulation term lambda/alpha is 94.62540071001006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25056221713769444
the lambda is 20.0
the regulation term lambda/alpha is 79.8204942008841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22093460894435013
the lambda is 20.0
the regulation term lambda/alpha is 90.52452259771432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19206786222781153
the lambda is 20.0
the regulation term lambda/alpha is 104.12986206030666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.35002076997941334
the lambda is 20.0
the regulation term lambda/alpha is 57.13946632703057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20016113691578782
the lambda is 20.0
the regulation term lambda/alpha is 99.91949640261305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20411965458730214
the lambda is 20.0
the regulation term lambda/alpha is 97.98174526817056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20840686335254427
the lambda is 20.0
the regulation term lambda/alpha is 95.96612932160345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22758343118001423
the lambda is 20.0
the regulation term lambda/alpha is 87.87985969057816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21576342738446677
the lambda is 20.0
the regulation term lambda/alpha is 92.69411522816698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21173691276600384
the lambda is 20.0
the regulation term lambda/alpha is 94.4568414582607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20885700271811783
the lambda is 20.0
the regulation term lambda/alpha is 95.75929817872968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2203644098555062
the lambda is 20.0
the regulation term lambda/alpha is 90.75875733796613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24416256324708824
the lambda is 20.0
the regulation term lambda/alpha is 81.91263940721474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22799761600469395
the lambda is 20.0
the regulation term lambda/alpha is 87.72021545869254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22226879832746477
the lambda is 20.0
the regulation term lambda/alpha is 89.98114063015875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21987482666034844
the lambda is 20.0
the regulation term lambda/alpha is 90.96084487604847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.24891479888236423
the lambda is 20.0
the regulation term lambda/alpha is 80.34877833620448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23438858601278095
the lambda is 20.0
the regulation term lambda/alpha is 85.32838710375351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21645944965448255
the lambda is 20.0
the regulation term lambda/alpha is 92.39605862402613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20527393451102538
the lambda is 20.0
the regulation term lambda/alpha is 97.43078217719741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2759999263741805
the lambda is 20.0
the regulation term lambda/alpha is 72.46378744639759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2260355207730789
the lambda is 20.0
the regulation term lambda/alpha is 88.48166841917894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23346165593923196
the lambda is 20.0
the regulation term lambda/alpha is 85.66717270782071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2410791499730065
the lambda is 20.0
the regulation term lambda/alpha is 82.96030578438405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22121106743739272
the lambda is 20.0
the regulation term lambda/alpha is 90.41138959134769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2053358274535131
the lambda is 20.0
the regulation term lambda/alpha is 97.40141429789153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22845557824072027
the lambda is 20.0
the regulation term lambda/alpha is 87.54437144417763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25352908883948777
the lambda is 20.0
the regulation term lambda/alpha is 78.88641138399008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2701834494708345
the lambda is 20.0
the regulation term lambda/alpha is 74.0237791736349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18862599456493237
the lambda is 20.0
the regulation term lambda/alpha is 106.02992469903307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19791795232532622
the lambda is 20.0
the regulation term lambda/alpha is 101.05197514940505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2115284118019869
the lambda is 20.0
the regulation term lambda/alpha is 94.54994640966778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18663988075215485
the lambda is 20.0
the regulation term lambda/alpha is 107.15823391764083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22219398809761162
the lambda is 20.0
the regulation term lambda/alpha is 90.01143627348657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18229638934072678
the lambda is 20.0
the regulation term lambda/alpha is 109.71144339352972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.17390010415366097
the lambda is 20.0
the regulation term lambda/alpha is 115.00855676502455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20627751989685045
the lambda is 20.0
the regulation term lambda/alpha is 96.9567600483128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.276043363757184
the lambda is 20.0
the regulation term lambda/alpha is 72.4523847550003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21944133360405627
the lambda is 20.0
the regulation term lambda/alpha is 91.14053251283335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22807623302091257
the lambda is 20.0
the regulation term lambda/alpha is 87.68997863168924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20978269304559233
the lambda is 20.0
the regulation term lambda/alpha is 95.33674923151727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21573502318563265
the lambda is 20.0
the regulation term lambda/alpha is 92.70631956124565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27875679026174227
the lambda is 20.0
the regulation term lambda/alpha is 71.74713118636767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2939450433001588
the lambda is 20.0
the regulation term lambda/alpha is 68.03992942169539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19762593308120197
the lambda is 20.0
the regulation term lambda/alpha is 101.20129321176819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2433367651249116
the lambda is 20.0
the regulation term lambda/alpha is 82.19062166678117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2384556107987696
the lambda is 20.0
the regulation term lambda/alpha is 83.87305265329994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20590656125997267
the lambda is 20.0
the regulation term lambda/alpha is 97.13143611168603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23245417033415713
the lambda is 20.0
the regulation term lambda/alpha is 86.03846500688559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2958117808395533
the lambda is 20.0
the regulation term lambda/alpha is 67.61055946871802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3886656300367908
the lambda is 20.0
the regulation term lambda/alpha is 51.45811323246364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23264993468337256
the lambda is 20.0
the regulation term lambda/alpha is 85.9660675478771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2933991417286742
the lambda is 20.0
the regulation term lambda/alpha is 68.16652523985682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2548225791711086
the lambda is 20.0
the regulation term lambda/alpha is 78.48598057933623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21561987966373608
the lambda is 20.0
the regulation term lambda/alpha is 92.7558258134196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22610901345888545
the lambda is 20.0
the regulation term lambda/alpha is 88.45290903733346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24784912617392602
the lambda is 20.0
the regulation term lambda/alpha is 80.69425262353022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24311266033951417
the lambda is 20.0
the regulation term lambda/alpha is 82.26638617696584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23457287728846357
the lambda is 20.0
the regulation term lambda/alpha is 85.26134918575947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20871461746772602
the lambda is 20.0
the regulation term lambda/alpha is 95.82462523542532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22924599795120087
the lambda is 20.0
the regulation term lambda/alpha is 87.24252627632505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3183586884833294
the lambda is 20.0
the regulation term lambda/alpha is 62.822221360694186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2860177204930432
the lambda is 20.0
the regulation term lambda/alpha is 69.9257373477545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23575678361034202
the lambda is 20.0
the regulation term lambda/alpha is 84.83318992447713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20062353158780727
the lambda is 20.0
the regulation term lambda/alpha is 99.68920316431856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21621784200370447
the lambda is 20.0
the regulation term lambda/alpha is 92.49930447302003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23605152519806694
the lambda is 20.0
the regulation term lambda/alpha is 84.72726445303978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23775560804807871
the lambda is 20.0
the regulation term lambda/alpha is 84.11999264368822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2518976021384657
the lambda is 20.0
the regulation term lambda/alpha is 79.39734173811703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23060097724961992
the lambda is 20.0
the regulation term lambda/alpha is 86.72990131499091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.294766946741447
the lambda is 20.0
the regulation term lambda/alpha is 67.85021258690472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26862874782050183
the lambda is 20.0
the regulation term lambda/alpha is 74.45219531516423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20317301847409633
the lambda is 20.0
the regulation term lambda/alpha is 98.43826778874141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2075284972846602
the lambda is 20.0
the regulation term lambda/alpha is 96.37230675152358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2613415975828665
the lambda is 20.0
the regulation term lambda/alpha is 76.52819216297311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2847247908550301
the lambda is 20.0
the regulation term lambda/alpha is 70.24326873659258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2066234772096856
the lambda is 20.0
the regulation term lambda/alpha is 96.79442176700765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2206764088722107
the lambda is 20.0
the regulation term lambda/alpha is 90.63043984724982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24500703699787657
the lambda is 20.0
the regulation term lambda/alpha is 81.63030843956264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25407328615661023
the lambda is 20.0
the regulation term lambda/alpha is 78.71744527943817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23252937735585877
the lambda is 20.0
the regulation term lambda/alpha is 86.01063756943003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26442699107621814
the lambda is 20.0
the regulation term lambda/alpha is 75.63524403692671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25985267935825845
the lambda is 20.0
the regulation term lambda/alpha is 76.96668762235865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.30934700354669403
the lambda is 20.0
the regulation term lambda/alpha is 64.65231526634497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22641310072775586
the lambda is 20.0
the regulation term lambda/alpha is 88.33411112570047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.260736850674685
the lambda is 20.0
the regulation term lambda/alpha is 76.7056898487798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2250406766737252
the lambda is 20.0
the regulation term lambda/alpha is 88.87282199651827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24029351555331505
the lambda is 20.0
the regulation term lambda/alpha is 83.23154269871468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22389494539041221
the lambda is 20.0
the regulation term lambda/alpha is 89.32760837957021
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.268201334519683
the lambda is 20.0
the regulation term lambda/alpha is 74.57084445839035
450
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3327512717029392
the lambda is 20.0
the regulation term lambda/alpha is 60.10495436319421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2520331816250536
the lambda is 20.0
the regulation term lambda/alpha is 79.3546304936694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2175721865589791
the lambda is 20.0
the regulation term lambda/alpha is 91.92351428880103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22784122976455037
the lambda is 20.0
the regulation term lambda/alpha is 87.78042508227273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2073109516940894
the lambda is 20.0
the regulation term lambda/alpha is 96.47343681829337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23955007362072767
the lambda is 20.0
the regulation term lambda/alpha is 83.48985119355626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22034382995015447
the lambda is 20.0
the regulation term lambda/alpha is 90.76723412007652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2534100276235674
the lambda is 20.0
the regulation term lambda/alpha is 78.92347507932625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23038126632883002
the lambda is 20.0
the regulation term lambda/alpha is 86.81261423163377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28763727175609255
the lambda is 20.0
the regulation term lambda/alpha is 69.53201814874457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24085272807887856
the lambda is 20.0
the regulation term lambda/alpha is 83.03829547427861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22610808185064776
the lambda is 20.0
the regulation term lambda/alpha is 88.45327348011689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24564609336236087
the lambda is 20.0
the regulation term lambda/alpha is 81.41794451620821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2101865822682314
the lambda is 20.0
the regulation term lambda/alpha is 95.15355254445704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29368706462021416
the lambda is 20.0
the regulation term lambda/alpha is 68.09969661368403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22624329162677648
the lambda is 20.0
the regulation term lambda/alpha is 88.40041115116514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23382379805025105
the lambda is 20.0
the regulation term lambda/alpha is 85.53449292488955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26563638342601004
the lambda is 20.0
the regulation term lambda/alpha is 75.29089103703586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2811269388864573
the lambda is 20.0
the regulation term lambda/alpha is 71.14223944250922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21653377927061127
the lambda is 20.0
the regulation term lambda/alpha is 92.36434180093984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20215181404026022
the lambda is 20.0
the regulation term lambda/alpha is 98.93554552034261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24243880484081262
the lambda is 20.0
the regulation term lambda/alpha is 82.49504452528616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.28299671872022725
the lambda is 20.0
the regulation term lambda/alpha is 70.67219750972504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21202360296834719
the lambda is 20.0
the regulation term lambda/alpha is 94.32912053185787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23289000257687195
the lambda is 20.0
the regulation term lambda/alpha is 85.87745192453434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2244912052756597
the lambda is 20.0
the regulation term lambda/alpha is 89.09034977758431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21390078161582482
the lambda is 20.0
the regulation term lambda/alpha is 93.50129461387793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22163601453638218
the lambda is 20.0
the regulation term lambda/alpha is 90.23804205212751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2456930916223795
the lambda is 20.0
the regulation term lambda/alpha is 81.40237020070228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20822178807242184
the lambda is 20.0
the regulation term lambda/alpha is 96.05142759144772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20338221297708398
the lambda is 20.0
the regulation term lambda/alpha is 98.3370163361016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23693207471976752
the lambda is 20.0
the regulation term lambda/alpha is 84.41237862646959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18313400854387618
the lambda is 20.0
the regulation term lambda/alpha is 109.2096446696207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2494412573632616
the lambda is 20.0
the regulation term lambda/alpha is 80.17919814633542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27764694264529527
the lambda is 20.0
the regulation term lambda/alpha is 72.03392844685769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2673519494219146
the lambda is 20.0
the regulation term lambda/alpha is 74.80775824992214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24349996564237827
the lambda is 20.0
the regulation term lambda/alpha is 82.13553520321005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23496859384464555
the lambda is 20.0
the regulation term lambda/alpha is 85.1177583895464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.32609993314025687
the lambda is 20.0
the regulation term lambda/alpha is 61.3308926727008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2077460595902723
the lambda is 20.0
the regulation term lambda/alpha is 96.27138073976013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18471057057487125
the lambda is 20.0
the regulation term lambda/alpha is 108.27750646730382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2608962096453958
the lambda is 20.0
the regulation term lambda/alpha is 76.65883696502739
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19681185635835793
the lambda is 20.0
the regulation term lambda/alpha is 101.61989409613466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3189365681243419
the lambda is 20.0
the regulation term lambda/alpha is 62.70839407854517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20370342479569412
the lambda is 20.0
the regulation term lambda/alpha is 98.18195261105281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2899086169461624
the lambda is 20.0
the regulation term lambda/alpha is 68.98725609012895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19646753846761544
the lambda is 20.0
the regulation term lambda/alpha is 101.7979873723347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27354213423229706
the lambda is 20.0
the regulation term lambda/alpha is 73.11487883258097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.300483150601116
the lambda is 20.0
the regulation term lambda/alpha is 66.5594725028343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24264204410820217
the lambda is 20.0
the regulation term lambda/alpha is 82.42594589699934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17336309916006928
the lambda is 20.0
the regulation term lambda/alpha is 115.36480425706763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24574371439523515
the lambda is 20.0
the regulation term lambda/alpha is 81.38560145564313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22551120746726427
the lambda is 20.0
the regulation term lambda/alpha is 88.68738819955654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23484901513060544
the lambda is 20.0
the regulation term lambda/alpha is 85.16109803090934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1999320127056336
the lambda is 20.0
the regulation term lambda/alpha is 100.03400520679322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20447795868896276
the lambda is 20.0
the regulation term lambda/alpha is 97.81005311395234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21707887379964627
the lambda is 20.0
the regulation term lambda/alpha is 92.13241090636518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25177078755083787
the lambda is 20.0
the regulation term lambda/alpha is 79.43733343552248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21476874881228686
the lambda is 20.0
the regulation term lambda/alpha is 93.1234181444177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.18964465678689668
the lambda is 20.0
the regulation term lambda/alpha is 105.46039281493682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21701062716868644
the lambda is 20.0
the regulation term lambda/alpha is 92.16138518623617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24505457369773523
the lambda is 20.0
the regulation term lambda/alpha is 81.61447345467292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24398190523653218
the lambda is 20.0
the regulation term lambda/alpha is 81.97329216119809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24825189041661896
the lambda is 20.0
the regulation term lambda/alpha is 80.56333414595872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22345921043577266
the lambda is 20.0
the regulation term lambda/alpha is 89.50179301626264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21629899388422977
the lambda is 20.0
the regulation term lambda/alpha is 92.46460023158798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18449470056238854
the lambda is 20.0
the regulation term lambda/alpha is 108.4041977305295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2820502050191467
the lambda is 20.0
the regulation term lambda/alpha is 70.90936168134436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2602020886901892
the lambda is 20.0
the regulation term lambda/alpha is 76.86333380595224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25415699254078156
the lambda is 20.0
the regulation term lambda/alpha is 78.69151975738318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23435557434766402
the lambda is 20.0
the regulation term lambda/alpha is 85.34040658375896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2648621910315584
the lambda is 20.0
the regulation term lambda/alpha is 75.51096637125151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2536488409592146
the lambda is 20.0
the regulation term lambda/alpha is 78.8491677090529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.207262301430935
the lambda is 20.0
the regulation term lambda/alpha is 96.49608183408357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20023999377023521
the lambda is 20.0
the regulation term lambda/alpha is 99.88014693482732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2080311297896735
the lambda is 20.0
the regulation term lambda/alpha is 96.13945768703307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23740247418318405
the lambda is 20.0
the regulation term lambda/alpha is 84.24512031229985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2969939719660985
the lambda is 20.0
the regulation term lambda/alpha is 67.34143412945423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22031461340660463
the lambda is 20.0
the regulation term lambda/alpha is 90.77927101952483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2944859590765283
the lambda is 20.0
the regulation term lambda/alpha is 67.91495276283302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23683966983076932
the lambda is 20.0
the regulation term lambda/alpha is 84.44531279025485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24121008174814773
the lambda is 20.0
the regulation term lambda/alpha is 82.91527391828672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2549867859563037
the lambda is 20.0
the regulation term lambda/alpha is 78.4354370560494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.274326438481033
the lambda is 20.0
the regulation term lambda/alpha is 72.90584207173603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2708817841473377
the lambda is 20.0
the regulation term lambda/alpha is 73.83294547824457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22651393488894875
the lambda is 20.0
the regulation term lambda/alpha is 88.2947886177742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22749403192135442
the lambda is 20.0
the regulation term lambda/alpha is 87.91439419788418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20198432361079086
the lambda is 20.0
the regulation term lambda/alpha is 99.01758533765496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.28019763784707646
the lambda is 20.0
the regulation term lambda/alpha is 71.37818917272745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2171578018400901
the lambda is 20.0
the regulation term lambda/alpha is 92.098924517239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22875137677991914
the lambda is 20.0
the regulation term lambda/alpha is 87.43116776622476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2245110849830927
the lambda is 20.0
the regulation term lambda/alpha is 89.08246112438566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20467714614354274
the lambda is 20.0
the regulation term lambda/alpha is 97.71486644617245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27063443335969106
the lambda is 20.0
the regulation term lambda/alpha is 73.90042631204535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21700134059658482
the lambda is 20.0
the regulation term lambda/alpha is 92.16532923260088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24821789563837438
the lambda is 20.0
the regulation term lambda/alpha is 80.57436772865788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26471683243391214
the lambda is 20.0
the regulation term lambda/alpha is 75.55243018024967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2621407181693777
the lambda is 20.0
the regulation term lambda/alpha is 76.2949004628779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2489223458827652
the lambda is 20.0
the regulation term lambda/alpha is 80.34634226619167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1826569386458273
the lambda is 20.0
the regulation term lambda/alpha is 109.49488230928965
460
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22352171590895237
the lambda is 20.0
the regulation term lambda/alpha is 89.4767647907045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2569142639172004
the lambda is 20.0
the regulation term lambda/alpha is 77.84698169365053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.3064172507087772
the lambda is 20.0
the regulation term lambda/alpha is 65.27047662537855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25232500984087003
the lambda is 20.0
the regulation term lambda/alpha is 79.26285235305488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.275248725450947
the lambda is 20.0
the regulation term lambda/alpha is 72.66155353574659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2198089398596412
the lambda is 20.0
the regulation term lambda/alpha is 90.98811000485686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2923261226913728
the lambda is 20.0
the regulation term lambda/alpha is 68.41673886639022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2099715468958977
the lambda is 20.0
the regulation term lambda/alpha is 95.2510008887816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2203244643033745
the lambda is 20.0
the regulation term lambda/alpha is 90.77521220004473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2169493463378642
the lambda is 20.0
the regulation term lambda/alpha is 92.18741765118375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2393850359588521
the lambda is 20.0
the regulation term lambda/alpha is 83.54741105637781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24948739685454566
the lambda is 20.0
the regulation term lambda/alpha is 80.16437003292899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.28449108385389726
the lambda is 20.0
the regulation term lambda/alpha is 70.30097298329098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24317465456119647
the lambda is 20.0
the regulation term lambda/alpha is 82.24541342965853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2507306131820914
the lambda is 20.0
the regulation term lambda/alpha is 79.76688504915488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2650177211613818
the lambda is 20.0
the regulation term lambda/alpha is 75.46665148411361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24608256902365702
the lambda is 20.0
the regulation term lambda/alpha is 81.2735338360244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.249521581437278
the lambda is 20.0
the regulation term lambda/alpha is 80.15338747372992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.243080736135196
the lambda is 20.0
the regulation term lambda/alpha is 82.27719036063989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21711825181387095
the lambda is 20.0
the regulation term lambda/alpha is 92.11570115784373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.211435791521019
the lambda is 20.0
the regulation term lambda/alpha is 94.59136438596673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24233120872616845
the lambda is 20.0
the regulation term lambda/alpha is 82.53167268521231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2922375272289566
the lambda is 20.0
the regulation term lambda/alpha is 68.43748025670499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20353263830678636
the lambda is 20.0
the regulation term lambda/alpha is 98.26433817387972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2000152997483179
the lambda is 20.0
the regulation term lambda/alpha is 99.99235071100203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2943934724288765
the lambda is 20.0
the regulation term lambda/alpha is 67.9362889230904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22553322798421493
the lambda is 20.0
the regulation term lambda/alpha is 88.67872897824084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25287547535219523
the lambda is 20.0
the regulation term lambda/alpha is 79.09031104002779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2786072397456989
the lambda is 20.0
the regulation term lambda/alpha is 71.78564353982749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20487949185548193
the lambda is 20.0
the regulation term lambda/alpha is 97.61836003628717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2158880981670874
the lambda is 20.0
the regulation term lambda/alpha is 92.64058634914151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24199248499957177
the lambda is 20.0
the regulation term lambda/alpha is 82.6471946020778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.35008251022515935
the lambda is 20.0
the regulation term lambda/alpha is 57.129389260653966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.3095901710743074
the lambda is 20.0
the regulation term lambda/alpha is 64.60153412040857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3235623309700083
the lambda is 20.0
the regulation term lambda/alpha is 61.811892441378916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24712326314487484
the lambda is 20.0
the regulation term lambda/alpha is 80.93127189031611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2458516428602435
the lambda is 20.0
the regulation term lambda/alpha is 81.34987331107311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23562127121472032
the lambda is 20.0
the regulation term lambda/alpha is 84.88197986918641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2255369929573121
the lambda is 20.0
the regulation term lambda/alpha is 88.67724863116112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2410905198263263
the lambda is 20.0
the regulation term lambda/alpha is 82.95639336796546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2591200501578037
the lambda is 20.0
the regulation term lambda/alpha is 77.18430120641004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2934291822531037
the lambda is 20.0
the regulation term lambda/alpha is 68.15954652645478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2058146045150692
the lambda is 20.0
the regulation term lambda/alpha is 97.17483386139224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2517399865205542
the lambda is 20.0
the regulation term lambda/alpha is 79.44705279614779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2194840721520952
the lambda is 20.0
the regulation term lambda/alpha is 91.12278537524428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19483776538516062
the lambda is 20.0
the regulation term lambda/alpha is 102.6495041167376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26294004804021626
the lambda is 20.0
the regulation term lambda/alpha is 76.06296625054632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2103513077592691
the lambda is 20.0
the regulation term lambda/alpha is 95.07903807704615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25778444583653365
the lambda is 20.0
the regulation term lambda/alpha is 77.58419998963943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29465957664691883
the lambda is 20.0
the regulation term lambda/alpha is 67.87493631664775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21136117747765615
the lambda is 20.0
the regulation term lambda/alpha is 94.62475672531812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1913599709828758
the lambda is 20.0
the regulation term lambda/alpha is 104.51506601550298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21794092161997133
the lambda is 20.0
the regulation term lambda/alpha is 91.76798855092696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20594634947502571
the lambda is 20.0
the regulation term lambda/alpha is 97.11267061048498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18306698228525348
the lambda is 20.0
the regulation term lambda/alpha is 109.24962956365427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2240148101489372
the lambda is 20.0
the regulation term lambda/alpha is 89.27981139596491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2710642367284502
the lambda is 20.0
the regulation term lambda/alpha is 73.7832487287352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26088298443600144
the lambda is 20.0
the regulation term lambda/alpha is 76.66272311027745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2606031639458141
the lambda is 20.0
the regulation term lambda/alpha is 76.74503907465413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19618338910562977
the lambda is 20.0
the regulation term lambda/alpha is 101.94543019761743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21917642103602095
the lambda is 20.0
the regulation term lambda/alpha is 91.25069159110443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1985625826329872
the lambda is 20.0
the regulation term lambda/alpha is 100.72391149830563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2306127020253923
the lambda is 20.0
the regulation term lambda/alpha is 86.72549180659546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2218047975588232
the lambda is 20.0
the regulation term lambda/alpha is 90.16937514480925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23109010771493246
the lambda is 20.0
the regulation term lambda/alpha is 86.54632687553874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22845725630405028
the lambda is 20.0
the regulation term lambda/alpha is 87.54372841360882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2314512376796112
the lambda is 20.0
the regulation term lambda/alpha is 86.41128991362409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27110419729107504
the lambda is 20.0
the regulation term lambda/alpha is 73.77237313123081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25525108454143725
the lambda is 20.0
the regulation term lambda/alpha is 78.35422143623926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2638198865881234
the lambda is 20.0
the regulation term lambda/alpha is 75.80929648121666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.229918174992416
the lambda is 20.0
the regulation term lambda/alpha is 86.98746847942627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.2289081516081898
the lambda is 20.0
the regulation term lambda/alpha is 87.37128782653822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2566373802984598
the lambda is 20.0
the regulation term lambda/alpha is 77.9309700587683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23900122052206166
the lambda is 20.0
the regulation term lambda/alpha is 83.68158102420169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24991019894250147
the lambda is 20.0
the regulation term lambda/alpha is 80.02874666432295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2829871968651321
the lambda is 20.0
the regulation term lambda/alpha is 70.67457546332646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24546225013722037
the lambda is 20.0
the regulation term lambda/alpha is 81.47892390304185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25431563457151435
the lambda is 20.0
the regulation term lambda/alpha is 78.64243200657779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22784473310326325
the lambda is 20.0
the regulation term lambda/alpha is 87.77907537118993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2258403938681824
the lambda is 20.0
the regulation term lambda/alpha is 88.55811689592394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2388420001489676
the lambda is 20.0
the regulation term lambda/alpha is 83.73736607265828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26641718214521143
the lambda is 20.0
the regulation term lambda/alpha is 75.07023322954802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22130075441059383
the lambda is 20.0
the regulation term lambda/alpha is 90.37474839734476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23630769290371723
the lambda is 20.0
the regulation term lambda/alpha is 84.63541645319576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2219997864091903
the lambda is 20.0
the regulation term lambda/alpha is 90.09017676771983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2670934688112629
the lambda is 20.0
the regulation term lambda/alpha is 74.88015371178044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2114703400685911
the lambda is 20.0
the regulation term lambda/alpha is 94.57591070933604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24813692836558413
the lambda is 20.0
the regulation term lambda/alpha is 80.60065920753915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2629618600578916
the lambda is 20.0
the regulation term lambda/alpha is 76.05665702089632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23506006768351811
the lambda is 20.0
the regulation term lambda/alpha is 85.08463473654635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.3093516293770546
the lambda is 20.0
the regulation term lambda/alpha is 64.65134850032715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20582806853438734
the lambda is 20.0
the regulation term lambda/alpha is 97.16847727528781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25897711810636037
the lambda is 20.0
the regulation term lambda/alpha is 77.22689999116493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26670973697662426
the lambda is 20.0
the regulation term lambda/alpha is 74.98788843150821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21638763495782368
the lambda is 20.0
the regulation term lambda/alpha is 92.42672301445607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19224395715008039
the lambda is 20.0
the regulation term lambda/alpha is 104.03447940049666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24398837115726893
the lambda is 20.0
the regulation term lambda/alpha is 81.97111979205144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22872868251486095
the lambda is 20.0
the regulation term lambda/alpha is 87.43984261222053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2805493586062041
the lambda is 20.0
the regulation term lambda/alpha is 71.28870334746763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.207201899013867
the lambda is 20.0
the regulation term lambda/alpha is 96.52421186864458
470
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20540675022019775
the lambda is 20.0
the regulation term lambda/alpha is 97.36778357361592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2191214420074447
the lambda is 20.0
the regulation term lambda/alpha is 91.27358699711594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2582192094162655
the lambda is 20.0
the regulation term lambda/alpha is 77.45357150311288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22565008920659774
the lambda is 20.0
the regulation term lambda/alpha is 88.63280342729519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2581542362326869
the lambda is 20.0
the regulation term lambda/alpha is 77.47306529563602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2630034702595359
the lambda is 20.0
the regulation term lambda/alpha is 76.04462397497527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21320064673033723
the lambda is 20.0
the regulation term lambda/alpha is 93.8083458315988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26085236593858785
the lambda is 20.0
the regulation term lambda/alpha is 76.6717216768836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26313949631940375
the lambda is 20.0
the regulation term lambda/alpha is 76.00531383446754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25596379449229
the lambda is 20.0
the regulation term lambda/alpha is 78.1360506069636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23855708267981512
the lambda is 20.0
the regulation term lambda/alpha is 83.83737667870234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22785940612539518
the lambda is 20.0
the regulation term lambda/alpha is 87.77342283159307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22769268831112927
the lambda is 20.0
the regulation term lambda/alpha is 87.83769100512848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20543935919323408
the lambda is 20.0
the regulation term lambda/alpha is 97.3523285827046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27593303416863224
the lambda is 20.0
the regulation term lambda/alpha is 72.48135425415323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27192742684456367
the lambda is 20.0
the regulation term lambda/alpha is 73.54903560879937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22746560414575695
the lambda is 20.0
the regulation term lambda/alpha is 87.92538140045237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22554689732738842
the lambda is 20.0
the regulation term lambda/alpha is 88.67335457498832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25542016584832405
the lambda is 20.0
the regulation term lambda/alpha is 78.30235304081896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24069881473040164
the lambda is 20.0
the regulation term lambda/alpha is 83.09139379186932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.234903756357
the lambda is 20.0
the regulation term lambda/alpha is 85.14125235870887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23976959404175757
the lambda is 20.0
the regulation term lambda/alpha is 83.4134122799443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2558111437156672
the lambda is 20.0
the regulation term lambda/alpha is 78.18267691351984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2725194220193536
the lambda is 20.0
the regulation term lambda/alpha is 73.38926470561667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21747450387009984
the lambda is 20.0
the regulation term lambda/alpha is 91.96480343252671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23671639309567705
the lambda is 20.0
the regulation term lambda/alpha is 84.48929006752952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21630486170381363
the lambda is 20.0
the regulation term lambda/alpha is 92.46209189410644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23256777784373067
the lambda is 20.0
the regulation term lambda/alpha is 85.9964359011015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22845947552907062
the lambda is 20.0
the regulation term lambda/alpha is 87.54287802545127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24926622128693485
the lambda is 20.0
the regulation term lambda/alpha is 80.23550040892881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19544079297371253
the lambda is 20.0
the regulation term lambda/alpha is 102.33278168642137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26515280806301833
the lambda is 20.0
the regulation term lambda/alpha is 75.42820363134393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22738624333520707
the lambda is 20.0
the regulation term lambda/alpha is 87.95606852309224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21895009152805975
the lambda is 20.0
the regulation term lambda/alpha is 91.34501776372576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2758450606212604
the lambda is 20.0
the regulation term lambda/alpha is 72.50447028109129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19901814080843383
the lambda is 20.0
the regulation term lambda/alpha is 100.49335160482244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26210769617307145
the lambda is 20.0
the regulation term lambda/alpha is 76.30451258017952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25606461620678256
the lambda is 20.0
the regulation term lambda/alpha is 78.10528567464858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23519238895547884
the lambda is 20.0
the regulation term lambda/alpha is 85.03676538523504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24093711980152405
the lambda is 20.0
the regulation term lambda/alpha is 83.00921010625234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2584381490204577
the lambda is 20.0
the regulation term lambda/alpha is 77.38795559326198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2442493878944634
the lambda is 20.0
the regulation term lambda/alpha is 81.88352147945487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21867396055795582
the lambda is 20.0
the regulation term lambda/alpha is 91.46036386302767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.3398869299248653
the lambda is 20.0
the regulation term lambda/alpha is 58.84309821628375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24775958396966963
the lambda is 20.0
the regulation term lambda/alpha is 80.72341614219198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2719401670376047
the lambda is 20.0
the regulation term lambda/alpha is 73.54558989159678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20998795003519402
the lambda is 20.0
the regulation term lambda/alpha is 95.24356038833655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22303503602949984
the lambda is 20.0
the regulation term lambda/alpha is 89.67201008434698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.242662819819993
the lambda is 20.0
the regulation term lambda/alpha is 82.41888895396492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22426468323783957
the lambda is 20.0
the regulation term lambda/alpha is 89.1803368735923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2303012121658805
the lambda is 20.0
the regulation term lambda/alpha is 86.8427908472947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19078194657109462
the lambda is 20.0
the regulation term lambda/alpha is 104.83172207568931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26691198550170536
the lambda is 20.0
the regulation term lambda/alpha is 74.93106749180514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25221084015550344
the lambda is 20.0
the regulation term lambda/alpha is 79.29873270977875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22891203082678394
the lambda is 20.0
the regulation term lambda/alpha is 87.36980720394664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23395265191588624
the lambda is 20.0
the regulation term lambda/alpha is 85.48738317867269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24211833443161573
the lambda is 20.0
the regulation term lambda/alpha is 82.60423584587656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23770390050591145
the lambda is 20.0
the regulation term lambda/alpha is 84.13829119940176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22373465034998305
the lambda is 20.0
the regulation term lambda/alpha is 89.3916072844079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2538823469926437
the lambda is 20.0
the regulation term lambda/alpha is 78.7766468874636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2693955373770049
the lambda is 20.0
the regulation term lambda/alpha is 74.24027953369936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23239648172979796
the lambda is 20.0
the regulation term lambda/alpha is 86.05982264074694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28922141326774176
the lambda is 20.0
the regulation term lambda/alpha is 69.1511730546913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22708450374887948
the lambda is 20.0
the regulation term lambda/alpha is 88.07294055659968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2150791476780995
the lambda is 20.0
the regulation term lambda/alpha is 92.98902388219064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2480071351303827
the lambda is 20.0
the regulation term lambda/alpha is 80.64284114037916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2374211415092037
the lambda is 20.0
the regulation term lambda/alpha is 84.23849650821721
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21457706558475922
the lambda is 20.0
the regulation term lambda/alpha is 93.20660595994534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.248510466563468
the lambda is 20.0
the regulation term lambda/alpha is 80.47950767052352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22419826710252683
the lambda is 20.0
the regulation term lambda/alpha is 89.20675551365397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22656443599353035
the lambda is 20.0
the regulation term lambda/alpha is 88.27510775155864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19078456865404816
the lambda is 20.0
the regulation term lambda/alpha is 104.83028130155657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20206931562949537
the lambda is 20.0
the regulation term lambda/alpha is 98.97593772560225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21106875393345498
the lambda is 20.0
the regulation term lambda/alpha is 94.7558538499049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23866131698917156
the lambda is 20.0
the regulation term lambda/alpha is 83.80076106303994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22586428283025295
the lambda is 20.0
the regulation term lambda/alpha is 88.54875037958476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24719643943641764
the lambda is 20.0
the regulation term lambda/alpha is 80.90731422183076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23365505739112535
the lambda is 20.0
the regulation term lambda/alpha is 85.59626409678405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2298610828642613
the lambda is 20.0
the regulation term lambda/alpha is 87.00907413635782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21607315143634154
the lambda is 20.0
the regulation term lambda/alpha is 92.5612454256831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2363593669884353
the lambda is 20.0
the regulation term lambda/alpha is 84.61691302878879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2725218951956198
the lambda is 20.0
the regulation term lambda/alpha is 73.38859868724947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26596107722894763
the lambda is 20.0
the regulation term lambda/alpha is 75.19897350537265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23813844777289345
the lambda is 20.0
the regulation term lambda/alpha is 83.9847583917801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2240374686336836
the lambda is 20.0
the regulation term lambda/alpha is 89.27078190077818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21096381700782305
the lambda is 20.0
the regulation term lambda/alpha is 94.80298699401307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24656687213846598
the lambda is 20.0
the regulation term lambda/alpha is 81.11389752621952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26094651165616045
the lambda is 20.0
the regulation term lambda/alpha is 76.64405963147443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27687441180903766
the lambda is 20.0
the regulation term lambda/alpha is 72.23491643494361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22918245336293358
the lambda is 20.0
the regulation term lambda/alpha is 87.26671569541136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20357641505751847
the lambda is 20.0
the regulation term lambda/alpha is 98.24320756581356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2770494247299848
the lambda is 20.0
the regulation term lambda/alpha is 72.18928542981891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.290314016728188
the lambda is 20.0
the regulation term lambda/alpha is 68.890921028885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24618109459336532
the lambda is 20.0
the regulation term lambda/alpha is 81.24100688168363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26830014206085034
the lambda is 20.0
the regulation term lambda/alpha is 74.54338207343926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2391039250514874
the lambda is 20.0
the regulation term lambda/alpha is 83.64563649757446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22885988793527434
the lambda is 20.0
the regulation term lambda/alpha is 87.38971333262366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20697306019631512
the lambda is 20.0
the regulation term lambda/alpha is 96.63093342210763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26355599588609013
the lambda is 20.0
the regulation term lambda/alpha is 75.88520205263733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24343046870211268
the lambda is 20.0
the regulation term lambda/alpha is 82.15898406897503
480
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19741436495264775
the lambda is 20.0
the regulation term lambda/alpha is 101.30975020382759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2725624822058255
the lambda is 20.0
the regulation term lambda/alpha is 73.3776704634536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23066534975930006
the lambda is 20.0
the regulation term lambda/alpha is 86.70569732675521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2372870249395011
the lambda is 20.0
the regulation term lambda/alpha is 84.2861087962952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21890135273121017
the lambda is 20.0
the regulation term lambda/alpha is 91.36535590329622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.242094196074542
the lambda is 20.0
the regulation term lambda/alpha is 82.61247202242676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23549387767134314
the lambda is 20.0
the regulation term lambda/alpha is 84.92789790447179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1710158746271775
the lambda is 20.0
the regulation term lambda/alpha is 116.94820754857363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23417095590366074
the lambda is 20.0
the regulation term lambda/alpha is 85.40768825416639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2617007485210657
the lambda is 20.0
the regulation term lambda/alpha is 76.4231669684739
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.215952006361261
the lambda is 20.0
the regulation term lambda/alpha is 92.61317056967961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24552589967777655
the lambda is 20.0
the regulation term lambda/alpha is 81.45780150382348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2726835808448588
the lambda is 20.0
the regulation term lambda/alpha is 73.34508347746412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20998192877869754
the lambda is 20.0
the regulation term lambda/alpha is 95.24629150862901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.251819992413503
the lambda is 20.0
the regulation term lambda/alpha is 79.42181162152862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2993300179305491
the lambda is 20.0
the regulation term lambda/alpha is 66.81588481593725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21342742254585992
the lambda is 20.0
the regulation term lambda/alpha is 93.70867042965169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25640459723438047
the lambda is 20.0
the regulation term lambda/alpha is 78.00172155929762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2311353231965312
the lambda is 20.0
the regulation term lambda/alpha is 86.52939638738935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26787043898467383
the lambda is 20.0
the regulation term lambda/alpha is 74.6629604812209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1847722195635126
the lambda is 20.0
the regulation term lambda/alpha is 108.24137983104818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.26471369608492795
the lambda is 20.0
the regulation term lambda/alpha is 75.55332533146834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23868056816430852
the lambda is 20.0
the regulation term lambda/alpha is 83.79400197435399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24911035884179547
the lambda is 20.0
the regulation term lambda/alpha is 80.28570185915697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21059157224073485
the lambda is 20.0
the regulation term lambda/alpha is 94.97056215116375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25088932518986506
the lambda is 20.0
the regulation term lambda/alpha is 79.7164247018666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22604837319973498
the lambda is 20.0
the regulation term lambda/alpha is 88.47663761918835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23564460503134607
the lambda is 20.0
the regulation term lambda/alpha is 84.87357475185799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24561123853381908
the lambda is 20.0
the regulation term lambda/alpha is 81.42949858235468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26460358593698574
the lambda is 20.0
the regulation term lambda/alpha is 75.58476552454175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19994334261279598
the lambda is 20.0
the regulation term lambda/alpha is 100.02833672102489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23845871708007768
the lambda is 20.0
the regulation term lambda/alpha is 83.87196008139107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23611300677875366
the lambda is 20.0
the regulation term lambda/alpha is 84.70520227943527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2021995625288221
the lambda is 20.0
the regulation term lambda/alpha is 98.9121823502914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26320629945810453
the lambda is 20.0
the regulation term lambda/alpha is 75.98602328734715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2603960872177066
the lambda is 20.0
the regulation term lambda/alpha is 76.80606960610285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22389370933877956
the lambda is 20.0
the regulation term lambda/alpha is 89.32810153114872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2126089949483171
the lambda is 20.0
the regulation term lambda/alpha is 94.06939722781617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24172879769867217
the lambda is 20.0
the regulation term lambda/alpha is 82.73734941970409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22240286742212187
the lambda is 20.0
the regulation term lambda/alpha is 89.92689811880838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19812585773659835
the lambda is 20.0
the regulation term lambda/alpha is 100.94593521754906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23197084631340723
the lambda is 20.0
the regulation term lambda/alpha is 86.21773088234863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20509307018797673
the lambda is 20.0
the regulation term lambda/alpha is 97.51670293720372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2078663233731002
the lambda is 20.0
the regulation term lambda/alpha is 96.21568167202298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22298626781395195
the lambda is 20.0
the regulation term lambda/alpha is 89.69162180285896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2700311226503932
the lambda is 20.0
the regulation term lambda/alpha is 74.06553660814059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20881661279805036
the lambda is 20.0
the regulation term lambda/alpha is 95.77782022229378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23802872188300073
the lambda is 20.0
the regulation term lambda/alpha is 84.02347347741792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22156752650721928
the lambda is 20.0
the regulation term lambda/alpha is 90.26593524456908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22413424530686465
the lambda is 20.0
the regulation term lambda/alpha is 89.23223656705284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2683700676854184
the lambda is 20.0
the regulation term lambda/alpha is 74.52395929431246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2347572256251504
the lambda is 20.0
the regulation term lambda/alpha is 85.19439581355032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.30037288033965315
the lambda is 20.0
the regulation term lambda/alpha is 66.58390723351778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25785554876430083
the lambda is 20.0
the regulation term lambda/alpha is 77.56280636908647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28961527293789624
the lambda is 20.0
the regulation term lambda/alpha is 69.05713154253681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.223239175643588
the lambda is 20.0
the regulation term lambda/alpha is 89.59001009720156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2386685408400372
the lambda is 20.0
the regulation term lambda/alpha is 83.79822464077743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24480820871960585
the lambda is 20.0
the regulation term lambda/alpha is 81.69660692590276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2736526910183106
the lambda is 20.0
the regulation term lambda/alpha is 73.08534012794256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2479862430365203
the lambda is 20.0
the regulation term lambda/alpha is 80.64963505679083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2485031908214564
the lambda is 20.0
the regulation term lambda/alpha is 80.48186397079111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3180011240339307
the lambda is 20.0
the regulation term lambda/alpha is 62.89285945374834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2059895807248017
the lambda is 20.0
the regulation term lambda/alpha is 97.0922894722507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27715841105931804
the lambda is 20.0
the regulation term lambda/alpha is 72.1608986123086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26963789792073073
the lambda is 20.0
the regulation term lambda/alpha is 74.17354961682605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 0.25521008952121643
the lambda is 20.0
the regulation term lambda/alpha is 78.36680766626719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22489515804910767
the lambda is 20.0
the regulation term lambda/alpha is 88.93032724000594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23763616403698323
the lambda is 20.0
the regulation term lambda/alpha is 84.16227421044975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22539172199390836
the lambda is 20.0
the regulation term lambda/alpha is 88.73440347796152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21963974785962315
the lambda is 20.0
the regulation term lambda/alpha is 91.05819959683464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2807446643563543
the lambda is 20.0
the regulation term lambda/alpha is 71.23910990740553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2162866044795002
the lambda is 20.0
the regulation term lambda/alpha is 92.4698968210748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2887846505876393
the lambda is 20.0
the regulation term lambda/alpha is 69.25575843211402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2581165140066973
the lambda is 20.0
the regulation term lambda/alpha is 77.4843875331474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2354207986227614
the lambda is 20.0
the regulation term lambda/alpha is 84.95426112307106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22088096597215673
the lambda is 20.0
the regulation term lambda/alpha is 90.5465073098291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29666324111339554
the lambda is 20.0
the regulation term lambda/alpha is 67.41650878261412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.28765051530073393
the lambda is 20.0
the regulation term lambda/alpha is 69.52881686685082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24590108494993917
the lambda is 20.0
the regulation term lambda/alpha is 81.3335167027491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27335195371903853
the lambda is 20.0
the regulation term lambda/alpha is 73.16574741059563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2614901506770584
the lambda is 20.0
the regulation term lambda/alpha is 76.48471633908727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24451777945060246
the lambda is 20.0
the regulation term lambda/alpha is 81.79364316548771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22570890227937632
the lambda is 20.0
the regulation term lambda/alpha is 88.60970833682292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.3131747677686124
the lambda is 20.0
the regulation term lambda/alpha is 63.862105311041205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2530754420704475
the lambda is 20.0
the regulation term lambda/alpha is 79.02781809399225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2508774799387606
the lambda is 20.0
the regulation term lambda/alpha is 79.72018853538395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22270181368881656
the lambda is 20.0
the regulation term lambda/alpha is 89.8061837428329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2516449563397849
the lambda is 20.0
the regulation term lambda/alpha is 79.47705485896923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23929538833195138
the lambda is 20.0
the regulation term lambda/alpha is 83.57871056109084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25458099911462656
the lambda is 20.0
the regulation term lambda/alpha is 78.560458437807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22922985224448744
the lambda is 20.0
the regulation term lambda/alpha is 87.2486711663924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2682734522725434
the lambda is 20.0
the regulation term lambda/alpha is 74.55079818960868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21497140055537625
the lambda is 20.0
the regulation term lambda/alpha is 93.0356314762346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24790481657543512
the lambda is 20.0
the regulation term lambda/alpha is 80.6761251204419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2526988474265937
the lambda is 20.0
the regulation term lambda/alpha is 79.14559248557627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23594307188895353
the lambda is 20.0
the regulation term lambda/alpha is 84.76621008568112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2807229513486363
the lambda is 20.0
the regulation term lambda/alpha is 71.24462002097414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2693129513114569
the lambda is 20.0
the regulation term lambda/alpha is 74.26304565973236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2989017727210214
the lambda is 20.0
the regulation term lambda/alpha is 66.91161386542497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24929716830411605
the lambda is 20.0
the regulation term lambda/alpha is 80.22554020991576
490
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24701743811824675
the lambda is 20.0
the regulation term lambda/alpha is 80.96594375019808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.17970304527279898
the lambda is 20.0
the regulation term lambda/alpha is 111.2947194057781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23048097210132654
the lambda is 20.0
the regulation term lambda/alpha is 86.77505920622109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25593596669534446
the lambda is 20.0
the regulation term lambda/alpha is 78.14454630289289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2645104932378859
the lambda is 20.0
the regulation term lambda/alpha is 75.61136707727177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25025434441394834
the lambda is 20.0
the regulation term lambda/alpha is 79.91869250796218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20082739243901035
the lambda is 20.0
the regulation term lambda/alpha is 99.5880081750991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24431449083823478
the lambda is 20.0
the regulation term lambda/alpha is 81.86170182284593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24769597700587864
the lambda is 20.0
the regulation term lambda/alpha is 80.74414547122554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2585420485237096
the lambda is 20.0
the regulation term lambda/alpha is 77.35685593195066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2696728284528809
the lambda is 20.0
the regulation term lambda/alpha is 74.1639419690165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23423218509175595
the lambda is 20.0
the regulation term lambda/alpha is 85.38536235814641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24857861732060732
the lambda is 20.0
the regulation term lambda/alpha is 80.45744326514117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26110607403734176
the lambda is 20.0
the regulation term lambda/alpha is 76.59722231180162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22173703846936205
the lambda is 20.0
the regulation term lambda/alpha is 90.19692938112118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23099048236996622
the lambda is 20.0
the regulation term lambda/alpha is 86.58365398781658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2828325142488317
the lambda is 20.0
the regulation term lambda/alpha is 70.71322776703214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22688481729011437
the lambda is 20.0
the regulation term lambda/alpha is 88.15045554337946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21223072130009626
the lambda is 20.0
the regulation term lambda/alpha is 94.23706368937893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21220571908510047
the lambda is 20.0
the regulation term lambda/alpha is 94.24816676113916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22873169980065078
the lambda is 20.0
the regulation term lambda/alpha is 87.43868916040424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28508004176844354
the lambda is 20.0
the regulation term lambda/alpha is 70.15573547672275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23272526038971364
the lambda is 20.0
the regulation term lambda/alpha is 85.93824308761624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24887307804129877
the lambda is 20.0
the regulation term lambda/alpha is 80.36224792735973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22536787216608492
the lambda is 20.0
the regulation term lambda/alpha is 88.74379390360039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2498470592276076
the lambda is 20.0
the regulation term lambda/alpha is 80.04897100581938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1943692045676585
the lambda is 20.0
the regulation term lambda/alpha is 102.89695862308346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24006753865669225
the lambda is 20.0
the regulation term lambda/alpha is 83.30988900836331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19416388152273484
the lambda is 20.0
the regulation term lambda/alpha is 103.0057693694086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19064459337747466
the lambda is 20.0
the regulation term lambda/alpha is 104.9072499024411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23630947597436694
the lambda is 20.0
the regulation term lambda/alpha is 84.63477783755675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2706514823868117
the lambda is 20.0
the regulation term lambda/alpha is 73.895771135723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23475565548182548
the lambda is 20.0
the regulation term lambda/alpha is 85.1949656290533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2603095020654141
the lambda is 20.0
the regulation term lambda/alpha is 76.83161713771835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23433170074067322
the lambda is 20.0
the regulation term lambda/alpha is 85.34910102553008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2589830630711263
the lambda is 20.0
the regulation term lambda/alpha is 77.22512724512515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2019197203991749
the lambda is 20.0
the regulation term lambda/alpha is 99.04926552226804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.31712383608738964
the lambda is 20.0
the regulation term lambda/alpha is 63.06684557917813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2609414588660118
the lambda is 20.0
the regulation term lambda/alpha is 76.64554374347082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2867156005332238
the lambda is 20.0
the regulation term lambda/alpha is 69.75553462317602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2627561447164836
the lambda is 20.0
the regulation term lambda/alpha is 76.11620280690369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22291530105455779
the lambda is 20.0
the regulation term lambda/alpha is 89.72017580392593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2923844169294331
the lambda is 20.0
the regulation term lambda/alpha is 68.40309825686433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24052561102588202
the lambda is 20.0
the regulation term lambda/alpha is 83.1512283232403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24616177062127298
the lambda is 20.0
the regulation term lambda/alpha is 81.24738439085482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26038814127680004
the lambda is 20.0
the regulation term lambda/alpha is 76.80841340135927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2561819249517578
the lambda is 20.0
the regulation term lambda/alpha is 78.06952033702709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2590198441461687
the lambda is 20.0
the regulation term lambda/alpha is 77.21416120038165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24518301153586064
the lambda is 20.0
the regulation term lambda/alpha is 81.57172013965081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20910052923062777
the lambda is 20.0
the regulation term lambda/alpha is 95.64777321984187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22471712020987114
the lambda is 20.0
the regulation term lambda/alpha is 89.00078454779637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21036372725318486
the lambda is 20.0
the regulation term lambda/alpha is 95.07342478263303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2475724779667454
the lambda is 20.0
the regulation term lambda/alpha is 80.78442387560726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24057248714622134
the lambda is 20.0
the regulation term lambda/alpha is 83.135026108966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2601135897071194
the lambda is 20.0
the regulation term lambda/alpha is 76.88948517653168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24805628780377664
the lambda is 20.0
the regulation term lambda/alpha is 80.6268616573867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23034063866263546
the lambda is 20.0
the regulation term lambda/alpha is 86.82792631001021
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.30376465842849465
the lambda is 20.0
the regulation term lambda/alpha is 65.8404440578065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22462355238917497
the lambda is 20.0
the regulation term lambda/alpha is 89.03785817325466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21383577689439065
the lambda is 20.0
the regulation term lambda/alpha is 93.52971841506958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25153970812754506
the lambda is 20.0
the regulation term lambda/alpha is 79.51030932205285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3064636737250168
the lambda is 20.0
the regulation term lambda/alpha is 65.26058947510224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2460834733083194
the lambda is 20.0
the regulation term lambda/alpha is 81.27323517960056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23057637850154616
the lambda is 20.0
the regulation term lambda/alpha is 86.73915398435268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2521735452633656
the lambda is 20.0
the regulation term lambda/alpha is 79.31046049700555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23565685981541612
the lambda is 20.0
the regulation term lambda/alpha is 84.86916110002264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2442148105111864
the lambda is 20.0
the regulation term lambda/alpha is 81.89511503473655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26490479867017924
the lambda is 20.0
the regulation term lambda/alpha is 75.49882108742423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2614812540749939
the lambda is 20.0
the regulation term lambda/alpha is 76.48731864450947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25299558791149684
the lambda is 20.0
the regulation term lambda/alpha is 79.05276200704503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2204004659284748
the lambda is 20.0
the regulation term lambda/alpha is 90.7439097995849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23374398427894472
the lambda is 20.0
the regulation term lambda/alpha is 85.56369936833308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21942516345772659
the lambda is 20.0
the regulation term lambda/alpha is 91.14724895193301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2473978676086975
the lambda is 20.0
the regulation term lambda/alpha is 80.84144052378599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3244301821903477
the lambda is 20.0
the regulation term lambda/alpha is 61.64654553707867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2585337944765473
the lambda is 20.0
the regulation term lambda/alpha is 77.35932565602864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20962126663000755
the lambda is 20.0
the regulation term lambda/alpha is 95.41016673323057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2847256574472652
the lambda is 20.0
the regulation term lambda/alpha is 70.24305494387788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20635875658542255
the lambda is 20.0
the regulation term lambda/alpha is 96.91859134517011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2779052096774124
the lambda is 20.0
the regulation term lambda/alpha is 71.96698479749861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23244009544205269
the lambda is 20.0
the regulation term lambda/alpha is 86.04367487444092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2424275091703092
the lambda is 20.0
the regulation term lambda/alpha is 82.49888830045967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24755321419529502
the lambda is 20.0
the regulation term lambda/alpha is 80.79071025198637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23356676560738665
the lambda is 20.0
the regulation term lambda/alpha is 85.62862078425549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.30490283936461515
the lambda is 20.0
the regulation term lambda/alpha is 65.5946662932948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2305132943028134
the lambda is 20.0
the regulation term lambda/alpha is 86.76289174769693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2535635917588282
the lambda is 20.0
the regulation term lambda/alpha is 78.87567714777676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2646274080107488
the lambda is 20.0
the regulation term lambda/alpha is 75.57796129412124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22606401222164352
the lambda is 20.0
the regulation term lambda/alpha is 88.47051683923527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26297148154838285
the lambda is 20.0
the regulation term lambda/alpha is 76.05387429176535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2703337996960702
the lambda is 20.0
the regulation term lambda/alpha is 73.98260973095307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26578371999113165
the lambda is 20.0
the regulation term lambda/alpha is 75.24915371290362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2214585549207074
the lambda is 20.0
the regulation term lambda/alpha is 90.31035178189862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27313700772074384
the lambda is 20.0
the regulation term lambda/alpha is 73.22332541787257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21279394680875102
the lambda is 20.0
the regulation term lambda/alpha is 93.9876359263877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22750934017647537
the lambda is 20.0
the regulation term lambda/alpha is 87.9084787661303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.29023414431235
the lambda is 20.0
the regulation term lambda/alpha is 68.90987980544425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26074929452967655
the lambda is 20.0
the regulation term lambda/alpha is 76.70202918889872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1981000567861341
the lambda is 20.0
the regulation term lambda/alpha is 100.95908261950528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21581349262239052
the lambda is 20.0
the regulation term lambda/alpha is 92.67261169344057
500
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2893795216791065
the lambda is 20.0
the regulation term lambda/alpha is 69.11339089909077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2592960780357417
the lambda is 20.0
the regulation term lambda/alpha is 77.13190323396707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23965234512028774
the lambda is 20.0
the regulation term lambda/alpha is 83.45422194788655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24406183697309153
the lambda is 20.0
the regulation term lambda/alpha is 81.94644540926345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21762385562603775
the lambda is 20.0
the regulation term lambda/alpha is 91.90168946536708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25499330580251856
the lambda is 20.0
the regulation term lambda/alpha is 78.43343156423545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23869361394279606
the lambda is 20.0
the regulation term lambda/alpha is 83.78942222054204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25814784556403353
the lambda is 20.0
the regulation term lambda/alpha is 77.47498320701268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29699090753927243
the lambda is 20.0
the regulation term lambda/alpha is 67.34212897529636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21972831655046043
the lambda is 20.0
the regulation term lambda/alpha is 91.02149560867825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24245238202286587
the lambda is 20.0
the regulation term lambda/alpha is 82.49042485428659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24985755417989464
the lambda is 20.0
the regulation term lambda/alpha is 80.04560864947963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26871006106392753
the lambda is 20.0
the regulation term lambda/alpha is 74.4296656433787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2560125252733192
the lambda is 20.0
the regulation term lambda/alpha is 78.12117777693878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2451730238104361
the lambda is 20.0
the regulation term lambda/alpha is 81.57504316406231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23823539597620577
the lambda is 20.0
the regulation term lambda/alpha is 83.95058139050647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.1834791386038334
the lambda is 20.0
the regulation term lambda/alpha is 109.00421787560181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22808815385976525
the lambda is 20.0
the regulation term lambda/alpha is 87.6853955874295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23785599855309714
the lambda is 20.0
the regulation term lambda/alpha is 84.0844886051312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.31999924897643806
the lambda is 20.0
the regulation term lambda/alpha is 62.500146684633705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23077727287386215
the lambda is 20.0
the regulation term lambda/alpha is 86.66364651484362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18434976403013303
the lambda is 20.0
the regulation term lambda/alpha is 108.48942555050347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2444807535578512
the lambda is 20.0
the regulation term lambda/alpha is 81.80603057273963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20712778670531984
the lambda is 20.0
the regulation term lambda/alpha is 96.55874915736896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2582044108474828
the lambda is 20.0
the regulation term lambda/alpha is 77.4580106294686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19843559837499614
the lambda is 20.0
the regulation term lambda/alpha is 100.78836742893658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2688547711064078
the lambda is 20.0
the regulation term lambda/alpha is 74.38960416322448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2210048111088842
the lambda is 20.0
the regulation term lambda/alpha is 90.49576748872875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20729095382700222
the lambda is 20.0
the regulation term lambda/alpha is 96.48274384752602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23926695475822207
the lambda is 20.0
the regulation term lambda/alpha is 83.58864273677027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24460144029491995
the lambda is 20.0
the regulation term lambda/alpha is 81.76566734801591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27479666591261975
the lambda is 20.0
the regulation term lambda/alpha is 72.78108682133585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30072682116287924
the lambda is 20.0
the regulation term lambda/alpha is 66.50554121731506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23838147494099438
the lambda is 20.0
the regulation term lambda/alpha is 83.8991368979092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2646695890168446
the lambda is 20.0
the regulation term lambda/alpha is 75.5659162591858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23936815252087573
the lambda is 20.0
the regulation term lambda/alpha is 83.55330393526667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22495228527547267
the lambda is 20.0
the regulation term lambda/alpha is 88.90774314876751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21156691322784635
the lambda is 20.0
the regulation term lambda/alpha is 94.53273999635785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21718004808866692
the lambda is 20.0
the regulation term lambda/alpha is 92.0894906139569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22246119575747483
the lambda is 20.0
the regulation term lambda/alpha is 89.9033196863862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21958545071305013
the lambda is 20.0
the regulation term lambda/alpha is 91.08071566242155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21304647333141305
the lambda is 20.0
the regulation term lambda/alpha is 93.87623126193782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26952796236064414
the lambda is 20.0
the regulation term lambda/alpha is 74.20380366041144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24601164794965016
the lambda is 20.0
the regulation term lambda/alpha is 81.29696364658835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25487783884624404
the lambda is 20.0
the regulation term lambda/alpha is 78.46896415370608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2370317803026437
the lambda is 20.0
the regulation term lambda/alpha is 84.37687121306632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2169752836665301
the lambda is 20.0
the regulation term lambda/alpha is 92.17639752340665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2574007091203075
the lambda is 20.0
the regulation term lambda/alpha is 77.69986364199224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25411897886278273
the lambda is 20.0
the regulation term lambda/alpha is 78.70329122800172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2560179177853334
the lambda is 20.0
the regulation term lambda/alpha is 78.11953230855372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2334413851280095
the lambda is 20.0
the regulation term lambda/alpha is 85.67461159054054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2447810350589268
the lambda is 20.0
the regulation term lambda/alpha is 81.70567623911447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21348906719704766
the lambda is 20.0
the regulation term lambda/alpha is 93.68161219019359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2320987548601888
the lambda is 20.0
the regulation term lambda/alpha is 86.17021669094072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22982664777639145
the lambda is 20.0
the regulation term lambda/alpha is 87.02211076697637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23076234525567144
the lambda is 20.0
the regulation term lambda/alpha is 86.66925263669489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2290468702139339
the lambda is 20.0
the regulation term lambda/alpha is 87.31837279120924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23063838541835
the lambda is 20.0
the regulation term lambda/alpha is 86.71583424295324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2048533218005846
the lambda is 20.0
the regulation term lambda/alpha is 97.63083080229029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22275551722526798
the lambda is 20.0
the regulation term lambda/alpha is 89.78453260834128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23991851066848097
the lambda is 20.0
the regulation term lambda/alpha is 83.3616378505949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2761822032199363
the lambda is 20.0
the regulation term lambda/alpha is 72.41596224095983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2386165473940779
the lambda is 20.0
the regulation term lambda/alpha is 83.81648388772375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2404180742238997
the lambda is 20.0
the regulation term lambda/alpha is 83.18842110586966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3364933925007347
the lambda is 20.0
the regulation term lambda/alpha is 59.43653113472751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2716026513278767
the lambda is 20.0
the regulation term lambda/alpha is 73.63698366793979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2525347809028375
the lambda is 20.0
the regulation term lambda/alpha is 79.19701170863661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22848563591688154
the lambda is 20.0
the regulation term lambda/alpha is 87.53285483239566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2931938513194584
the lambda is 20.0
the regulation term lambda/alpha is 68.21425452817012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24283878129880818
the lambda is 20.0
the regulation term lambda/alpha is 82.35916805804756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22032900110811304
the lambda is 20.0
the regulation term lambda/alpha is 90.77334304341632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24503110519942864
the lambda is 20.0
the regulation term lambda/alpha is 81.62229029543893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2069652069305923
the lambda is 20.0
the regulation term lambda/alpha is 96.63460006931109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21839780137582981
the lambda is 20.0
the regulation term lambda/alpha is 91.57601346720064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2587540170681443
the lambda is 20.0
the regulation term lambda/alpha is 77.29348601661665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22641559919160212
the lambda is 20.0
the regulation term lambda/alpha is 88.33313637138218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21719695095484146
the lambda is 20.0
the regulation term lambda/alpha is 92.08232395563556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2262271929643663
the lambda is 20.0
the regulation term lambda/alpha is 88.40670185546729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2591327471631235
the lambda is 20.0
the regulation term lambda/alpha is 77.18051932436792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24104327944536058
the lambda is 20.0
the regulation term lambda/alpha is 82.97265140940624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23395263884760106
the lambda is 20.0
the regulation term lambda/alpha is 85.48738795388492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28231555727251256
the lambda is 20.0
the regulation term lambda/alpha is 70.842713002509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2350092123560938
the lambda is 20.0
the regulation term lambda/alpha is 85.10304681033242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26269815419380455
the lambda is 20.0
the regulation term lambda/alpha is 76.13300543118807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2652332369949051
the lambda is 20.0
the regulation term lambda/alpha is 75.40533089517805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28959071384323215
the lambda is 20.0
the regulation term lambda/alpha is 69.06298801703585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22348740866684327
the lambda is 20.0
the regulation term lambda/alpha is 89.4905002447559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25019508173351007
the lambda is 20.0
the regulation term lambda/alpha is 79.93762252010441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24383715995293428
the lambda is 20.0
the regulation term lambda/alpha is 82.021952699336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24281707935684751
the lambda is 20.0
the regulation term lambda/alpha is 82.36652896482504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.33282595300979434
the lambda is 20.0
the regulation term lambda/alpha is 60.091467684947766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2249699437293502
the lambda is 20.0
the regulation term lambda/alpha is 88.9007645575134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22441211738468142
the lambda is 20.0
the regulation term lambda/alpha is 89.12174722595982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24434721104772347
the lambda is 20.0
the regulation term lambda/alpha is 81.85073983141882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2572031106350262
the lambda is 20.0
the regulation term lambda/alpha is 77.7595572254964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.224583744019475
the lambda is 20.0
the regulation term lambda/alpha is 89.05364049085263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27861476210803265
the lambda is 20.0
the regulation term lambda/alpha is 71.78370538832044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26381083480575335
the lambda is 20.0
the regulation term lambda/alpha is 75.81189762249987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22951460095690496
the lambda is 20.0
the regulation term lambda/alpha is 87.14042556166315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20395003058063807
the lambda is 20.0
the regulation term lambda/alpha is 98.06323609298195
510
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2786630194083104
the lambda is 20.0
the regulation term lambda/alpha is 71.77127428844457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20435872003866726
the lambda is 20.0
the regulation term lambda/alpha is 97.86712304821515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21460745146285906
the lambda is 20.0
the regulation term lambda/alpha is 93.19340900640297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.303782556473925
the lambda is 20.0
the regulation term lambda/alpha is 65.8365649171719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22714947005225686
the lambda is 20.0
the regulation term lambda/alpha is 88.04775109270078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.30166430846615555
the lambda is 20.0
the regulation term lambda/alpha is 66.29886081549435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23899205861714268
the lambda is 20.0
the regulation term lambda/alpha is 83.68478900815417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3881995827308478
the lambda is 20.0
the regulation term lambda/alpha is 51.51989051432518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21827100057546484
the lambda is 20.0
the regulation term lambda/alpha is 91.62921298418301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26285948667063
the lambda is 20.0
the regulation term lambda/alpha is 76.08627808461232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23846401296522354
the lambda is 20.0
the regulation term lambda/alpha is 83.87009742604937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2562981143675484
the lambda is 20.0
the regulation term lambda/alpha is 78.03412853564221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24866007249317681
the lambda is 20.0
the regulation term lambda/alpha is 80.43108730513539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22341458528313213
the lambda is 20.0
the regulation term lambda/alpha is 89.51967023394693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.300201826885079
the lambda is 20.0
the regulation term lambda/alpha is 66.62184640087567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2345830127905624
the lambda is 20.0
the regulation term lambda/alpha is 85.25766534449006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24365346951534822
the lambda is 20.0
the regulation term lambda/alpha is 82.08378907873569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23035692511151662
the lambda is 20.0
the regulation term lambda/alpha is 86.8217874948536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22980976946509402
the lambda is 20.0
the regulation term lambda/alpha is 87.02850208044708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3003311597642615
the lambda is 20.0
the regulation term lambda/alpha is 66.59315675302746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2538461505554441
the lambda is 20.0
the regulation term lambda/alpha is 78.78787980923775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2648673480578942
the lambda is 20.0
the regulation term lambda/alpha is 75.50949615589627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2200826278804017
the lambda is 20.0
the regulation term lambda/alpha is 90.87495997579823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23847567347125578
the lambda is 20.0
the regulation term lambda/alpha is 83.8659965139407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25974911842275494
the lambda is 20.0
the regulation term lambda/alpha is 76.99737393313875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.231315145410279
the lambda is 20.0
the regulation term lambda/alpha is 86.46212925023308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26554301724544593
the lambda is 20.0
the regulation term lambda/alpha is 75.31736367036027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24370089295988415
the lambda is 20.0
the regulation term lambda/alpha is 82.06781582573939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24339677437437374
the lambda is 20.0
the regulation term lambda/alpha is 82.17035764507534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2498522110536927
the lambda is 20.0
the regulation term lambda/alpha is 80.04732043656817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2462673064388933
the lambda is 20.0
the regulation term lambda/alpha is 81.21256649616474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28644004675095913
the lambda is 20.0
the regulation term lambda/alpha is 69.82263907179393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26209320590259827
the lambda is 20.0
the regulation term lambda/alpha is 76.30873120546514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25100455689189033
the lambda is 20.0
the regulation term lambda/alpha is 79.67982831727697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22641324927642278
the lambda is 20.0
the regulation term lambda/alpha is 88.33405317010603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22212751802166508
the lambda is 20.0
the regulation term lambda/alpha is 90.0383715539887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2581565316093339
the lambda is 20.0
the regulation term lambda/alpha is 77.47237645052434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2290265207160616
the lambda is 20.0
the regulation term lambda/alpha is 87.32613121602297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.201496701122454
the lambda is 20.0
the regulation term lambda/alpha is 99.25720812593134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26198285371643715
the lambda is 20.0
the regulation term lambda/alpha is 76.34087390179907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22434900126846768
the lambda is 20.0
the regulation term lambda/alpha is 89.14681985174946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25915448459823226
the lambda is 20.0
the regulation term lambda/alpha is 77.17404555435743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2214877210851179
the lambda is 20.0
the regulation term lambda/alpha is 90.29845944513549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22868456019599076
the lambda is 20.0
the regulation term lambda/alpha is 87.45671322479879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25499388110547117
the lambda is 20.0
the regulation term lambda/alpha is 78.43325460710783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23072892695970956
the lambda is 20.0
the regulation term lambda/alpha is 86.68180563026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3073838543483835
the lambda is 20.0
the regulation term lambda/alpha is 65.06522615638865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24718936480896783
the lambda is 20.0
the regulation term lambda/alpha is 80.90962981136482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22972060227803698
the lambda is 20.0
the regulation term lambda/alpha is 87.06228262362583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22181202219672408
the lambda is 20.0
the regulation term lambda/alpha is 90.16643823869065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21397028777115323
the lambda is 20.0
the regulation term lambda/alpha is 93.47092163277604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2164283307715288
the lambda is 20.0
the regulation term lambda/alpha is 92.40934367836009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2331643138792997
the lambda is 20.0
the regulation term lambda/alpha is 85.77641950111303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2276695276577935
the lambda is 20.0
the regulation term lambda/alpha is 87.84662666872875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26629774054214184
the lambda is 20.0
the regulation term lambda/alpha is 75.10390422120379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.3111317087849479
the lambda is 20.0
the regulation term lambda/alpha is 64.28145841549009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23153353930345127
the lambda is 20.0
the regulation term lambda/alpha is 86.38057389079906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20962495725617478
the lambda is 20.0
the regulation term lambda/alpha is 95.40848695586735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2764728670236794
the lambda is 20.0
the regulation term lambda/alpha is 72.33982927621985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2733140575226902
the lambda is 20.0
the regulation term lambda/alpha is 73.17589216332067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21438597259438327
the lambda is 20.0
the regulation term lambda/alpha is 93.2896856915161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22198592566913888
the lambda is 20.0
the regulation term lambda/alpha is 90.09580197354133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21025464157896215
the lambda is 20.0
the regulation term lambda/alpha is 95.12275139233444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20335501590043395
the lambda is 20.0
the regulation term lambda/alpha is 98.35016811088809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2415687406917685
the lambda is 20.0
the regulation term lambda/alpha is 82.79216898149564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2210391157766433
the lambda is 20.0
the regulation term lambda/alpha is 90.48172279249297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25322658599685166
the lambda is 20.0
the regulation term lambda/alpha is 78.9806485810643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2251188198712558
the lambda is 20.0
the regulation term lambda/alpha is 88.84197248118967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2414331663506436
the lambda is 20.0
the regulation term lambda/alpha is 82.83866008265473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22966614258521367
the lambda is 20.0
the regulation term lambda/alpha is 87.08292730862297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2360821477758814
the lambda is 20.0
the regulation term lambda/alpha is 84.71627434949674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2199503922899683
the lambda is 20.0
the regulation term lambda/alpha is 90.92959458618878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24602519105502457
the lambda is 20.0
the regulation term lambda/alpha is 81.2924884408561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2338022600263486
the lambda is 20.0
the regulation term lambda/alpha is 85.54237242080585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2775197880193324
the lambda is 20.0
the regulation term lambda/alpha is 72.06693311039417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23818588088226628
the lambda is 20.0
the regulation term lambda/alpha is 83.9680333944138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.3049365743403369
the lambda is 20.0
the regulation term lambda/alpha is 65.58740958924194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2608800404070632
the lambda is 20.0
the regulation term lambda/alpha is 76.66358824842665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.35572108464244506
the lambda is 20.0
the regulation term lambda/alpha is 56.223824966976885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2726610705632811
the lambda is 20.0
the regulation term lambda/alpha is 73.35113868174393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22766203800970577
the lambda is 20.0
the regulation term lambda/alpha is 87.84951665568131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23354717407076206
the lambda is 20.0
the regulation term lambda/alpha is 85.63580389947357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22330334256953233
the lambda is 20.0
the regulation term lambda/alpha is 89.56426612276253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24405148239893065
the lambda is 20.0
the regulation term lambda/alpha is 81.9499222189016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21919018637983695
the lambda is 20.0
the regulation term lambda/alpha is 91.2449609643645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2602319832434846
the lambda is 20.0
the regulation term lambda/alpha is 76.85450401108886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29808915221512317
the lambda is 20.0
the regulation term lambda/alpha is 67.09402154146998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23785201640462503
the lambda is 20.0
the regulation term lambda/alpha is 84.08589635824967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21586983145250252
the lambda is 20.0
the regulation term lambda/alpha is 92.64842551378267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22087521567745697
the lambda is 20.0
the regulation term lambda/alpha is 90.54886460962604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.32057631028873357
the lambda is 20.0
the regulation term lambda/alpha is 62.387641750529205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18437865050497304
the lambda is 20.0
the regulation term lambda/alpha is 108.47242858771527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2693332862346452
the lambda is 20.0
the regulation term lambda/alpha is 74.25743872807406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2766935517358275
the lambda is 20.0
the regulation term lambda/alpha is 72.28213261397198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2585710851422703
the lambda is 20.0
the regulation term lambda/alpha is 77.34816903056138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29722398357808305
the lambda is 20.0
the regulation term lambda/alpha is 67.28932086581042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22813406363911468
the lambda is 20.0
the regulation term lambda/alpha is 87.66774974752566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24018500833342268
the lambda is 20.0
the regulation term lambda/alpha is 83.26914381032549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2585084151581451
the lambda is 20.0
the regulation term lambda/alpha is 77.36692048405774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23497011255337413
the lambda is 20.0
the regulation term lambda/alpha is 85.11720823837518
520
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24757768511006595
the lambda is 20.0
the regulation term lambda/alpha is 80.78272478841771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29417615630094174
the lambda is 20.0
the regulation term lambda/alpha is 67.9864753536994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21750321729096692
the lambda is 20.0
the regulation term lambda/alpha is 91.95266281162553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2980882136094627
the lambda is 20.0
the regulation term lambda/alpha is 67.09423280385987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21975221545464438
the lambda is 20.0
the regulation term lambda/alpha is 91.01159666864832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23804211181750032
the lambda is 20.0
the regulation term lambda/alpha is 84.01874713384073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22069182649589741
the lambda is 20.0
the regulation term lambda/alpha is 90.62410836665849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26391110755807595
the lambda is 20.0
the regulation term lambda/alpha is 75.7830929704193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.309505117638769
the lambda is 20.0
the regulation term lambda/alpha is 64.61928692029736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21849856174222418
the lambda is 20.0
the regulation term lambda/alpha is 91.53378329142137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.29885183605687976
the lambda is 20.0
the regulation term lambda/alpha is 66.92279446525953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25148648839781584
the lambda is 20.0
the regulation term lambda/alpha is 79.52713534399847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3250827575257761
the lambda is 20.0
the regulation term lambda/alpha is 61.522795463595706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25570674721503023
the lambda is 20.0
the regulation term lambda/alpha is 78.21459628197256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.31699612492469265
the lambda is 20.0
the regulation term lambda/alpha is 63.09225390295011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2668499609927292
the lambda is 20.0
the regulation term lambda/alpha is 74.94848388059138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24967386357790453
the lambda is 20.0
the regulation term lambda/alpha is 80.104499980069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19694207596025004
the lambda is 20.0
the regulation term lambda/alpha is 101.55270224752132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22045570454188218
the lambda is 20.0
the regulation term lambda/alpha is 90.72117249839819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2742794642361598
the lambda is 20.0
the regulation term lambda/alpha is 72.9183282302886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20572480091329148
the lambda is 20.0
the regulation term lambda/alpha is 97.21725290880006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23601259362248728
the lambda is 20.0
the regulation term lambda/alpha is 84.74124068138032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23039283130341778
the lambda is 20.0
the regulation term lambda/alpha is 86.80825651932213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23323453048283166
the lambda is 20.0
the regulation term lambda/alpha is 85.75059601422181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3090177186464711
the lambda is 20.0
the regulation term lambda/alpha is 64.72120785695405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23330339339809172
the lambda is 20.0
the regulation term lambda/alpha is 85.72528546926651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3013729145596683
the lambda is 20.0
the regulation term lambda/alpha is 66.36296439984235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.3065172662447628
the lambda is 20.0
the regulation term lambda/alpha is 65.24917909201706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26162651605892906
the lambda is 20.0
the regulation term lambda/alpha is 76.44485085561884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22350140299862337
the lambda is 20.0
the regulation term lambda/alpha is 89.48489688059448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2699674488430814
the lambda is 20.0
the regulation term lambda/alpha is 74.08300550939755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2862128285719269
the lambda is 20.0
the regulation term lambda/alpha is 69.87806975596094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.25475381673768344
the lambda is 20.0
the regulation term lambda/alpha is 78.50716529438195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20588652108071598
the lambda is 20.0
the regulation term lambda/alpha is 97.14089050132222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25332445074431015
the lambda is 20.0
the regulation term lambda/alpha is 78.95013663796216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1961810254194258
the lambda is 20.0
the regulation term lambda/alpha is 101.94665848667546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24568012118731405
the lambda is 20.0
the regulation term lambda/alpha is 81.40666775701965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26235803454814166
the lambda is 20.0
the regulation term lambda/alpha is 76.23170387918911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23690950744183195
the lambda is 20.0
the regulation term lambda/alpha is 84.42041949249577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21572800060571898
the lambda is 20.0
the regulation term lambda/alpha is 92.7093374241832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24610202808763668
the lambda is 20.0
the regulation term lambda/alpha is 81.26710761147413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23957034060948504
the lambda is 20.0
the regulation term lambda/alpha is 83.48278818287143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22857255309348587
the lambda is 20.0
the regulation term lambda/alpha is 87.4995695210178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25447669765792025
the lambda is 20.0
the regulation term lambda/alpha is 78.59265773279154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22506962440389533
the lambda is 20.0
the regulation term lambda/alpha is 88.86139146040115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.254516467209424
the lambda is 20.0
the regulation term lambda/alpha is 78.58037721207006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21706520775812954
the lambda is 20.0
the regulation term lambda/alpha is 92.13821139998406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22343869191260055
the lambda is 20.0
the regulation term lambda/alpha is 89.51001202523655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24973912075343632
the lambda is 20.0
the regulation term lambda/alpha is 80.08356856411655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2934672057168733
the lambda is 20.0
the regulation term lambda/alpha is 68.15071534532989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24376085457387928
the lambda is 20.0
the regulation term lambda/alpha is 82.04762834033461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22082426703730457
the lambda is 20.0
the regulation term lambda/alpha is 90.56975607042922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25680416448364574
the lambda is 20.0
the regulation term lambda/alpha is 77.88035696466937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21949270162392306
the lambda is 20.0
the regulation term lambda/alpha is 91.11920283467025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2174566791187392
the lambda is 20.0
the regulation term lambda/alpha is 91.97234171445834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.28308032738492567
the lambda is 20.0
the regulation term lambda/alpha is 70.65132425399696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24439731681788598
the lambda is 20.0
the regulation term lambda/alpha is 81.83395898287668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2942010272314389
the lambda is 20.0
the regulation term lambda/alpha is 67.98072796756965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24071909880212292
the lambda is 20.0
the regulation term lambda/alpha is 83.08439213807667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22046026123091414
the lambda is 20.0
the regulation term lambda/alpha is 90.71929738417407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2484635873974274
the lambda is 20.0
the regulation term lambda/alpha is 80.494692238381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25934989332656994
the lambda is 20.0
the regulation term lambda/alpha is 77.11589830814492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2543199221706721
the lambda is 20.0
the regulation term lambda/alpha is 78.64110616775888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2519584593229703
the lambda is 20.0
the regulation term lambda/alpha is 79.37816437575216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3099408849211289
the lambda is 20.0
the regulation term lambda/alpha is 64.52843420476594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3091276241219492
the lambda is 20.0
the regulation term lambda/alpha is 64.69819724719945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2697533520509288
the lambda is 20.0
the regulation term lambda/alpha is 74.14180342131225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28863429676398045
the lambda is 20.0
the regulation term lambda/alpha is 69.29183476887442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23506543114076558
the lambda is 20.0
the regulation term lambda/alpha is 85.08269337154591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22939559426929934
the lambda is 20.0
the regulation term lambda/alpha is 87.18563259118642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18647368080464058
the lambda is 20.0
the regulation term lambda/alpha is 107.25374172751505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24951456271174347
the lambda is 20.0
the regulation term lambda/alpha is 80.15564215025553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21676703651078386
the lambda is 20.0
the regulation term lambda/alpha is 92.26495099039207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24130885987350129
the lambda is 20.0
the regulation term lambda/alpha is 82.8813331200702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2416162290988567
the lambda is 20.0
the regulation term lambda/alpha is 82.77589661337298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2162389220856731
the lambda is 20.0
the regulation term lambda/alpha is 92.49028716521288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25108734223708984
the lambda is 20.0
the regulation term lambda/alpha is 79.6535572912909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23196228114762601
the lambda is 20.0
the regulation term lambda/alpha is 86.22091445665491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24058596544126434
the lambda is 20.0
the regulation term lambda/alpha is 83.13036865353942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2170663253788365
the lambda is 20.0
the regulation term lambda/alpha is 92.1377370031711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22048317509672336
the lambda is 20.0
the regulation term lambda/alpha is 90.70986931871893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2397630617195915
the lambda is 20.0
the regulation term lambda/alpha is 83.41568487055136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23005091065469066
the lambda is 20.0
the regulation term lambda/alpha is 86.93727811414863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25867726956825754
the lambda is 20.0
the regulation term lambda/alpha is 77.31641838256907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24700030050847313
the lambda is 20.0
the regulation term lambda/alpha is 80.97156140631463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2241874996390283
the lambda is 20.0
the regulation term lambda/alpha is 89.21104000982508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19965897247283726
the lambda is 20.0
the regulation term lambda/alpha is 100.17080500963168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20977271495724056
the lambda is 20.0
the regulation term lambda/alpha is 95.341284037234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2700685042581961
the lambda is 20.0
the regulation term lambda/alpha is 74.05528480610687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23679471773360453
the lambda is 20.0
the regulation term lambda/alpha is 84.46134352751956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24434244062222418
the lambda is 20.0
the regulation term lambda/alpha is 81.85233784630086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2513444852783415
the lambda is 20.0
the regulation term lambda/alpha is 79.57206611416912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23198843198890104
the lambda is 20.0
the regulation term lambda/alpha is 86.21119522441039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27357586908065595
the lambda is 20.0
the regulation term lambda/alpha is 73.10586298129817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23223668863231625
the lambda is 20.0
the regulation term lambda/alpha is 86.11903708145172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2761069130697479
the lambda is 20.0
the regulation term lambda/alpha is 72.43570897099474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2762787431497803
the lambda is 20.0
the regulation term lambda/alpha is 72.39065797095112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2729074492330916
the lambda is 20.0
the regulation term lambda/alpha is 73.28491785842716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2608040954060195
the lambda is 20.0
the regulation term lambda/alpha is 76.68591234682884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25175463311340135
the lambda is 20.0
the regulation term lambda/alpha is 79.44243072178585
530
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2997098135831123
the lambda is 20.0
the regulation term lambda/alpha is 66.73121497389279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.30232918853923474
the lambda is 20.0
the regulation term lambda/alpha is 66.1530568604179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2566439028703101
the lambda is 20.0
the regulation term lambda/alpha is 77.92898945316696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24439249604633184
the lambda is 20.0
the regulation term lambda/alpha is 81.83557320110356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28962494283106704
the lambda is 20.0
the regulation term lambda/alpha is 69.0548258879265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2315635567411304
the lambda is 20.0
the regulation term lambda/alpha is 86.36937643153584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2105941257264032
the lambda is 20.0
the regulation term lambda/alpha is 94.96941061871463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.254456225774463
the lambda is 20.0
the regulation term lambda/alpha is 78.59898078393641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27757518695034733
the lambda is 20.0
the regulation term lambda/alpha is 72.0525498685068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2830226086554818
the lambda is 20.0
the regulation term lambda/alpha is 70.66573266005625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2775811865312231
the lambda is 20.0
the regulation term lambda/alpha is 72.05099253998017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2449611157957949
the lambda is 20.0
the regulation term lambda/alpha is 81.64561112087867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2517357420946645
the lambda is 20.0
the regulation term lambda/alpha is 79.44839232435677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25088685185265347
the lambda is 20.0
the regulation term lambda/alpha is 79.71721057644764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28008752229017797
the lambda is 20.0
the regulation term lambda/alpha is 71.4062512905501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21514603112387515
the lambda is 20.0
the regulation term lambda/alpha is 92.96011595252041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2089227011223543
the lambda is 20.0
the regulation term lambda/alpha is 95.72918544781365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.31666654097551333
the lambda is 20.0
the regulation term lambda/alpha is 63.15791980544773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21184618610861433
the lambda is 20.0
the regulation term lambda/alpha is 94.40811924622483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27260467354266915
the lambda is 20.0
the regulation term lambda/alpha is 73.36631371754352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20211303740020323
the lambda is 20.0
the regulation term lambda/alpha is 98.95452691850888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2524978196807131
the lambda is 20.0
the regulation term lambda/alpha is 79.20860475266784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2808317553189258
the lambda is 20.0
the regulation term lambda/alpha is 71.21701738212282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25527798892370696
the lambda is 20.0
the regulation term lambda/alpha is 78.34596348993196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24073549071377628
the lambda is 20.0
the regulation term lambda/alpha is 83.07873484171515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2462637707630798
the lambda is 20.0
the regulation term lambda/alpha is 81.21373248702983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22620828855391845
the lambda is 20.0
the regulation term lambda/alpha is 88.41409007536366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2536463902677323
the lambda is 20.0
the regulation term lambda/alpha is 78.84992953729532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2379354199242549
the lambda is 20.0
the regulation term lambda/alpha is 84.0564217230325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2464752099456392
the lambda is 20.0
the regulation term lambda/alpha is 81.14406314700393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2572577783654414
the lambda is 20.0
the regulation term lambda/alpha is 77.74303318280809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2765636726390677
the lambda is 20.0
the regulation term lambda/alpha is 72.31607755694367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24327370754432162
the lambda is 20.0
the regulation term lambda/alpha is 82.21192582579535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2803502499445744
the lambda is 20.0
the regulation term lambda/alpha is 71.33933357988454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25913136771053163
the lambda is 20.0
the regulation term lambda/alpha is 77.180930184961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23846576982748227
the lambda is 20.0
the regulation term lambda/alpha is 83.8694795251703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.34596006907813714
the lambda is 20.0
the regulation term lambda/alpha is 57.81013991959541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23580421093510828
the lambda is 20.0
the regulation term lambda/alpha is 84.81612741641779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2418239186489796
the lambda is 20.0
the regulation term lambda/alpha is 82.70480485030546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2781085158970424
the lambda is 20.0
the regulation term lambda/alpha is 71.91437462995248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23747469946183075
the lambda is 20.0
the regulation term lambda/alpha is 84.219498099479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.32036175411971035
the lambda is 20.0
the regulation term lambda/alpha is 62.42942468259351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29532756806017973
the lambda is 20.0
the regulation term lambda/alpha is 67.7214122994591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.21130169428459286
the lambda is 20.0
the regulation term lambda/alpha is 94.65139438523805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.257350947871498
the lambda is 20.0
the regulation term lambda/alpha is 77.71488764823404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2278614023957281
the lambda is 20.0
the regulation term lambda/alpha is 87.77265385765463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22365566193121433
the lambda is 20.0
the regulation term lambda/alpha is 89.42317769782655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.19771786126680033
the lambda is 20.0
the regulation term lambda/alpha is 101.15424004618387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2222122599750064
the lambda is 20.0
the regulation term lambda/alpha is 90.00403489100702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24902084074003145
the lambda is 20.0
the regulation term lambda/alpha is 80.31456299225678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2638630614137781
the lambda is 20.0
the regulation term lambda/alpha is 75.79689211835873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26706863121177976
the lambda is 20.0
the regulation term lambda/alpha is 74.88711762685608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2509603103427368
the lambda is 20.0
the regulation term lambda/alpha is 79.6938765842534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2934038015954002
the lambda is 20.0
the regulation term lambda/alpha is 68.16544261270249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20001618479490904
the lambda is 20.0
the regulation term lambda/alpha is 99.99190825736146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2871014795904751
the lambda is 20.0
the regulation term lambda/alpha is 69.66177962067013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2807894202819918
the lambda is 20.0
the regulation term lambda/alpha is 71.22775487735385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25058723089336316
the lambda is 20.0
the regulation term lambda/alpha is 79.81252647510581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3039504215848553
the lambda is 20.0
the regulation term lambda/alpha is 65.800204835105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27055688747851286
the lambda is 20.0
the regulation term lambda/alpha is 73.92160734251632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2575435001414982
the lambda is 20.0
the regulation term lambda/alpha is 77.65678415107237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2807008149182076
the lambda is 20.0
the regulation term lambda/alpha is 71.25023846413744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3041581200149532
the lambda is 20.0
the regulation term lambda/alpha is 65.7552722873772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23204277653085914
the lambda is 20.0
the regulation term lambda/alpha is 86.1910045165324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24377367043898998
the lambda is 20.0
the regulation term lambda/alpha is 82.04331486654735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25301449047180163
the lambda is 20.0
the regulation term lambda/alpha is 79.0468560227739
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.259548608602971
the lambda is 20.0
the regulation term lambda/alpha is 77.05685693192756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2519831601756252
the lambda is 20.0
the regulation term lambda/alpha is 79.37038326712214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25529097628940406
the lambda is 20.0
the regulation term lambda/alpha is 78.34197781173242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22574757736403547
the lambda is 20.0
the regulation term lambda/alpha is 88.59452771778122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2408713655893879
the lambda is 20.0
the regulation term lambda/alpha is 83.0318703556233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2705479339616681
the lambda is 20.0
the regulation term lambda/alpha is 73.92405370515101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2557637685406588
the lambda is 20.0
the regulation term lambda/alpha is 78.19715870670946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24288317030106993
the lambda is 20.0
the regulation term lambda/alpha is 82.344116207017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2568448036803147
the lambda is 20.0
the regulation term lambda/alpha is 77.86803436713971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27128654266725766
the lambda is 20.0
the regulation term lambda/alpha is 73.72278699622301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24935498009064486
the lambda is 20.0
the regulation term lambda/alpha is 80.20694029343089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26499096053550114
the lambda is 20.0
the regulation term lambda/alpha is 75.47427263021893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24971656701915795
the lambda is 20.0
the regulation term lambda/alpha is 80.09080149842691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2878216448156002
the lambda is 20.0
the regulation term lambda/alpha is 69.48747726326656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25247303995196785
the lambda is 20.0
the regulation term lambda/alpha is 79.2163789203193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24594336272682563
the lambda is 20.0
the regulation term lambda/alpha is 81.31953543391376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2508124639633118
the lambda is 20.0
the regulation term lambda/alpha is 79.7408537197958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23656818365205426
the lambda is 20.0
the regulation term lambda/alpha is 84.54222242081423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23525168891723297
the lambda is 20.0
the regulation term lambda/alpha is 85.0153301430132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2943152138438923
the lambda is 20.0
the regulation term lambda/alpha is 67.95435322146886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22536350485814705
the lambda is 20.0
the regulation term lambda/alpha is 88.74551366508439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27910470607836807
the lambda is 20.0
the regulation term lambda/alpha is 71.65769535388746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2763725044733271
the lambda is 20.0
the regulation term lambda/alpha is 72.36609892910027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2574788202928353
the lambda is 20.0
the regulation term lambda/alpha is 77.67629188782844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2708432606450118
the lambda is 20.0
the regulation term lambda/alpha is 73.84344713754408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2620476634018879
the lambda is 20.0
the regulation term lambda/alpha is 76.32199326016166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2776933427467311
the lambda is 20.0
the regulation term lambda/alpha is 72.02189221453864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22307965050119472
the lambda is 20.0
the regulation term lambda/alpha is 89.65407626856977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.197230665558527
the lambda is 20.0
the regulation term lambda/alpha is 101.40410946423097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2631767479854982
the lambda is 20.0
the regulation term lambda/alpha is 75.99455557183971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24649574557733173
the lambda is 20.0
the regulation term lambda/alpha is 81.13730301168835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2216034653717159
the lambda is 20.0
the regulation term lambda/alpha is 90.2512962351566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2668923332846648
the lambda is 20.0
the regulation term lambda/alpha is 74.93658492868056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2581708305250018
the lambda is 20.0
the regulation term lambda/alpha is 77.46808560567868
540
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3417656739967022
the lambda is 20.0
the regulation term lambda/alpha is 58.51962769143687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2841703131956319
the lambda is 20.0
the regulation term lambda/alpha is 70.38032852584205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2691295344771036
the lambda is 20.0
the regulation term lambda/alpha is 74.31365732065916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23904245114125372
the lambda is 20.0
the regulation term lambda/alpha is 83.66714742303954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2641799452033592
the lambda is 20.0
the regulation term lambda/alpha is 75.70597376195417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2538495828751037
the lambda is 20.0
the regulation term lambda/alpha is 78.78681451227826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2548986839193154
the lambda is 20.0
the regulation term lambda/alpha is 78.46254712845327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20516188791909457
the lambda is 20.0
the regulation term lambda/alpha is 97.48399277689911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27797379402866157
the lambda is 20.0
the regulation term lambda/alpha is 71.94922841517148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2778780626387734
the lambda is 20.0
the regulation term lambda/alpha is 71.97401554508075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.218338508466827
the lambda is 20.0
the regulation term lambda/alpha is 91.60088222842593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20131583138407547
the lambda is 20.0
the regulation term lambda/alpha is 99.3463845465958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25301575237962104
the lambda is 20.0
the regulation term lambda/alpha is 79.04646177915555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2222431767205157
the lambda is 20.0
the regulation term lambda/alpha is 89.99151422835904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.33131403860379194
the lambda is 20.0
the regulation term lambda/alpha is 60.36568834898473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26401400845320844
the lambda is 20.0
the regulation term lambda/alpha is 75.75355609793193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26647697222511807
the lambda is 20.0
the regulation term lambda/alpha is 75.05338954055709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2657271969553995
the lambda is 20.0
the regulation term lambda/alpha is 75.26516001806493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22436495809784374
the lambda is 20.0
the regulation term lambda/alpha is 89.14047973248195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2747344080285684
the lambda is 20.0
the regulation term lambda/alpha is 72.79757982815275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23582888895628462
the lambda is 20.0
the regulation term lambda/alpha is 84.80725193810916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21006302803428453
the lambda is 20.0
the regulation term lambda/alpha is 95.20951967204712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2386784564717992
the lambda is 20.0
the regulation term lambda/alpha is 83.79474333647319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25897206243561416
the lambda is 20.0
the regulation term lambda/alpha is 77.228407620117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25390923687927164
the lambda is 20.0
the regulation term lambda/alpha is 78.76830416181184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27245010825074417
the lambda is 20.0
the regulation term lambda/alpha is 73.4079355974907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3042224873270067
the lambda is 20.0
the regulation term lambda/alpha is 65.74135980455033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25114181049683876
the lambda is 20.0
the regulation term lambda/alpha is 79.63628182990959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2552691676365102
the lambda is 20.0
the regulation term lambda/alpha is 78.34867087622169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25573138963039277
the lambda is 20.0
the regulation term lambda/alpha is 78.2070594810668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23271444607814004
the lambda is 20.0
the regulation term lambda/alpha is 85.94223666408948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2184273418598968
the lambda is 20.0
the regulation term lambda/alpha is 91.56362857186788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21305928376184152
the lambda is 20.0
the regulation term lambda/alpha is 93.87058684734937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2308180011837342
the lambda is 20.0
the regulation term lambda/alpha is 86.64835453661058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2502453174470305
the lambda is 20.0
the regulation term lambda/alpha is 79.92157537266769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2804091510855737
the lambda is 20.0
the regulation term lambda/alpha is 71.32434844787399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.230929273684023
the lambda is 20.0
the regulation term lambda/alpha is 86.60660331598191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29549647197106216
the lambda is 20.0
the regulation term lambda/alpha is 67.68270316932444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24893539584653288
the lambda is 20.0
the regulation term lambda/alpha is 80.34213026230258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22695553863501722
the lambda is 20.0
the regulation term lambda/alpha is 88.12298708498749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2414873284279792
the lambda is 20.0
the regulation term lambda/alpha is 82.82008058226032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.254074710893461
the lambda is 20.0
the regulation term lambda/alpha is 78.71700386736416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2275387905391874
the lambda is 20.0
the regulation term lambda/alpha is 87.89710076513543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27574027896730147
the lambda is 20.0
the regulation term lambda/alpha is 72.5320220712901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2891294113555099
the lambda is 20.0
the regulation term lambda/alpha is 69.173177181232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2616092360803972
the lambda is 20.0
the regulation term lambda/alpha is 76.4499002392012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28327409266518905
the lambda is 20.0
the regulation term lambda/alpha is 70.60299730141102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21848937433112997
the lambda is 20.0
the regulation term lambda/alpha is 91.53763225889945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3025055291418547
the lambda is 20.0
the regulation term lambda/alpha is 66.11449402837641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23552964724830167
the lambda is 20.0
the regulation term lambda/alpha is 84.91500001660285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24695214658134623
the lambda is 20.0
the regulation term lambda/alpha is 80.98735028979384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21974510631003905
the lambda is 20.0
the regulation term lambda/alpha is 91.01454105549881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26766592784249815
the lambda is 20.0
the regulation term lambda/alpha is 74.72000699233016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2624625260790036
the lambda is 20.0
the regulation term lambda/alpha is 76.20135452776911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2561721583260915
the lambda is 20.0
the regulation term lambda/alpha is 78.07249675642433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2847095128599942
the lambda is 20.0
the regulation term lambda/alpha is 70.24703810945367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24423332425825428
the lambda is 20.0
the regulation term lambda/alpha is 81.88890709628076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2752334893938139
the lambda is 20.0
the regulation term lambda/alpha is 72.6655758499769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23464506319104345
the lambda is 20.0
the regulation term lambda/alpha is 85.23511949499823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23561447091595417
the lambda is 20.0
the regulation term lambda/alpha is 84.88442973069418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26661033008790674
the lambda is 20.0
the regulation term lambda/alpha is 75.0158480108614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22512631325289348
the lambda is 20.0
the regulation term lambda/alpha is 88.83901535549597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22262347202462485
the lambda is 20.0
the regulation term lambda/alpha is 89.83778672622516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27440595284180697
the lambda is 20.0
the regulation term lambda/alpha is 72.88471621287988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27208982204190274
the lambda is 20.0
the regulation term lambda/alpha is 73.50513830289445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.265172853370683
the lambda is 20.0
the regulation term lambda/alpha is 75.42250175979424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22202094329284427
the lambda is 20.0
the regulation term lambda/alpha is 90.08159186865593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22449083921559626
the lambda is 20.0
the regulation term lambda/alpha is 89.09049505041239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24954633010096508
the lambda is 20.0
the regulation term lambda/alpha is 80.14543829159142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29743968838741586
the lambda is 20.0
the regulation term lambda/alpha is 67.24052230027203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2841111772006373
the lambda is 20.0
the regulation term lambda/alpha is 70.39497775857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21295454090051247
the lambda is 20.0
the regulation term lambda/alpha is 93.91675761139814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24938714847331211
the lambda is 20.0
the regulation term lambda/alpha is 80.19659442130506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25901282447322393
the lambda is 20.0
the regulation term lambda/alpha is 77.21625383096638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28419353360102184
the lambda is 20.0
the regulation term lambda/alpha is 70.37457800879424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2691924417907232
the lambda is 20.0
the regulation term lambda/alpha is 74.29629103609264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2355807575425324
the lambda is 20.0
the regulation term lambda/alpha is 84.89657732928015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20158908908065107
the lambda is 20.0
the regulation term lambda/alpha is 99.21171870566104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23266751717335946
the lambda is 20.0
the regulation term lambda/alpha is 85.95957116393731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26495530037322507
the lambda is 20.0
the regulation term lambda/alpha is 75.48443066369052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24336620135947504
the lambda is 20.0
the regulation term lambda/alpha is 82.18068034212399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19611773579878616
the lambda is 20.0
the regulation term lambda/alpha is 101.97955793513596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2193958399362348
the lambda is 20.0
the regulation term lambda/alpha is 91.15943130832746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2227004638606049
the lambda is 20.0
the regulation term lambda/alpha is 89.80672807452532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2858805661102302
the lambda is 20.0
the regulation term lambda/alpha is 69.95928499836667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19420718283925023
the lambda is 20.0
the regulation term lambda/alpha is 102.98280273471894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26547754733472323
the lambda is 20.0
the regulation term lambda/alpha is 75.33593782521771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18588533684633307
the lambda is 20.0
the regulation term lambda/alpha is 107.59320955226026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28881011034831167
the lambda is 20.0
the regulation term lambda/alpha is 69.24965326137487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2797373257262331
the lambda is 20.0
the regulation term lambda/alpha is 71.49564309331083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3282320756999546
the lambda is 20.0
the regulation term lambda/alpha is 60.932497097823294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2529351073090689
the lambda is 20.0
the regulation term lambda/alpha is 79.07166471580953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.27124999612715633
the lambda is 20.0
the regulation term lambda/alpha is 73.73271994674764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.20499354175050188
the lambda is 20.0
the regulation term lambda/alpha is 97.56404923400976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23390932428842273
the lambda is 20.0
the regulation term lambda/alpha is 85.50321822715766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25959753745186914
the lambda is 20.0
the regulation term lambda/alpha is 77.04233328372044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23851245681498937
the lambda is 20.0
the regulation term lambda/alpha is 83.85306271660984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2532496552944033
the lambda is 20.0
the regulation term lambda/alpha is 78.97345398851562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24637258375795307
the lambda is 20.0
the regulation term lambda/alpha is 81.17786360372327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2232923228757613
the lambda is 20.0
the regulation term lambda/alpha is 89.5686862065916
550
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22141076425547326
the lambda is 20.0
the regulation term lambda/alpha is 90.32984492534943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2300798957515993
the lambda is 20.0
the regulation term lambda/alpha is 86.92632589503849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24728734539793404
the lambda is 20.0
the regulation term lambda/alpha is 80.877571667956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26287610652194676
the lambda is 20.0
the regulation term lambda/alpha is 76.08146767165489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25872089558003686
the lambda is 20.0
the regulation term lambda/alpha is 77.30338114036437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2567233419164813
the lambda is 20.0
the regulation term lambda/alpha is 77.9048755391573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23720413527076242
the lambda is 20.0
the regulation term lambda/alpha is 84.3155621092799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2340244123079143
the lambda is 20.0
the regulation term lambda/alpha is 85.46116963936772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23038998922248713
the lambda is 20.0
the regulation term lambda/alpha is 86.80932738221556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2804611607969936
the lambda is 20.0
the regulation term lambda/alpha is 71.31112180797331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23823958809164894
the lambda is 20.0
the regulation term lambda/alpha is 83.94910417787557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22650105884568386
the lambda is 20.0
the regulation term lambda/alpha is 88.29980796525143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24430445908583312
the lambda is 20.0
the regulation term lambda/alpha is 81.86506326916148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2701374093223938
the lambda is 20.0
the regulation term lambda/alpha is 74.03639521889072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23101163338332956
the lambda is 20.0
the regulation term lambda/alpha is 86.57572654279694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2233695849327741
the lambda is 20.0
the regulation term lambda/alpha is 89.53770499246464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2451883617541296
the lambda is 20.0
the regulation term lambda/alpha is 81.56994017544615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19851381333739604
the lambda is 20.0
the regulation term lambda/alpha is 100.7486565481859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28675530437581337
the lambda is 20.0
the regulation term lambda/alpha is 69.7458763440643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23963219156806106
the lambda is 20.0
the regulation term lambda/alpha is 83.46124061682897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2857093161463252
the lambda is 20.0
the regulation term lambda/alpha is 70.00121756532803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2806937567358014
the lambda is 20.0
the regulation term lambda/alpha is 71.25203008638589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21682052278946076
the lambda is 20.0
the regulation term lambda/alpha is 92.24219065010097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2730270666443543
the lambda is 20.0
the regulation term lambda/alpha is 73.25281059424064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3267175916329768
the lambda is 20.0
the regulation term lambda/alpha is 61.21494682927054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2445597219263597
the lambda is 20.0
the regulation term lambda/alpha is 81.77961539399475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26532178031867404
the lambda is 20.0
the regulation term lambda/alpha is 75.38016658857896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.238401498594499
the lambda is 20.0
the regulation term lambda/alpha is 83.89209009972848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2677053243154007
the lambda is 20.0
the regulation term lambda/alpha is 74.7090109288851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19380665777267028
the lambda is 20.0
the regulation term lambda/alpha is 103.19562924127939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25315075572188406
the lambda is 20.0
the regulation term lambda/alpha is 79.00430691177694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.211581850399423
the lambda is 20.0
the regulation term lambda/alpha is 94.52606621146433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2976559552767603
the lambda is 20.0
the regulation term lambda/alpha is 67.19166757945096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22444562651470662
the lambda is 20.0
the regulation term lambda/alpha is 89.10844158814346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2547138450041
the lambda is 20.0
the regulation term lambda/alpha is 78.51948526660603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2339308504136695
the lambda is 20.0
the regulation term lambda/alpha is 85.49535029105046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24430759787399298
the lambda is 20.0
the regulation term lambda/alpha is 81.86401149224774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21142578900370151
the lambda is 20.0
the regulation term lambda/alpha is 94.59583948696935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24045022748212955
the lambda is 20.0
the regulation term lambda/alpha is 83.17729706238858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26242956870967205
the lambda is 20.0
the regulation term lambda/alpha is 76.21092431899761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25942843037532026
the lambda is 20.0
the regulation term lambda/alpha is 77.09255292901246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.259973857571077
the lambda is 20.0
the regulation term lambda/alpha is 76.93081214726365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27999289681804335
the lambda is 20.0
the regulation term lambda/alpha is 71.43038351075468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25899261945309154
the lambda is 20.0
the regulation term lambda/alpha is 77.22227777082419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28841087569054236
the lambda is 20.0
the regulation term lambda/alpha is 69.3455125508495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3035150048994665
the lambda is 20.0
the regulation term lambda/alpha is 65.89460052106688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25072066489024697
the lambda is 20.0
the regulation term lambda/alpha is 79.77005010239186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29811569093860973
the lambda is 20.0
the regulation term lambda/alpha is 67.0880487270915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27727126958812215
the lambda is 20.0
the regulation term lambda/alpha is 72.13152675251705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2208583742296641
the lambda is 20.0
the regulation term lambda/alpha is 90.55576936920939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2872202848959426
the lambda is 20.0
the regulation term lambda/alpha is 69.63296484176188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24960020650924913
the lambda is 20.0
the regulation term lambda/alpha is 80.12813883332618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28948631248453915
the lambda is 20.0
the regulation term lambda/alpha is 69.08789513517382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2866185565145623
the lambda is 20.0
the regulation term lambda/alpha is 69.77915262434816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26852467934118796
the lambda is 20.0
the regulation term lambda/alpha is 74.48104974585209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23184060191180203
the lambda is 20.0
the regulation term lambda/alpha is 86.26616664672265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2507137899474505
the lambda is 20.0
the regulation term lambda/alpha is 79.77223751510434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2564683290099919
the lambda is 20.0
the regulation term lambda/alpha is 77.98233831523427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24712373046935518
the lambda is 20.0
the regulation term lambda/alpha is 80.93111884485783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3165399177589109
the lambda is 20.0
the regulation term lambda/alpha is 63.183184419832884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2404104618983232
the lambda is 20.0
the regulation term lambda/alpha is 83.19105517320872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24371928862781292
the lambda is 20.0
the regulation term lambda/alpha is 82.06162143589002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22414453749627664
the lambda is 20.0
the regulation term lambda/alpha is 89.2281392328476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20803285660249957
the lambda is 20.0
the regulation term lambda/alpha is 96.1386596647815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24520579532625061
the lambda is 20.0
the regulation term lambda/alpha is 81.56414073896438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24910741258779023
the lambda is 20.0
the regulation term lambda/alpha is 80.28665141769564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24720736611579044
the lambda is 20.0
the regulation term lambda/alpha is 80.90373808130022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20116644282155774
the lambda is 20.0
the regulation term lambda/alpha is 99.42016033827649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22728007379312382
the lambda is 20.0
the regulation term lambda/alpha is 87.99715551924942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2690026381753777
the lambda is 20.0
the regulation term lambda/alpha is 74.34871321581944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2656681380257622
the lambda is 20.0
the regulation term lambda/alpha is 75.28189171883521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24193530742804958
the lambda is 20.0
the regulation term lambda/alpha is 82.66672695529529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2846561309442444
the lambda is 20.0
the regulation term lambda/alpha is 70.26021162325641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2565744084365666
the lambda is 20.0
the regulation term lambda/alpha is 77.95009690120611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23175517040485774
the lambda is 20.0
the regulation term lambda/alpha is 86.29796679427518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2728679669287553
the lambda is 20.0
the regulation term lambda/alpha is 73.29552173202477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27941714373844806
the lambda is 20.0
the regulation term lambda/alpha is 71.57756940898821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24542397932009744
the lambda is 20.0
the regulation term lambda/alpha is 81.4916295278333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23563632082808358
the lambda is 20.0
the regulation term lambda/alpha is 84.87655862948087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2703964272713622
the lambda is 20.0
the regulation term lambda/alpha is 73.96547432902494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23739244944143703
the lambda is 20.0
the regulation term lambda/alpha is 84.24867786257816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21847274584192394
the lambda is 20.0
the regulation term lambda/alpha is 91.54459940953463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.258540885545675
the lambda is 20.0
the regulation term lambda/alpha is 77.35720390137949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29285414291973677
the lambda is 20.0
the regulation term lambda/alpha is 68.29338250298015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28681548054752476
the lambda is 20.0
the regulation term lambda/alpha is 69.73124310382556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21213824381349425
the lambda is 20.0
the regulation term lambda/alpha is 94.27814448008449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2786426571415435
the lambda is 20.0
the regulation term lambda/alpha is 71.77651909140566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2390747510397223
the lambda is 20.0
the regulation term lambda/alpha is 83.65584367659551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28091298533752534
the lambda is 20.0
the regulation term lambda/alpha is 71.19642396014339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2906358832355986
the lambda is 20.0
the regulation term lambda/alpha is 68.81462735207879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26723559323397966
the lambda is 20.0
the regulation term lambda/alpha is 74.84033005472024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22451805176068776
the lambda is 20.0
the regulation term lambda/alpha is 89.07969690258074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22634382420197466
the lambda is 20.0
the regulation term lambda/alpha is 88.36114734084057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.35803980656997936
the lambda is 20.0
the regulation term lambda/alpha is 55.859710660666366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3069762645636336
the lambda is 20.0
the regulation term lambda/alpha is 65.15161694481486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2248658144350595
the lambda is 20.0
the regulation term lambda/alpha is 88.9419321040279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2678004580977718
the lambda is 20.0
the regulation term lambda/alpha is 74.68247120286165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24638658074900777
the lambda is 20.0
the regulation term lambda/alpha is 81.17325196526777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2664120887421905
the lambda is 20.0
the regulation term lambda/alpha is 75.07166846078891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2244781715899993
the lambda is 20.0
the regulation term lambda/alpha is 89.09552255499135
560
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26888831568997573
the lambda is 20.0
the regulation term lambda/alpha is 74.38032384813516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2995675035067876
the lambda is 20.0
the regulation term lambda/alpha is 66.76291575647102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24941299963958866
the lambda is 20.0
the regulation term lambda/alpha is 80.18828220221387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2773925560018287
the lambda is 20.0
the regulation term lambda/alpha is 72.09998814772862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2542354603581836
the lambda is 20.0
the regulation term lambda/alpha is 78.66723222568042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2663424037340316
the lambda is 20.0
the regulation term lambda/alpha is 75.09130998146249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3351014610110307
the lambda is 20.0
the regulation term lambda/alpha is 59.683416299225414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2708037781157436
the lambda is 20.0
the regulation term lambda/alpha is 73.85421333173517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27066629177642476
the lambda is 20.0
the regulation term lambda/alpha is 73.8917279604228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26699711203186227
the lambda is 20.0
the regulation term lambda/alpha is 74.90717726419935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25230675915645717
the lambda is 20.0
the regulation term lambda/alpha is 79.26858585503791
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23630942961152554
the lambda is 20.0
the regulation term lambda/alpha is 84.6347944425174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27620655426254576
the lambda is 20.0
the regulation term lambda/alpha is 72.4095778733374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22073344715655074
the lambda is 20.0
the regulation term lambda/alpha is 90.60702062889185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27719534606757956
the lambda is 20.0
the regulation term lambda/alpha is 72.15128350359839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24823598308382344
the lambda is 20.0
the regulation term lambda/alpha is 80.5684967648162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.30188705366236773
the lambda is 20.0
the regulation term lambda/alpha is 66.2499426768003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2564236464149348
the lambda is 20.0
the regulation term lambda/alpha is 77.99592697327444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.22757680176397518
the lambda is 20.0
the regulation term lambda/alpha is 87.88241967097521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25022943340949333
the lambda is 20.0
the regulation term lambda/alpha is 79.92664862598546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2925405208059062
the lambda is 20.0
the regulation term lambda/alpha is 68.36659736881214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3039501526894637
the lambda is 20.0
the regulation term lambda/alpha is 65.80026304653109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.35834036822144005
the lambda is 20.0
the regulation term lambda/alpha is 55.81285775662539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2423411452486593
the lambda is 20.0
the regulation term lambda/alpha is 82.52828870425026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2518589340671409
the lambda is 20.0
the regulation term lambda/alpha is 79.40953166532648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2000328882899611
the lambda is 20.0
the regulation term lambda/alpha is 99.98355855867389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27341974712003625
the lambda is 20.0
the regulation term lambda/alpha is 73.14760623789047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23594962206385997
the lambda is 20.0
the regulation term lambda/alpha is 84.76385689902476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2223631430001329
the lambda is 20.0
the regulation term lambda/alpha is 89.94296325442767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.256105922178829
the lambda is 20.0
the regulation term lambda/alpha is 78.0926884854883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2628867449816884
the lambda is 20.0
the regulation term lambda/alpha is 76.07838881870258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19285469712300934
the lambda is 20.0
the regulation term lambda/alpha is 103.70501884765251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27720418320500156
the lambda is 20.0
the regulation term lambda/alpha is 72.14898335502154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3192206382564102
the lambda is 20.0
the regulation term lambda/alpha is 62.65259072608969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.270937891029622
the lambda is 20.0
the regulation term lambda/alpha is 73.81765586199744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2551433955252877
the lambda is 20.0
the regulation term lambda/alpha is 78.38729260000683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2703427369151621
the lambda is 20.0
the regulation term lambda/alpha is 73.98016395120067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27894143118226444
the lambda is 20.0
the regulation term lambda/alpha is 71.69963929428506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2563353484072741
the lambda is 20.0
the regulation term lambda/alpha is 78.0227936734786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29655745998935573
the lambda is 20.0
the regulation term lambda/alpha is 67.4405560417123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29723757802865064
the lambda is 20.0
the regulation term lambda/alpha is 67.28624332308415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21834048198487266
the lambda is 20.0
the regulation term lambda/alpha is 91.6000542738825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21381167271986715
the lambda is 20.0
the regulation term lambda/alpha is 93.54026253844289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2679978603883694
the lambda is 20.0
the regulation term lambda/alpha is 74.62746146934522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26640604197249024
the lambda is 20.0
the regulation term lambda/alpha is 75.07337240521463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1979194930917304
the lambda is 20.0
the regulation term lambda/alpha is 101.05118847859283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2641097957575392
the lambda is 20.0
the regulation term lambda/alpha is 75.72608180864525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2618593643311236
the lambda is 20.0
the regulation term lambda/alpha is 76.3768752402141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27005278426715035
the lambda is 20.0
the regulation term lambda/alpha is 74.0595956241464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28459285843868803
the lambda is 20.0
the regulation term lambda/alpha is 70.27583232313874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2313357376763531
the lambda is 20.0
the regulation term lambda/alpha is 86.45443285542292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24545672819962736
the lambda is 20.0
the regulation term lambda/alpha is 81.48075690039433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32937957047818167
the lambda is 20.0
the regulation term lambda/alpha is 60.72022005179223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2223863182403131
the lambda is 20.0
the regulation term lambda/alpha is 89.9335901518356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25395849034711965
the lambda is 20.0
the regulation term lambda/alpha is 78.75302760172845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2997315834082781
the lambda is 20.0
the regulation term lambda/alpha is 66.726368214447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2689924380737021
the lambda is 20.0
the regulation term lambda/alpha is 74.35153249371321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23262959032552077
the lambda is 20.0
the regulation term lambda/alpha is 85.97358561313636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24642427426762423
the lambda is 20.0
the regulation term lambda/alpha is 81.16083555258601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3183322750253304
the lambda is 20.0
the regulation term lambda/alpha is 62.82743400243835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23789955111123712
the lambda is 20.0
the regulation term lambda/alpha is 84.06909515625104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24044759620264278
the lambda is 20.0
the regulation term lambda/alpha is 83.17820729280461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21981377656510992
the lambda is 20.0
the regulation term lambda/alpha is 90.98610793430366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25159557489141154
the lambda is 20.0
the regulation term lambda/alpha is 79.49265406846676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19177756152419906
the lambda is 20.0
the regulation term lambda/alpha is 104.28748723805387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2463441728139496
the lambda is 20.0
the regulation term lambda/alpha is 81.18722586998197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.31766334260123147
the lambda is 20.0
the regulation term lambda/alpha is 62.95973541116565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22900664893413328
the lambda is 20.0
the regulation term lambda/alpha is 87.33370883808874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24949427677765026
the lambda is 20.0
the regulation term lambda/alpha is 80.1621594623753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24878084053619412
the lambda is 20.0
the regulation term lambda/alpha is 80.39204287956524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24555867581997848
the lambda is 20.0
the regulation term lambda/alpha is 81.44692885810396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22436205338691836
the lambda is 20.0
the regulation term lambda/alpha is 89.1416337927228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2760427259056723
the lambda is 20.0
the regulation term lambda/alpha is 72.45255217061681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23869995931568386
the lambda is 20.0
the regulation term lambda/alpha is 83.78719484216474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.247114690174201
the lambda is 20.0
the regulation term lambda/alpha is 80.93407958021922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22965015394632693
the lambda is 20.0
the regulation term lambda/alpha is 87.08899017186957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23067997061715986
the lambda is 20.0
the regulation term lambda/alpha is 86.70020178384848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25357330516184184
the lambda is 20.0
the regulation term lambda/alpha is 78.8726557286269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26495618444434477
the lambda is 20.0
the regulation term lambda/alpha is 75.48417879712142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2535634275196353
the lambda is 20.0
the regulation term lambda/alpha is 78.87572823746932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27134441438860707
the lambda is 20.0
the regulation term lambda/alpha is 73.70706356740004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3596551999053799
the lambda is 20.0
the regulation term lambda/alpha is 55.6088164588242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3401223422251124
the lambda is 20.0
the regulation term lambda/alpha is 58.8023705504264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3586125274427989
the lambda is 20.0
the regulation term lambda/alpha is 55.77050010666494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2591220050555446
the lambda is 20.0
the regulation term lambda/alpha is 77.18371890381468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.345354819613619
the lambda is 20.0
the regulation term lambda/alpha is 57.911454724668054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25758817156140096
the lambda is 20.0
the regulation term lambda/alpha is 77.64331676710017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2315572700723318
the lambda is 20.0
the regulation term lambda/alpha is 86.37172131867239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2172819956864174
the lambda is 20.0
the regulation term lambda/alpha is 92.04628269736675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29673030973068454
the lambda is 20.0
the regulation term lambda/alpha is 67.40127093235674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24308044430829578
the lambda is 20.0
the regulation term lambda/alpha is 82.2772891373946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24929450676667106
the lambda is 20.0
the regulation term lambda/alpha is 80.22639672008152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2507173160567385
the lambda is 20.0
the regulation term lambda/alpha is 79.77111559168854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20939093265686187
the lambda is 20.0
the regulation term lambda/alpha is 95.51511971521174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25552558865776975
the lambda is 20.0
the regulation term lambda/alpha is 78.27004764985153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2234677098200146
the lambda is 20.0
the regulation term lambda/alpha is 89.49838889971353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2552511783266818
the lambda is 20.0
the regulation term lambda/alpha is 78.35419264706826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2578817926371296
the lambda is 20.0
the regulation term lambda/alpha is 77.55491303002682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27004843880131746
the lambda is 20.0
the regulation term lambda/alpha is 74.06078734902292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.262402507540674
the lambda is 20.0
the regulation term lambda/alpha is 76.2187838349825
570
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24920511861381978
the lambda is 20.0
the regulation term lambda/alpha is 80.25517337383812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24348570433972447
the lambda is 20.0
the regulation term lambda/alpha is 82.14034599786982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2619574830146407
the lambda is 20.0
the regulation term lambda/alpha is 76.34826755028108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24148311174347645
the lambda is 20.0
the regulation term lambda/alpha is 82.82152675440787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2677169366713839
the lambda is 20.0
the regulation term lambda/alpha is 74.7057703881825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25087433666473924
the lambda is 20.0
the regulation term lambda/alpha is 79.72118737169751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23987678803868276
the lambda is 20.0
the regulation term lambda/alpha is 83.37613723915122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28038302483242117
the lambda is 20.0
the regulation term lambda/alpha is 71.33099449210081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24041451062732427
the lambda is 20.0
the regulation term lambda/alpha is 83.18965418440472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2508261805184089
the lambda is 20.0
the regulation term lambda/alpha is 79.73649305133895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2727852734178293
the lambda is 20.0
the regulation term lambda/alpha is 73.31774090812335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26977040490781246
the lambda is 20.0
the regulation term lambda/alpha is 74.13711673389273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2913276279630194
the lambda is 20.0
the regulation term lambda/alpha is 68.65123002525102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25706405499075197
the lambda is 20.0
the regulation term lambda/alpha is 77.80162030323342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25124412584576744
the lambda is 20.0
the regulation term lambda/alpha is 79.60385116537016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2669135067300646
the lambda is 20.0
the regulation term lambda/alpha is 74.93064043486729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22775653158078255
the lambda is 20.0
the regulation term lambda/alpha is 87.81306889943676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31246468436355457
the lambda is 20.0
the regulation term lambda/alpha is 64.00723345979758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23507584256655814
the lambda is 20.0
the regulation term lambda/alpha is 85.07892508919672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3117734179817129
the lambda is 20.0
the regulation term lambda/alpha is 64.14915078222963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2518055495933848
the lambda is 20.0
the regulation term lambda/alpha is 79.42636702128276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22783035497775136
the lambda is 20.0
the regulation term lambda/alpha is 87.78461501301302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2742282344678176
the lambda is 20.0
the regulation term lambda/alpha is 72.93195042010572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22331053102656362
the lambda is 20.0
the regulation term lambda/alpha is 89.56138301252315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24588765525017786
the lambda is 20.0
the regulation term lambda/alpha is 81.33795891319166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23679284325915864
the lambda is 20.0
the regulation term lambda/alpha is 84.4620121314686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2718289746855474
the lambda is 20.0
the regulation term lambda/alpha is 73.57567390722811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25565998083971186
the lambda is 20.0
the regulation term lambda/alpha is 78.22890361764975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25811487847557685
the lambda is 20.0
the regulation term lambda/alpha is 77.48487850882422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24181270675972286
the lambda is 20.0
the regulation term lambda/alpha is 82.70863954173011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2759465908282477
the lambda is 20.0
the regulation term lambda/alpha is 72.47779340186968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29725849177682023
the lambda is 20.0
the regulation term lambda/alpha is 67.28150937069233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2266786562469826
the lambda is 20.0
the regulation term lambda/alpha is 88.23062714033637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2543807088217197
the lambda is 20.0
the regulation term lambda/alpha is 78.62231413946098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24031654664884333
the lambda is 20.0
the regulation term lambda/alpha is 83.22356607938657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2844298618904021
the lambda is 20.0
the regulation term lambda/alpha is 70.3161048810919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27404829325241314
the lambda is 20.0
the regulation term lambda/alpha is 72.97983783310386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2739403341177204
the lambda is 20.0
the regulation term lambda/alpha is 73.00859898712615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23141547987009792
the lambda is 20.0
the regulation term lambda/alpha is 86.424641995543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2591747811625461
the lambda is 20.0
the regulation term lambda/alpha is 77.1680018800002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3047551827820036
the lambda is 20.0
the regulation term lambda/alpha is 65.62644748951269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3021868763515532
the lambda is 20.0
the regulation term lambda/alpha is 66.18421104671907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23156366623193922
the lambda is 20.0
the regulation term lambda/alpha is 86.36933559329452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25817101978102114
the lambda is 20.0
the regulation term lambda/alpha is 77.46802881657229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2764865491286942
the lambda is 20.0
the regulation term lambda/alpha is 72.33624949577835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2611773657514763
the lambda is 20.0
the regulation term lambda/alpha is 76.57631411686351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26351392269350843
the lambda is 20.0
the regulation term lambda/alpha is 75.89731804517172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2592327173911038
the lambda is 20.0
the regulation term lambda/alpha is 77.15075551141196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23154061296974598
the lambda is 20.0
the regulation term lambda/alpha is 86.37793492674773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27206027485380896
the lambda is 20.0
the regulation term lambda/alpha is 73.51312135057924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25465732779994105
the lambda is 20.0
the regulation term lambda/alpha is 78.53691143618695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.30380779546472764
the lambda is 20.0
the regulation term lambda/alpha is 65.83109551025993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2363029818326447
the lambda is 20.0
the regulation term lambda/alpha is 84.63710379314836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24341537352390805
the lambda is 20.0
the regulation term lambda/alpha is 82.16407908202896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23625054679337665
the lambda is 20.0
the regulation term lambda/alpha is 84.65588872262752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.24934803285185062
the lambda is 20.0
the regulation term lambda/alpha is 80.20917498829012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23358541782990014
the lambda is 20.0
the regulation term lambda/alpha is 85.62178318239135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25672916470804735
the lambda is 20.0
the regulation term lambda/alpha is 77.90310860374598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22197424974563557
the lambda is 20.0
the regulation term lambda/alpha is 90.10054104437057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2387087633410769
the lambda is 20.0
the regulation term lambda/alpha is 83.78410461380162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2432054581229077
the lambda is 20.0
the regulation term lambda/alpha is 82.2349965102045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22676347336726832
the lambda is 20.0
the regulation term lambda/alpha is 88.19762593602456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.33270554263028634
the lambda is 20.0
the regulation term lambda/alpha is 60.11321555356436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29191339469937827
the lambda is 20.0
the regulation term lambda/alpha is 68.51347133486847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2217311045793611
the lambda is 20.0
the regulation term lambda/alpha is 90.19934319968934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25698152698207505
the lambda is 20.0
the regulation term lambda/alpha is 77.82660580655293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2758454323526186
the lambda is 20.0
the regulation term lambda/alpha is 72.50437257352738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.290181417430962
the lambda is 20.0
the regulation term lambda/alpha is 68.92240094856614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2734438866594214
the lambda is 20.0
the regulation term lambda/alpha is 73.14114879046578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28837995445380027
the lambda is 20.0
the regulation term lambda/alpha is 69.3529480503614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.267520732055496
the lambda is 20.0
the regulation term lambda/alpha is 74.76056097159262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24551316518828278
the lambda is 20.0
the regulation term lambda/alpha is 81.46202662762342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24905352745214152
the lambda is 20.0
the regulation term lambda/alpha is 80.30402221001759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22994282483780384
the lambda is 20.0
the regulation term lambda/alpha is 86.97814343242726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24546613042471147
the lambda is 20.0
the regulation term lambda/alpha is 81.47763589785488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30069374646268693
the lambda is 20.0
the regulation term lambda/alpha is 66.51285647033501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18687545651508305
the lambda is 20.0
the regulation term lambda/alpha is 107.02314992544655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24172091052800648
the lambda is 20.0
the regulation term lambda/alpha is 82.74004907689913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2883464392571054
the lambda is 20.0
the regulation term lambda/alpha is 69.3610091094862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21671529137672615
the lambda is 20.0
the regulation term lambda/alpha is 92.28698110293048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2872359139573258
the lambda is 20.0
the regulation term lambda/alpha is 69.62917597752546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2205827970096754
the lambda is 20.0
the regulation term lambda/alpha is 90.66890197753156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.23883558721426895
the lambda is 20.0
the regulation term lambda/alpha is 83.73961449077184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25539030210066677
the lambda is 20.0
the regulation term lambda/alpha is 78.31150922918222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23183075109729276
the lambda is 20.0
the regulation term lambda/alpha is 86.26983221741179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2569831498612212
the lambda is 20.0
the regulation term lambda/alpha is 77.82611432228383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24224788880468756
the lambda is 20.0
the regulation term lambda/alpha is 82.56005903161866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24340789223410933
the lambda is 20.0
the regulation term lambda/alpha is 82.16660444503596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2395827472750061
the lambda is 20.0
the regulation term lambda/alpha is 83.47846507095484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26092155926528554
the lambda is 20.0
the regulation term lambda/alpha is 76.65138923865428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29617326663441984
the lambda is 20.0
the regulation term lambda/alpha is 67.5280393374832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2598091914083782
the lambda is 20.0
the regulation term lambda/alpha is 76.97957062867425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2683545001368886
the lambda is 20.0
the regulation term lambda/alpha is 74.52828251360766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23064700550127099
the lambda is 20.0
the regulation term lambda/alpha is 86.71259336982716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22214561563396265
the lambda is 20.0
the regulation term lambda/alpha is 90.03103636740111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20783579992635068
the lambda is 20.0
the regulation term lambda/alpha is 96.22981222237584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2538897335356989
the lambda is 20.0
the regulation term lambda/alpha is 78.77435499843811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2560675200371861
the lambda is 20.0
the regulation term lambda/alpha is 78.10439995316705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2654496523548671
the lambda is 20.0
the regulation term lambda/alpha is 75.34385455989576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29575290237030893
the lambda is 20.0
the regulation term lambda/alpha is 67.62401937465425
580
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2872363614808437
the lambda is 20.0
the regulation term lambda/alpha is 69.62906749302294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2506376531501957
the lambda is 20.0
the regulation term lambda/alpha is 79.7964701178195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29359837800450483
the lambda is 20.0
the regulation term lambda/alpha is 68.12026733912381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23013447477303547
the lambda is 20.0
the regulation term lambda/alpha is 86.90571032316872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22534179144712801
the lambda is 20.0
the regulation term lambda/alpha is 88.7540649764143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2647427276268545
the lambda is 20.0
the regulation term lambda/alpha is 75.54504019536012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24512342714424526
the lambda is 20.0
the regulation term lambda/alpha is 81.59154852314792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25544379277094037
the lambda is 20.0
the regulation term lambda/alpha is 78.29511057226686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2954874411744806
the lambda is 20.0
the regulation term lambda/alpha is 67.68477171315826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3041765434145889
the lambda is 20.0
the regulation term lambda/alpha is 65.75128961453233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25402666948428215
the lambda is 20.0
the regulation term lambda/alpha is 78.73189079163791
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26794436134171545
the lambda is 20.0
the regulation term lambda/alpha is 74.64236194354376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3467091441002684
the lambda is 20.0
the regulation term lambda/alpha is 57.68523945885891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25902866483289816
the lambda is 20.0
the regulation term lambda/alpha is 77.21153183143723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2477527840113212
the lambda is 20.0
the regulation term lambda/alpha is 80.72563172120032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3242461075947833
the lambda is 20.0
the regulation term lambda/alpha is 61.68154229624367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2426507219406618
the lambda is 20.0
the regulation term lambda/alpha is 82.42299812687486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2883694334222278
the lambda is 20.0
the regulation term lambda/alpha is 69.35547836207795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25284635016318735
the lambda is 20.0
the regulation term lambda/alpha is 79.09942139600581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.2495302070306223
the lambda is 20.0
the regulation term lambda/alpha is 80.15061678502758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29876818597946986
the lambda is 20.0
the regulation term lambda/alpha is 66.94153172444645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.304428942742436
the lambda is 20.0
the regulation term lambda/alpha is 65.69677580531864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29589941435544087
the lambda is 20.0
the regulation term lambda/alpha is 67.59053593791694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2870739532214483
the lambda is 20.0
the regulation term lambda/alpha is 69.66845920908763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21829404476084974
the lambda is 20.0
the regulation term lambda/alpha is 91.61954015699712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27050848527016896
the lambda is 20.0
the regulation term lambda/alpha is 73.93483416989712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24494781423830256
the lambda is 20.0
the regulation term lambda/alpha is 81.65004477460896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.296784680154143
the lambda is 20.0
the regulation term lambda/alpha is 67.38892313987525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2737634977939029
the lambda is 20.0
the regulation term lambda/alpha is 73.05575856959783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22284527557317368
the lambda is 20.0
the regulation term lambda/alpha is 89.74836890106194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24513528695367387
the lambda is 20.0
the regulation term lambda/alpha is 81.58760106936231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21678786343754705
the lambda is 20.0
the regulation term lambda/alpha is 92.25608704687319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2605714465413396
the lambda is 20.0
the regulation term lambda/alpha is 76.75438067166351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2364729138679319
the lambda is 20.0
the regulation term lambda/alpha is 84.57628264000599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23620750257180725
the lambda is 20.0
the regulation term lambda/alpha is 84.67131561123882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2811030903868043
the lambda is 20.0
the regulation term lambda/alpha is 71.14827507758645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2614177307630264
the lambda is 20.0
the regulation term lambda/alpha is 76.50590471282868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26511492784648244
the lambda is 20.0
the regulation term lambda/alpha is 75.4389809825466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 0.26495491859707454
the lambda is 20.0
the regulation term lambda/alpha is 75.48453942994975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22803992166295645
the lambda is 20.0
the regulation term lambda/alpha is 87.70394172280083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25112423338146667
the lambda is 20.0
the regulation term lambda/alpha is 79.64185586828367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2689323011645525
the lambda is 20.0
the regulation term lambda/alpha is 74.36815850455439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2305178927544136
the lambda is 20.0
the regulation term lambda/alpha is 86.76116097116748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.270490571643748
the lambda is 20.0
the regulation term lambda/alpha is 73.9397306104302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.19901916589537363
the lambda is 20.0
the regulation term lambda/alpha is 100.49283399426064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24054127718498056
the lambda is 20.0
the regulation term lambda/alpha is 83.145812785469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2368101346063281
the lambda is 20.0
the regulation term lambda/alpha is 84.45584490396871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22343301605201213
the lambda is 20.0
the regulation term lambda/alpha is 89.5122858447396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2790679697138438
the lambda is 20.0
the regulation term lambda/alpha is 71.66712833618274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.30189432973748187
the lambda is 20.0
the regulation term lambda/alpha is 66.248345960626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23156263267764265
the lambda is 20.0
the regulation term lambda/alpha is 86.36972109330746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28816202530937773
the lambda is 20.0
the regulation term lambda/alpha is 69.40539780884562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3516406337721191
the lambda is 20.0
the regulation term lambda/alpha is 56.87624830343415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.264621421391056
the lambda is 20.0
the regulation term lambda/alpha is 75.57967111983771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2757400026598274
the lambda is 20.0
the regulation term lambda/alpha is 72.53209475258268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20234616194432303
the lambda is 20.0
the regulation term lambda/alpha is 98.84052065935968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25458977158738805
the lambda is 20.0
the regulation term lambda/alpha is 78.55775145756392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23104001461007545
the lambda is 20.0
the regulation term lambda/alpha is 86.56509147886722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.34200779902200606
the lambda is 20.0
the regulation term lambda/alpha is 58.478198617666976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24546964173222957
the lambda is 20.0
the regulation term lambda/alpha is 81.47647040531794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2782554076526767
the lambda is 20.0
the regulation term lambda/alpha is 71.87641084396948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28416727105608225
the lambda is 20.0
the regulation term lambda/alpha is 70.38108197918707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28517744128729966
the lambda is 20.0
the regulation term lambda/alpha is 70.13177448300044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2291867956842755
the lambda is 20.0
the regulation term lambda/alpha is 87.26506228374394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26093081261555884
the lambda is 20.0
the regulation term lambda/alpha is 76.6486709619339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24015215905750384
the lambda is 20.0
the regulation term lambda/alpha is 83.28053380195117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22609005970407126
the lambda is 20.0
the regulation term lambda/alpha is 88.46032428925868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2788016123575908
the lambda is 20.0
the regulation term lambda/alpha is 71.73559661609133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.34792892002323556
the lambda is 20.0
the regulation term lambda/alpha is 57.48300543301876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.278530002003867
the lambda is 20.0
the regulation term lambda/alpha is 71.80555005245836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2839898123000856
the lambda is 20.0
the regulation term lambda/alpha is 70.42506151194767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24157704161645224
the lambda is 20.0
the regulation term lambda/alpha is 82.78932412689142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2912713684512991
the lambda is 20.0
the regulation term lambda/alpha is 68.66449011566347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24552782104366888
the lambda is 20.0
the regulation term lambda/alpha is 81.45716405980265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23429397980769975
the lambda is 20.0
the regulation term lambda/alpha is 85.36284208589267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23209948339038378
the lambda is 20.0
the regulation term lambda/alpha is 86.1699462137994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23587535780194988
the lambda is 20.0
the regulation term lambda/alpha is 84.79054440605354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3088174355045977
the lambda is 20.0
the regulation term lambda/alpha is 64.76318271123729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20890437704242593
the lambda is 20.0
the regulation term lambda/alpha is 95.73758234820635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26925624506404283
the lambda is 20.0
the regulation term lambda/alpha is 74.27868570046716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26122302965787797
the lambda is 20.0
the regulation term lambda/alpha is 76.56292795544813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25496314641231493
the lambda is 20.0
the regulation term lambda/alpha is 78.44270939321129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.20895379206617176
the lambda is 20.0
the regulation term lambda/alpha is 95.71494157744873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2216077845964153
the lambda is 20.0
the regulation term lambda/alpha is 90.24953720115623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22055183466297157
the lambda is 20.0
the regulation term lambda/alpha is 90.68163060426265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2029982866208939
the lambda is 20.0
the regulation term lambda/alpha is 98.52299905048298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2766935006417929
the lambda is 20.0
the regulation term lambda/alpha is 72.28214596154169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.284228596747124
the lambda is 20.0
the regulation term lambda/alpha is 70.36589642594565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21820226954957517
the lambda is 20.0
the regulation term lambda/alpha is 91.65807505707926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27133654738619417
the lambda is 20.0
the regulation term lambda/alpha is 73.70920059483892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25526263206896227
the lambda is 20.0
the regulation term lambda/alpha is 78.3506768612993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27356874486784777
the lambda is 20.0
the regulation term lambda/alpha is 73.10776678696008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2688773038103163
the lambda is 20.0
the regulation term lambda/alpha is 74.38337009697669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2574377354231847
the lambda is 20.0
the regulation term lambda/alpha is 77.68868836234647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25153326429964634
the lambda is 20.0
the regulation term lambda/alpha is 79.51234623256197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27061605402481304
the lambda is 20.0
the regulation term lambda/alpha is 73.90544538117528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2216065697054245
the lambda is 20.0
the regulation term lambda/alpha is 90.25003196694686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24307089036576032
the lambda is 20.0
the regulation term lambda/alpha is 82.28052306018647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28574837790207513
the lambda is 20.0
the regulation term lambda/alpha is 69.99164841052544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.328651634554265
the lambda is 20.0
the regulation term lambda/alpha is 60.854710268290845
590
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24895935737804648
the lambda is 20.0
the regulation term lambda/alpha is 80.33439759257517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2409056885891817
the lambda is 20.0
the regulation term lambda/alpha is 83.02004040305644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25090007226824956
the lambda is 20.0
the regulation term lambda/alpha is 79.71301012068669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24372858735907832
the lambda is 20.0
the regulation term lambda/alpha is 82.05849062151489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28550603461051893
the lambda is 20.0
the regulation term lambda/alpha is 70.05105873605635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24243318746717993
the lambda is 20.0
the regulation term lambda/alpha is 82.49695600239367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21948178875692204
the lambda is 20.0
the regulation term lambda/alpha is 91.12373337794405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3038220718559609
the lambda is 20.0
the regulation term lambda/alpha is 65.82800215213399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24899771377493435
the lambda is 20.0
the regulation term lambda/alpha is 80.3220226273954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24026868091677747
the lambda is 20.0
the regulation term lambda/alpha is 83.24014567228367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29736062115505346
the lambda is 20.0
the regulation term lambda/alpha is 67.25840133879514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2614507969028582
the lambda is 20.0
the regulation term lambda/alpha is 76.49622887717179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22545964199070417
the lambda is 20.0
the regulation term lambda/alpha is 88.70767212885316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.20667082450268998
the lambda is 20.0
the regulation term lambda/alpha is 96.77224663000115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24887658284905592
the lambda is 20.0
the regulation term lambda/alpha is 80.36111622494445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27933822071614406
the lambda is 20.0
the regulation term lambda/alpha is 71.59779262832586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.235740585334044
the lambda is 20.0
the regulation term lambda/alpha is 84.83901900752488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2564969803970848
the lambda is 20.0
the regulation term lambda/alpha is 77.97362748301309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25212789479397635
the lambda is 20.0
the regulation term lambda/alpha is 79.32482050961791
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23484093213941765
the lambda is 20.0
the regulation term lambda/alpha is 85.1640291911575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3147557453104454
the lambda is 20.0
the regulation term lambda/alpha is 63.541334186843464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22468451811484733
the lambda is 20.0
the regulation term lambda/alpha is 89.01369870876913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3010209164312799
the lambda is 20.0
the regulation term lambda/alpha is 66.44056578229774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2588901469243967
the lambda is 20.0
the regulation term lambda/alpha is 77.25284348438555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23632217853916296
the lambda is 20.0
the regulation term lambda/alpha is 84.63022862953859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2267628864077162
the lambda is 20.0
the regulation term lambda/alpha is 88.19785422928648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2714429081538549
the lambda is 20.0
the regulation term lambda/alpha is 73.6803187676722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26592883705464293
the lambda is 20.0
the regulation term lambda/alpha is 75.20809033542461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3131576757050991
the lambda is 20.0
the regulation term lambda/alpha is 63.865590887939845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29333113932640187
the lambda is 20.0
the regulation term lambda/alpha is 68.18232815625197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2292046925037978
the lambda is 20.0
the regulation term lambda/alpha is 87.25824843079342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2631107339884092
the lambda is 20.0
the regulation term lambda/alpha is 76.01362246544096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2662504162270556
the lambda is 20.0
the regulation term lambda/alpha is 75.11725346165922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3173511926521482
the lambda is 20.0
the regulation term lambda/alpha is 63.021663264779974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2656416650747708
the lambda is 20.0
the regulation term lambda/alpha is 75.28939405785816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2690189091765383
the lambda is 20.0
the regulation term lambda/alpha is 74.3442164018121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24575376732307416
the lambda is 20.0
the regulation term lambda/alpha is 81.38227225508813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2424993274705367
the lambda is 20.0
the regulation term lambda/alpha is 82.47445553196418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23630686758773653
the lambda is 20.0
the regulation term lambda/alpha is 84.63571204748993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2835725124254326
the lambda is 20.0
the regulation term lambda/alpha is 70.52869768278103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21681546251923645
the lambda is 20.0
the regulation term lambda/alpha is 92.24434349660623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3171448565238419
the lambda is 20.0
the regulation term lambda/alpha is 63.06266549366683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2936833355322063
the lambda is 20.0
the regulation term lambda/alpha is 68.10056131975092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27006929638392546
the lambda is 20.0
the regulation term lambda/alpha is 74.05506759853358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23077175430806376
the lambda is 20.0
the regulation term lambda/alpha is 86.6657189480019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2985945173966282
the lambda is 20.0
the regulation term lambda/alpha is 66.9804662670134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2976363969090769
the lambda is 20.0
the regulation term lambda/alpha is 67.19608289744778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21620864534740775
the lambda is 20.0
the regulation term lambda/alpha is 92.50323902572748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28411504941935534
the lambda is 20.0
the regulation term lambda/alpha is 70.39401834177356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20914653053288432
the lambda is 20.0
the regulation term lambda/alpha is 95.62673571032717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2804589343187385
the lambda is 20.0
the regulation term lambda/alpha is 71.31168792529968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2745654347946552
the lambda is 20.0
the regulation term lambda/alpha is 72.84238096087296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2884060417053166
the lambda is 20.0
the regulation term lambda/alpha is 69.34667485376508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24522650549627645
the lambda is 20.0
the regulation term lambda/alpha is 81.5572523839748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27169247848681105
the lambda is 20.0
the regulation term lambda/alpha is 73.61263775644372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.266725417419357
the lambda is 20.0
the regulation term lambda/alpha is 74.98347999041708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2559286777581042
the lambda is 20.0
the regulation term lambda/alpha is 78.14677188659326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22723861489782324
the lambda is 20.0
the regulation term lambda/alpha is 88.0132102943547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2508744394544812
the lambda is 20.0
the regulation term lambda/alpha is 79.72115470786657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25775770675937015
the lambda is 20.0
the regulation term lambda/alpha is 77.59224836164069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25220470747397067
the lambda is 20.0
the regulation term lambda/alpha is 79.30066096035952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26575067785795814
the lambda is 20.0
the regulation term lambda/alpha is 75.25850982284176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23877828811356694
the lambda is 20.0
the regulation term lambda/alpha is 83.75970930190967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2515880315568823
the lambda is 20.0
the regulation term lambda/alpha is 79.49503748741776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2916201701548143
the lambda is 20.0
the regulation term lambda/alpha is 68.58236173918446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2683016432608137
the lambda is 20.0
the regulation term lambda/alpha is 74.54296498869437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23747680728213913
the lambda is 20.0
the regulation term lambda/alpha is 84.21875057566609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25583825099269547
the lambda is 20.0
the regulation term lambda/alpha is 78.17439308780698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24159781615978285
the lambda is 20.0
the regulation term lambda/alpha is 82.78220522810034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24851779289357312
the lambda is 20.0
the regulation term lambda/alpha is 80.47713512635664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25563052236124056
the lambda is 20.0
the regulation term lambda/alpha is 78.23791859931848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28335784107922496
the lambda is 20.0
the regulation term lambda/alpha is 70.58213008620478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24748856641630163
the lambda is 20.0
the regulation term lambda/alpha is 80.81181401470447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28618972728237235
the lambda is 20.0
the regulation term lambda/alpha is 69.88371032712426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31013006490058986
the lambda is 20.0
the regulation term lambda/alpha is 64.48907172676363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23504372403709284
the lambda is 20.0
the regulation term lambda/alpha is 85.09055105357227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21738842726984822
the lambda is 20.0
the regulation term lambda/alpha is 92.00121759551458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2731076160967292
the lambda is 20.0
the regulation term lambda/alpha is 73.231205653805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.240835765243148
the lambda is 20.0
the regulation term lambda/alpha is 83.04414412787894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26373270134283355
the lambda is 20.0
the regulation term lambda/alpha is 75.83435765897471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20711120320944956
the lambda is 20.0
the regulation term lambda/alpha is 96.56648066388853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2084656654425097
the lambda is 20.0
the regulation term lambda/alpha is 95.93906007277523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2717493755466133
the lambda is 20.0
the regulation term lambda/alpha is 73.59722523656504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2537467185474096
the lambda is 20.0
the regulation term lambda/alpha is 78.81875326109187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3125802490116763
the lambda is 20.0
the regulation term lambda/alpha is 63.98356922178058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29285909145971256
the lambda is 20.0
the regulation term lambda/alpha is 68.29222852639806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32274338043710077
the lambda is 20.0
the regulation term lambda/alpha is 61.9687380509971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2787571875554932
the lambda is 20.0
the regulation term lambda/alpha is 71.747028930038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22671923409515984
the lambda is 20.0
the regulation term lambda/alpha is 88.21483576292204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23310605495417624
the lambda is 20.0
the regulation term lambda/alpha is 85.79785713387659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25452129381104444
the lambda is 20.0
the regulation term lambda/alpha is 78.57888705708025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.258975681351286
the lambda is 20.0
the regulation term lambda/alpha is 77.2273284334799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26705323228989436
the lambda is 20.0
the regulation term lambda/alpha is 74.89143579542747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27995463496285194
the lambda is 20.0
the regulation term lambda/alpha is 71.44014601742123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24443746142636336
the lambda is 20.0
the regulation term lambda/alpha is 81.82051917612877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23482006223970187
the lambda is 20.0
the regulation term lambda/alpha is 85.17159824097232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2425902292492261
the lambda is 20.0
the regulation term lambda/alpha is 82.44355125883044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21959499539501556
the lambda is 20.0
the regulation term lambda/alpha is 91.0767568451333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24367691887738438
the lambda is 20.0
the regulation term lambda/alpha is 82.07589004383212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29602722476010274
the lambda is 20.0
the regulation term lambda/alpha is 67.56135357552935
600
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23133960620735622
the lambda is 20.0
the regulation term lambda/alpha is 86.45298713819645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2609219421981296
the lambda is 20.0
the regulation term lambda/alpha is 76.6512767439586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24843503995485242
the lambda is 20.0
the regulation term lambda/alpha is 80.50394180963586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24598391716233123
the lambda is 20.0
the regulation term lambda/alpha is 81.3061285905187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2609305712370357
the lambda is 20.0
the regulation term lambda/alpha is 76.64874186716708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2422072336529397
the lambda is 20.0
the regulation term lambda/alpha is 82.57391696508176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3355127068874778
the lambda is 20.0
the regulation term lambda/alpha is 59.6102609213769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20905904568951178
the lambda is 20.0
the regulation term lambda/alpha is 95.6667525867472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2962602535450442
the lambda is 20.0
the regulation term lambda/alpha is 67.50821198821106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26864868898682254
the lambda is 20.0
the regulation term lambda/alpha is 74.44666890215503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2545163604026242
the lambda is 20.0
the regulation term lambda/alpha is 78.58041018801944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2691715925370214
the lambda is 20.0
the regulation term lambda/alpha is 74.30204581209377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2868934680516092
the lambda is 20.0
the regulation term lambda/alpha is 69.71228775554488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25543779691300655
the lambda is 20.0
the regulation term lambda/alpha is 78.29694838313736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27315189577950755
the lambda is 20.0
the regulation term lambda/alpha is 73.21933440339112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2632733293540454
the lambda is 20.0
the regulation term lambda/alpha is 75.9666770996934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24275979347682336
the lambda is 20.0
the regulation term lambda/alpha is 82.38596562288404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2654863616781927
the lambda is 20.0
the regulation term lambda/alpha is 75.33343661638955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2915489361160244
the lambda is 20.0
the regulation term lambda/alpha is 68.5991184411005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24775457041699922
the lambda is 20.0
the regulation term lambda/alpha is 80.72504965836843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3268864424154535
the lambda is 20.0
the regulation term lambda/alpha is 61.18332669967747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26419611108044105
the lambda is 20.0
the regulation term lambda/alpha is 75.70134139450109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3069723185722721
the lambda is 20.0
the regulation term lambda/alpha is 65.15245443960542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.247105267894158
the lambda is 20.0
the regulation term lambda/alpha is 80.93716564782646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2373123514840435
the lambda is 20.0
the regulation term lambda/alpha is 84.2771135801786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2290660925461575
the lambda is 20.0
the regulation term lambda/alpha is 87.31104537425128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24065619481155462
the lambda is 20.0
the regulation term lambda/alpha is 83.10610917645799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2708202127840566
the lambda is 20.0
the regulation term lambda/alpha is 73.8497315041524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23663582390051416
the lambda is 20.0
the regulation term lambda/alpha is 84.51805677744022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27125106638803986
the lambda is 20.0
the regulation term lambda/alpha is 73.73242902348217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2664912786051311
the lambda is 20.0
the regulation term lambda/alpha is 75.04936035687179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26768349857645163
the lambda is 20.0
the regulation term lambda/alpha is 74.71510237411182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26117305943818414
the lambda is 20.0
the regulation term lambda/alpha is 76.57757673407241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27090531289849573
the lambda is 20.0
the regulation term lambda/alpha is 73.82653291666416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.229831986838914
the lambda is 20.0
the regulation term lambda/alpha is 87.02008921855476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2739575638169718
the lambda is 20.0
the regulation term lambda/alpha is 73.0040073409391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25218989863005364
the lambda is 20.0
the regulation term lambda/alpha is 79.30531757474836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2681296988114979
the lambda is 20.0
the regulation term lambda/alpha is 74.5907674108884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27105747014631776
the lambda is 20.0
the regulation term lambda/alpha is 73.78509062747443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.32843931077932853
the lambda is 20.0
the regulation term lambda/alpha is 60.89405057069304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.308310698010859
the lambda is 20.0
the regulation term lambda/alpha is 64.8696270646294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2447431500224923
the lambda is 20.0
the regulation term lambda/alpha is 81.7183238761206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25383253311571946
the lambda is 20.0
the regulation term lambda/alpha is 78.79210656926399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3189241011057733
the lambda is 20.0
the regulation term lambda/alpha is 62.710845403831264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24398368538538598
the lambda is 20.0
the regulation term lambda/alpha is 81.97269406931399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28436283865173106
the lambda is 20.0
the regulation term lambda/alpha is 70.33267811936105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3173453626350273
the lambda is 20.0
the regulation term lambda/alpha is 63.022821048756306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2431172585412172
the lambda is 20.0
the regulation term lambda/alpha is 82.264830230509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1981161777855414
the lambda is 20.0
the regulation term lambda/alpha is 100.95086743319762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2917543335270511
the lambda is 20.0
the regulation term lambda/alpha is 68.5508241067673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2821387274007972
the lambda is 20.0
the regulation term lambda/alpha is 70.88711352833404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2753103570740282
the lambda is 20.0
the regulation term lambda/alpha is 72.64528734973165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3227811584255503
the lambda is 20.0
the regulation term lambda/alpha is 61.961485291010305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.288891231457422
the lambda is 20.0
the regulation term lambda/alpha is 69.23020785055459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25570041462128845
the lambda is 20.0
the regulation term lambda/alpha is 78.21653331935931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23627382442019884
the lambda is 20.0
the regulation term lambda/alpha is 84.64754844968014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2975862063895914
the lambda is 20.0
the regulation term lambda/alpha is 67.20741610522286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28260820290690974
the lambda is 20.0
the regulation term lambda/alpha is 70.76935415985763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21299068050656306
the lambda is 20.0
the regulation term lambda/alpha is 93.90082210373389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25171224300873507
the lambda is 20.0
the regulation term lambda/alpha is 79.45580938351874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25861298098617985
the lambda is 20.0
the regulation term lambda/alpha is 77.3356384653746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22990546861396985
the lambda is 20.0
the regulation term lambda/alpha is 86.99227608883737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22426372953609724
the lambda is 20.0
the regulation term lambda/alpha is 89.18071612102047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21958414124298656
the lambda is 20.0
the regulation term lambda/alpha is 91.08125881398911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28386676407869
the lambda is 20.0
the regulation term lambda/alpha is 70.45558878620905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24261807745013375
the lambda is 20.0
the regulation term lambda/alpha is 82.4340882188001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2439364633627629
the lambda is 20.0
the regulation term lambda/alpha is 81.98856261295218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25908521453024674
the lambda is 20.0
the regulation term lambda/alpha is 77.1946791184609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24023324291352458
the lambda is 20.0
the regulation term lambda/alpha is 83.25242484113362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3189890801400198
the lambda is 20.0
the regulation term lambda/alpha is 62.698071016164654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25142308842099736
the lambda is 20.0
the regulation term lambda/alpha is 79.54718926414125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2839905195906122
the lambda is 20.0
the regulation term lambda/alpha is 70.42488611532204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2777928374968733
the lambda is 20.0
the regulation term lambda/alpha is 71.99609673242605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2576284290842047
the lambda is 20.0
the regulation term lambda/alpha is 77.6311840703849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2749564475315781
the lambda is 20.0
the regulation term lambda/alpha is 72.7387925598764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2551595069451937
the lambda is 20.0
the regulation term lambda/alpha is 78.38234302708481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.33291566245784865
the lambda is 20.0
the regulation term lambda/alpha is 60.0752750782107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28728770741950627
the lambda is 20.0
the regulation term lambda/alpha is 69.61662293052933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26442895039567765
the lambda is 20.0
the regulation term lambda/alpha is 75.6346836081036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27504976319549895
the lambda is 20.0
the regulation term lambda/alpha is 72.71411459381794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2751220704321803
the lambda is 20.0
the regulation term lambda/alpha is 72.69500396163293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25141466413038177
the lambda is 20.0
the regulation term lambda/alpha is 79.5498546959383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2708078190123446
the lambda is 20.0
the regulation term lambda/alpha is 73.85311130580138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27144243907938337
the lambda is 20.0
the regulation term lambda/alpha is 73.68044609321757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2388563987817826
the lambda is 20.0
the regulation term lambda/alpha is 83.73231825483498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.20876947515024236
the lambda is 20.0
the regulation term lambda/alpha is 95.79944570731361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24955298210405072
the lambda is 20.0
the regulation term lambda/alpha is 80.1433019608679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30771262090365575
the lambda is 20.0
the regulation term lambda/alpha is 64.99570911737794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26587147627013136
the lambda is 20.0
the regulation term lambda/alpha is 75.22431620186121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21822195409368586
the lambda is 20.0
the regulation term lambda/alpha is 91.64980711067095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23788178233489096
the lambda is 20.0
the regulation term lambda/alpha is 84.07537476679873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24497754219513024
the lambda is 20.0
the regulation term lambda/alpha is 81.64013656431226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24885218474523385
the lambda is 20.0
the regulation term lambda/alpha is 80.36899503404119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2855272723890759
the lambda is 20.0
the regulation term lambda/alpha is 70.04584827451036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25463844207549213
the lambda is 20.0
the regulation term lambda/alpha is 78.54273626945393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24452277167805017
the lambda is 20.0
the regulation term lambda/alpha is 81.79197324956267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2553962781733183
the lambda is 20.0
the regulation term lambda/alpha is 78.30967680127077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2395093269608965
the lambda is 20.0
the regulation term lambda/alpha is 83.50405495175268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2914739445892559
the lambda is 20.0
the regulation term lambda/alpha is 68.61676788360597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2841658485688345
the lambda is 20.0
the regulation term lambda/alpha is 70.38143429524513
610
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22885628027780647
the lambda is 20.0
the regulation term lambda/alpha is 87.39109093148849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25395839219897004
the lambda is 20.0
the regulation term lambda/alpha is 78.75305803767453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2680946836471277
the lambda is 20.0
the regulation term lambda/alpha is 74.60050952119757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3050773906306477
the lambda is 20.0
the regulation term lambda/alpha is 65.55713603901143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2885178559983017
the lambda is 20.0
the regulation term lambda/alpha is 69.31979974271584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23666567125600485
the lambda is 20.0
the regulation term lambda/alpha is 84.50739768830138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25746782134033624
the lambda is 20.0
the regulation term lambda/alpha is 77.67961019704599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31491484520592034
the lambda is 20.0
the regulation term lambda/alpha is 63.50923211296107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24336600045001563
the lambda is 20.0
the regulation term lambda/alpha is 82.18074818593139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28571717384926365
the lambda is 20.0
the regulation term lambda/alpha is 69.99929241408302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2594788063806773
the lambda is 20.0
the regulation term lambda/alpha is 77.07758594610735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2972460340647569
the lambda is 20.0
the regulation term lambda/alpha is 67.28432916835108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2667085486738244
the lambda is 20.0
the regulation term lambda/alpha is 74.98822253522638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2737055112678808
the lambda is 20.0
the regulation term lambda/alpha is 73.07123596947092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28051137064784615
the lambda is 20.0
the regulation term lambda/alpha is 71.29835754539873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26370549531865956
the lambda is 20.0
the regulation term lambda/alpha is 75.84218135398416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2755614256982074
the lambda is 20.0
the regulation term lambda/alpha is 72.57909901331341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2708416914718516
the lambda is 20.0
the regulation term lambda/alpha is 73.84387496368367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3012050943471125
the lambda is 20.0
the regulation term lambda/alpha is 66.39993936142312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2755724049469426
the lambda is 20.0
the regulation term lambda/alpha is 72.57620734503772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2376574057610202
the lambda is 20.0
the regulation term lambda/alpha is 84.15475181998445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29571050159271084
the lambda is 20.0
the regulation term lambda/alpha is 67.63371571952652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2683880815467348
the lambda is 20.0
the regulation term lambda/alpha is 74.51895734243836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26583934856724273
the lambda is 20.0
the regulation term lambda/alpha is 75.23340734842758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2607186974356005
the lambda is 20.0
the regulation term lambda/alpha is 76.71103068831553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26506363094933016
the lambda is 20.0
the regulation term lambda/alpha is 75.45358044168353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3053292710332265
the lambda is 20.0
the regulation term lambda/alpha is 65.50305488995703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2628791693649205
the lambda is 20.0
the regulation term lambda/alpha is 76.08058123554338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22402684708933332
the lambda is 20.0
the regulation term lambda/alpha is 89.27501440050516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3003405818388872
the lambda is 20.0
the regulation term lambda/alpha is 66.59106763910005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21321419798084265
the lambda is 20.0
the regulation term lambda/alpha is 93.80238365644395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22280426986908394
the lambda is 20.0
the regulation term lambda/alpha is 89.7648865156474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26713828597125994
the lambda is 20.0
the regulation term lambda/alpha is 74.86759124505163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26998124161332643
the lambda is 20.0
the regulation term lambda/alpha is 74.07922076543554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2690385029064507
the lambda is 20.0
the regulation term lambda/alpha is 74.33880200766038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21468489882106698
the lambda is 20.0
the regulation term lambda/alpha is 93.15978957918863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27098931562285467
the lambda is 20.0
the regulation term lambda/alpha is 73.80364777124535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2455848289947456
the lambda is 20.0
the regulation term lambda/alpha is 81.43825529396976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26790587561433943
the lambda is 20.0
the regulation term lambda/alpha is 74.6530846109204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3248639207330975
the lambda is 20.0
the regulation term lambda/alpha is 61.56423881995702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2527942278109943
the lambda is 20.0
the regulation term lambda/alpha is 79.11573050217477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23104670047596718
the lambda is 20.0
the regulation term lambda/alpha is 86.5625865195177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25522474452755717
the lambda is 20.0
the regulation term lambda/alpha is 78.36230784370736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.1977593811571594
the lambda is 20.0
the regulation term lambda/alpha is 101.13300255579783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2760738680438655
the lambda is 20.0
the regulation term lambda/alpha is 72.44437925875037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21485699169379463
the lambda is 20.0
the regulation term lambda/alpha is 93.08517187331367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27597385864814966
the lambda is 20.0
the regulation term lambda/alpha is 72.47063217498008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26016615884243993
the lambda is 20.0
the regulation term lambda/alpha is 76.8739488986047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23565901458346927
the lambda is 20.0
the regulation term lambda/alpha is 84.86838509169823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.20126959248088427
the lambda is 20.0
the regulation term lambda/alpha is 99.36920800343705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3088896726193776
the lambda is 20.0
the regulation term lambda/alpha is 64.74803715643984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23978215549001314
the lambda is 20.0
the regulation term lambda/alpha is 83.40904250830707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2481452934226919
the lambda is 20.0
the regulation term lambda/alpha is 80.59794213357053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.272853599213287
the lambda is 20.0
the regulation term lambda/alpha is 73.29938127136889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2574294714242357
the lambda is 20.0
the regulation term lambda/alpha is 77.691182324034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3065330929581612
the lambda is 20.0
the regulation term lambda/alpha is 65.24581018966785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23833960491088646
the lambda is 20.0
the regulation term lambda/alpha is 83.91387578022487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.310152352856106
the lambda is 20.0
the regulation term lambda/alpha is 64.48443745735156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23230933266684425
the lambda is 20.0
the regulation term lambda/alpha is 86.09210732261919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2720977895603782
the lambda is 20.0
the regulation term lambda/alpha is 73.50298593867122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2560131229555795
the lambda is 20.0
the regulation term lambda/alpha is 78.12099539706085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2639198048722869
the lambda is 20.0
the regulation term lambda/alpha is 75.78059558538313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26027145842130156
the lambda is 20.0
the regulation term lambda/alpha is 76.8428475458342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21251350757281162
the lambda is 20.0
the regulation term lambda/alpha is 94.11166484628077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.268588878729205
the lambda is 20.0
the regulation term lambda/alpha is 74.46324693199333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2601566245642339
the lambda is 20.0
the regulation term lambda/alpha is 76.87676619229009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2802386940578317
the lambda is 20.0
the regulation term lambda/alpha is 71.36773195165077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2802125887537148
the lambda is 20.0
the regulation term lambda/alpha is 71.37438074767745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22852382488547218
the lambda is 20.0
the regulation term lambda/alpha is 87.51822708211397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26987405639691037
the lambda is 20.0
the regulation term lambda/alpha is 74.10864262767635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25712898545718615
the lambda is 20.0
the regulation term lambda/alpha is 77.78197376090898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29420104170490574
the lambda is 20.0
the regulation term lambda/alpha is 67.98072462320076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23426087894239647
the lambda is 20.0
the regulation term lambda/alpha is 85.37490378373376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2753987430716263
the lambda is 20.0
the regulation term lambda/alpha is 72.62197269650703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29672198266269045
the lambda is 20.0
the regulation term lambda/alpha is 67.40316245033901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23146687973945498
the lambda is 20.0
the regulation term lambda/alpha is 86.40545041481748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2648253715216287
the lambda is 20.0
the regulation term lambda/alpha is 75.52146489999946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2565089598114196
the lambda is 20.0
the regulation term lambda/alpha is 77.96998597906136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2910952736266393
the lambda is 20.0
the regulation term lambda/alpha is 68.70602792971532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2415734580593248
the lambda is 20.0
the regulation term lambda/alpha is 82.79055224307162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24188795181808592
the lambda is 20.0
the regulation term lambda/alpha is 82.68291103246509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2940541422250361
the lambda is 20.0
the regulation term lambda/alpha is 68.01468548840995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.255909305670742
the lambda is 20.0
the regulation term lambda/alpha is 78.15268752177538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2551534939433706
the lambda is 20.0
the regulation term lambda/alpha is 78.38419020214886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3193704370319702
the lambda is 20.0
the regulation term lambda/alpha is 62.62320390662184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23696873753063058
the lambda is 20.0
the regulation term lambda/alpha is 84.3993186966901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2533136584228629
the lambda is 20.0
the regulation term lambda/alpha is 78.95350027519437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2921569832688804
the lambda is 20.0
the regulation term lambda/alpha is 68.45634759855605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29243215220860874
the lambda is 20.0
the regulation term lambda/alpha is 68.39193244979727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24183148687537392
the lambda is 20.0
the regulation term lambda/alpha is 82.70221656581408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26969594014705894
the lambda is 20.0
the regulation term lambda/alpha is 74.1575864623489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.274697228692053
the lambda is 20.0
the regulation term lambda/alpha is 72.8074327332251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2748512695993691
the lambda is 20.0
the regulation term lambda/alpha is 72.76662767158601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3022476907601014
the lambda is 20.0
the regulation term lambda/alpha is 66.17089430759061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2554715458846719
the lambda is 20.0
the regulation term lambda/alpha is 78.28660499447028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26526070508407057
the lambda is 20.0
the regulation term lambda/alpha is 75.3975225756159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22798450563863856
the lambda is 20.0
the regulation term lambda/alpha is 87.72525985472244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.274556873749302
the lambda is 20.0
the regulation term lambda/alpha is 72.84465228236103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28517007599503
the lambda is 20.0
the regulation term lambda/alpha is 70.13358582668597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31393251369986785
the lambda is 20.0
the regulation term lambda/alpha is 63.70795991880219
620
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3141513577629515
the lambda is 20.0
the regulation term lambda/alpha is 63.663579691071575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27888206866454973
the lambda is 20.0
the regulation term lambda/alpha is 71.71490119738313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27288447772837143
the lambda is 20.0
the regulation term lambda/alpha is 73.29108700681742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22146601795512116
the lambda is 20.0
the regulation term lambda/alpha is 90.30730847408331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25914546295739294
the lambda is 20.0
the regulation term lambda/alpha is 77.17673221733492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2521880315990082
the lambda is 20.0
the regulation term lambda/alpha is 79.30590469813023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2703239321440835
the lambda is 20.0
the regulation term lambda/alpha is 73.98531029557508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29494663390570425
the lambda is 20.0
the regulation term lambda/alpha is 67.8088769319337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2372901141973624
the lambda is 20.0
the regulation term lambda/alpha is 84.28501148330734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23768960802271966
the lambda is 20.0
the regulation term lambda/alpha is 84.14335050814798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2399388962498219
the lambda is 20.0
the regulation term lambda/alpha is 83.35455531635107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24814033405275052
the lambda is 20.0
the regulation term lambda/alpha is 80.59955297613298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22373962692676796
the lambda is 20.0
the regulation term lambda/alpha is 89.38961897235211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2921507595607741
the lambda is 20.0
the regulation term lambda/alpha is 68.4578059289267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26876629944141867
the lambda is 20.0
the regulation term lambda/alpha is 74.4140915046504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2875337119657657
the lambda is 20.0
the regulation term lambda/alpha is 69.55706119907511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.20816365062339656
the lambda is 20.0
the regulation term lambda/alpha is 96.07825352843855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2510774970960873
the lambda is 20.0
the regulation term lambda/alpha is 79.65668063174138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24652899014848292
the lambda is 20.0
the regulation term lambda/alpha is 81.126361601344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2712461865809248
the lambda is 20.0
the regulation term lambda/alpha is 73.7337554938606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23949320915491173
the lambda is 20.0
the regulation term lambda/alpha is 83.50967474431967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27837241768523857
the lambda is 20.0
the regulation term lambda/alpha is 71.84619857925152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.247262892919824
the lambda is 20.0
the regulation term lambda/alpha is 80.88556986383347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31222549880514844
the lambda is 20.0
the regulation term lambda/alpha is 64.05626727009079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2560936738897669
the lambda is 20.0
the regulation term lambda/alpha is 78.09642345405537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26292306893329814
the lambda is 20.0
the regulation term lambda/alpha is 76.06787826242005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24923560024164235
the lambda is 20.0
the regulation term lambda/alpha is 80.2453581294539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30696283542472164
the lambda is 20.0
the regulation term lambda/alpha is 65.15446722508764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22670899232185507
the lambda is 20.0
the regulation term lambda/alpha is 88.21882094383943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21422542583224352
the lambda is 20.0
the regulation term lambda/alpha is 93.35959969411697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26675558155809226
the lambda is 20.0
the regulation term lambda/alpha is 74.97500102221679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26826486412963857
the lambda is 20.0
the regulation term lambda/alpha is 74.55318483428017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3154191828035507
the lambda is 20.0
the regulation term lambda/alpha is 63.40768440978555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2644715117820376
the lambda is 20.0
the regulation term lambda/alpha is 75.62251172248322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24729720600230687
the lambda is 20.0
the regulation term lambda/alpha is 80.87434679635416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27235508176513995
the lambda is 20.0
the regulation term lambda/alpha is 73.4335481107219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2580394479318684
the lambda is 20.0
the regulation term lambda/alpha is 77.50752902432465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2745897226003109
the lambda is 20.0
the regulation term lambda/alpha is 72.83593796083815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27301352391847206
the lambda is 20.0
the regulation term lambda/alpha is 73.25644427040342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3181027780476206
the lambda is 20.0
the regulation term lambda/alpha is 62.87276119608726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2459666915818376
the lambda is 20.0
the regulation term lambda/alpha is 81.31182263491817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2829361404737915
the lambda is 20.0
the regulation term lambda/alpha is 70.68732883154814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22012654496833162
the lambda is 20.0
the regulation term lambda/alpha is 90.85682966076304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24961862842881505
the lambda is 20.0
the regulation term lambda/alpha is 80.12222535588323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24370087559527776
the lambda is 20.0
the regulation term lambda/alpha is 82.06782167338075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32888150457469634
the lambda is 20.0
the regulation term lambda/alpha is 60.812176184439565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2560428534972394
the lambda is 20.0
the regulation term lambda/alpha is 78.11192433932017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2729114749360132
the lambda is 20.0
the regulation term lambda/alpha is 73.2838368364291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23619910167413616
the lambda is 20.0
the regulation term lambda/alpha is 84.6743271174346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2578337016558709
the lambda is 20.0
the regulation term lambda/alpha is 77.56937852404525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24258013378429
the lambda is 20.0
the regulation term lambda/alpha is 82.44698231465499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2345424141811498
the lambda is 20.0
the regulation term lambda/alpha is 85.27242319827457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23355075884492787
the lambda is 20.0
the regulation term lambda/alpha is 85.63448947421114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25142134974431796
the lambda is 20.0
the regulation term lambda/alpha is 79.54773936397577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25394535132834684
the lambda is 20.0
the regulation term lambda/alpha is 78.75710224811462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24767482427986534
the lambda is 20.0
the regulation term lambda/alpha is 80.7510414437625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26107777894565015
the lambda is 20.0
the regulation term lambda/alpha is 76.6055237667833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2978800136343847
the lambda is 20.0
the regulation term lambda/alpha is 67.14112758349684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24972647158773761
the lambda is 20.0
the regulation term lambda/alpha is 80.08762496359263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2977259069836674
the lambda is 20.0
the regulation term lambda/alpha is 67.17588067032794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24226809404487784
the lambda is 20.0
the regulation term lambda/alpha is 82.5531734950422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23886216325648574
the lambda is 20.0
the regulation term lambda/alpha is 83.73029753784978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25468117446862154
the lambda is 20.0
the regulation term lambda/alpha is 78.52955775678716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2948584950274353
the lambda is 20.0
the regulation term lambda/alpha is 67.82914631012781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29922976802150625
the lambda is 20.0
the regulation term lambda/alpha is 66.83826990957184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2532113493577392
the lambda is 20.0
the regulation term lambda/alpha is 78.98540113122586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.28449377644505913
the lambda is 20.0
the regulation term lambda/alpha is 70.30030761977797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2633857495780433
the lambda is 20.0
the regulation term lambda/alpha is 75.93425244927248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25567886394337946
the lambda is 20.0
the regulation term lambda/alpha is 78.22312603997268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21126233478828824
the lambda is 20.0
the regulation term lambda/alpha is 94.66902853290222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25354437016498316
the lambda is 20.0
the regulation term lambda/alpha is 78.88165683578718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2645548815044039
the lambda is 20.0
the regulation term lambda/alpha is 75.598680645275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2968025257949083
the lambda is 20.0
the regulation term lambda/alpha is 67.3848712925714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22875633534250667
the lambda is 20.0
the regulation term lambda/alpha is 87.42927259284379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26180615738343566
the lambda is 20.0
the regulation term lambda/alpha is 76.39239733658529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30423946698082444
the lambda is 20.0
the regulation term lambda/alpha is 65.73769076863574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2950496273263968
the lambda is 20.0
the regulation term lambda/alpha is 67.78520678446792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24558547782452866
the lambda is 20.0
the regulation term lambda/alpha is 81.4380401364369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2144951525416389
the lambda is 20.0
the regulation term lambda/alpha is 93.24220040878312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3153698084592471
the lambda is 20.0
the regulation term lambda/alpha is 63.41761152632482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31194210199378575
the lambda is 20.0
the regulation term lambda/alpha is 64.11446185740719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3074713541327308
the lambda is 20.0
the regulation term lambda/alpha is 65.04670998185509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27700697751621123
the lambda is 20.0
the regulation term lambda/alpha is 72.20034736789091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2822361058866408
the lambda is 20.0
the regulation term lambda/alpha is 70.86265570866732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26107395013500007
the lambda is 20.0
the regulation term lambda/alpha is 76.60664723408098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2731086427738521
the lambda is 20.0
the regulation term lambda/alpha is 73.23093036114943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2821081870407795
the lambda is 20.0
the regulation term lambda/alpha is 70.89478759830868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2233794559607708
the lambda is 20.0
the regulation term lambda/alpha is 89.53374836543759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2873973435733791
the lambda is 20.0
the regulation term lambda/alpha is 69.59006562596687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2374860309391169
the lambda is 20.0
the regulation term lambda/alpha is 84.21547962594607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3478354708791827
the lambda is 20.0
the regulation term lambda/alpha is 57.49844876213561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2989328022469067
the lambda is 20.0
the regulation term lambda/alpha is 66.90466837252872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2573716260726947
the lambda is 20.0
the regulation term lambda/alpha is 77.70864374284596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27302094650851544
the lambda is 20.0
the regulation term lambda/alpha is 73.25445265561778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24830600153731014
the lambda is 20.0
the regulation term lambda/alpha is 80.54577769436163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2516889813733332
the lambda is 20.0
the regulation term lambda/alpha is 79.46315285981379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.255685003431917
the lambda is 20.0
the regulation term lambda/alpha is 78.22124775231698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26206034068790895
the lambda is 20.0
the regulation term lambda/alpha is 76.31830114965109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28617239705479786
the lambda is 20.0
the regulation term lambda/alpha is 69.88794239358553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2617812112789538
the lambda is 20.0
the regulation term lambda/alpha is 76.39967705202501
630
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2954641581754712
the lambda is 20.0
the regulation term lambda/alpha is 67.69010537014894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26155279968747663
the lambda is 20.0
the regulation term lambda/alpha is 76.46639616894767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.236419597454072
the lambda is 20.0
the regulation term lambda/alpha is 84.59535594922623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2436208527231667
the lambda is 20.0
the regulation term lambda/alpha is 82.09477873688657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2365644628230452
the lambda is 20.0
the regulation term lambda/alpha is 84.54355215204232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2540073040770099
the lambda is 20.0
the regulation term lambda/alpha is 78.73789327702326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3571683437226952
the lambda is 20.0
the regulation term lambda/alpha is 55.99600398944639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2743060790192954
the lambda is 20.0
the regulation term lambda/alpha is 72.91125326680475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3200028836293199
the lambda is 20.0
the regulation term lambda/alpha is 62.499436796223684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3080912181891266
the lambda is 20.0
the regulation term lambda/alpha is 64.91583926849447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2552422673811099
the lambda is 20.0
the regulation term lambda/alpha is 78.35692812639608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25540075631708703
the lambda is 20.0
the regulation term lambda/alpha is 78.3083037356767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26439077302205966
the lambda is 20.0
the regulation term lambda/alpha is 75.64560506932398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3356634386316095
the lambda is 20.0
the regulation term lambda/alpha is 59.583492564854495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26614031779926467
the lambda is 20.0
the regulation term lambda/alpha is 75.1483283907586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27470279385053065
the lambda is 20.0
the regulation term lambda/alpha is 72.8059577394843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28373445451393065
the lambda is 20.0
the regulation term lambda/alpha is 70.48844326735811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25326950433168
the lambda is 20.0
the regulation term lambda/alpha is 78.96726474344159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29090476478264865
the lambda is 20.0
the regulation term lambda/alpha is 68.75102240055479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2635309616389652
the lambda is 20.0
the regulation term lambda/alpha is 75.89241080294694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2747546540491856
the lambda is 20.0
the regulation term lambda/alpha is 72.7922155466734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24968052301736982
the lambda is 20.0
the regulation term lambda/alpha is 80.10236344550046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29057463593354316
the lambda is 20.0
the regulation term lambda/alpha is 68.82913209456508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22539902088764108
the lambda is 20.0
the regulation term lambda/alpha is 88.73153007159591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25437907619542394
the lambda is 20.0
the regulation term lambda/alpha is 78.62281874408262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25084068701590034
the lambda is 20.0
the regulation term lambda/alpha is 79.73188176897409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27406086018435705
the lambda is 20.0
the regulation term lambda/alpha is 72.97649137693821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27357850940025197
the lambda is 20.0
the regulation term lambda/alpha is 73.1051574330333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30478287372977436
the lambda is 20.0
the regulation term lambda/alpha is 65.62048502020602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28342355690263327
the lambda is 20.0
the regulation term lambda/alpha is 70.5657646053421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.35073821833731844
the lambda is 20.0
the regulation term lambda/alpha is 57.022585376667536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23800004500648642
the lambda is 20.0
the regulation term lambda/alpha is 84.0335975543825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28563179015340057
the lambda is 20.0
the regulation term lambda/alpha is 70.02021724983364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27237090144362075
the lambda is 20.0
the regulation term lambda/alpha is 73.42928298873325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27633227693952134
the lambda is 20.0
the regulation term lambda/alpha is 72.37663374509538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2091886146776355
the lambda is 20.0
the regulation term lambda/alpha is 95.60749771597496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26717769840450606
the lambda is 20.0
the regulation term lambda/alpha is 74.85654723217232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2616063355173728
the lambda is 20.0
the regulation term lambda/alpha is 76.45074787828231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2852244305244868
the lambda is 20.0
the regulation term lambda/alpha is 70.12022063896444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29798240600018644
the lambda is 20.0
the regulation term lambda/alpha is 67.11805662777113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2432707414592323
the lambda is 20.0
the regulation term lambda/alpha is 82.21292819692265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24821137221044404
the lambda is 20.0
the regulation term lambda/alpha is 80.57648536362451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24950409221256356
the lambda is 20.0
the regulation term lambda/alpha is 80.15900590103796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.31124489539389893
the lambda is 20.0
the regulation term lambda/alpha is 64.2580819668988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24637691997234312
the lambda is 20.0
the regulation term lambda/alpha is 81.17643487971635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2401274574822441
the lambda is 20.0
the regulation term lambda/alpha is 83.28910075383142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22651025238943565
the lambda is 20.0
the regulation term lambda/alpha is 88.29622407384149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2988779503286167
the lambda is 20.0
the regulation term lambda/alpha is 66.91694712845151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2812456283837084
the lambda is 20.0
the regulation term lambda/alpha is 71.11221644559625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2629686533343194
the lambda is 20.0
the regulation term lambda/alpha is 76.05469224719131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.277581484633444
the lambda is 20.0
the regulation term lambda/alpha is 72.05091516248173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23736835054009459
the lambda is 20.0
the regulation term lambda/alpha is 84.25723123783405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31041359619486814
the lambda is 20.0
the regulation term lambda/alpha is 64.43016750930141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28848364916812047
the lambda is 20.0
the regulation term lambda/alpha is 69.32801930949141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.266555778193113
the lambda is 20.0
the regulation term lambda/alpha is 75.03120035728695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2502116986969227
the lambda is 20.0
the regulation term lambda/alpha is 79.93231373336252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3099344588948943
the lambda is 20.0
the regulation term lambda/alpha is 64.52977210508382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2188823033195214
the lambda is 20.0
the regulation term lambda/alpha is 91.37330746563039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26679332821535673
the lambda is 20.0
the regulation term lambda/alpha is 74.96439335190539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32283305917188304
the lambda is 20.0
the regulation term lambda/alpha is 61.951523958863156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2219697960258837
the lambda is 20.0
the regulation term lambda/alpha is 90.10234886942824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2828052148975281
the lambda is 20.0
the regulation term lambda/alpha is 70.72005375589279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24357467268068403
the lambda is 20.0
the regulation term lambda/alpha is 82.11034332875464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2356093917776059
the lambda is 20.0
the regulation term lambda/alpha is 84.88625962278364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28551559371762797
the lambda is 20.0
the regulation term lambda/alpha is 70.04871341556145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30443961498921374
the lambda is 20.0
the regulation term lambda/alpha is 65.69447277979444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25398639092122716
the lambda is 20.0
the regulation term lambda/alpha is 78.74437652922482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28453182095712803
the lambda is 20.0
the regulation term lambda/alpha is 70.29090782437831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2595139280965732
the lambda is 20.0
the regulation term lambda/alpha is 77.06715453267455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2594225403158278
the lambda is 20.0
the regulation term lambda/alpha is 77.09430327700699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25062790746730773
the lambda is 20.0
the regulation term lambda/alpha is 79.79957300887902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28458143853284873
the lambda is 20.0
the regulation term lambda/alpha is 70.27865240652874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24505971992033293
the lambda is 20.0
the regulation term lambda/alpha is 81.61275956122797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2602675215112053
the lambda is 20.0
the regulation term lambda/alpha is 76.84400990132355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28207819057464695
the lambda is 20.0
the regulation term lambda/alpha is 70.90232661821956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2542166059261986
the lambda is 20.0
the regulation term lambda/alpha is 78.67306672250271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2743212092951351
the lambda is 20.0
the regulation term lambda/alpha is 72.90723182283189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25991954845467063
the lambda is 20.0
the regulation term lambda/alpha is 76.94688652280401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26693623701457475
the lambda is 20.0
the regulation term lambda/alpha is 74.92425990446549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.18826388871655156
the lambda is 20.0
the regulation term lambda/alpha is 106.23386214077317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2688289400349453
the lambda is 20.0
the regulation term lambda/alpha is 74.39675206620308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21406762134064738
the lambda is 20.0
the regulation term lambda/alpha is 93.42842170499878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25717800279738445
the lambda is 20.0
the regulation term lambda/alpha is 77.76714875477447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22602476383771533
the lambda is 20.0
the regulation term lambda/alpha is 88.48587942496381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24042026161491023
the lambda is 20.0
the regulation term lambda/alpha is 83.18766424118911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28380935828880394
the lambda is 20.0
the regulation term lambda/alpha is 70.46983975647495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2585296509363517
the lambda is 20.0
the regulation term lambda/alpha is 77.36056551951894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2621837723058917
the lambda is 20.0
the regulation term lambda/alpha is 76.28237180394925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27042356958918073
the lambda is 20.0
the regulation term lambda/alpha is 73.95805044058619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2665941924376155
the lambda is 20.0
the regulation term lambda/alpha is 75.02038891818736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2789915902479171
the lambda is 20.0
the regulation term lambda/alpha is 71.68674863004878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2747657850439022
the lambda is 20.0
the regulation term lambda/alpha is 72.78926667235658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2434334231165384
the lambda is 20.0
the regulation term lambda/alpha is 82.15798695163335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23908950744193297
the lambda is 20.0
the regulation term lambda/alpha is 83.65068050866827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24433312706558763
the lambda is 20.0
the regulation term lambda/alpha is 81.85545791599228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26681265079462696
the lambda is 20.0
the regulation term lambda/alpha is 74.95896442854409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2622339360438751
the lambda is 20.0
the regulation term lambda/alpha is 76.26777945572132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23984104578090285
the lambda is 20.0
the regulation term lambda/alpha is 83.38856234920772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25013311638622865
the lambda is 20.0
the regulation term lambda/alpha is 79.95742542590062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24452763146721287
the lambda is 20.0
the regulation term lambda/alpha is 81.7903477001603
640
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2529072223757653
the lambda is 20.0
the regulation term lambda/alpha is 79.08038296464439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3105381720157942
the lambda is 20.0
the regulation term lambda/alpha is 64.4043206352834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3162159903636353
the lambda is 20.0
the regulation term lambda/alpha is 63.247908421711465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24535518037919882
the lambda is 20.0
the regulation term lambda/alpha is 81.51448022858048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27010247334841564
the lambda is 20.0
the regulation term lambda/alpha is 74.04597133844541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28386620431393983
the lambda is 20.0
the regulation term lambda/alpha is 70.45572771981388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25867123775286655
the lambda is 20.0
the regulation term lambda/alpha is 77.31822128252202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27365892585012835
the lambda is 20.0
the regulation term lambda/alpha is 73.08367500847815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27477522548369804
the lambda is 20.0
the regulation term lambda/alpha is 72.78676585486622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26218206050246134
the lambda is 20.0
the regulation term lambda/alpha is 76.28286985643032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2392816768171704
the lambda is 20.0
the regulation term lambda/alpha is 83.58349985687177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22334878824339477
the lambda is 20.0
the regulation term lambda/alpha is 89.54604212226556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23773021726458787
the lambda is 20.0
the regulation term lambda/alpha is 84.12897708220446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.3373741795967111
the lambda is 20.0
the regulation term lambda/alpha is 59.28135942088844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23938709762117114
the lambda is 20.0
the regulation term lambda/alpha is 83.54669152491208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.31617296804254474
the lambda is 20.0
the regulation term lambda/alpha is 63.256514697704226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2588684920327586
the lambda is 20.0
the regulation term lambda/alpha is 77.25930584657284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27674184966416454
the lambda is 20.0
the regulation term lambda/alpha is 72.26951769047821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24562815538364832
the lambda is 20.0
the regulation term lambda/alpha is 81.42389038732901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25736169691096467
the lambda is 20.0
the regulation term lambda/alpha is 77.7116417868471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2374272656932488
the lambda is 20.0
the regulation term lambda/alpha is 84.23632366570567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23796985468294574
the lambda is 20.0
the regulation term lambda/alpha is 84.04425857487954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2983544091180255
the lambda is 20.0
the regulation term lambda/alpha is 67.03437049622495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3012632896556596
the lambda is 20.0
the regulation term lambda/alpha is 66.38711282366917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31163127586815803
the lambda is 20.0
the regulation term lambda/alpha is 64.17841066909281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2988124671406553
the lambda is 20.0
the regulation term lambda/alpha is 66.93161162712035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27585430851088055
the lambda is 20.0
the regulation term lambda/alpha is 72.50203960186157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2851048311703212
the lambda is 20.0
the regulation term lambda/alpha is 70.14963554950084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29294292945874006
the lambda is 20.0
the regulation term lambda/alpha is 68.27268381917689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22868430933079348
the lambda is 20.0
the regulation term lambda/alpha is 87.45680916424335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2742886375501897
the lambda is 20.0
the regulation term lambda/alpha is 72.91588954843373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24110157571238158
the lambda is 20.0
the regulation term lambda/alpha is 82.95258934291948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2662429702646804
the lambda is 20.0
the regulation term lambda/alpha is 75.11935425043289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28707285050527315
the lambda is 20.0
the regulation term lambda/alpha is 69.66872682247124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26177298729888193
the lambda is 20.0
the regulation term lambda/alpha is 76.40207725927351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2840783562866256
the lambda is 20.0
the regulation term lambda/alpha is 70.4031108227783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31492299577074334
the lambda is 20.0
the regulation term lambda/alpha is 63.50758842189961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2629375587394235
the lambda is 20.0
the regulation term lambda/alpha is 76.06368635916488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2741847949275096
the lambda is 20.0
the regulation term lambda/alpha is 72.94350514691271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24250068955077636
the lambda is 20.0
the regulation term lambda/alpha is 82.47399228863748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2673916335178429
the lambda is 20.0
the regulation term lambda/alpha is 74.79665588962943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3050159254019754
the lambda is 20.0
the regulation term lambda/alpha is 65.57034677334416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22067009307325142
the lambda is 20.0
the regulation term lambda/alpha is 90.63303378116129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3652418043040197
the lambda is 20.0
the regulation term lambda/alpha is 54.758244440585486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24329078793542977
the lambda is 20.0
the regulation term lambda/alpha is 82.20615408302295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29112399130838645
the lambda is 20.0
the regulation term lambda/alpha is 68.69925048126343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28104738488675485
the lambda is 20.0
the regulation term lambda/alpha is 71.16237714881707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24834667811507696
the lambda is 20.0
the regulation term lambda/alpha is 80.53258514185785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2379487063956374
the lambda is 20.0
the regulation term lambda/alpha is 84.0517282188792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27374298338872377
the lambda is 20.0
the regulation term lambda/alpha is 73.06123339643509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24220916219192865
the lambda is 20.0
the regulation term lambda/alpha is 82.57325948781337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32846818888824253
the lambda is 20.0
the regulation term lambda/alpha is 60.88869691671959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2613926381242534
the lambda is 20.0
the regulation term lambda/alpha is 76.5132489710478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25275842568663776
the lambda is 20.0
the regulation term lambda/alpha is 79.12693689901121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24513116586377312
the lambda is 20.0
the regulation term lambda/alpha is 81.58897270171926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27434574439012793
the lambda is 20.0
the regulation term lambda/alpha is 72.90071163472977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2568010677029781
the lambda is 20.0
the regulation term lambda/alpha is 77.88129612892595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2445560153426565
the lambda is 20.0
the regulation term lambda/alpha is 81.78085487685615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24115450440882952
the lambda is 20.0
the regulation term lambda/alpha is 82.93438287221032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25573874297376215
the lambda is 20.0
the regulation term lambda/alpha is 78.20481076679073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32723404235655357
the lambda is 20.0
the regulation term lambda/alpha is 61.11833553737676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3291928659168885
the lambda is 20.0
the regulation term lambda/alpha is 60.754658046111516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2366773982430958
the lambda is 20.0
the regulation term lambda/alpha is 84.50321048171074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23311888892031246
the lambda is 20.0
the regulation term lambda/alpha is 85.79313367796911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31417014749994815
the lambda is 20.0
the regulation term lambda/alpha is 63.659772130333614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23175915243069978
the lambda is 20.0
the regulation term lambda/alpha is 86.29648404491972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2992476202355056
the lambda is 20.0
the regulation term lambda/alpha is 66.83428253918996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23015141415267454
the lambda is 20.0
the regulation term lambda/alpha is 86.8993139739419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27975007984377714
the lambda is 20.0
the regulation term lambda/alpha is 71.4923835273568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2662801997538612
the lambda is 20.0
the regulation term lambda/alpha is 75.10885157246841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2893479422331506
the lambda is 20.0
the regulation term lambda/alpha is 69.12093393733008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23242738425762038
the lambda is 20.0
the regulation term lambda/alpha is 86.04838050335835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31516395032148975
the lambda is 20.0
the regulation term lambda/alpha is 63.459034510763594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.265775048316394
the lambda is 20.0
the regulation term lambda/alpha is 75.2516089327951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2881806827698518
the lambda is 20.0
the regulation term lambda/alpha is 69.4009043485142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2733740448480767
the lambda is 20.0
the regulation term lambda/alpha is 73.15983494744238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2833940045327975
the lambda is 20.0
the regulation term lambda/alpha is 70.57312321399297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27741148218221284
the lambda is 20.0
the regulation term lambda/alpha is 72.09506918269285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2965806929740513
the lambda is 20.0
the regulation term lambda/alpha is 67.43527300932517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2566276402285752
the lambda is 20.0
the regulation term lambda/alpha is 77.93392785822383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2563860896072403
the lambda is 20.0
the regulation term lambda/alpha is 78.0073522344295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2622046345127274
the lambda is 20.0
the regulation term lambda/alpha is 76.2763024275576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22705966134111097
the lambda is 20.0
the regulation term lambda/alpha is 88.08257654341371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2267063387433614
the lambda is 20.0
the regulation term lambda/alpha is 88.21985353766671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24080865015725944
the lambda is 20.0
the regulation term lambda/alpha is 83.05349490950202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32937378977111176
the lambda is 20.0
the regulation term lambda/alpha is 60.72128572798214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2774826914595733
the lambda is 20.0
the regulation term lambda/alpha is 72.07656771238221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2633719043150682
the lambda is 20.0
the regulation term lambda/alpha is 75.93824425582721
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24851937567524574
the lambda is 20.0
the regulation term lambda/alpha is 80.47662257986326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24558445957546657
the lambda is 20.0
the regulation term lambda/alpha is 81.43837779708583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2109309991919971
the lambda is 20.0
the regulation term lambda/alpha is 94.81773696902307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23709525427898556
the lambda is 20.0
the regulation term lambda/alpha is 84.35428225175006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27194699273196304
the lambda is 20.0
the regulation term lambda/alpha is 73.54374394466072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2825328624624854
the lambda is 20.0
the regulation term lambda/alpha is 70.78822557377939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2767668462096412
the lambda is 20.0
the regulation term lambda/alpha is 72.26299057818038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2885974854003018
the lambda is 20.0
the regulation term lambda/alpha is 69.30067312353334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28840145583396304
the lambda is 20.0
the regulation term lambda/alpha is 69.34777753519488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.274924824168445
the lambda is 20.0
the regulation term lambda/alpha is 72.74715937527019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23598359555162618
the lambda is 20.0
the regulation term lambda/alpha is 84.75165383105876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26632802906704756
the lambda is 20.0
the regulation term lambda/alpha is 75.09536292541345
650
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2658914918225764
the lambda is 20.0
the regulation term lambda/alpha is 75.21865353008575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3184351432350698
the lambda is 20.0
the regulation term lambda/alpha is 62.80713804643082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26415991289785773
the lambda is 20.0
the regulation term lambda/alpha is 75.7117148495327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22481355792542104
the lambda is 20.0
the regulation term lambda/alpha is 88.96260610151785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2725116804890204
the lambda is 20.0
the regulation term lambda/alpha is 73.39134955283433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27519596295665105
the lambda is 20.0
the regulation term lambda/alpha is 72.67548471686848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.233843619437372
the lambda is 20.0
the regulation term lambda/alpha is 85.52724272793938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2606874290321551
the lambda is 20.0
the regulation term lambda/alpha is 76.7202318663899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22811256299204452
the lambda is 20.0
the regulation term lambda/alpha is 87.67601283186453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25494444564130947
the lambda is 20.0
the regulation term lambda/alpha is 78.4484633493005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27819266974415935
the lambda is 20.0
the regulation term lambda/alpha is 71.89262038569548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2556235080771216
the lambda is 20.0
the regulation term lambda/alpha is 78.24006544017071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24880643273041866
the lambda is 20.0
the regulation term lambda/alpha is 80.38377376548767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2167578515244653
the lambda is 20.0
the regulation term lambda/alpha is 92.26886066335925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22649202291864487
the lambda is 20.0
the regulation term lambda/alpha is 88.30333069692229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27132916374043653
the lambda is 20.0
the regulation term lambda/alpha is 73.71120643386767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2413687302131272
the lambda is 20.0
the regulation term lambda/alpha is 82.8607748084854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3009715172355654
the lambda is 20.0
the regulation term lambda/alpha is 66.45147083584767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24601629143144318
the lambda is 20.0
the regulation term lambda/alpha is 81.29542919141741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24947846858478961
the lambda is 20.0
the regulation term lambda/alpha is 80.16723893429966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.227900995440341
the lambda is 20.0
the regulation term lambda/alpha is 87.75740518972643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26278238769176765
the lambda is 20.0
the regulation term lambda/alpha is 76.10860140086379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3031691873905781
the lambda is 20.0
the regulation term lambda/alpha is 65.96976484366024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30184648209648
the lambda is 20.0
the regulation term lambda/alpha is 66.25884741504903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3377744374521561
the lambda is 20.0
the regulation term lambda/alpha is 59.211111861692885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27132565216404386
the lambda is 20.0
the regulation term lambda/alpha is 73.7121604259813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.301973548813438
the lambda is 20.0
the regulation term lambda/alpha is 66.23096651540224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2738767987549886
the lambda is 20.0
the regulation term lambda/alpha is 73.02553590124327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26726450111980254
the lambda is 20.0
the regulation term lambda/alpha is 74.83223516854154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29084360995456104
the lambda is 20.0
the regulation term lambda/alpha is 68.76547847526935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2683094392493911
the lambda is 20.0
the regulation term lambda/alpha is 74.54079907121788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21878272106381516
the lambda is 20.0
the regulation term lambda/alpha is 91.41489740483821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2180690289493181
the lambda is 20.0
the regulation term lambda/alpha is 91.71407831897231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26207965924659865
the lambda is 20.0
the regulation term lambda/alpha is 76.31267553343923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2592791443189184
the lambda is 20.0
the regulation term lambda/alpha is 77.1369407768471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24398524204007352
the lambda is 20.0
the regulation term lambda/alpha is 81.97217107383523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3145007182187081
the lambda is 20.0
the regulation term lambda/alpha is 63.59285954346128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2277557492881701
the lambda is 20.0
the regulation term lambda/alpha is 87.81337051867267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30655633293429996
the lambda is 20.0
the regulation term lambda/alpha is 65.24086391745274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26033796540089793
the lambda is 20.0
the regulation term lambda/alpha is 76.82321696415553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3052844514019616
the lambda is 20.0
the regulation term lambda/alpha is 65.51267156959273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2952246727363071
the lambda is 20.0
the regulation term lambda/alpha is 67.74501539667682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28770819914387424
the lambda is 20.0
the regulation term lambda/alpha is 69.51487673800565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2308035611265971
the lambda is 20.0
the regulation term lambda/alpha is 86.65377562796738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2709294894462457
the lambda is 20.0
the regulation term lambda/alpha is 73.81994496382846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2477587697261935
the lambda is 20.0
the regulation term lambda/alpha is 80.72368143457714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2889382311464523
the lambda is 20.0
the regulation term lambda/alpha is 69.21894662621759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2389078228557714
the lambda is 20.0
the regulation term lambda/alpha is 83.71429516593936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.272179994383763
the lambda is 20.0
the regulation term lambda/alpha is 73.48078629100415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.302581092922663
the lambda is 20.0
the regulation term lambda/alpha is 66.09798321110506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23909791021009472
the lambda is 20.0
the regulation term lambda/alpha is 83.64774072021814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30395902027101096
the lambda is 20.0
the regulation term lambda/alpha is 65.79834341539832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22957973696309875
the lambda is 20.0
the regulation term lambda/alpha is 87.115702215543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2645956711398143
the lambda is 20.0
the regulation term lambda/alpha is 75.58702647645302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2997333328363807
the lambda is 20.0
the regulation term lambda/alpha is 66.72597875831734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23377698071298283
the lambda is 20.0
the regulation term lambda/alpha is 85.55162248653893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2437407453527779
the lambda is 20.0
the regulation term lambda/alpha is 82.05439747487857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25687573526103896
the lambda is 20.0
the regulation term lambda/alpha is 77.85865792141036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29604160982896355
the lambda is 20.0
the regulation term lambda/alpha is 67.55807067646637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30832115465522536
the lambda is 20.0
the regulation term lambda/alpha is 64.86742702544898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2970714717835223
the lambda is 20.0
the regulation term lambda/alpha is 67.32386613876582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2495918192336583
the lambda is 20.0
the regulation term lambda/alpha is 80.13083145676649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2634165243069118
the lambda is 20.0
the regulation term lambda/alpha is 75.9253811150344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29383298456416523
the lambda is 20.0
the regulation term lambda/alpha is 68.0658777286882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2373594273929769
the lambda is 20.0
the regulation term lambda/alpha is 84.26039875335395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2648333905656496
the lambda is 20.0
the regulation term lambda/alpha is 75.51917814170868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2345540999029495
the lambda is 20.0
the regulation term lambda/alpha is 85.26817484015551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2314261170268013
the lambda is 20.0
the regulation term lambda/alpha is 86.42066961562429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27174164307986454
the lambda is 20.0
the regulation term lambda/alpha is 73.59931946139747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2536679149519446
the lambda is 20.0
the regulation term lambda/alpha is 78.84323882186222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.33598353079524634
the lambda is 20.0
the regulation term lambda/alpha is 59.52672725553418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30101184959253585
the lambda is 20.0
the regulation term lambda/alpha is 66.44256705200465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2871411061990984
the lambda is 20.0
the regulation term lambda/alpha is 69.65216601949136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2869090731801
the lambda is 20.0
the regulation term lambda/alpha is 69.70849606922503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2866463182130108
the lambda is 20.0
the regulation term lambda/alpha is 69.77239451280072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2547801637471066
the lambda is 20.0
the regulation term lambda/alpha is 78.49904680904393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25560982524627135
the lambda is 20.0
the regulation term lambda/alpha is 78.24425364216998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29859534666481186
the lambda is 20.0
the regulation term lambda/alpha is 66.98028024680168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2751369446299199
the lambda is 20.0
the regulation term lambda/alpha is 72.69107399190436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24323568654083508
the lambda is 20.0
the regulation term lambda/alpha is 82.22477665357853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22766506415971016
the lambda is 20.0
the regulation term lambda/alpha is 87.84834894988423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22943325629421538
the lambda is 20.0
the regulation term lambda/alpha is 87.17132085835394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25175588047200126
the lambda is 20.0
the regulation term lambda/alpha is 79.44203711350559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30944399129985467
the lambda is 20.0
the regulation term lambda/alpha is 64.6320515579822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.307618928708144
the lambda is 20.0
the regulation term lambda/alpha is 65.01550500806523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24128124695109415
the lambda is 20.0
the regulation term lambda/alpha is 82.89081829908582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2474431575044601
the lambda is 20.0
the regulation term lambda/alpha is 80.82664399252788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.34548202586009646
the lambda is 20.0
the regulation term lambda/alpha is 57.890131766504794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27854015268935123
the lambda is 20.0
the regulation term lambda/alpha is 71.80293328231744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2903854017331991
the lambda is 20.0
the regulation term lambda/alpha is 68.87398567774989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3022578213574033
the lambda is 20.0
the regulation term lambda/alpha is 66.16867649671535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2626667458905442
the lambda is 20.0
the regulation term lambda/alpha is 76.14210901418863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25019637509122283
the lambda is 20.0
the regulation term lambda/alpha is 79.93720929293201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25889678130000204
the lambda is 20.0
the regulation term lambda/alpha is 77.25086383682995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.221252629563558
the lambda is 20.0
the regulation term lambda/alpha is 90.39440588548898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2848207496835723
the lambda is 20.0
the regulation term lambda/alpha is 70.21960310904113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2820897818031763
the lambda is 20.0
the regulation term lambda/alpha is 70.8994132015554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27488532979881675
the lambda is 20.0
the regulation term lambda/alpha is 72.75761138158087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24322370932903561
the lambda is 20.0
the regulation term lambda/alpha is 82.2288256978426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.29209015811606703
the lambda is 20.0
the regulation term lambda/alpha is 68.47200922138794
660
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2963730804237981
the lambda is 20.0
the regulation term lambda/alpha is 67.48251214786795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.341563970481127
the lambda is 20.0
the regulation term lambda/alpha is 58.554185243332306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28667503015986384
the lambda is 20.0
the regulation term lambda/alpha is 69.76540645638734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22644545340263697
the lambda is 20.0
the regulation term lambda/alpha is 88.32149067015492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30413357351263903
the lambda is 20.0
the regulation term lambda/alpha is 65.76057936980393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22076314751884357
the lambda is 20.0
the regulation term lambda/alpha is 90.59483081655587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27390528008142656
the lambda is 20.0
the regulation term lambda/alpha is 73.01794253128088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3098408305263161
the lambda is 20.0
the regulation term lambda/alpha is 64.54927185041002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32654403832922924
the lambda is 20.0
the regulation term lambda/alpha is 61.24748166382244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3151965826799044
the lambda is 20.0
the regulation term lambda/alpha is 63.45246458560388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26283177270675
the lambda is 20.0
the regulation term lambda/alpha is 76.09430090598161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2653332472047278
the lambda is 20.0
the regulation term lambda/alpha is 75.37690888985448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2569020396069891
the lambda is 20.0
the regulation term lambda/alpha is 77.85068592914314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28403704245399974
the lambda is 20.0
the regulation term lambda/alpha is 70.41335111507166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25177756857757505
the lambda is 20.0
the regulation term lambda/alpha is 79.43519398090386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23458678795099233
the lambda is 20.0
the regulation term lambda/alpha is 85.25629330914498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.331060789946509
the lambda is 20.0
the regulation term lambda/alpha is 60.411865758042474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22580800642462534
the lambda is 20.0
the regulation term lambda/alpha is 88.57081870866256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.35838897591002566
the lambda is 20.0
the regulation term lambda/alpha is 55.805287953447106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29705815083541537
the lambda is 20.0
the regulation term lambda/alpha is 67.32688513597114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.32064611872897764
the lambda is 20.0
the regulation term lambda/alpha is 62.374059225412815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2718644032942335
the lambda is 20.0
the regulation term lambda/alpha is 73.56608573118119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27928689620369795
the lambda is 20.0
the regulation term lambda/alpha is 71.61095014430249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30281841528680664
the lambda is 20.0
the regulation term lambda/alpha is 66.04618144196256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28455312662089827
the lambda is 20.0
the regulation term lambda/alpha is 70.28564485480214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24677234973653633
the lambda is 20.0
the regulation term lambda/alpha is 81.04635718447699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22751188995511806
the lambda is 20.0
the regulation term lambda/alpha is 87.9074935553718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26897250958166985
the lambda is 20.0
the regulation term lambda/alpha is 74.35704128688018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2638637363733579
the lambda is 20.0
the regulation term lambda/alpha is 75.79669823101688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23909908434656715
the lambda is 20.0
the regulation term lambda/alpha is 83.647329953847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2929371179588751
the lambda is 20.0
the regulation term lambda/alpha is 68.27403826239515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21707359020366676
the lambda is 20.0
the regulation term lambda/alpha is 92.13465341976992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28984823805208937
the lambda is 20.0
the regulation term lambda/alpha is 69.00162697006199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2397234674941614
the lambda is 20.0
the regulation term lambda/alpha is 83.42946232615758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24733553332706265
the lambda is 20.0
the regulation term lambda/alpha is 80.86181443874108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26325523407454543
the lambda is 20.0
the regulation term lambda/alpha is 75.97189879361198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2949452940051724
the lambda is 20.0
the regulation term lambda/alpha is 67.80918497939915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2808177345262697
the lambda is 20.0
the regulation term lambda/alpha is 71.22057313701838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.305281072972181
the lambda is 20.0
the regulation term lambda/alpha is 65.51339657346696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23879601239232473
the lambda is 20.0
the regulation term lambda/alpha is 83.75349236209787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2336247819484428
the lambda is 20.0
the regulation term lambda/alpha is 85.6073565192826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2614372642006998
the lambda is 20.0
the regulation term lambda/alpha is 76.50018852953735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2653335049695721
the lambda is 20.0
the regulation term lambda/alpha is 75.37683566307828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24964868140356605
the lambda is 20.0
the regulation term lambda/alpha is 80.11258015686965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27823200928564096
the lambda is 20.0
the regulation term lambda/alpha is 71.88245540601127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22638418329085758
the lambda is 20.0
the regulation term lambda/alpha is 88.34539458220044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2647833671844524
the lambda is 20.0
the regulation term lambda/alpha is 75.53344536957896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27261358546446607
the lambda is 20.0
the regulation term lambda/alpha is 73.36391532331359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28238674004445685
the lambda is 20.0
the regulation term lambda/alpha is 70.82485529189987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24794184354648688
the lambda is 20.0
the regulation term lambda/alpha is 80.66407716392646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25108282046720076
the lambda is 20.0
the regulation term lambda/alpha is 79.65499177835078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2582958582964692
the lambda is 20.0
the regulation term lambda/alpha is 77.43058728043643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2676958814672985
the lambda is 20.0
the regulation term lambda/alpha is 74.71164625460696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26917238010368866
the lambda is 20.0
the regulation term lambda/alpha is 74.30182841306282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30530307417241487
the lambda is 20.0
the regulation term lambda/alpha is 65.50867545049786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2577653631236989
the lambda is 20.0
the regulation term lambda/alpha is 77.58994365120425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28286251789067995
the lambda is 20.0
the regulation term lambda/alpha is 70.70572711132252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3000322351019862
the lambda is 20.0
the regulation term lambda/alpha is 66.65950408029208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2835739065050229
the lambda is 20.0
the regulation term lambda/alpha is 70.52835095617566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24881726045992159
the lambda is 20.0
the regulation term lambda/alpha is 80.38027572135219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30508370109401406
the lambda is 20.0
the regulation term lambda/alpha is 65.5557800311228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2930803945314428
the lambda is 20.0
the regulation term lambda/alpha is 68.2406615153315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27623863107409197
the lambda is 20.0
the regulation term lambda/alpha is 72.40116967795014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.19429684910573194
the lambda is 20.0
the regulation term lambda/alpha is 102.93527708787728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.21291187052547592
the lambda is 20.0
the regulation term lambda/alpha is 93.93557978068162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27274040081203105
the lambda is 20.0
the regulation term lambda/alpha is 73.32980350712224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29407574978702494
the lambda is 20.0
the regulation term lambda/alpha is 68.00968802930662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28294461676793214
the lambda is 20.0
the regulation term lambda/alpha is 70.68521122069541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2703157047413524
the lambda is 20.0
the regulation term lambda/alpha is 73.98756213271702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27744472031277256
the lambda is 20.0
the regulation term lambda/alpha is 72.08643212764453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3141859021760482
the lambda is 20.0
the regulation term lambda/alpha is 63.656579946713755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2767278432320927
the lambda is 20.0
the regulation term lambda/alpha is 72.27317557353967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2520631918032661
the lambda is 20.0
the regulation term lambda/alpha is 79.34518267788138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31354418711552845
the lambda is 20.0
the regulation term lambda/alpha is 63.786862655600125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2071906206812855
the lambda is 20.0
the regulation term lambda/alpha is 96.52946612272252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27141113268768524
the lambda is 20.0
the regulation term lambda/alpha is 73.6889448931122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27019107176665785
the lambda is 20.0
the regulation term lambda/alpha is 74.02169090647222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2854272872772423
the lambda is 20.0
the regulation term lambda/alpha is 70.07038531874328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26025623210194837
the lambda is 20.0
the regulation term lambda/alpha is 76.84734324504298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2703456384281737
the lambda is 20.0
the regulation term lambda/alpha is 73.97936995130648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26615305240602294
the lambda is 20.0
the regulation term lambda/alpha is 75.14473277386845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2051400148189164
the lambda is 20.0
the regulation term lambda/alpha is 97.4943870295351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2467879844546788
the lambda is 20.0
the regulation term lambda/alpha is 81.04122266808693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2838152742155079
the lambda is 20.0
the regulation term lambda/alpha is 70.46837086299136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.228913502474721
the lambda is 20.0
the regulation term lambda/alpha is 87.36924551756665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25210368921989945
the lambda is 20.0
the regulation term lambda/alpha is 79.33243683139774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2851632678229923
the lambda is 20.0
the regulation term lambda/alpha is 70.135260241212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2348420528017974
the lambda is 20.0
the regulation term lambda/alpha is 85.16362278982314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2784382706810327
the lambda is 20.0
the regulation term lambda/alpha is 71.82920634825794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27238474333679824
the lambda is 20.0
the regulation term lambda/alpha is 73.42555150113677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2743343856282318
the lambda is 20.0
the regulation term lambda/alpha is 72.9037300745204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2228293694409927
the lambda is 20.0
the regulation term lambda/alpha is 89.7547753699325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.280738404007836
the lambda is 20.0
the regulation term lambda/alpha is 71.24069850964088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.315629984801841
the lambda is 20.0
the regulation term lambda/alpha is 63.36533587756693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27144871759186145
the lambda is 20.0
the regulation term lambda/alpha is 73.67874189065478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.27262365542432715
the lambda is 20.0
the regulation term lambda/alpha is 73.36120546425383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2953959784973822
the lambda is 20.0
the regulation term lambda/alpha is 67.70572877036388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2493677828086936
the lambda is 20.0
the regulation term lambda/alpha is 80.20282241248186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3005911891993591
the lambda is 20.0
the regulation term lambda/alpha is 66.53554967220124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22287837662174736
the lambda is 20.0
the regulation term lambda/alpha is 89.73503981475294
670
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2673622668302774
the lambda is 20.0
the regulation term lambda/alpha is 74.80487144693487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2962635017669734
the lambda is 20.0
the regulation term lambda/alpha is 67.50747183070507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24488613055782335
the lambda is 20.0
the regulation term lambda/alpha is 81.67061137534505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.281312147350668
the lambda is 20.0
the regulation term lambda/alpha is 71.0954012770345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24753841977145843
the lambda is 20.0
the regulation term lambda/alpha is 80.79553880349215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.245620745167326
the lambda is 20.0
the regulation term lambda/alpha is 81.42634689254467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.33765930496526236
the lambda is 20.0
the regulation term lambda/alpha is 59.2313012136821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.251921784494164
the lambda is 20.0
the regulation term lambda/alpha is 79.38972026638417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25674610073653553
the lambda is 20.0
the regulation term lambda/alpha is 77.89796979438199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2798292416804121
the lambda is 20.0
the regulation term lambda/alpha is 71.47215880619666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2622104563994466
the lambda is 20.0
the regulation term lambda/alpha is 76.27460885668253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27013870493017716
the lambda is 20.0
the regulation term lambda/alpha is 74.03604013415777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24999952196679118
the lambda is 20.0
the regulation term lambda/alpha is 80.00015297091933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24705518256215744
the lambda is 20.0
the regulation term lambda/alpha is 80.95357398531048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29062578352867474
the lambda is 20.0
the regulation term lambda/alpha is 68.81701876952252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28678364631533065
the lambda is 20.0
the regulation term lambda/alpha is 69.73898357512743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23420189143924874
the lambda is 20.0
the regulation term lambda/alpha is 85.39640682273456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29321146089784555
the lambda is 20.0
the regulation term lambda/alpha is 68.2101577433495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2696975429772023
the lambda is 20.0
the regulation term lambda/alpha is 74.15714573896068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30952585148775
the lambda is 20.0
the regulation term lambda/alpha is 64.61495834312092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23986587653529606
the lambda is 20.0
the regulation term lambda/alpha is 83.37993002125509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2541555696422277
the lambda is 20.0
the regulation term lambda/alpha is 78.69196031451841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25457111697623286
the lambda is 20.0
the regulation term lambda/alpha is 78.56350805840724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26540766818888356
the lambda is 20.0
the regulation term lambda/alpha is 75.35577301318413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30550230811272777
the lambda is 20.0
the regulation term lambda/alpha is 65.46595383698433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23516464647136553
the lambda is 20.0
the regulation term lambda/alpha is 85.04679721250221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.249338504605736
the lambda is 20.0
the regulation term lambda/alpha is 80.21224010958436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22107476270311172
the lambda is 20.0
the regulation term lambda/alpha is 90.46713317909847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2871163315680311
the lambda is 20.0
the regulation term lambda/alpha is 69.65817615032141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24126525658970221
the lambda is 20.0
the regulation term lambda/alpha is 82.8963120620893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2548293719198447
the lambda is 20.0
the regulation term lambda/alpha is 78.48388845180256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2267375375449379
the lambda is 20.0
the regulation term lambda/alpha is 88.20771459616003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21773660985324514
the lambda is 20.0
the regulation term lambda/alpha is 91.8540984608883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.283458617025293
the lambda is 20.0
the regulation term lambda/alpha is 70.55703654341684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.249760502335998
the lambda is 20.0
the regulation term lambda/alpha is 80.07671274257122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.33911958622135796
the lambda is 20.0
the regulation term lambda/alpha is 58.976245585960164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26939219775105794
the lambda is 20.0
the regulation term lambda/alpha is 74.24119988241738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.280599259566119
the lambda is 20.0
the regulation term lambda/alpha is 71.27602557086328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2611450591256354
the lambda is 20.0
the regulation term lambda/alpha is 76.5857874813481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27017480815984135
the lambda is 20.0
the regulation term lambda/alpha is 74.02614676112793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2942109659604336
the lambda is 20.0
the regulation term lambda/alpha is 67.97843151328921
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2745526043527525
the lambda is 20.0
the regulation term lambda/alpha is 72.84578504417851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2671023967010517
the lambda is 20.0
the regulation term lambda/alpha is 74.87765084483516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.33635482492964525
the lambda is 20.0
the regulation term lambda/alpha is 59.46101710948658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3067329145510194
the lambda is 20.0
the regulation term lambda/alpha is 65.20330571394668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28511588797905674
the lambda is 20.0
the regulation term lambda/alpha is 70.14691514304214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2667293629125376
the lambda is 20.0
the regulation term lambda/alpha is 74.98237082566023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2582477338301785
the lambda is 20.0
the regulation term lambda/alpha is 77.4450164707034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29771517179531565
the lambda is 20.0
the regulation term lambda/alpha is 67.17830293764924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26146880887860335
the lambda is 20.0
the regulation term lambda/alpha is 76.49095923057402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28143206224675843
the lambda is 20.0
the regulation term lambda/alpha is 71.06510836161974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2773021097953118
the lambda is 20.0
the regulation term lambda/alpha is 72.12350463097029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26957818991910143
the lambda is 20.0
the regulation term lambda/alpha is 74.18997807649744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26128877739384265
the lambda is 20.0
the regulation term lambda/alpha is 76.54366253110764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2885576079877511
the lambda is 20.0
the regulation term lambda/alpha is 69.31025017662668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2595662059884599
the lambda is 20.0
the regulation term lambda/alpha is 77.05163283424184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27052664868666704
the lambda is 20.0
the regulation term lambda/alpha is 73.92987011480952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26420695287068374
the lambda is 20.0
the regulation term lambda/alpha is 75.69823497335823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2698726248198974
the lambda is 20.0
the regulation term lambda/alpha is 74.10903574731684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26976003597449794
the lambda is 20.0
the regulation term lambda/alpha is 74.13996638809287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2979630227393761
the lambda is 20.0
the regulation term lambda/alpha is 67.12242282994191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2913910318116566
the lambda is 20.0
the regulation term lambda/alpha is 68.6362921866696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2861243344974942
the lambda is 20.0
the regulation term lambda/alpha is 69.89968202154142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.25025525425566314
the lambda is 20.0
the regulation term lambda/alpha is 79.91840195118465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23937714626401324
the lambda is 20.0
the regulation term lambda/alpha is 83.55016471765292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2734145842709167
the lambda is 20.0
the regulation term lambda/alpha is 73.14898747384565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24590596457669547
the lambda is 20.0
the regulation term lambda/alpha is 81.33190276383968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25922850463484914
the lambda is 20.0
the regulation term lambda/alpha is 77.15200929840691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3212562440436487
the lambda is 20.0
the regulation term lambda/alpha is 62.25559929438328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2448976346300515
the lambda is 20.0
the regulation term lambda/alpha is 81.66677489642765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2683833169927186
the lambda is 20.0
the regulation term lambda/alpha is 74.52028026221396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2970181180799335
the lambda is 20.0
the regulation term lambda/alpha is 67.33595960168869
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2670928087865359
the lambda is 20.0
the regulation term lambda/alpha is 74.8803387514048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2774995996642439
the lambda is 20.0
the regulation term lambda/alpha is 72.07217604709582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.33297718932646453
the lambda is 20.0
the regulation term lambda/alpha is 60.06417448731354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28499394644699044
the lambda is 20.0
the regulation term lambda/alpha is 70.17692919214355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26476471389358025
the lambda is 20.0
the regulation term lambda/alpha is 75.53876687676295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2970409825288879
the lambda is 20.0
the regulation term lambda/alpha is 67.33077647982448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24935938734036434
the lambda is 20.0
the regulation term lambda/alpha is 80.20552269283891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26181186885743385
the lambda is 20.0
the regulation term lambda/alpha is 76.39073082240871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2561542998612824
the lambda is 20.0
the regulation term lambda/alpha is 78.07793978407071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29659971981237
the lambda is 20.0
the regulation term lambda/alpha is 67.43094704422536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28738362866286105
the lambda is 20.0
the regulation term lambda/alpha is 69.593386697273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.277736260246724
the lambda is 20.0
the regulation term lambda/alpha is 72.01076295271355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23872367495734823
the lambda is 20.0
the regulation term lambda/alpha is 83.77887113028616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28418472202563366
the lambda is 20.0
the regulation term lambda/alpha is 70.37676007859419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2959639960372609
the lambda is 20.0
the regulation term lambda/alpha is 67.57578714906276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28738995319415434
the lambda is 20.0
the regulation term lambda/alpha is 69.59185516999767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2749171481150527
the lambda is 20.0
the regulation term lambda/alpha is 72.74919057297222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27267030094399636
the lambda is 20.0
the regulation term lambda/alpha is 73.34865561360785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29787399047597535
the lambda is 20.0
the regulation term lambda/alpha is 67.1424852100777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2925851771677711
the lambda is 20.0
the regulation term lambda/alpha is 68.35616278856058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2380446564585158
the lambda is 20.0
the regulation term lambda/alpha is 84.01784899332706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23426695210825613
the lambda is 20.0
the regulation term lambda/alpha is 85.37269051401617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26445091365262624
the lambda is 20.0
the regulation term lambda/alpha is 75.62840197357504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2431478739816237
the lambda is 20.0
the regulation term lambda/alpha is 82.25447203174613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24819990820418233
the lambda is 20.0
the regulation term lambda/alpha is 80.58020707867041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23931132456476178
the lambda is 20.0
the regulation term lambda/alpha is 83.57314488302727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.293834360257756
the lambda is 20.0
the regulation term lambda/alpha is 68.06555905325604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2329446926314621
the lambda is 20.0
the regulation term lambda/alpha is 85.85728987456119
680
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2496424794401975
the lambda is 20.0
the regulation term lambda/alpha is 80.11457042426568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2765938069745266
the lambda is 20.0
the regulation term lambda/alpha is 72.30819886665768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31003048049214516
the lambda is 20.0
the regulation term lambda/alpha is 64.50978616119235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25506439954992743
the lambda is 20.0
the regulation term lambda/alpha is 78.41156992230549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31652902920420856
the lambda is 20.0
the regulation term lambda/alpha is 63.18535791261347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2846517390686614
the lambda is 20.0
the regulation term lambda/alpha is 70.26129566408783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31532934615599717
the lambda is 20.0
the regulation term lambda/alpha is 63.425749121700086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2345022408269221
the lambda is 20.0
the regulation term lambda/alpha is 85.28703149903502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2622036331078872
the lambda is 20.0
the regulation term lambda/alpha is 76.276593741059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3143677085014248
the lambda is 20.0
the regulation term lambda/alpha is 63.61976583199019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23712198071345755
the lambda is 20.0
the regulation term lambda/alpha is 84.34477453259957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31729392612057467
the lambda is 20.0
the regulation term lambda/alpha is 63.033037677499735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2692759586475132
the lambda is 20.0
the regulation term lambda/alpha is 74.27324778808175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25457098184801413
the lambda is 20.0
the regulation term lambda/alpha is 78.5635497605165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30688976800514123
the lambda is 20.0
the regulation term lambda/alpha is 65.16997985955969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27317670308718595
the lambda is 20.0
the regulation term lambda/alpha is 73.21268532044947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2425114734763646
the lambda is 20.0
the regulation term lambda/alpha is 82.47032486052343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3389766935174641
the lambda is 20.0
the regulation term lambda/alpha is 59.00110651403707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2770370695007932
the lambda is 20.0
the regulation term lambda/alpha is 72.1925049093213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22310361387737251
the lambda is 20.0
the regulation term lambda/alpha is 89.6444465977717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25408494218991384
the lambda is 20.0
the regulation term lambda/alpha is 78.71383415177415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27517319028040554
the lambda is 20.0
the regulation term lambda/alpha is 72.68149916646932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2964562191882169
the lambda is 20.0
the regulation term lambda/alpha is 67.46358721960969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2688306445665732
the lambda is 20.0
the regulation term lambda/alpha is 74.39628035057291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2604399524686345
the lambda is 20.0
the regulation term lambda/alpha is 76.79313335156846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2661606999310319
the lambda is 20.0
the regulation term lambda/alpha is 75.14257366013254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25168961501343184
the lambda is 20.0
the regulation term lambda/alpha is 79.46295280769795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.322251604068843
the lambda is 20.0
the regulation term lambda/alpha is 62.06330627209966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23616059600290398
the lambda is 20.0
the regulation term lambda/alpha is 84.68813315390713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28661042324436875
the lambda is 20.0
the regulation term lambda/alpha is 69.78113277809047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25545721652084435
the lambda is 20.0
the regulation term lambda/alpha is 78.2909963256727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.291598891788945
the lambda is 20.0
the regulation term lambda/alpha is 68.58736628696006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2747869948081967
the lambda is 20.0
the regulation term lambda/alpha is 72.7836483453671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.34586311562248157
the lambda is 20.0
the regulation term lambda/alpha is 57.826345443063985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2759192088596822
the lambda is 20.0
the regulation term lambda/alpha is 72.48498603143986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2580535660284474
the lambda is 20.0
the regulation term lambda/alpha is 77.50328859162222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25374157642972767
the lambda is 20.0
the regulation term lambda/alpha is 78.82035053699168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2403574693237769
the lambda is 20.0
the regulation term lambda/alpha is 83.20939663854888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26917450826979805
the lambda is 20.0
the regulation term lambda/alpha is 74.30124096280942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2668859880777088
the lambda is 20.0
the regulation term lambda/alpha is 74.9383665439065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28688403895805026
the lambda is 20.0
the regulation term lambda/alpha is 69.71457900773807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2568853848309148
the lambda is 20.0
the regulation term lambda/alpha is 77.85573326082468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31210199290784774
the lambda is 20.0
the regulation term lambda/alpha is 64.08161580020818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26113949243573703
the lambda is 20.0
the regulation term lambda/alpha is 76.58742005452022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2446603280698995
the lambda is 20.0
the regulation term lambda/alpha is 81.74598700891954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27399388699795435
the lambda is 20.0
the regulation term lambda/alpha is 72.9943292499417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.34980094075693874
the lambda is 20.0
the regulation term lambda/alpha is 57.17537510540064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3124913297111374
the lambda is 20.0
the regulation term lambda/alpha is 64.0017757244264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2753278240952392
the lambda is 20.0
the regulation term lambda/alpha is 72.64067867358644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30851577409919284
the lambda is 20.0
the regulation term lambda/alpha is 64.8265070348386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3029998312375699
the lambda is 20.0
the regulation term lambda/alpha is 66.00663742389615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25892121774184335
the lambda is 20.0
the regulation term lambda/alpha is 77.24357306221594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23860202311994214
the lambda is 20.0
the regulation term lambda/alpha is 83.82158599697313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2548507822465717
the lambda is 20.0
the regulation term lambda/alpha is 78.47729492409296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2861029865209428
the lambda is 20.0
the regulation term lambda/alpha is 69.90489768458252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26163331617994184
the lambda is 20.0
the regulation term lambda/alpha is 76.44286397472686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26473992685408143
the lambda is 20.0
the regulation term lambda/alpha is 75.54583941176179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26840186505733477
the lambda is 20.0
the regulation term lambda/alpha is 74.51513049556378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23207575753441975
the lambda is 20.0
the regulation term lambda/alpha is 86.17875564634858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3099062376766243
the lambda is 20.0
the regulation term lambda/alpha is 64.53564842689376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2659799715164223
the lambda is 20.0
the regulation term lambda/alpha is 75.19363163314404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2754742854908293
the lambda is 20.0
the regulation term lambda/alpha is 72.60205780864368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2856597774467258
the lambda is 20.0
the regulation term lambda/alpha is 70.0133570738005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24332775237901452
the lambda is 20.0
the regulation term lambda/alpha is 82.19366596888383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21549236215883943
the lambda is 20.0
the regulation term lambda/alpha is 92.81071403012417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2468534991333881
the lambda is 20.0
the regulation term lambda/alpha is 81.01971440636915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23865236922688696
the lambda is 20.0
the regulation term lambda/alpha is 83.8039029940909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26464935032789494
the lambda is 20.0
the regulation term lambda/alpha is 75.57169505695148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30887390046271374
the lambda is 20.0
the regulation term lambda/alpha is 64.75134341243681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.332645547780932
the lambda is 20.0
the regulation term lambda/alpha is 60.12405737404084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26242413064332487
the lambda is 20.0
the regulation term lambda/alpha is 76.2125035947365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28128276125228124
the lambda is 20.0
the regulation term lambda/alpha is 71.10282873703053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25953317059882886
the lambda is 20.0
the regulation term lambda/alpha is 77.06144056211923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27882912140616134
the lambda is 20.0
the regulation term lambda/alpha is 71.72851924195768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2409323975475446
the lambda is 20.0
the regulation term lambda/alpha is 83.01083707953092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26799745125225993
the lambda is 20.0
the regulation term lambda/alpha is 74.62757539874681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28785538241241754
the lambda is 20.0
the regulation term lambda/alpha is 69.4793331025699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3454405832144721
the lambda is 20.0
the regulation term lambda/alpha is 57.89707686888281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27660550469662093
the lambda is 20.0
the regulation term lambda/alpha is 72.30514093324305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31069968585747615
the lambda is 20.0
the regulation term lambda/alpha is 64.37084075190981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3504439553379096
the lambda is 20.0
the regulation term lambda/alpha is 57.0704664622203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2692224133488181
the lambda is 20.0
the regulation term lambda/alpha is 74.2880198985773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2998870942714942
the lambda is 20.0
the regulation term lambda/alpha is 66.69176627485534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26240795230402486
the lambda is 20.0
the regulation term lambda/alpha is 76.21720235379176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25664964295879666
the lambda is 20.0
the regulation term lambda/alpha is 77.92724653511738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22393462549595278
the lambda is 20.0
the regulation term lambda/alpha is 89.3117799701836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32659836343781923
the lambda is 20.0
the regulation term lambda/alpha is 61.237293994609324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2595720410741406
the lambda is 20.0
the regulation term lambda/alpha is 77.0499007413802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2767760270883022
the lambda is 20.0
the regulation term lambda/alpha is 72.26059355790677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.22711546481450443
the lambda is 20.0
the regulation term lambda/alpha is 88.06093418752842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28466292861597275
the lambda is 20.0
the regulation term lambda/alpha is 70.25853382890328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25363682402509546
the lambda is 20.0
the regulation term lambda/alpha is 78.85290346492097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22459376230132483
the lambda is 20.0
the regulation term lambda/alpha is 89.04966814335263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2724633502393846
the lambda is 20.0
the regulation term lambda/alpha is 73.40436789912523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27360016123152403
the lambda is 20.0
the regulation term lambda/alpha is 73.09937212747379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2528689495293385
the lambda is 20.0
the regulation term lambda/alpha is 79.09235213428032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2621047552450919
the lambda is 20.0
the regulation term lambda/alpha is 76.3053687495985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31469410371770495
the lambda is 20.0
the regulation term lambda/alpha is 63.55378052440702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29136390124664263
the lambda is 20.0
the regulation term lambda/alpha is 68.6426833057462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23935255376510578
the lambda is 20.0
the regulation term lambda/alpha is 83.55874915639073
690
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29167767540332495
the lambda is 20.0
the regulation term lambda/alpha is 68.56884049265847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26007198256443953
the lambda is 20.0
the regulation term lambda/alpha is 76.90178620084339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3120327638109318
the lambda is 20.0
the regulation term lambda/alpha is 64.09583325717193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2428941927159136
the lambda is 20.0
the regulation term lambda/alpha is 82.34037947293282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3081980119510316
the lambda is 20.0
the regulation term lambda/alpha is 64.89334526654157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.20779665636483358
the lambda is 20.0
the regulation term lambda/alpha is 96.24793945137174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2527913371002942
the lambda is 20.0
the regulation term lambda/alpha is 79.11663520362274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24628112687374173
the lambda is 20.0
the regulation term lambda/alpha is 81.20800913117952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29357375600731406
the lambda is 20.0
the regulation term lambda/alpha is 68.12598057811994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25399627307400485
the lambda is 20.0
the regulation term lambda/alpha is 78.74131284663677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25458624917744893
the lambda is 20.0
the regulation term lambda/alpha is 78.55883836860261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2934593486953725
the lambda is 20.0
the regulation term lambda/alpha is 68.15253999885735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2666710310097544
the lambda is 20.0
the regulation term lambda/alpha is 74.99877254859538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29601201743227534
the lambda is 20.0
the regulation term lambda/alpha is 67.56482447397867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28529916021479723
the lambda is 20.0
the regulation term lambda/alpha is 70.10185373466335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3191436795086917
the lambda is 20.0
the regulation term lambda/alpha is 62.6676988583611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.33706756452129677
the lambda is 20.0
the regulation term lambda/alpha is 59.335284984789304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25262938000527896
the lambda is 20.0
the regulation term lambda/alpha is 79.16735575087141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2589414879422668
the lambda is 20.0
the regulation term lambda/alpha is 77.23752635753438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27051589706004503
the lambda is 20.0
the regulation term lambda/alpha is 73.93280844992523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2955852364024291
the lambda is 20.0
the regulation term lambda/alpha is 67.6623780112302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24620095361071337
the lambda is 20.0
the regulation term lambda/alpha is 81.23445383409639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30882543967985865
the lambda is 20.0
the regulation term lambda/alpha is 64.76150417120051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2931921535020331
the lambda is 20.0
the regulation term lambda/alpha is 68.21464954334569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2579081782511586
the lambda is 20.0
the regulation term lambda/alpha is 77.54697867906853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30349932271027585
the lambda is 20.0
the regulation term lambda/alpha is 65.89800537740324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2628844776412405
the lambda is 20.0
the regulation term lambda/alpha is 76.07904498375929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3003819350231685
the lambda is 20.0
the regulation term lambda/alpha is 66.58190013476475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.270371749967867
the lambda is 20.0
the regulation term lambda/alpha is 73.97222528750488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2720721450929004
the lambda is 20.0
the regulation term lambda/alpha is 73.50991404566939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2946679062275738
the lambda is 20.0
the regulation term lambda/alpha is 67.87301764907468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24848406624770591
the lambda is 20.0
the regulation term lambda/alpha is 80.48805825667161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29169871892968086
the lambda is 20.0
the regulation term lambda/alpha is 68.5638938469982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28016137042249023
the lambda is 20.0
the regulation term lambda/alpha is 71.38742921566777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2645330087328179
the lambda is 20.0
the regulation term lambda/alpha is 75.60493148210584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.290119597017543
the lambda is 20.0
the regulation term lambda/alpha is 68.93708734467405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2415125698032763
the lambda is 20.0
the regulation term lambda/alpha is 82.81142474816517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3107678057629606
the lambda is 20.0
the regulation term lambda/alpha is 64.35673074596112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2558901422976359
the lambda is 20.0
the regulation term lambda/alpha is 78.158540303351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27141176083709345
the lambda is 20.0
the regulation term lambda/alpha is 73.68877434903929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2639474575251541
the lambda is 20.0
the regulation term lambda/alpha is 75.77265637458927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29327672914641634
the lambda is 20.0
the regulation term lambda/alpha is 68.1949776861264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30086240769197353
the lambda is 20.0
the regulation term lambda/alpha is 66.47556985742212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2713588159694883
the lambda is 20.0
the regulation term lambda/alpha is 73.70315177911452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22511957279253123
the lambda is 20.0
the regulation term lambda/alpha is 88.84167534571449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28758501300092626
the lambda is 20.0
the regulation term lambda/alpha is 69.5446532185444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26625628665861856
the lambda is 20.0
the regulation term lambda/alpha is 75.11559727280006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.33378911853424614
the lambda is 20.0
the regulation term lambda/alpha is 59.91807069033629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27691514741532136
the lambda is 20.0
the regulation term lambda/alpha is 72.22429031664241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2453589909095222
the lambda is 20.0
the regulation term lambda/alpha is 81.51321427375423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26442724682418967
the lambda is 20.0
the regulation term lambda/alpha is 75.6351708842525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.262814983123999
the lambda is 20.0
the regulation term lambda/alpha is 76.09916208834936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2734247617838674
the lambda is 20.0
the regulation term lambda/alpha is 73.14626469642604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24532888625508453
the lambda is 20.0
the regulation term lambda/alpha is 81.52321687550763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2429977644556256
the lambda is 20.0
the regulation term lambda/alpha is 82.30528393874278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2734543944900062
the lambda is 20.0
the regulation term lambda/alpha is 73.13833824941851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25536026633621034
the lambda is 20.0
the regulation term lambda/alpha is 78.32072031781078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26997038784868
the lambda is 20.0
the regulation term lambda/alpha is 74.08219901217507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2871793831389034
the lambda is 20.0
the regulation term lambda/alpha is 69.64288237337138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28024497669118725
the lambda is 20.0
the regulation term lambda/alpha is 71.36613200399582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2420001971833063
the lambda is 20.0
the regulation term lambda/alpha is 82.64456075980274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2830881251008482
the lambda is 20.0
the regulation term lambda/alpha is 70.64937814991406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25417524026606675
the lambda is 20.0
the regulation term lambda/alpha is 78.68587034309206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.317322731933632
the lambda is 20.0
the regulation term lambda/alpha is 63.02731568623643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2767029109094201
the lambda is 20.0
the regulation term lambda/alpha is 72.27968774982308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25995095141591146
the lambda is 20.0
the regulation term lambda/alpha is 76.93759107655957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.236761807389948
the lambda is 20.0
the regulation term lambda/alpha is 84.4730838156675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26907326124375974
the lambda is 20.0
the regulation term lambda/alpha is 74.32919907222417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2721872364077202
the lambda is 20.0
the regulation term lambda/alpha is 73.47883120441841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2555125456845677
the lambda is 20.0
the regulation term lambda/alpha is 78.27404304714713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28892685666304363
the lambda is 20.0
the regulation term lambda/alpha is 69.22167164032344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26020731810854736
the lambda is 20.0
the regulation term lambda/alpha is 76.8617890741138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26331950709885343
the lambda is 20.0
the regulation term lambda/alpha is 75.95335499580648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29985495526427164
the lambda is 20.0
the regulation term lambda/alpha is 66.6989144213854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3098845022580431
the lambda is 20.0
the regulation term lambda/alpha is 64.54017498218047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.274985229775301
the lambda is 20.0
the regulation term lambda/alpha is 72.73117911221131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2646298303794548
the lambda is 20.0
the regulation term lambda/alpha is 75.57726946853211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23362023778246094
the lambda is 20.0
the regulation term lambda/alpha is 85.60902167484012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24591245501947778
the lambda is 20.0
the regulation term lambda/alpha is 81.32975614600683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21173100911656853
the lambda is 20.0
the regulation term lambda/alpha is 94.45947517771947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2983441223057222
the lambda is 20.0
the regulation term lambda/alpha is 67.03668182041608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.269641229255837
the lambda is 20.0
the regulation term lambda/alpha is 74.17263322525464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2731566041074214
the lambda is 20.0
the regulation term lambda/alpha is 73.21807234114982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24527709388605706
the lambda is 20.0
the regulation term lambda/alpha is 81.54043120427282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25518035662031024
the lambda is 20.0
the regulation term lambda/alpha is 78.37593874734857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2712311249187497
the lambda is 20.0
the regulation term lambda/alpha is 73.73784998307707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2649103371312758
the lambda is 20.0
the regulation term lambda/alpha is 75.49724263907844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25479530376467585
the lambda is 20.0
the regulation term lambda/alpha is 78.49438237084473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29003494071354696
the lambda is 20.0
the regulation term lambda/alpha is 68.95720891695254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28204102426566185
the lambda is 20.0
the regulation term lambda/alpha is 70.91166986105353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23891056568041963
the lambda is 20.0
the regulation term lambda/alpha is 83.71333407980431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26528496067649665
the lambda is 20.0
the regulation term lambda/alpha is 75.39062881287538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2645990590342345
the lambda is 20.0
the regulation term lambda/alpha is 75.58605866928782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27326763446958907
the lambda is 20.0
the regulation term lambda/alpha is 73.1883233768971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2861406728910657
the lambda is 20.0
the regulation term lambda/alpha is 69.89569080804544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27863725813899115
the lambda is 20.0
the regulation term lambda/alpha is 71.77790986596453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24457370322785799
the lambda is 20.0
the regulation term lambda/alpha is 81.77494038010671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2702202985264469
the lambda is 20.0
the regulation term lambda/alpha is 74.01368479371496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25642881881886714
the lambda is 20.0
the regulation term lambda/alpha is 77.9943537240537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30554000724006725
the lambda is 20.0
the regulation term lambda/alpha is 65.45787630451193
700
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29334443639017943
the lambda is 20.0
the regulation term lambda/alpha is 68.17923750698944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25983931527930765
the lambda is 20.0
the regulation term lambda/alpha is 76.97064617993436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23090815097805958
the lambda is 20.0
the regulation term lambda/alpha is 86.61452579861661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24098417908085948
the lambda is 20.0
the regulation term lambda/alpha is 82.99300010599131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2503241598989024
the lambda is 20.0
the regulation term lambda/alpha is 79.89640316011581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3150811458443485
the lambda is 20.0
the regulation term lambda/alpha is 63.4757117770547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27245765169113
the lambda is 20.0
the regulation term lambda/alpha is 73.40590317747024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25541885061142877
the lambda is 20.0
the regulation term lambda/alpha is 78.30275624576433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2589044214068344
the lambda is 20.0
the regulation term lambda/alpha is 77.24858421236699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28321477804172185
the lambda is 20.0
the regulation term lambda/alpha is 70.61778392458636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31475417301117214
the lambda is 20.0
the regulation term lambda/alpha is 63.54165159643524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30779202123740723
the lambda is 20.0
the regulation term lambda/alpha is 64.97894233773373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3069321592046566
the lambda is 20.0
the regulation term lambda/alpha is 65.16097906399041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28936532309525265
the lambda is 20.0
the regulation term lambda/alpha is 69.11678215643153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26809432208291767
the lambda is 20.0
the regulation term lambda/alpha is 74.60061013084153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.315491737390534
the lambda is 20.0
the regulation term lambda/alpha is 63.393102353241154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2936317606632438
the lambda is 20.0
the regulation term lambda/alpha is 68.11252282390976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27498503926454065
the lambda is 20.0
the regulation term lambda/alpha is 72.7312295006698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29281531787648407
the lambda is 20.0
the regulation term lambda/alpha is 68.30243767655774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2524420410284876
the lambda is 20.0
the regulation term lambda/alpha is 79.22610639066667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2664974683714393
the lambda is 20.0
the regulation term lambda/alpha is 75.04761723336286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2490348182266797
the lambda is 20.0
the regulation term lambda/alpha is 80.3100552059967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26666054680850454
the lambda is 20.0
the regulation term lambda/alpha is 75.00172124960986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31192685429877576
the lambda is 20.0
the regulation term lambda/alpha is 64.11759591831493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25870696641522767
the lambda is 20.0
the regulation term lambda/alpha is 77.30754326847067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.272544299437892
the lambda is 20.0
the regulation term lambda/alpha is 73.38256584800683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23041819913258457
the lambda is 20.0
the regulation term lambda/alpha is 86.79869938785448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3298912365682487
the lambda is 20.0
the regulation term lambda/alpha is 60.62604211028307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29867434483446237
the lambda is 20.0
the regulation term lambda/alpha is 66.96256423056631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31913284665992403
the lambda is 20.0
the regulation term lambda/alpha is 62.669826090676594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28963958469205975
the lambda is 20.0
the regulation term lambda/alpha is 69.05133502819956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23855397214063523
the lambda is 20.0
the regulation term lambda/alpha is 83.83846984618373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24144913006755725
the lambda is 20.0
the regulation term lambda/alpha is 82.83318309908185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28648790965710536
the lambda is 20.0
the regulation term lambda/alpha is 69.81097395676422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3127279797096085
the lambda is 20.0
the regulation term lambda/alpha is 63.953343792811594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2514122595938398
the lambda is 20.0
the regulation term lambda/alpha is 79.55061552014327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2517508300514994
the lambda is 20.0
the regulation term lambda/alpha is 79.44363081507497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3205467711528525
the lambda is 20.0
the regulation term lambda/alpha is 62.393390917867066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.2714691072139667
the lambda is 20.0
the regulation term lambda/alpha is 73.67320799503122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2685371907104871
the lambda is 20.0
the regulation term lambda/alpha is 74.47757961228626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.287572386149913
the lambda is 20.0
the regulation term lambda/alpha is 69.54770681484659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29275135956190873
the lambda is 20.0
the regulation term lambda/alpha is 68.31735992594275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2842899874302126
the lambda is 20.0
the regulation term lambda/alpha is 70.3507013412127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25234646219276163
the lambda is 20.0
the regulation term lambda/alpha is 79.25611409888704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2721477627441736
the lambda is 20.0
the regulation term lambda/alpha is 73.48948893914131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23486736091706778
the lambda is 20.0
the regulation term lambda/alpha is 85.15444598988809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.278484401666266
the lambda is 20.0
the regulation term lambda/alpha is 71.8173078288524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2894652571611696
the lambda is 20.0
the regulation term lambda/alpha is 69.09292049810428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2430807595182111
the lambda is 20.0
the regulation term lambda/alpha is 82.27718244603248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2608447627757837
the lambda is 20.0
the regulation term lambda/alpha is 76.6739565217629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25390383398117555
the lambda is 20.0
the regulation term lambda/alpha is 78.76998029688201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2711749086483302
the lambda is 20.0
the regulation term lambda/alpha is 73.75313630486643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2619110897367129
the lambda is 20.0
the regulation term lambda/alpha is 76.36179140068133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2422361244077777
the lambda is 20.0
the regulation term lambda/alpha is 82.56406862888961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2861039875353385
the lambda is 20.0
the regulation term lambda/alpha is 69.90465310285015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25550272171735233
the lambda is 20.0
the regulation term lambda/alpha is 78.27705264965759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2546059239862541
the lambda is 20.0
the regulation term lambda/alpha is 78.55276769239579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2525168998473273
the lambda is 20.0
the regulation term lambda/alpha is 79.2026197537356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.277597577118351
the lambda is 20.0
the regulation term lambda/alpha is 72.04673833112454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3092638286740725
the lambda is 20.0
the regulation term lambda/alpha is 64.66970316492342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3411079919656088
the lambda is 20.0
the regulation term lambda/alpha is 58.63245796368336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2733581622484216
the lambda is 20.0
the regulation term lambda/alpha is 73.16408566510798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23321870209637205
the lambda is 20.0
the regulation term lambda/alpha is 85.75641584582475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23680011813195645
the lambda is 20.0
the regulation term lambda/alpha is 84.45941732535384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3591524048711032
the lambda is 20.0
the regulation term lambda/alpha is 55.68666596337516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33348890317174645
the lambda is 20.0
the regulation term lambda/alpha is 59.972010492055325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24537500188363912
the lambda is 20.0
the regulation term lambda/alpha is 81.50789545173119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28598999657265756
the lambda is 20.0
the regulation term lambda/alpha is 69.93251596098703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27280124024074115
the lambda is 20.0
the regulation term lambda/alpha is 73.31344968355143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24728935397971943
the lambda is 20.0
the regulation term lambda/alpha is 80.87691474838108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2510392822453431
the lambda is 20.0
the regulation term lambda/alpha is 79.66880649560576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2695889874486441
the lambda is 20.0
the regulation term lambda/alpha is 74.18700663286529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26532417815967935
the lambda is 20.0
the regulation term lambda/alpha is 75.37948534778256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28854649519887937
the lambda is 20.0
the regulation term lambda/alpha is 69.31291952173979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2542298645220843
the lambda is 20.0
the regulation term lambda/alpha is 78.66896376472974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2779462243350666
the lambda is 20.0
the regulation term lambda/alpha is 71.95636511287819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24690497025271568
the lambda is 20.0
the regulation term lambda/alpha is 81.00282460709201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25945498747842277
the lambda is 20.0
the regulation term lambda/alpha is 77.08466194608525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2597000124226045
the lambda is 20.0
the regulation term lambda/alpha is 77.01193316638896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3468821014812266
the lambda is 20.0
the regulation term lambda/alpha is 57.656477271665764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23194961247820053
the lambda is 20.0
the regulation term lambda/alpha is 86.2256236874708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.33681096411949146
the lambda is 20.0
the regulation term lambda/alpha is 59.38048974232483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2521447511252638
the lambda is 20.0
the regulation term lambda/alpha is 79.31951750232602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23886803111493649
the lambda is 20.0
the regulation term lambda/alpha is 83.72824068021296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2913925524082487
the lambda is 20.0
the regulation term lambda/alpha is 68.6359340165272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27564704397400047
the lambda is 20.0
the regulation term lambda/alpha is 72.55655533852355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2667503167468415
the lambda is 20.0
the regulation term lambda/alpha is 74.97648079263925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.26014422314512736
the lambda is 20.0
the regulation term lambda/alpha is 76.88043100938876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27773989651746767
the lambda is 20.0
the regulation term lambda/alpha is 72.00982016187277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27878255302338434
the lambda is 20.0
the regulation term lambda/alpha is 71.74050091406687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29712413117393294
the lambda is 20.0
the regulation term lambda/alpha is 67.31193431169761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2367821336972515
the lambda is 20.0
the regulation term lambda/alpha is 84.46583231474678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2959991105998121
the lambda is 20.0
the regulation term lambda/alpha is 67.56777059049952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2971859816725609
the lambda is 20.0
the regulation term lambda/alpha is 67.29792531747333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21938981971660867
the lambda is 20.0
the regulation term lambda/alpha is 91.16193279084007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26991973696746246
the lambda is 20.0
the regulation term lambda/alpha is 74.09610065828905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22092323583660411
the lambda is 20.0
the regulation term lambda/alpha is 90.52918279176436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2546942876284855
the lambda is 20.0
the regulation term lambda/alpha is 78.52551459329692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2759180785669799
the lambda is 20.0
the regulation term lambda/alpha is 72.485282964686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.253406255553929
the lambda is 20.0
the regulation term lambda/alpha is 78.92464989185586
710
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2425230476891834
the lambda is 20.0
the regulation term lambda/alpha is 82.46638903215468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2848401486323323
the lambda is 20.0
the regulation term lambda/alpha is 70.21482082505062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25877898612867295
the lambda is 20.0
the regulation term lambda/alpha is 77.2860281246151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27230578197846517
the lambda is 20.0
the regulation term lambda/alpha is 73.44684293770032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27543472678996916
the lambda is 20.0
the regulation term lambda/alpha is 72.61248511793816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2851967144316663
the lambda is 20.0
the regulation term lambda/alpha is 70.12703508823921
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.255353677967932
the lambda is 20.0
the regulation term lambda/alpha is 78.32274106704526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24082550455165835
the lambda is 20.0
the regulation term lambda/alpha is 83.04768233428487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27850296454707907
the lambda is 20.0
the regulation term lambda/alpha is 71.81252103554945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24920223399036326
the lambda is 20.0
the regulation term lambda/alpha is 80.25610236212171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28598668514123965
the lambda is 20.0
the regulation term lambda/alpha is 69.933325707533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3392066746195235
the lambda is 20.0
the regulation term lambda/alpha is 58.96110394181753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32188197109509187
the lambda is 20.0
the regulation term lambda/alpha is 62.13457663365528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26998907890852103
the lambda is 20.0
the regulation term lambda/alpha is 74.07707037948929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2789418896888141
the lambda is 20.0
the regulation term lambda/alpha is 71.69952143907778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27090714330757326
the lambda is 20.0
the regulation term lambda/alpha is 73.82603410089149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31501935796706926
the lambda is 20.0
the regulation term lambda/alpha is 63.488161899214816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32801377847214575
the lambda is 20.0
the regulation term lambda/alpha is 60.97304842850789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27548493563961035
the lambda is 20.0
the regulation term lambda/alpha is 72.59925103913493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3443043655472274
the lambda is 20.0
the regulation term lambda/alpha is 58.0881394524655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28028430741411514
the lambda is 20.0
the regulation term lambda/alpha is 71.35611759544693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2744555974006268
the lambda is 20.0
the regulation term lambda/alpha is 72.87153255178728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2932808567656414
the lambda is 20.0
the regulation term lambda/alpha is 68.19401791362691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2727603838137604
the lambda is 20.0
the regulation term lambda/alpha is 73.32443121086057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28324684689115814
the lambda is 20.0
the regulation term lambda/alpha is 70.6097886684871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2944842937100928
the lambda is 20.0
the regulation term lambda/alpha is 67.91533683521045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2737900956710943
the lambda is 20.0
the regulation term lambda/alpha is 73.04866142428367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2583602538724885
the lambda is 20.0
the regulation term lambda/alpha is 77.41128792151919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28906211196446374
the lambda is 20.0
the regulation term lambda/alpha is 69.1892820684114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.277487823796709
the lambda is 20.0
the regulation term lambda/alpha is 72.075234604356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26067847095657265
the lambda is 20.0
the regulation term lambda/alpha is 76.72286831593343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3276533200111668
the lambda is 20.0
the regulation term lambda/alpha is 61.040126189834965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28834808324809746
the lambda is 20.0
the regulation term lambda/alpha is 69.36061365385186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28850979905347485
the lambda is 20.0
the regulation term lambda/alpha is 69.32173557229171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27502414102051786
the lambda is 20.0
the regulation term lambda/alpha is 72.72088888556122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3097491833209886
the lambda is 20.0
the regulation term lambda/alpha is 64.56837040075192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24754080717681312
the lambda is 20.0
the regulation term lambda/alpha is 80.79475957155793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30216756148180307
the lambda is 20.0
the regulation term lambda/alpha is 66.18844161140846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2679137677547793
the lambda is 20.0
the regulation term lambda/alpha is 74.65088549800076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26984228194361
the lambda is 20.0
the regulation term lambda/alpha is 74.11736906442067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2531025278768318
the lambda is 20.0
the regulation term lambda/alpha is 79.0193609197482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24586026183282028
the lambda is 20.0
the regulation term lambda/alpha is 81.34702147840211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26263623981403866
the lambda is 20.0
the regulation term lambda/alpha is 76.15095317447863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.317721700322351
the lambda is 20.0
the regulation term lambda/alpha is 62.94817124454702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27616705854178625
the lambda is 20.0
the regulation term lambda/alpha is 72.41993344754347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25855622878716544
the lambda is 20.0
the regulation term lambda/alpha is 77.35261337085524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2860673087203665
the lambda is 20.0
the regulation term lambda/alpha is 69.91361609777715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3365922061717594
the lambda is 20.0
the regulation term lambda/alpha is 59.41908229982668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2852531129548637
the lambda is 20.0
the regulation term lambda/alpha is 70.11316999427329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31482708603129805
the lambda is 20.0
the regulation term lambda/alpha is 63.526935538232976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2867373448660818
the lambda is 20.0
the regulation term lambda/alpha is 69.75024480798211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2847076383396939
the lambda is 20.0
the regulation term lambda/alpha is 70.24750061723792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.258624080923206
the lambda is 20.0
the regulation term lambda/alpha is 77.33231928212693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2755371597173358
the lambda is 20.0
the regulation term lambda/alpha is 72.58549090263296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26675240492541574
the lambda is 20.0
the regulation term lambda/alpha is 74.97589386529438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.301454828455402
the lambda is 20.0
the regulation term lambda/alpha is 66.344931685043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25797002347618153
the lambda is 20.0
the regulation term lambda/alpha is 77.52838771922896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.256365445812334
the lambda is 20.0
the regulation term lambda/alpha is 78.0136337665432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28486894965315124
the lambda is 20.0
the regulation term lambda/alpha is 70.20772191687252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28418634707897417
the lambda is 20.0
the regulation term lambda/alpha is 70.37635764550676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29790951768811585
the lambda is 20.0
the regulation term lambda/alpha is 67.13447813016225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24538823647407357
the lambda is 20.0
the regulation term lambda/alpha is 81.50349946425852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26230885888736666
the lambda is 20.0
the regulation term lambda/alpha is 76.24599521660777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25449514457361166
the lambda is 20.0
the regulation term lambda/alpha is 78.58696099490842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31903941450016327
the lambda is 20.0
the regulation term lambda/alpha is 62.68817923745834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2924220178247765
the lambda is 20.0
the regulation term lambda/alpha is 68.39430268887718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25156164234448225
the lambda is 20.0
the regulation term lambda/alpha is 79.50337664202597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2696492387562115
the lambda is 20.0
the regulation term lambda/alpha is 74.17043004553742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25193162757611964
the lambda is 20.0
the regulation term lambda/alpha is 79.38661847432046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2697180272718659
the lambda is 20.0
the regulation term lambda/alpha is 74.1515137208116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2787889931243928
the lambda is 20.0
the regulation term lambda/alpha is 71.7388436891273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3249669542553561
the lambda is 20.0
the regulation term lambda/alpha is 61.544719357169406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23580349441073228
the lambda is 20.0
the regulation term lambda/alpha is 84.81638514297491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3042112431480122
the lambda is 20.0
the regulation term lambda/alpha is 65.74378972005685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22502121788467316
the lambda is 20.0
the regulation term lambda/alpha is 88.88050730509471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27498467765322554
the lambda is 20.0
the regulation term lambda/alpha is 72.73132514394626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3082966263590616
the lambda is 20.0
the regulation term lambda/alpha is 64.87258792351086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.268000794617321
the lambda is 20.0
the regulation term lambda/alpha is 74.62664440438712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2557550559275083
the lambda is 20.0
the regulation term lambda/alpha is 78.19982258989569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26334240274549553
the lambda is 20.0
the regulation term lambda/alpha is 75.94675142129992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2914520375554234
the lambda is 20.0
the regulation term lambda/alpha is 68.62192547271775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3172182633120726
the lambda is 20.0
the regulation term lambda/alpha is 63.0480722994326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3090239735586014
the lambda is 20.0
the regulation term lambda/alpha is 64.719897843807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22195779108600272
the lambda is 20.0
the regulation term lambda/alpha is 90.1072221981635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.278449170740286
the lambda is 20.0
the regulation term lambda/alpha is 71.82639455103394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2823264731206978
the lambda is 20.0
the regulation term lambda/alpha is 70.83997394551722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.280027514922508
the lambda is 20.0
the regulation term lambda/alpha is 71.4215530053702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2880618706040256
the lambda is 20.0
the regulation term lambda/alpha is 69.42952900383096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3053095145439244
the lambda is 20.0
the regulation term lambda/alpha is 65.50729357346192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24179011894165856
the lambda is 20.0
the regulation term lambda/alpha is 82.71636610934375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2728273948738875
the lambda is 20.0
the regulation term lambda/alpha is 73.3064214803094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2742404713861737
the lambda is 20.0
the regulation term lambda/alpha is 72.92869611442892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2573647481302338
the lambda is 20.0
the regulation term lambda/alpha is 77.71072046696713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.290375601736071
the lambda is 20.0
the regulation term lambda/alpha is 68.87631013220751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32498351711552087
the lambda is 20.0
the regulation term lambda/alpha is 61.54158271630331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25324016920546916
the lambda is 20.0
the regulation term lambda/alpha is 78.97641224434969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26094258226623895
the lambda is 20.0
the regulation term lambda/alpha is 76.64521377194795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.257595335650434
the lambda is 20.0
the regulation term lambda/alpha is 77.6411573971227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27420257697551464
the lambda is 20.0
the regulation term lambda/alpha is 72.93877475770745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2696957092802107
the lambda is 20.0
the regulation term lambda/alpha is 74.15764994325599
720
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2631764980775789
the lambda is 20.0
the regulation term lambda/alpha is 75.9946277349751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2808350271113042
the lambda is 20.0
the regulation term lambda/alpha is 71.21618768756127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31313926390479596
the lambda is 20.0
the regulation term lambda/alpha is 63.86934602388482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3026666692961823
the lambda is 20.0
the regulation term lambda/alpha is 66.07929458009954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22742861365057124
the lambda is 20.0
the regulation term lambda/alpha is 87.93968216650458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2239209995437146
the lambda is 20.0
the regulation term lambda/alpha is 89.31721473534925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27854572246731596
the lambda is 20.0
the regulation term lambda/alpha is 71.80149751661243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.271335576398845
the lambda is 20.0
the regulation term lambda/alpha is 73.70946436674176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2562502770252052
the lambda is 20.0
the regulation term lambda/alpha is 78.048696111391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27251734786271364
the lambda is 20.0
the regulation term lambda/alpha is 73.38982327860985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2674881286806572
the lambda is 20.0
the regulation term lambda/alpha is 74.76967332586621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23312604931056854
the lambda is 20.0
the regulation term lambda/alpha is 85.79049856996534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2529684608039516
the lambda is 20.0
the regulation term lambda/alpha is 79.0612392408073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30454081338758526
the lambda is 20.0
the regulation term lambda/alpha is 65.6726426173501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2568303542846421
the lambda is 20.0
the regulation term lambda/alpha is 77.87241525911782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.295431343908471
the lambda is 20.0
the regulation term lambda/alpha is 67.69762387228722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3080901596680864
the lambda is 20.0
the regulation term lambda/alpha is 64.91606230314699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2495395768352257
the lambda is 20.0
the regulation term lambda/alpha is 80.14760725993483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28095136189906433
the lambda is 20.0
the regulation term lambda/alpha is 71.18669888201245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2909633546858606
the lambda is 20.0
the regulation term lambda/alpha is 68.73717833502798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26624896413863947
the lambda is 20.0
the regulation term lambda/alpha is 75.11766314172674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2763199549372562
the lambda is 20.0
the regulation term lambda/alpha is 72.37986125374618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.265870472301829
the lambda is 20.0
the regulation term lambda/alpha is 75.22460026059244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2605604646825397
the lambda is 20.0
the regulation term lambda/alpha is 76.7576156435225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24975120896143352
the lambda is 20.0
the regulation term lambda/alpha is 80.07969243940033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29083524214639456
the lambda is 20.0
the regulation term lambda/alpha is 68.76745697116314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22039327209649232
the lambda is 20.0
the regulation term lambda/alpha is 90.74687176132865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.294134150048284
the lambda is 20.0
the regulation term lambda/alpha is 67.99618472291256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3077347053424176
the lambda is 20.0
the regulation term lambda/alpha is 64.99104473038204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25822317156890434
the lambda is 20.0
the regulation term lambda/alpha is 77.45238306262223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2664587681171066
the lambda is 20.0
the regulation term lambda/alpha is 75.05851708813032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2538751787882979
the lambda is 20.0
the regulation term lambda/alpha is 78.77887115808849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2505134082819242
the lambda is 20.0
the regulation term lambda/alpha is 79.83604605104524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2954534814082232
the lambda is 20.0
the regulation term lambda/alpha is 67.69255147941998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28534911394204715
the lambda is 20.0
the regulation term lambda/alpha is 70.0895815785217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25158450459304166
the lambda is 20.0
the regulation term lambda/alpha is 79.49615192856024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2552855246914858
the lambda is 20.0
the regulation term lambda/alpha is 78.34365079716184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2729983793384899
the lambda is 20.0
the regulation term lambda/alpha is 73.26050817027766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2919913411580202
the lambda is 20.0
the regulation term lambda/alpha is 68.49518181149206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2438457955860772
the lambda is 20.0
the regulation term lambda/alpha is 82.01904794761995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2648432374313566
the lambda is 20.0
the regulation term lambda/alpha is 75.51637034033651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30663115308782546
the lambda is 20.0
the regulation term lambda/alpha is 65.22494468874658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2706772315518055
the lambda is 20.0
the regulation term lambda/alpha is 73.88874152930796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2772567375362612
the lambda is 20.0
the regulation term lambda/alpha is 72.13530743282402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24991373306800282
the lambda is 20.0
the regulation term lambda/alpha is 80.0276149472662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24981216884900248
the lambda is 20.0
the regulation term lambda/alpha is 80.0601511613667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2743955456499983
the lambda is 20.0
the regulation term lambda/alpha is 72.88748056249696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25794408732943885
the lambda is 20.0
the regulation term lambda/alpha is 77.53618315916879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29301535989175936
the lambda is 20.0
the regulation term lambda/alpha is 68.25580750233726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2596833247934356
the lambda is 20.0
the regulation term lambda/alpha is 77.01688206552711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24960882028100995
the lambda is 20.0
the regulation term lambda/alpha is 80.12537368464774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25092264128501246
the lambda is 20.0
the regulation term lambda/alpha is 79.70584040394682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2940082372224879
the lambda is 20.0
the regulation term lambda/alpha is 68.02530496744276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2734701356596597
the lambda is 20.0
the regulation term lambda/alpha is 73.13412834551883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24860275634222165
the lambda is 20.0
the regulation term lambda/alpha is 80.4496309464421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2796392918628493
the lambda is 20.0
the regulation term lambda/alpha is 71.52070750418405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25923044891878194
the lambda is 20.0
the regulation term lambda/alpha is 77.15143064179968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25532978195324385
the lambda is 20.0
the regulation term lambda/alpha is 78.33007120047756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25361264506329095
the lambda is 20.0
the regulation term lambda/alpha is 78.86042115529708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2843502865204467
the lambda is 20.0
the regulation term lambda/alpha is 70.33578282876766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25159196812267853
the lambda is 20.0
the regulation term lambda/alpha is 79.49379365818156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30604161903320926
the lambda is 20.0
the regulation term lambda/alpha is 65.35058879632236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25873013015701785
the lambda is 20.0
the regulation term lambda/alpha is 77.30062203370912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32763274408026966
the lambda is 20.0
the regulation term lambda/alpha is 61.04395962053177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25412077990132653
the lambda is 20.0
the regulation term lambda/alpha is 78.7027334315827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25802242944140613
the lambda is 20.0
the regulation term lambda/alpha is 77.51264121998264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.255447672638914
the lambda is 20.0
the regulation term lambda/alpha is 78.29392138667413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2432112958698678
the lambda is 20.0
the regulation term lambda/alpha is 82.23302264176563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28798024760794944
the lambda is 20.0
the regulation term lambda/alpha is 69.4492075971391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26699106837340086
the lambda is 20.0
the regulation term lambda/alpha is 74.90887287670972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3462419394613274
the lambda is 20.0
the regulation term lambda/alpha is 57.763077549517504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26335502568313973
the lambda is 20.0
the regulation term lambda/alpha is 75.94311119797408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2861270262498472
the lambda is 20.0
the regulation term lambda/alpha is 69.89902443726488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2610500310966939
the lambda is 20.0
the regulation term lambda/alpha is 76.6136664147415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24546300423006195
the lambda is 20.0
the regulation term lambda/alpha is 81.4786735896659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.273576990682423
the lambda is 20.0
the regulation term lambda/alpha is 73.10556326433404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3186280266630476
the lambda is 20.0
the regulation term lambda/alpha is 62.76911736063383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2614556404375012
the lambda is 20.0
the regulation term lambda/alpha is 76.49481176437207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2851407317661909
the lambda is 20.0
the regulation term lambda/alpha is 70.1408033714368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23514389769158234
the lambda is 20.0
the regulation term lambda/alpha is 85.05430162696481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2763120333274717
the lambda is 20.0
the regulation term lambda/alpha is 72.38193631725393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2854967795258302
the lambda is 20.0
the regulation term lambda/alpha is 70.05332961449574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28408779882433327
the lambda is 20.0
the regulation term lambda/alpha is 70.40077075737798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2821077364582188
the lambda is 20.0
the regulation term lambda/alpha is 70.89490083148455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25127301079110514
the lambda is 20.0
the regulation term lambda/alpha is 79.59470035015788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27971341642795366
the lambda is 20.0
the regulation term lambda/alpha is 71.50175438635578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.273435471492775
the lambda is 20.0
the regulation term lambda/alpha is 73.14339976014584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32369472521531273
the lambda is 20.0
the regulation term lambda/alpha is 61.78661078488862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26252563259421324
the lambda is 20.0
the regulation term lambda/alpha is 76.18303707095173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2546334958398538
the lambda is 20.0
the regulation term lambda/alpha is 78.54426195593123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.33439177610939613
the lambda is 20.0
the regulation term lambda/alpha is 59.81008334803368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29036900078902567
the lambda is 20.0
the regulation term lambda/alpha is 68.87787589464988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28893079585307924
the lambda is 20.0
the regulation term lambda/alpha is 69.22072789419776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3131923788007791
the lambda is 20.0
the regulation term lambda/alpha is 63.8585142990403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2552361336056066
the lambda is 20.0
the regulation term lambda/alpha is 78.35881118190028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2448133635168366
the lambda is 20.0
the regulation term lambda/alpha is 81.69488671979516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2518092213531255
the lambda is 20.0
the regulation term lambda/alpha is 79.42520886458297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2507154684662448
the lambda is 20.0
the regulation term lambda/alpha is 79.7717034467409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26338818896820143
the lambda is 20.0
the regulation term lambda/alpha is 75.93354917829888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2563835052621058
the lambda is 20.0
the regulation term lambda/alpha is 78.00813854835792
730
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.275624630299635
the lambda is 20.0
the regulation term lambda/alpha is 72.5624556058642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28081608695820964
the lambda is 20.0
the regulation term lambda/alpha is 71.22099099321312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30809659744905693
the lambda is 20.0
the regulation term lambda/alpha is 64.9147058604143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26410672558059956
the lambda is 20.0
the regulation term lambda/alpha is 75.7269621060689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28639494895592627
the lambda is 20.0
the regulation term lambda/alpha is 69.83363384344403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26212188185191093
the lambda is 20.0
the regulation term lambda/alpha is 76.3003830840008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2692741534921004
the lambda is 20.0
the regulation term lambda/alpha is 74.27374569979564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29785632175104815
the lambda is 20.0
the regulation term lambda/alpha is 67.1464680770356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28634804557889226
the lambda is 20.0
the regulation term lambda/alpha is 69.84507248710997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.301872602454539
the lambda is 20.0
the regulation term lambda/alpha is 66.25311418584909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30354158536426
the lambda is 20.0
the regulation term lambda/alpha is 65.88883027674555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30773237635883005
the lambda is 20.0
the regulation term lambda/alpha is 64.99153659632837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2863795305518833
the lambda is 20.0
the regulation term lambda/alpha is 69.83739362047946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26679245175907984
the lambda is 20.0
the regulation term lambda/alpha is 74.96463962204032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2809874755258737
the lambda is 20.0
the regulation term lambda/alpha is 71.17754968462418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30384371495742013
the lambda is 20.0
the regulation term lambda/alpha is 65.8233131555897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30599099828738935
the lambda is 20.0
the regulation term lambda/alpha is 65.36139988410976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.286735423364036
the lambda is 20.0
the regulation term lambda/alpha is 69.75071222577277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3154347951495114
the lambda is 20.0
the regulation term lambda/alpha is 63.404546066391624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2823799893245449
the lambda is 20.0
the regulation term lambda/alpha is 70.82654846697939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25641825578401145
the lambda is 20.0
the regulation term lambda/alpha is 77.99756666641778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.298103648040579
the lambda is 20.0
the regulation term lambda/alpha is 67.09075897413213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2584535677193042
the lambda is 20.0
the regulation term lambda/alpha is 77.38333881976502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.23633166771903427
the lambda is 20.0
the regulation term lambda/alpha is 84.62683055991141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2817436509016488
the lambda is 20.0
the regulation term lambda/alpha is 70.98651535179263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2542740275640351
the lambda is 20.0
the regulation term lambda/alpha is 78.6553003136087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26520617848871636
the lambda is 20.0
the regulation term lambda/alpha is 75.41302436455466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2443042192300148
the lambda is 20.0
the regulation term lambda/alpha is 81.86514364358892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28528727225881406
the lambda is 20.0
the regulation term lambda/alpha is 70.10477488759435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2908569525890584
the lambda is 20.0
the regulation term lambda/alpha is 68.76232396018155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2533987859877589
the lambda is 20.0
the regulation term lambda/alpha is 78.92697639429952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2594500697993607
the lambda is 20.0
the regulation term lambda/alpha is 77.08612302731892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28297028310939726
the lambda is 20.0
the regulation term lambda/alpha is 70.67879983803081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24629736666976704
the lambda is 20.0
the regulation term lambda/alpha is 81.20265462202767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2768805627276787
the lambda is 20.0
the regulation term lambda/alpha is 72.23331173185555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2657295603779725
the lambda is 20.0
the regulation term lambda/alpha is 75.26449060297278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2865477227354803
the lambda is 20.0
the regulation term lambda/alpha is 69.79640183168556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3186238346983744
the lambda is 20.0
the regulation term lambda/alpha is 62.7699431805942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30497287684072955
the lambda is 20.0
the regulation term lambda/alpha is 65.57960238032871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2725940090320335
the lambda is 20.0
the regulation term lambda/alpha is 73.36918397810322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26756455306745774
the lambda is 20.0
the regulation term lambda/alpha is 74.7483168854495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3151689186391112
the lambda is 20.0
the regulation term lambda/alpha is 63.458034143593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29314596685320227
the lambda is 20.0
the regulation term lambda/alpha is 68.22539711083705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27954155186381935
the lambda is 20.0
the regulation term lambda/alpha is 71.54571428344629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2780760542627769
the lambda is 20.0
the regulation term lambda/alpha is 71.9227696646629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30378050783469357
the lambda is 20.0
the regulation term lambda/alpha is 65.83700890671787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27971741057587957
the lambda is 20.0
the regulation term lambda/alpha is 71.50073339669558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2963569229100809
the lambda is 20.0
the regulation term lambda/alpha is 67.48619132500676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2995576674590375
the lambda is 20.0
the regulation term lambda/alpha is 66.7651079327985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25179911302078484
the lambda is 20.0
the regulation term lambda/alpha is 79.42839734446997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23736197743659732
the lambda is 20.0
the regulation term lambda/alpha is 84.25949352120762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.255633081220393
the lambda is 20.0
the regulation term lambda/alpha is 78.23713544631995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.296859162656805
the lambda is 20.0
the regulation term lambda/alpha is 67.37201513675944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2794686949014715
the lambda is 20.0
the regulation term lambda/alpha is 71.564366116395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25998798252429756
the lambda is 20.0
the regulation term lambda/alpha is 76.9266325536061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2811995448592807
the lambda is 20.0
the regulation term lambda/alpha is 71.12387045295006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26118314070835175
the lambda is 20.0
the regulation term lambda/alpha is 76.57462095661394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2687269232663032
the lambda is 20.0
the regulation term lambda/alpha is 74.42499529598821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33182207341986303
the lambda is 20.0
the regulation term lambda/alpha is 60.27326571096879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2592363141304666
the lambda is 20.0
the regulation term lambda/alpha is 77.14968509363446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 0.24343065587142612
the lambda is 20.0
the regulation term lambda/alpha is 82.15892089845697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2753319204698929
the lambda is 20.0
the regulation term lambda/alpha is 72.6395979291728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25254286492734385
the lambda is 20.0
the regulation term lambda/alpha is 79.19447657233938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24176451444259164
the lambda is 20.0
the regulation term lambda/alpha is 82.72512633258721
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2839242333733738
the lambda is 20.0
the regulation term lambda/alpha is 70.44132782318391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29616741472259084
the lambda is 20.0
the regulation term lambda/alpha is 67.52937361030506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2799869608922988
the lambda is 20.0
the regulation term lambda/alpha is 71.43189788646373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2377391497525895
the lambda is 20.0
the regulation term lambda/alpha is 84.12581613425307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29621083576177315
the lambda is 20.0
the regulation term lambda/alpha is 67.51947459506495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2450996520499891
the lambda is 20.0
the regulation term lambda/alpha is 81.59946304583458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2588201329543638
the lambda is 20.0
the regulation term lambda/alpha is 77.27374131102266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2618623068223482
the lambda is 20.0
the regulation term lambda/alpha is 76.37601700945963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30884891811853127
the lambda is 20.0
the regulation term lambda/alpha is 64.75658105535057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26613977212336504
the lambda is 20.0
the regulation term lambda/alpha is 75.14848247006579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2406566594882578
the lambda is 20.0
the regulation term lambda/alpha is 83.10594870937219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24523821592070977
the lambda is 20.0
the regulation term lambda/alpha is 81.55335792552978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29133041180053576
the lambda is 20.0
the regulation term lambda/alpha is 68.65057402140816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26301747280386617
the lambda is 20.0
the regulation term lambda/alpha is 76.04057550546891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2540775139936388
the lambda is 20.0
the regulation term lambda/alpha is 78.7161354251157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27560586416368676
the lambda is 20.0
the regulation term lambda/alpha is 72.56739641839289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26988181547323425
the lambda is 20.0
the regulation term lambda/alpha is 74.10651201130487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26215882523828615
the lambda is 20.0
the regulation term lambda/alpha is 76.28963084428395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2914814537400187
the lambda is 20.0
the regulation term lambda/alpha is 68.61500017712487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3428653149153181
the lambda is 20.0
the regulation term lambda/alpha is 58.331942981574734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2476057513709136
the lambda is 20.0
the regulation term lambda/alpha is 80.7735680179738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26498041889197826
the lambda is 20.0
the regulation term lambda/alpha is 75.477275202562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2642700005770209
the lambda is 20.0
the regulation term lambda/alpha is 75.6801754127633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26113837427263553
the lambda is 20.0
the regulation term lambda/alpha is 76.5877479926388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24971723645134922
the lambda is 20.0
the regulation term lambda/alpha is 80.09058679414174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3183652495579675
the lambda is 20.0
the regulation term lambda/alpha is 62.82092668018539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2560318789645619
the lambda is 20.0
the regulation term lambda/alpha is 78.11527252341985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26109817297992893
the lambda is 20.0
the regulation term lambda/alpha is 76.5995402102543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.299654194505361
the lambda is 20.0
the regulation term lambda/alpha is 66.74360101320786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2462026185376895
the lambda is 20.0
the regulation term lambda/alpha is 81.23390449211789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24827121785934853
the lambda is 20.0
the regulation term lambda/alpha is 80.55706244342214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23462243185355547
the lambda is 20.0
the regulation term lambda/alpha is 85.24334115027595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24872931508485177
the lambda is 20.0
the regulation term lambda/alpha is 80.40869647060774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3110304736264696
the lambda is 20.0
the regulation term lambda/alpha is 64.30238094296476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26722215589319387
the lambda is 20.0
the regulation term lambda/alpha is 74.84409342163158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26762141665214734
the lambda is 20.0
the regulation term lambda/alpha is 74.73243453454951
740
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25910254240121916
the lambda is 20.0
the regulation term lambda/alpha is 77.18951660856375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27353527946131667
the lambda is 20.0
the regulation term lambda/alpha is 73.11671108526386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32841635319987283
the lambda is 20.0
the regulation term lambda/alpha is 60.89830730148837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3030454400658822
the lambda is 20.0
the regulation term lambda/alpha is 65.99670331832742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24050997524548579
the lambda is 20.0
the regulation term lambda/alpha is 83.15663406304137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27357340222573856
the lambda is 20.0
the regulation term lambda/alpha is 73.10652218850223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29305445253430973
the lambda is 20.0
the regulation term lambda/alpha is 68.24670236893424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26396191328924906
the lambda is 20.0
the regulation term lambda/alpha is 75.76850671666419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.34653843934493916
the lambda is 20.0
the regulation term lambda/alpha is 57.71365519451739
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3036651115032278
the lambda is 20.0
the regulation term lambda/alpha is 65.86202774824665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25646455248553035
the lambda is 20.0
the regulation term lambda/alpha is 77.98348663068512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2698244545444831
the lambda is 20.0
the regulation term lambda/alpha is 74.12226602575346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27432208397569036
the lambda is 20.0
the regulation term lambda/alpha is 72.90699935690319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25292190501345974
the lambda is 20.0
the regulation term lambda/alpha is 79.07579218547978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25241445767840087
the lambda is 20.0
the regulation term lambda/alpha is 79.23476406205634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24752541157313365
the lambda is 20.0
the regulation term lambda/alpha is 80.79978484993173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2593006019680445
the lambda is 20.0
the regulation term lambda/alpha is 77.13055753902471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2671356779694571
the lambda is 20.0
the regulation term lambda/alpha is 74.86832216506362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2623207670245854
the lambda is 20.0
the regulation term lambda/alpha is 76.2425340046583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2924863188982587
the lambda is 20.0
the regulation term lambda/alpha is 68.3792666793314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2611008359381215
the lambda is 20.0
the regulation term lambda/alpha is 76.59875897425245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3009452222057602
the lambda is 20.0
the regulation term lambda/alpha is 66.45727702008752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26527491294187505
the lambda is 20.0
the regulation term lambda/alpha is 75.39348436006175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2913512817246035
the lambda is 20.0
the regulation term lambda/alpha is 68.6456564790567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2359570258863318
the lambda is 20.0
the regulation term lambda/alpha is 84.7611971920457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2733685038601133
the lambda is 20.0
the regulation term lambda/alpha is 73.16131784601745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25476090136121105
the lambda is 20.0
the regulation term lambda/alpha is 78.50498209551839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22223894866117333
the lambda is 20.0
the regulation term lambda/alpha is 89.9932263020741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2541495919535277
the lambda is 20.0
the regulation term lambda/alpha is 78.6938111773836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25875950576323037
the lambda is 20.0
the regulation term lambda/alpha is 77.2918465005122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2943401866528266
the lambda is 20.0
the regulation term lambda/alpha is 67.94858774615763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2504551892737846
the lambda is 20.0
the regulation term lambda/alpha is 79.85460416289095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31894721414505184
the lambda is 20.0
the regulation term lambda/alpha is 62.706300958328285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28747142515373025
the lambda is 20.0
the regulation term lambda/alpha is 69.57213221907067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27251039084458983
the lambda is 20.0
the regulation term lambda/alpha is 73.39169687443521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33807672916682985
the lambda is 20.0
the regulation term lambda/alpha is 59.15816817468869
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2556913023116134
the lambda is 20.0
the regulation term lambda/alpha is 78.21932079498664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23344760800460163
the lambda is 20.0
the regulation term lambda/alpha is 85.67232781243905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29714404439344133
the lambda is 20.0
the regulation term lambda/alpha is 67.30742337719035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2666633332979019
the lambda is 20.0
the regulation term lambda/alpha is 75.00093752168422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26188357311123417
the lambda is 20.0
the regulation term lambda/alpha is 76.36981488527753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2698372761707195
the lambda is 20.0
the regulation term lambda/alpha is 74.11874402166173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2726265808563965
the lambda is 20.0
the regulation term lambda/alpha is 73.36041825846326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2787321557073281
the lambda is 20.0
the regulation term lambda/alpha is 71.75347225097424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30510292710532444
the lambda is 20.0
the regulation term lambda/alpha is 65.55164904431025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25737958365612823
the lambda is 20.0
the regulation term lambda/alpha is 77.70624117070989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28962818263552803
the lambda is 20.0
the regulation term lambda/alpha is 69.05405343501488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2807950200175717
the lambda is 20.0
the regulation term lambda/alpha is 71.22633442269893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2991461064784219
the lambda is 20.0
the regulation term lambda/alpha is 66.85696242361973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23981591375113304
the lambda is 20.0
the regulation term lambda/alpha is 83.39730123479141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2598479734703366
the lambda is 20.0
the regulation term lambda/alpha is 76.96808150125186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27360225392343696
the lambda is 20.0
the regulation term lambda/alpha is 73.09881301488352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23107906083726595
the lambda is 20.0
the regulation term lambda/alpha is 86.5504642763141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2998315753710267
the lambda is 20.0
the regulation term lambda/alpha is 66.70411538628308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26762825488889985
the lambda is 20.0
the regulation term lambda/alpha is 74.7305250273465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2884979264874244
the lambda is 20.0
the regulation term lambda/alpha is 69.32458837229044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32662650769762225
the lambda is 20.0
the regulation term lambda/alpha is 61.23201739191113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2724542340139225
the lambda is 20.0
the regulation term lambda/alpha is 73.40682398416313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.339389609156507
the lambda is 20.0
the regulation term lambda/alpha is 58.92932329220824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2567298021055118
the lambda is 20.0
the regulation term lambda/alpha is 77.90291518933329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25020668900621645
the lambda is 20.0
the regulation term lambda/alpha is 79.93391415488135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2767238359426096
the lambda is 20.0
the regulation term lambda/alpha is 72.27422217487563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25751099142958384
the lambda is 20.0
the regulation term lambda/alpha is 77.66658770163208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3067429406350767
the lambda is 20.0
the regulation term lambda/alpha is 65.20117450329013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26134050912114964
the lambda is 20.0
the regulation term lambda/alpha is 76.52851089659659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30152682157543725
the lambda is 20.0
the regulation term lambda/alpha is 66.32909104239111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25758849757581415
the lambda is 20.0
the regulation term lambda/alpha is 77.64321849858045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.261149792733255
the lambda is 20.0
the regulation term lambda/alpha is 76.5843992854649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2796351122045233
the lambda is 20.0
the regulation term lambda/alpha is 71.52177651200014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2776419039098295
the lambda is 20.0
the regulation term lambda/alpha is 72.03523574199178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2695442594313154
the lambda is 20.0
the regulation term lambda/alpha is 74.19931718151227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31301742444336755
the lambda is 20.0
the regulation term lambda/alpha is 63.89420664221996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27752702105952765
the lambda is 20.0
the regulation term lambda/alpha is 72.06505486797315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24302133785005536
the lambda is 20.0
the regulation term lambda/alpha is 82.29730021624701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31055643106337555
the lambda is 20.0
the regulation term lambda/alpha is 64.40053400767792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28270755073777054
the lambda is 20.0
the regulation term lambda/alpha is 70.74448470798464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27804288044989056
the lambda is 20.0
the regulation term lambda/alpha is 71.931350904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31147262207373966
the lambda is 20.0
the regulation term lambda/alpha is 64.21110101697829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.250327510244731
the lambda is 20.0
the regulation term lambda/alpha is 79.89533383864656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2589877673855254
the lambda is 20.0
the regulation term lambda/alpha is 77.2237245098464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27912911479721186
the lambda is 20.0
the regulation term lambda/alpha is 71.65142917653023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2882457990648904
the lambda is 20.0
the regulation term lambda/alpha is 69.38522630644675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3179035060867769
the lambda is 20.0
the regulation term lambda/alpha is 62.91217182908538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2713389140277518
the lambda is 20.0
the regulation term lambda/alpha is 73.70855769679412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3228742544399561
the lambda is 20.0
the regulation term lambda/alpha is 61.94361961343479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2993847975110342
the lambda is 20.0
the regulation term lambda/alpha is 66.8036592581588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3095134968533325
the lambda is 20.0
the regulation term lambda/alpha is 64.61753753335445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3109184220894077
the lambda is 20.0
the regulation term lambda/alpha is 64.32555480501185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26850435666868866
the lambda is 20.0
the regulation term lambda/alpha is 74.48668709937651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2715853982845715
the lambda is 20.0
the regulation term lambda/alpha is 73.64166161482541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2661474181578149
the lambda is 20.0
the regulation term lambda/alpha is 75.14632356170665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28518314501325825
the lambda is 20.0
the regulation term lambda/alpha is 70.13037183200359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31938529484633665
the lambda is 20.0
the regulation term lambda/alpha is 62.62029067312709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30311452745704154
the lambda is 20.0
the regulation term lambda/alpha is 65.98166101700444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2741697848715648
the lambda is 20.0
the regulation term lambda/alpha is 72.94749860700014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22131422119937624
the lambda is 20.0
the regulation term lambda/alpha is 90.36924916805287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31284302666975417
the lambda is 20.0
the regulation term lambda/alpha is 63.929825167918985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2724651986705756
the lambda is 20.0
the regulation term lambda/alpha is 73.40386991654309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2465000958642043
the lambda is 20.0
the regulation term lambda/alpha is 81.13587108305995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26275854315429853
the lambda is 20.0
the regulation term lambda/alpha is 76.11550802462583
750
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.279251507420033
the lambda is 20.0
the regulation term lambda/alpha is 71.62002520515395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27139888719234195
the lambda is 20.0
the regulation term lambda/alpha is 73.69226973221112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29146506480215695
the lambda is 20.0
the regulation term lambda/alpha is 68.6188583649837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2581878352622533
the lambda is 20.0
the regulation term lambda/alpha is 77.46298341161223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30815922976859655
the lambda is 20.0
the regulation term lambda/alpha is 64.90151216635125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3040869144111906
the lambda is 20.0
the regulation term lambda/alpha is 65.77066967424885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3162482901105927
the lambda is 20.0
the regulation term lambda/alpha is 63.24144865101392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32126596611030644
the lambda is 20.0
the regulation term lambda/alpha is 62.25371533171682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27319290877059665
the lambda is 20.0
the regulation term lambda/alpha is 73.2083423760982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3065035082064006
the lambda is 20.0
the regulation term lambda/alpha is 65.25210793519507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27765170042620085
the lambda is 20.0
the regulation term lambda/alpha is 72.03269408867155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2627970756856263
the lambda is 20.0
the regulation term lambda/alpha is 76.10434761429843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29173282214342977
the lambda is 20.0
the regulation term lambda/alpha is 68.55587881080808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28254202262654726
the lambda is 20.0
the regulation term lambda/alpha is 70.7859305815022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26778460432962126
the lambda is 20.0
the regulation term lambda/alpha is 74.686892661617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29767351797031
the lambda is 20.0
the regulation term lambda/alpha is 67.18770328099795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28530094069329515
the lambda is 20.0
the regulation term lambda/alpha is 70.10141624979934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.281649201346119
the lambda is 20.0
the regulation term lambda/alpha is 71.01032030061388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3211110567047339
the lambda is 20.0
the regulation term lambda/alpha is 62.28374757705799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31608842707389506
the lambda is 20.0
the regulation term lambda/alpha is 63.27343327670901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2985968767842503
the lambda is 20.0
the regulation term lambda/alpha is 66.9799370153858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29079965900686783
the lambda is 20.0
the regulation term lambda/alpha is 68.77587156843144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28169452450394206
the lambda is 20.0
the regulation term lambda/alpha is 70.9988951159756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3013719076689424
the lambda is 20.0
the regulation term lambda/alpha is 66.363186120088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3223572307392506
the lambda is 20.0
the regulation term lambda/alpha is 62.042970012289466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30011596976912996
the lambda is 20.0
the regulation term lambda/alpha is 66.64090556522329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2683830790389033
the lambda is 20.0
the regulation term lambda/alpha is 74.52034633338755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2703068280770624
the lambda is 20.0
the regulation term lambda/alpha is 73.98999182624478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2757987247432263
the lambda is 20.0
the regulation term lambda/alpha is 72.5166514769797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26932947543505437
the lambda is 20.0
the regulation term lambda/alpha is 74.25848941224692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25818574206061845
the lambda is 20.0
the regulation term lambda/alpha is 77.46361143096847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2741294575496923
the lambda is 20.0
the regulation term lambda/alpha is 72.95822995007582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26942096005467325
the lambda is 20.0
the regulation term lambda/alpha is 74.23327418899193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26465136228851466
the lambda is 20.0
the regulation term lambda/alpha is 75.57112053780635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2520977472640501
the lambda is 20.0
the regulation term lambda/alpha is 79.33430670069323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26242008885141926
the lambda is 20.0
the regulation term lambda/alpha is 76.21367741904807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2709563346955982
the lambda is 20.0
the regulation term lambda/alpha is 73.81263118453641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26750129174338955
the lambda is 20.0
the regulation term lambda/alpha is 74.76599409914527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2731188999978959
the lambda is 20.0
the regulation term lambda/alpha is 73.22818010820225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2919509413061715
the lambda is 20.0
the regulation term lambda/alpha is 68.50466009981392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30615957993780923
the lambda is 20.0
the regulation term lambda/alpha is 65.32540972280742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30122086346596133
the lambda is 20.0
the regulation term lambda/alpha is 66.39646327904524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2893335907438753
the lambda is 20.0
the regulation term lambda/alpha is 69.1243624654161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2654296710940814
the lambda is 20.0
the regulation term lambda/alpha is 75.3495263644094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2431346115745521
the lambda is 20.0
the regulation term lambda/alpha is 82.25895881495022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29749220596301185
the lambda is 20.0
the regulation term lambda/alpha is 67.22865204235524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2724624872989766
the lambda is 20.0
the regulation term lambda/alpha is 73.40460038468981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29530554297276057
the lambda is 20.0
the regulation term lambda/alpha is 67.72646323758586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2827905797774042
the lambda is 20.0
the regulation term lambda/alpha is 70.72371369563584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2472115397150197
the lambda is 20.0
the regulation term lambda/alpha is 80.90237220744461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24599640485950214
the lambda is 20.0
the regulation term lambda/alpha is 81.30200118746758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26722720586843135
the lambda is 20.0
the regulation term lambda/alpha is 74.8426790416203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2678234354502033
the lambda is 20.0
the regulation term lambda/alpha is 74.67606397618113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25758223937526076
the lambda is 20.0
the regulation term lambda/alpha is 77.64510491293167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2737867023022904
the lambda is 20.0
the regulation term lambda/alpha is 73.04956680444552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28686478084464806
the lambda is 20.0
the regulation term lambda/alpha is 69.719259161448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2903924629639349
the lambda is 20.0
the regulation term lambda/alpha is 68.87231092662307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.271876951634826
the lambda is 20.0
the regulation term lambda/alpha is 73.56269032640613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2578132191996053
the lambda is 20.0
the regulation term lambda/alpha is 77.57554116926607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30626641455626596
the lambda is 20.0
the regulation term lambda/alpha is 65.30262232304185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2904851047526118
the lambda is 20.0
the regulation term lambda/alpha is 68.8503461030567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2926628947647439
the lambda is 20.0
the regulation term lambda/alpha is 68.33801058407809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.267153179228217
the lambda is 20.0
the regulation term lambda/alpha is 74.86341752614852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24882320544434744
the lambda is 20.0
the regulation term lambda/alpha is 80.37835524337082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25232446494566807
the lambda is 20.0
the regulation term lambda/alpha is 79.26302352134785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2560378020415788
the lambda is 20.0
the regulation term lambda/alpha is 78.11346543567085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.252582597150267
the lambda is 20.0
the regulation term lambda/alpha is 79.18201897378368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2606655289894457
the lambda is 20.0
the regulation term lambda/alpha is 76.72667758386186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24974728472831567
the lambda is 20.0
the regulation term lambda/alpha is 80.08095071686861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29071512398700855
the lambda is 20.0
the regulation term lambda/alpha is 68.79587042363079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33967788197639326
the lambda is 20.0
the regulation term lambda/alpha is 58.87931202241172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2513381434821773
the lambda is 20.0
the regulation term lambda/alpha is 79.5740738867128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27853425386414493
the lambda is 20.0
the regulation term lambda/alpha is 71.80445393174155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27998718474136264
the lambda is 20.0
the regulation term lambda/alpha is 71.43184077683749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2671113657814374
the lambda is 20.0
the regulation term lambda/alpha is 74.87513659888552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2974851891398106
the lambda is 20.0
the regulation term lambda/alpha is 67.23023777362073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24093833283321406
the lambda is 20.0
the regulation term lambda/alpha is 83.0087921868568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25540392614746554
the lambda is 20.0
the regulation term lambda/alpha is 78.30733184756278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2697316080247379
the lambda is 20.0
the regulation term lambda/alpha is 74.14778025631219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26598543034898053
the lambda is 20.0
the regulation term lambda/alpha is 75.19208843040548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3004427070796079
the lambda is 20.0
the regulation term lambda/alpha is 66.56843227917204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2785528733221228
the lambda is 20.0
the regulation term lambda/alpha is 71.79965426840776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3197044688191896
the lambda is 20.0
the regulation term lambda/alpha is 62.55777429032778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24362412252048524
the lambda is 20.0
the regulation term lambda/alpha is 82.09367690310836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2892212444889165
the lambda is 20.0
the regulation term lambda/alpha is 69.15121340875925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24276790029168807
the lambda is 20.0
the regulation term lambda/alpha is 82.38321448581051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2916596672920652
the lambda is 20.0
the regulation term lambda/alpha is 68.57307417817285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2507003292041378
the lambda is 20.0
the regulation term lambda/alpha is 79.77652069102228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30369738770806953
the lambda is 20.0
the regulation term lambda/alpha is 65.85502809535224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2943839043982189
the lambda is 20.0
the regulation term lambda/alpha is 67.93849698027515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2889591240639137
the lambda is 20.0
the regulation term lambda/alpha is 69.2139418154392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2771668385582474
the lambda is 20.0
the regulation term lambda/alpha is 72.15870449738864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3065260299742006
the lambda is 20.0
the regulation term lambda/alpha is 65.24731358600555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2778566942428137
the lambda is 20.0
the regulation term lambda/alpha is 71.97955066190481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31937216868140234
the lambda is 20.0
the regulation term lambda/alpha is 62.62286436095657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25762856253437605
the lambda is 20.0
the regulation term lambda/alpha is 77.63114385786066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2509261995048833
the lambda is 20.0
the regulation term lambda/alpha is 79.70471014769734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2955570153537777
the lambda is 20.0
the regulation term lambda/alpha is 67.66883870464139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30038768305033475
the lambda is 20.0
the regulation term lambda/alpha is 66.58062606597848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3220173188546808
the lambda is 20.0
the regulation term lambda/alpha is 62.10846072234255
760
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3056812431160183
the lambda is 20.0
the regulation term lambda/alpha is 65.42763237981598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3305951137150337
the lambda is 20.0
the regulation term lambda/alpha is 60.49696190379751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25508981648293305
the lambda is 20.0
the regulation term lambda/alpha is 78.40375705996917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2699973466214457
the lambda is 20.0
the regulation term lambda/alpha is 74.07480203144861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32210315032587183
the lambda is 20.0
the regulation term lambda/alpha is 62.09191055649718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31103816595394373
the lambda is 20.0
the regulation term lambda/alpha is 64.30079067197643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2783707025393176
the lambda is 20.0
the regulation term lambda/alpha is 71.84664125052873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2617790518035701
the lambda is 20.0
the regulation term lambda/alpha is 76.40030729046764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28992471345223364
the lambda is 20.0
the regulation term lambda/alpha is 68.98342594480165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2852469297412776
the lambda is 20.0
the regulation term lambda/alpha is 70.1146898167852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2833147751366798
the lambda is 20.0
the regulation term lambda/alpha is 70.59285909233425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.325438294045519
the lambda is 20.0
the regulation term lambda/alpha is 61.45558272009195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28869703917921996
the lambda is 20.0
the regulation term lambda/alpha is 69.27677560137435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2797205354350105
the lambda is 20.0
the regulation term lambda/alpha is 71.49993463617812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2593342726107736
the lambda is 20.0
the regulation term lambda/alpha is 77.12054329979499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2380609378155953
the lambda is 20.0
the regulation term lambda/alpha is 84.0121028822134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26748098050552294
the lambda is 20.0
the regulation term lambda/alpha is 74.77167147436504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24372955043291955
the lambda is 20.0
the regulation term lambda/alpha is 82.0581663752935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2430527410086445
the lambda is 20.0
the regulation term lambda/alpha is 82.28666715298912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2923601378692974
the lambda is 20.0
the regulation term lambda/alpha is 68.4087787950805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.299848826483907
the lambda is 20.0
the regulation term lambda/alpha is 66.70027771835689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29557879066272297
the lambda is 20.0
the regulation term lambda/alpha is 67.66385353684413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21975544271172312
the lambda is 20.0
the regulation term lambda/alpha is 91.01026010189042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2647539778076855
the lambda is 20.0
the regulation term lambda/alpha is 75.54183006280566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.33207334819546364
the lambda is 20.0
the regulation term lambda/alpha is 60.22765786138213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28757471653786976
the lambda is 20.0
the regulation term lambda/alpha is 69.54714322865817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2618414615136038
the lambda is 20.0
the regulation term lambda/alpha is 76.38209733625746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2871312176402351
the lambda is 20.0
the regulation term lambda/alpha is 69.65456478180394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2673741873392716
the lambda is 20.0
the regulation term lambda/alpha is 74.80153637502023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2922221037601129
the lambda is 20.0
the regulation term lambda/alpha is 68.44109238368272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3188793386261446
the lambda is 20.0
the regulation term lambda/alpha is 62.71964839794177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26519417628187436
the lambda is 20.0
the regulation term lambda/alpha is 75.41643742109193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28086428083858067
the lambda is 20.0
the regulation term lambda/alpha is 71.20877008740912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3342811580099176
the lambda is 20.0
the regulation term lambda/alpha is 59.829875303371516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.265877405825948
the lambda is 20.0
the regulation term lambda/alpha is 75.2226385610692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33088147969081566
the lambda is 20.0
the regulation term lambda/alpha is 60.44460396722272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2976208290465145
the lambda is 20.0
the regulation term lambda/alpha is 67.19959777033698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29950495897557555
the lambda is 20.0
the regulation term lambda/alpha is 66.77685761333584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23004557005215517
the lambda is 20.0
the regulation term lambda/alpha is 86.93929639882074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30597050478277754
the lambda is 20.0
the regulation term lambda/alpha is 65.36577770526905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26109594445549666
the lambda is 20.0
the regulation term lambda/alpha is 76.60019400802668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31711994098101237
the lambda is 20.0
the regulation term lambda/alpha is 63.0676202137585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26902064473048554
the lambda is 20.0
the regulation term lambda/alpha is 74.34373677914836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2523600106648505
the lambda is 20.0
the regulation term lambda/alpha is 79.25185906954657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2764590126691193
the lambda is 20.0
the regulation term lambda/alpha is 72.34345448501276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2475778038636758
the lambda is 20.0
the regulation term lambda/alpha is 80.78268604003222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2848797114701925
the lambda is 20.0
the regulation term lambda/alpha is 70.20506970041859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2618356951255882
the lambda is 20.0
the regulation term lambda/alpha is 76.38377949349916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26693243526519606
the lambda is 20.0
the regulation term lambda/alpha is 74.92532700318003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29912517794758137
the lambda is 20.0
the regulation term lambda/alpha is 66.86164012413825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23862547375765097
the lambda is 20.0
the regulation term lambda/alpha is 83.81334852921898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2540484765669876
the lambda is 20.0
the regulation term lambda/alpha is 78.72513258203456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26262806557783924
the lambda is 20.0
the regulation term lambda/alpha is 76.15332335481976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3214605729524585
the lambda is 20.0
the regulation term lambda/alpha is 62.21602797602754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2826106859348411
the lambda is 20.0
the regulation term lambda/alpha is 70.76873237769647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.264913921206605
the lambda is 20.0
the regulation term lambda/alpha is 75.49622122124002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.22891760791881888
the lambda is 20.0
the regulation term lambda/alpha is 87.36767862388552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2592706141574616
the lambda is 20.0
the regulation term lambda/alpha is 77.13947862928073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3017364894033176
the lambda is 20.0
the regulation term lambda/alpha is 66.28300090436493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2944456257453846
the lambda is 20.0
the regulation term lambda/alpha is 67.92425579211886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24378175209418548
the lambda is 20.0
the regulation term lambda/alpha is 82.04059503302351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2762918252932542
the lambda is 20.0
the regulation term lambda/alpha is 72.38723034520525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29777453744299054
the lambda is 20.0
the regulation term lambda/alpha is 67.16490997430913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31995020225157034
the lambda is 20.0
the regulation term lambda/alpha is 62.50972763653516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2968717717825568
the lambda is 20.0
the regulation term lambda/alpha is 67.36915362451154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27336816938025793
the lambda is 20.0
the regulation term lambda/alpha is 73.16140736260992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27561937699626254
the lambda is 20.0
the regulation term lambda/alpha is 72.56383864575386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2646377115484784
the lambda is 20.0
the regulation term lambda/alpha is 75.57501870377322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24232846902627564
the lambda is 20.0
the regulation term lambda/alpha is 82.53260576590117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2689917993704195
the lambda is 20.0
the regulation term lambda/alpha is 74.35170903652225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.273101041599237
the lambda is 20.0
the regulation term lambda/alpha is 73.23296858511827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28654368143032144
the lambda is 20.0
the regulation term lambda/alpha is 69.7973862140924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24376568351830316
the lambda is 20.0
the regulation term lambda/alpha is 82.04600299491416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24119142746817257
the lambda is 20.0
the regulation term lambda/alpha is 82.92168676948182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23327319449807948
the lambda is 20.0
the regulation term lambda/alpha is 85.73638322668342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31429146455895735
the lambda is 20.0
the regulation term lambda/alpha is 63.63519934614145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2945708693684506
the lambda is 20.0
the regulation term lambda/alpha is 67.89537622263629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27174559664009834
the lambda is 20.0
the regulation term lambda/alpha is 73.59824868289635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2656630544578357
the lambda is 20.0
the regulation term lambda/alpha is 75.283332267695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3145297090847973
the lambda is 20.0
the regulation term lambda/alpha is 63.586998055589056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3265840994379342
the lambda is 20.0
the regulation term lambda/alpha is 61.239968615804905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2353168258152097
the lambda is 20.0
the regulation term lambda/alpha is 84.99179746587971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3449511075606547
the lambda is 20.0
the regulation term lambda/alpha is 57.97923114794837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23937957235273258
the lambda is 20.0
the regulation term lambda/alpha is 83.54931794484716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2589519820965236
the lambda is 20.0
the regulation term lambda/alpha is 77.23439626944064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2405611285678695
the lambda is 20.0
the regulation term lambda/alpha is 83.13895149671865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2760296288989885
the lambda is 20.0
the regulation term lambda/alpha is 72.45598988693669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24643868186399714
the lambda is 20.0
the regulation term lambda/alpha is 81.15609062962551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31753460609726675
the lambda is 20.0
the regulation term lambda/alpha is 62.98526086908974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2378029105469458
the lambda is 20.0
the regulation term lambda/alpha is 84.1032599390818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29758095365956605
the lambda is 20.0
the regulation term lambda/alpha is 67.20860241237109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3023228837900355
the lambda is 20.0
the regulation term lambda/alpha is 66.15443643984979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27308205212839237
the lambda is 20.0
the regulation term lambda/alpha is 73.23806103008481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26807038146410855
the lambda is 20.0
the regulation term lambda/alpha is 74.60727250346291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28892180862464345
the lambda is 20.0
the regulation term lambda/alpha is 69.22288108054613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25440707958837266
the lambda is 20.0
the regulation term lambda/alpha is 78.61416448142772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.257944207380478
the lambda is 20.0
the regulation term lambda/alpha is 77.53614707268538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2951819745391206
the lambda is 20.0
the regulation term lambda/alpha is 67.75481474174295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.285689694078809
the lambda is 20.0
the regulation term lambda/alpha is 70.0060254693083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3280229025573505
the lambda is 20.0
the regulation term lambda/alpha is 60.97135243934152
770
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23284046631297045
the lambda is 20.0
the regulation term lambda/alpha is 85.89572215130843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30936672896151163
the lambda is 20.0
the regulation term lambda/alpha is 64.6481929945615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25287352851087025
the lambda is 20.0
the regulation term lambda/alpha is 79.09091994633302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33524547011686057
the lambda is 20.0
the regulation term lambda/alpha is 59.657778501908936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2978222019547965
the lambda is 20.0
the regulation term lambda/alpha is 67.15416066608628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31930150970045124
the lambda is 20.0
the regulation term lambda/alpha is 62.63672232167882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2945981690778293
the lambda is 20.0
the regulation term lambda/alpha is 67.88908452012897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27193449990415836
the lambda is 20.0
the regulation term lambda/alpha is 73.54712258668495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28102324771760334
the lambda is 20.0
the regulation term lambda/alpha is 71.16848930625748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.258349936484691
the lambda is 20.0
the regulation term lambda/alpha is 77.41437939616112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2802846436248202
the lambda is 20.0
the regulation term lambda/alpha is 71.3560320014226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3205974361448772
the lambda is 20.0
the regulation term lambda/alpha is 62.38353069973414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2587230774465777
the lambda is 20.0
the regulation term lambda/alpha is 77.30272922456903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32094238673466496
the lambda is 20.0
the regulation term lambda/alpha is 62.31648054806406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2340244580038674
the lambda is 20.0
the regulation term lambda/alpha is 85.46115295209651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30706586864804847
the lambda is 20.0
the regulation term lambda/alpha is 65.1326052226388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22754954997497043
the lambda is 20.0
the regulation term lambda/alpha is 87.89294464524286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2539800932548652
the lambda is 20.0
the regulation term lambda/alpha is 78.74632906733483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2630581168891405
the lambda is 20.0
the regulation term lambda/alpha is 76.02882677225473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26198711782992573
the lambda is 20.0
the regulation term lambda/alpha is 76.33963137448387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23506347680974796
the lambda is 20.0
the regulation term lambda/alpha is 85.08340075386229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23850742941971284
the lambda is 20.0
the regulation term lambda/alpha is 83.8548302191671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28854389016384324
the lambda is 20.0
the regulation term lambda/alpha is 69.31354529338134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26163239564577095
the lambda is 20.0
the regulation term lambda/alpha is 76.44313293327168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27645942033423115
the lambda is 20.0
the regulation term lambda/alpha is 72.34334780786489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27415778453955625
the lambda is 20.0
the regulation term lambda/alpha is 72.95069163762645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26077059796219854
the lambda is 20.0
the regulation term lambda/alpha is 76.69576308176894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3020531762552543
the lambda is 20.0
the regulation term lambda/alpha is 66.21350666777533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2773560909083511
the lambda is 20.0
the regulation term lambda/alpha is 72.10946741605451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3270834006117403
the lambda is 20.0
the regulation term lambda/alpha is 61.14648423794736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29949485874129755
the lambda is 20.0
the regulation term lambda/alpha is 66.77910961161413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3005325666901338
the lambda is 20.0
the regulation term lambda/alpha is 66.54852823528154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31582111718574657
the lambda is 20.0
the regulation term lambda/alpha is 63.32698768916465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24942560918387996
the lambda is 20.0
the regulation term lambda/alpha is 80.18422833741874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2666776552245546
the lambda is 20.0
the regulation term lambda/alpha is 74.9969095954406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26376497885346306
the lambda is 20.0
the regulation term lambda/alpha is 75.8250776389506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2699278258856701
the lambda is 20.0
the regulation term lambda/alpha is 74.09388022289761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2645106649514582
the lambda is 20.0
the regulation term lambda/alpha is 75.61131799230216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2599105451164228
the lambda is 20.0
the regulation term lambda/alpha is 76.9495519738967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28171610534952707
the lambda is 20.0
the regulation term lambda/alpha is 70.99345624981527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3568808452347312
the lambda is 20.0
the regulation term lambda/alpha is 56.04111362952361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2931663771616053
the lambda is 20.0
the regulation term lambda/alpha is 68.22064724351108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27401488870509716
the lambda is 20.0
the regulation term lambda/alpha is 72.98873464326454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27979237669933055
the lambda is 20.0
the regulation term lambda/alpha is 71.48157585970374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3197347215880978
the lambda is 20.0
the regulation term lambda/alpha is 62.55185517750946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30819695057163027
the lambda is 20.0
the regulation term lambda/alpha is 64.89356874850601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3264034116639319
the lambda is 20.0
the regulation term lambda/alpha is 61.27386934482227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2508441540294289
the lambda is 20.0
the regulation term lambda/alpha is 79.73077976397094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2569379501021394
the lambda is 20.0
the regulation term lambda/alpha is 77.83980526056774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2816547276445387
the lambda is 20.0
the regulation term lambda/alpha is 71.0089270194709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.36279603044454084
the lambda is 20.0
the regulation term lambda/alpha is 55.127394793966246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33413359898729017
the lambda is 20.0
the regulation term lambda/alpha is 59.85629718357286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27694031949498177
the lambda is 20.0
the regulation term lambda/alpha is 72.21772559687686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25600305049078304
the lambda is 20.0
the regulation term lambda/alpha is 78.12406907518498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2555269910080628
the lambda is 20.0
the regulation term lambda/alpha is 78.26961809826551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26668279183076893
the lambda is 20.0
the regulation term lambda/alpha is 74.99546507182046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32131142722446376
the lambda is 20.0
the regulation term lambda/alpha is 62.24490729372122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3226992210948814
the lambda is 20.0
the regulation term lambda/alpha is 61.97721807986488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3294569262854891
the lambda is 20.0
the regulation term lambda/alpha is 60.70596306926359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2978687555553086
the lambda is 20.0
the regulation term lambda/alpha is 67.14366521159477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2791245173245867
the lambda is 20.0
the regulation term lambda/alpha is 71.65260935048036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29332785322423616
the lambda is 20.0
the regulation term lambda/alpha is 68.18309199130464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28857820870641554
the lambda is 20.0
the regulation term lambda/alpha is 69.30530232914073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2812803607791353
the lambda is 20.0
the regulation term lambda/alpha is 71.1034355352816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2668947579186585
the lambda is 20.0
the regulation term lambda/alpha is 74.9359041592544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2546635965805538
the lambda is 20.0
the regulation term lambda/alpha is 78.53497817727438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25833142393688846
the lambda is 20.0
the regulation term lambda/alpha is 77.4199270658071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2930523632513036
the lambda is 20.0
the regulation term lambda/alpha is 68.24718892592323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26522519996421523
the lambda is 20.0
the regulation term lambda/alpha is 75.40761587774632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2585002387616645
the lambda is 20.0
the regulation term lambda/alpha is 77.36936760990719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2711211431247038
the lambda is 20.0
the regulation term lambda/alpha is 73.7677621505191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2807935094438072
the lambda is 20.0
the regulation term lambda/alpha is 71.22671759620009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23955233278221305
the lambda is 20.0
the regulation term lambda/alpha is 83.48906382048398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3269308381730681
the lambda is 20.0
the regulation term lambda/alpha is 61.175018275310435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23327443428458788
the lambda is 20.0
the regulation term lambda/alpha is 85.73592756247173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2978452261381606
the lambda is 20.0
the regulation term lambda/alpha is 67.14896948095672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3430690084739248
the lambda is 20.0
the regulation term lambda/alpha is 58.29730901361822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2772805925952206
the lambda is 20.0
the regulation term lambda/alpha is 72.12910147374207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26684812165898336
the lambda is 20.0
the regulation term lambda/alpha is 74.94900048634727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2744105592155091
the lambda is 20.0
the regulation term lambda/alpha is 72.88349273867753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22960523462559002
the lambda is 20.0
the regulation term lambda/alpha is 87.10602801636193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30531866007759345
the lambda is 20.0
the regulation term lambda/alpha is 65.5053313640156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27999331087987
the lambda is 20.0
the regulation term lambda/alpha is 71.43027787753444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27876638656952035
the lambda is 20.0
the regulation term lambda/alpha is 71.74466134930614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2924332988944379
the lambda is 20.0
the regulation term lambda/alpha is 68.39166427219892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29406675833441587
the lambda is 20.0
the regulation term lambda/alpha is 68.01176750911705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30540329126363364
the lambda is 20.0
the regulation term lambda/alpha is 65.48717899289231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32734994984589044
the lambda is 20.0
the regulation term lambda/alpha is 61.09669486558829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29878339537965165
the lambda is 20.0
the regulation term lambda/alpha is 66.9381241035394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2711087557099116
the lambda is 20.0
the regulation term lambda/alpha is 73.77113272357809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2995384930979063
the lambda is 20.0
the regulation term lambda/alpha is 66.7693817684489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25670600002857147
the lambda is 20.0
the regulation term lambda/alpha is 77.91013843764459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3192603830448337
the lambda is 20.0
the regulation term lambda/alpha is 62.64479109264053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28721927580867274
the lambda is 20.0
the regulation term lambda/alpha is 69.63320948320589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3201384357228202
the lambda is 20.0
the regulation term lambda/alpha is 62.4729734648802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2604855657159647
the lambda is 20.0
the regulation term lambda/alpha is 76.77968621803844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2632689169940321
the lambda is 20.0
the regulation term lambda/alpha is 75.96795029340045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2827161281802503
the lambda is 20.0
the regulation term lambda/alpha is 70.74233836156907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3060257249558664
the lambda is 20.0
the regulation term lambda/alpha is 65.35398291396682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2664626188505533
the lambda is 20.0
the regulation term lambda/alpha is 75.05743239436181
780
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2453403545463903
the lambda is 20.0
the regulation term lambda/alpha is 81.5194061204403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2633221674176499
the lambda is 20.0
the regulation term lambda/alpha is 75.9525876462896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2464390356603415
the lambda is 20.0
the regulation term lambda/alpha is 81.15597411915422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2666925578886978
the lambda is 20.0
the regulation term lambda/alpha is 74.99271880075055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32406176404922765
the lambda is 20.0
the regulation term lambda/alpha is 61.71663003402597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2296823437495619
the lambda is 20.0
the regulation term lambda/alpha is 87.07678471710192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24111580205044253
the lambda is 20.0
the regulation term lambda/alpha is 82.94769496615534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30586929499567467
the lambda is 20.0
the regulation term lambda/alpha is 65.38740673621007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3064341640521978
the lambda is 20.0
the regulation term lambda/alpha is 65.26687408324749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3125059162201255
the lambda is 20.0
the regulation term lambda/alpha is 63.99878838105655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29906843683103973
the lambda is 20.0
the regulation term lambda/alpha is 66.87432552870534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2995022762285684
the lambda is 20.0
the regulation term lambda/alpha is 66.77745575708674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23160461516381634
the lambda is 20.0
the regulation term lambda/alpha is 86.35406503386729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27138234808986106
the lambda is 20.0
the regulation term lambda/alpha is 73.69676082755954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2467369179121772
the lambda is 20.0
the regulation term lambda/alpha is 81.05799557372578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29784078677648146
the lambda is 20.0
the regulation term lambda/alpha is 67.14997034643635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2420379807336729
the lambda is 20.0
the regulation term lambda/alpha is 82.6316594584676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28509716084700465
the lambda is 20.0
the regulation term lambda/alpha is 70.15152287234757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2753331733667489
the lambda is 20.0
the regulation term lambda/alpha is 72.63926738446307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27602692315012006
the lambda is 20.0
the regulation term lambda/alpha is 72.45670013545308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2962467872312731
the lambda is 20.0
the regulation term lambda/alpha is 67.51128066879745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3148266221869625
the lambda is 20.0
the regulation term lambda/alpha is 63.52702913454005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29730767505132133
the lambda is 20.0
the regulation term lambda/alpha is 67.27037906622355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2644407542571266
the lambda is 20.0
the regulation term lambda/alpha is 75.63130749715371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2794193965838355
the lambda is 20.0
the regulation term lambda/alpha is 71.57699230804582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.21770577933999144
the lambda is 20.0
the regulation term lambda/alpha is 91.86710642516279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26590742699221814
the lambda is 20.0
the regulation term lambda/alpha is 75.21414586357268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3154225776384621
the lambda is 20.0
the regulation term lambda/alpha is 63.40700196459632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30775783438495546
the lambda is 20.0
the regulation term lambda/alpha is 64.98616043347648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28325009292009434
the lambda is 20.0
the regulation term lambda/alpha is 70.60897948457887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29722102312949006
the lambda is 20.0
the regulation term lambda/alpha is 67.28999109624428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2829789967411319
the lambda is 20.0
the regulation term lambda/alpha is 70.67662346084265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2987908421559114
the lambda is 20.0
the regulation term lambda/alpha is 66.93645580196144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2980750287285564
the lambda is 20.0
the regulation term lambda/alpha is 67.09720061190737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3227642366387954
the lambda is 20.0
the regulation term lambda/alpha is 61.96473378920834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2929428329474477
the lambda is 20.0
the regulation term lambda/alpha is 68.27270631190997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25551198599345404
the lambda is 20.0
the regulation term lambda/alpha is 78.27421450402088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2606665333199226
the lambda is 20.0
the regulation term lambda/alpha is 76.72638196117602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2890630076683565
the lambda is 20.0
the regulation term lambda/alpha is 69.18906767532877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.31573167447994616
the lambda is 20.0
the regulation term lambda/alpha is 63.344927406927965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3034868927889733
the lambda is 20.0
the regulation term lambda/alpha is 65.90070436388437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2531429296006972
the lambda is 20.0
the regulation term lambda/alpha is 79.00674939469026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27944385089174295
the lambda is 20.0
the regulation term lambda/alpha is 71.570728560236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.294673675355934
the lambda is 20.0
the regulation term lambda/alpha is 67.87168882948964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.325598740718178
the lambda is 20.0
the regulation term lambda/alpha is 61.42529899189935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2608534993811871
the lambda is 20.0
the regulation term lambda/alpha is 76.67138852821695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3105493854795476
the lambda is 20.0
the regulation term lambda/alpha is 64.4019950936827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2874226267532658
the lambda is 20.0
the regulation term lambda/alpha is 69.58394412409548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26185171320182044
the lambda is 20.0
the regulation term lambda/alpha is 76.3791069206606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2870780072242765
the lambda is 20.0
the regulation term lambda/alpha is 69.66747537847866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2946636768331655
the lambda is 20.0
the regulation term lambda/alpha is 67.8739918504571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27186273260179344
the lambda is 20.0
the regulation term lambda/alpha is 73.5665378207416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2933604756139922
the lambda is 20.0
the regulation term lambda/alpha is 68.17550986764924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26979471761476065
the lambda is 20.0
the regulation term lambda/alpha is 74.13043582475903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30207149407148903
the lambda is 20.0
the regulation term lambda/alpha is 66.20949143670852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28656015211519936
the lambda is 20.0
the regulation term lambda/alpha is 69.7933744534022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3711233072204384
the lambda is 20.0
the regulation term lambda/alpha is 53.890444525814914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29038296566119404
the lambda is 20.0
the regulation term lambda/alpha is 68.87456347331032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.279559696188919
the lambda is 20.0
the regulation term lambda/alpha is 71.54107073604963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27023952747489277
the lambda is 20.0
the regulation term lambda/alpha is 74.00841833494601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30434181395910215
the lambda is 20.0
the regulation term lambda/alpha is 65.71558386876023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2583678714062622
the lambda is 20.0
the regulation term lambda/alpha is 77.40900558239939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2768275062631436
the lambda is 20.0
the regulation term lambda/alpha is 72.2471558913247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29150559207212484
the lambda is 20.0
the regulation term lambda/alpha is 68.60931846223919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2715745757822906
the lambda is 20.0
the regulation term lambda/alpha is 73.64459630430619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2791800589825933
the lambda is 20.0
the regulation term lambda/alpha is 71.63835437561458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33280241616481476
the lambda is 20.0
the regulation term lambda/alpha is 60.09571754459661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28446863507442344
the lambda is 20.0
the regulation term lambda/alpha is 70.30652076903856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2883411473599039
the lambda is 20.0
the regulation term lambda/alpha is 69.36228208538077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29351030867157446
the lambda is 20.0
the regulation term lambda/alpha is 68.1407071885136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3613234666129343
the lambda is 20.0
the regulation term lambda/alpha is 55.352064972366954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2353987446895847
the lambda is 20.0
the regulation term lambda/alpha is 84.96222028020402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2673617439034334
the lambda is 20.0
the regulation term lambda/alpha is 74.80501775610674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3135360602499687
the lambda is 20.0
the regulation term lambda/alpha is 63.788516013293226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.319467750284736
the lambda is 20.0
the regulation term lambda/alpha is 62.60412821693066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30346149085430485
the lambda is 20.0
the regulation term lambda/alpha is 65.90622073231103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2556077443388621
the lambda is 20.0
the regulation term lambda/alpha is 78.24489063009678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31455547388905425
the lambda is 20.0
the regulation term lambda/alpha is 63.58178973243406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2676848576791549
the lambda is 20.0
the regulation term lambda/alpha is 74.71472302692538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28210199030335326
the lambda is 20.0
the regulation term lambda/alpha is 70.89634489460128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25716087995258863
the lambda is 20.0
the regulation term lambda/alpha is 77.7723268161444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2677837492468089
the lambda is 20.0
the regulation term lambda/alpha is 74.68713115061567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25091649226655943
the lambda is 20.0
the regulation term lambda/alpha is 79.70779369397981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2758985957542718
the lambda is 20.0
the regulation term lambda/alpha is 72.49040157425425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27006854311382705
the lambda is 20.0
the regulation term lambda/alpha is 74.05527415153459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29965286265872887
the lambda is 20.0
the regulation term lambda/alpha is 66.7438976639371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26144673183619105
the lambda is 20.0
the regulation term lambda/alpha is 76.49741826771414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2520142809696027
the lambda is 20.0
the regulation term lambda/alpha is 79.36058196008482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31046249037698953
the lambda is 20.0
the regulation term lambda/alpha is 64.4200205175006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29570195968342
the lambda is 20.0
the regulation term lambda/alpha is 67.63566944707469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2499774964218227
the lambda is 20.0
the regulation term lambda/alpha is 80.00720179328121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2768288404714702
the lambda is 20.0
the regulation term lambda/alpha is 72.24680768787596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2859522609591162
the lambda is 20.0
the regulation term lambda/alpha is 69.94174458672836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28639334117124243
the lambda is 20.0
the regulation term lambda/alpha is 69.83402588275071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27950280545177064
the lambda is 20.0
the regulation term lambda/alpha is 71.55563239400502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29452360032852076
the lambda is 20.0
the regulation term lambda/alpha is 67.90627296994666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30513027379365165
the lambda is 20.0
the regulation term lambda/alpha is 65.5457741093408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2668770010085493
the lambda is 20.0
the regulation term lambda/alpha is 74.94089008951097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24477333169157492
the lambda is 20.0
the regulation term lambda/alpha is 81.70824763377766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2641721537528432
the lambda is 20.0
the regulation term lambda/alpha is 75.70820662162522
790
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2626525648278655
the lambda is 20.0
the regulation term lambda/alpha is 76.14622005731181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24384581726396365
the lambda is 20.0
the regulation term lambda/alpha is 82.01904065612885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28864485411024254
the lambda is 20.0
the regulation term lambda/alpha is 69.28930038143473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25881102062429207
the lambda is 20.0
the regulation term lambda/alpha is 77.27646199824459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3290577257705575
the lambda is 20.0
the regulation term lambda/alpha is 60.779609271187354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3191825783612903
the lambda is 20.0
the regulation term lambda/alpha is 62.66006153180931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2904074741410026
the lambda is 20.0
the regulation term lambda/alpha is 68.86875091337811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29787207158425594
the lambda is 20.0
the regulation term lambda/alpha is 67.14291774193006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2548989375689231
the lambda is 20.0
the regulation term lambda/alpha is 78.46246905047269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29440588284891134
the lambda is 20.0
the regulation term lambda/alpha is 67.93342512881772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.269367571930964
the lambda is 20.0
the regulation term lambda/alpha is 74.2479870781394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2707260190777617
the lambda is 20.0
the regulation term lambda/alpha is 73.87542604191036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30393206650756777
the lambda is 20.0
the regulation term lambda/alpha is 65.80417864365756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2592471772465886
the lambda is 20.0
the regulation term lambda/alpha is 77.14645232559877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30447671129433357
the lambda is 20.0
the regulation term lambda/alpha is 65.68646881063513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.280303989865617
the lambda is 20.0
the regulation term lambda/alpha is 71.35110709479511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2612765323616027
the lambda is 20.0
the regulation term lambda/alpha is 76.54724983995236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2834865777093156
the lambda is 20.0
the regulation term lambda/alpha is 70.55007740263387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2671724372241644
the lambda is 20.0
the regulation term lambda/alpha is 74.85802131310236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28032688156314534
the lambda is 20.0
the regulation term lambda/alpha is 71.3452805113693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26025347561032514
the lambda is 20.0
the regulation term lambda/alpha is 76.8481571786799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3020010327483671
the lambda is 20.0
the regulation term lambda/alpha is 66.22493909371619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2906856956196666
the lambda is 20.0
the regulation term lambda/alpha is 68.80283516313102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27920056789578357
the lambda is 20.0
the regulation term lambda/alpha is 71.63309211987472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2961902559602122
the lambda is 20.0
the regulation term lambda/alpha is 67.52416596272714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26137979112169657
the lambda is 20.0
the regulation term lambda/alpha is 76.51700965163042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2889585123368363
the lambda is 20.0
the regulation term lambda/alpha is 69.21408834181075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24469349924620948
the lambda is 20.0
the regulation term lambda/alpha is 81.73490534734677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2845210771178052
the lambda is 20.0
the regulation term lambda/alpha is 70.29356208896627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3135071593876229
the lambda is 20.0
the regulation term lambda/alpha is 63.79439639932379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25378715977041194
the lambda is 20.0
the regulation term lambda/alpha is 78.80619341850455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26860040937358276
the lambda is 20.0
the regulation term lambda/alpha is 74.4600503277082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26553330708118333
the lambda is 20.0
the regulation term lambda/alpha is 75.3201179160747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26941500857818146
the lambda is 20.0
the regulation term lambda/alpha is 74.23491402928359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29949021590378283
the lambda is 20.0
the regulation term lambda/alpha is 66.78014485262983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.263021310363694
the lambda is 20.0
the regulation term lambda/alpha is 76.03946605065917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2685914808072248
the lambda is 20.0
the regulation term lambda/alpha is 74.46252554210582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26352534456475374
the lambda is 20.0
the regulation term lambda/alpha is 75.89402845875259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27715147984321564
the lambda is 20.0
the regulation term lambda/alpha is 72.16270326723128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26829006436662445
the lambda is 20.0
the regulation term lambda/alpha is 74.54618212275483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2810624482005311
the lambda is 20.0
the regulation term lambda/alpha is 71.15856325897543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2878794886614841
the lambda is 20.0
the regulation term lambda/alpha is 69.47351509130227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2778540432446174
the lambda is 20.0
the regulation term lambda/alpha is 71.98023741692462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28301189149196776
the lambda is 20.0
the regulation term lambda/alpha is 70.66840864730105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25123787648001006
the lambda is 20.0
the regulation term lambda/alpha is 79.6058312552698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2758937116750399
the lambda is 20.0
the regulation term lambda/alpha is 72.4916848541909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2748066672924777
the lambda is 20.0
the regulation term lambda/alpha is 72.77843800898007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25052591953279735
the lambda is 20.0
the regulation term lambda/alpha is 79.83205904322296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.287440290852859
the lambda is 20.0
the regulation term lambda/alpha is 69.57966797437602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28458538916252746
the lambda is 20.0
the regulation term lambda/alpha is 70.2776767944961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2788703982901298
the lambda is 20.0
the regulation term lambda/alpha is 71.71790237554185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2611705125827287
the lambda is 20.0
the regulation term lambda/alpha is 76.57832349532481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30705717629590573
the lambda is 20.0
the regulation term lambda/alpha is 65.13444903409892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27191289968814375
the lambda is 20.0
the regulation term lambda/alpha is 73.55296502276262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30859801946359816
the lambda is 20.0
the regulation term lambda/alpha is 64.8092299320773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29611966940393014
the lambda is 20.0
the regulation term lambda/alpha is 67.54026181461946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2636916302266278
the lambda is 20.0
the regulation term lambda/alpha is 75.84616918940942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3272291975283418
the lambda is 20.0
the regulation term lambda/alpha is 61.11924043167869
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29982503857601966
the lambda is 20.0
the regulation term lambda/alpha is 66.70556967152383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2574322608022994
the lambda is 20.0
the regulation term lambda/alpha is 77.69034051003975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2831722553990381
the lambda is 20.0
the regulation term lambda/alpha is 70.62838826429723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29716228655443633
the lambda is 20.0
the regulation term lambda/alpha is 67.30329151756698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2678004134750283
the lambda is 20.0
the regulation term lambda/alpha is 74.68248364696774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25664846571409106
the lambda is 20.0
the regulation term lambda/alpha is 77.92760398684868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.259415390605886
the lambda is 20.0
the regulation term lambda/alpha is 77.09642806191397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3196156223541389
the lambda is 20.0
the regulation term lambda/alpha is 62.57516404451501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29676520339897094
the lambda is 20.0
the regulation term lambda/alpha is 67.39334588736138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3342749551115354
the lambda is 20.0
the regulation term lambda/alpha is 59.83098552306058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2479201314160727
the lambda is 20.0
the regulation term lambda/alpha is 80.67114149126898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28546084230009483
the lambda is 20.0
the regulation term lambda/alpha is 70.06214876566051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2775193788826442
the lambda is 20.0
the regulation term lambda/alpha is 72.06703935604253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26437579261958943
the lambda is 20.0
the regulation term lambda/alpha is 75.6498913982568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2769527975102302
the lambda is 20.0
the regulation term lambda/alpha is 72.21447185151192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2599244867364632
the lambda is 20.0
the regulation term lambda/alpha is 76.94542461587297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26386251175992576
the lambda is 20.0
the regulation term lambda/alpha is 75.7970500113973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28115884342252645
the lambda is 20.0
the regulation term lambda/alpha is 71.13416656770043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26244042292348213
the lambda is 20.0
the regulation term lambda/alpha is 76.20777232869823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26824572095805577
the lambda is 20.0
the regulation term lambda/alpha is 74.55850527109546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3040775696779674
the lambda is 20.0
the regulation term lambda/alpha is 65.77269089982846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29000855696065503
the lambda is 20.0
the regulation term lambda/alpha is 68.96348235239613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2729565397647524
the lambda is 20.0
the regulation term lambda/alpha is 73.27173775443153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2755750940435253
the lambda is 20.0
the regulation term lambda/alpha is 72.57549913723744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24365620456861914
the lambda is 20.0
the regulation term lambda/alpha is 82.08286768403447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2843692052713361
the lambda is 20.0
the regulation term lambda/alpha is 70.33110347133626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2789041798204846
the lambda is 20.0
the regulation term lambda/alpha is 71.70921573449674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26815414665396836
the lambda is 20.0
the regulation term lambda/alpha is 74.5839669069463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2818427139093342
the lambda is 20.0
the regulation term lambda/alpha is 70.96156477699043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2671300072685106
the lambda is 20.0
the regulation term lambda/alpha is 74.86991148806669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2709668465052081
the lambda is 20.0
the regulation term lambda/alpha is 73.80976771863341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25319450359045603
the lambda is 20.0
the regulation term lambda/alpha is 78.99065625986158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2623079391596467
the lambda is 20.0
the regulation term lambda/alpha is 76.24626255718299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27757014688490317
the lambda is 20.0
the regulation term lambda/alpha is 72.05385818487595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2818652069352706
the lambda is 20.0
the regulation term lambda/alpha is 70.95590199819495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28551773583819323
the lambda is 20.0
the regulation term lambda/alpha is 70.04818786926172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27433014216832874
the lambda is 20.0
the regulation term lambda/alpha is 72.90485778164332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2586105918554804
the lambda is 20.0
the regulation term lambda/alpha is 77.33635291773594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2590779586525511
the lambda is 20.0
the regulation term lambda/alpha is 77.19684107447348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2552290003248898
the lambda is 20.0
the regulation term lambda/alpha is 78.36100119712614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.327583402159198
the lambda is 20.0
the regulation term lambda/alpha is 61.0531543056643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28354663760781296
the lambda is 20.0
the regulation term lambda/alpha is 70.53513372168061
800
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26995844225048804
the lambda is 20.0
the regulation term lambda/alpha is 74.08547713222643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33191452081123163
the lambda is 20.0
the regulation term lambda/alpha is 60.25647793630131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.265774858012175
the lambda is 20.0
the regulation term lambda/alpha is 75.25166281561445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27473539393427554
the lambda is 20.0
the regulation term lambda/alpha is 72.79731858933532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2859643262251212
the lambda is 20.0
the regulation term lambda/alpha is 69.93879363908943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2688893478009829
the lambda is 20.0
the regulation term lambda/alpha is 74.38003834500317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2750754011217701
the lambda is 20.0
the regulation term lambda/alpha is 72.70733740072389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.281423044073156
the lambda is 20.0
the regulation term lambda/alpha is 71.06738563598579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2690994985990726
the lambda is 20.0
the regulation term lambda/alpha is 74.3219519327225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33356178412067133
the lambda is 20.0
the regulation term lambda/alpha is 59.95890702144907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27119678539751335
the lambda is 20.0
the regulation term lambda/alpha is 73.74718682850354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3979366061585896
the lambda is 20.0
the regulation term lambda/alpha is 50.25926162728896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28769359642952813
the lambda is 20.0
the regulation term lambda/alpha is 69.51840516512536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26289722659148124
the lambda is 20.0
the regulation term lambda/alpha is 76.07535560304031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2801407873687825
the lambda is 20.0
the regulation term lambda/alpha is 71.39267433296541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31916678460910086
the lambda is 20.0
the regulation term lambda/alpha is 62.66316222251942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28479653273443334
the lambda is 20.0
the regulation term lambda/alpha is 70.22557405447618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2828810313621346
the lambda is 20.0
the regulation term lambda/alpha is 70.70109969443898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2412830565760863
the lambda is 20.0
the regulation term lambda/alpha is 82.89019661723819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2981315662819471
the lambda is 20.0
the regulation term lambda/alpha is 67.084476325079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28636799304589167
the lambda is 20.0
the regulation term lambda/alpha is 69.84020730555218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2398714815879807
the lambda is 20.0
the regulation term lambda/alpha is 83.37798169085119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28664422120407096
the lambda is 20.0
the regulation term lambda/alpha is 69.77290494812165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29570852311995083
the lambda is 20.0
the regulation term lambda/alpha is 67.6341682308806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23764864121437487
the lambda is 20.0
the regulation term lambda/alpha is 84.15785547016307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28363255668803783
the lambda is 20.0
the regulation term lambda/alpha is 70.51376694389012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3037485738580994
the lambda is 20.0
the regulation term lambda/alpha is 65.84393054415885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2833788036133933
the lambda is 20.0
the regulation term lambda/alpha is 70.57690887595639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2902365869814947
the lambda is 20.0
the regulation term lambda/alpha is 68.9092998508668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29780221536373447
the lambda is 20.0
the regulation term lambda/alpha is 67.15866762633742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2729140695007881
the lambda is 20.0
the regulation term lambda/alpha is 73.28314013485569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2620355116122486
the lambda is 20.0
the regulation term lambda/alpha is 76.325532661372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2734569544398585
the lambda is 20.0
the regulation term lambda/alpha is 73.13765356952591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27192002592378073
the lambda is 20.0
the regulation term lambda/alpha is 73.55103741276491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2571439051120589
the lambda is 20.0
the regulation term lambda/alpha is 77.7774608007308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30387203392846013
the lambda is 20.0
the regulation term lambda/alpha is 65.81717883491889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29067949250913827
the lambda is 20.0
the regulation term lambda/alpha is 68.80430341803782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2954693567141985
the lambda is 20.0
the regulation term lambda/alpha is 67.68891441878216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2877448031455796
the lambda is 20.0
the regulation term lambda/alpha is 69.50603375408778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2662470997126253
the lambda is 20.0
the regulation term lambda/alpha is 75.11818916182399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23661373100182817
the lambda is 20.0
the regulation term lambda/alpha is 84.5259483264962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26268662395940257
the lambda is 20.0
the regulation term lambda/alpha is 76.13634717499335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2945721982730359
the lambda is 20.0
the regulation term lambda/alpha is 67.89506992598878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2741829455001192
the lambda is 20.0
the regulation term lambda/alpha is 72.94399716772794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28703743304904566
the lambda is 20.0
the regulation term lambda/alpha is 69.67732322418946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27595487208167424
the lambda is 20.0
the regulation term lambda/alpha is 72.47561838328627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2622191299623832
the lambda is 20.0
the regulation term lambda/alpha is 76.27208588049663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.30921590018882267
the lambda is 20.0
the regulation term lambda/alpha is 64.6797269732475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2732851749397524
the lambda is 20.0
the regulation term lambda/alpha is 73.18362587509233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27529323374740805
the lambda is 20.0
the regulation term lambda/alpha is 72.64980590968958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2506054600027616
the lambda is 20.0
the regulation term lambda/alpha is 79.8067208901977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2709546291357538
the lambda is 20.0
the regulation term lambda/alpha is 73.81309580793172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23641619542608427
the lambda is 20.0
the regulation term lambda/alpha is 84.59657327601745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31885914806753674
the lambda is 20.0
the regulation term lambda/alpha is 62.72361988423757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28093533883747807
the lambda is 20.0
the regulation term lambda/alpha is 71.19075899372723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2716293810636131
the lambda is 20.0
the regulation term lambda/alpha is 73.62973740795802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3086439282640887
the lambda is 20.0
the regulation term lambda/alpha is 64.79958997569251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29317114424391316
the lambda is 20.0
the regulation term lambda/alpha is 68.2195379479788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29732584840665754
the lambda is 20.0
the regulation term lambda/alpha is 67.26626731977122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26465622182409176
the lambda is 20.0
the regulation term lambda/alpha is 75.56973292429656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2576743683404304
the lambda is 20.0
the regulation term lambda/alpha is 77.617343660572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2674300224703899
the lambda is 20.0
the regulation term lambda/alpha is 74.7859190050901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2601872948251515
the lambda is 20.0
the regulation term lambda/alpha is 76.86770414151161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.32254714727164413
the lambda is 20.0
the regulation term lambda/alpha is 62.006438963034185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26927835868464683
the lambda is 20.0
the regulation term lambda/alpha is 74.27258580189913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.288155238445003
the lambda is 20.0
the regulation term lambda/alpha is 69.40703250070248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2812486455315403
the lambda is 20.0
the regulation term lambda/alpha is 71.11145357589686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26504470280275366
the lambda is 20.0
the regulation term lambda/alpha is 75.45896895318826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32348481621630315
the lambda is 20.0
the regulation term lambda/alpha is 61.82670405966346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.254935829021873
the lambda is 20.0
the regulation term lambda/alpha is 78.45111484225326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2837140130189533
the lambda is 20.0
the regulation term lambda/alpha is 70.49352193493493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2591152981768406
the lambda is 20.0
the regulation term lambda/alpha is 77.1857167088237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2791597984283906
the lambda is 20.0
the regulation term lambda/alpha is 71.64355366566275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27597297372776997
the lambda is 20.0
the regulation term lambda/alpha is 72.47086455548632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27867946683662287
the lambda is 20.0
the regulation term lambda/alpha is 71.76703840805428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3025527177339339
the lambda is 20.0
the regulation term lambda/alpha is 66.10418227208946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.301014732116143
the lambda is 20.0
the regulation term lambda/alpha is 66.44193079654066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2846532858186632
the lambda is 20.0
the regulation term lambda/alpha is 70.26091387801821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2705385604195778
the lambda is 20.0
the regulation term lambda/alpha is 73.92661500446381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2427193710697177
the lambda is 20.0
the regulation term lambda/alpha is 82.39968615547906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27792830164318144
the lambda is 20.0
the regulation term lambda/alpha is 71.96100534474184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2749129438840944
the lambda is 20.0
the regulation term lambda/alpha is 72.75030312298489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2887348714987147
the lambda is 20.0
the regulation term lambda/alpha is 69.26769841199813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25000593274946387
the lambda is 20.0
the regulation term lambda/alpha is 79.99810156522331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2710045718622934
the lambda is 20.0
the regulation term lambda/alpha is 73.79949298479983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2605546964244144
the lambda is 20.0
the regulation term lambda/alpha is 76.7593149325631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28415189603524554
the lambda is 20.0
the regulation term lambda/alpha is 70.38489019098168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24711170338288233
the lambda is 20.0
the regulation term lambda/alpha is 80.9350578147705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23600009042312095
the lambda is 20.0
the regulation term lambda/alpha is 84.74573024163807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2550230498242857
the lambda is 20.0
the regulation term lambda/alpha is 78.42428366290918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3433630154155245
the lambda is 20.0
the regulation term lambda/alpha is 58.24739154214609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2771390890288058
the lambda is 20.0
the regulation term lambda/alpha is 72.16592964235804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30374889462750565
the lambda is 20.0
the regulation term lambda/alpha is 65.84386101067616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31600617341831905
the lambda is 20.0
the regulation term lambda/alpha is 63.28990280048937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2506341786685553
the lambda is 20.0
the regulation term lambda/alpha is 79.7975763171889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2610545486191621
the lambda is 20.0
the regulation term lambda/alpha is 76.61234062302006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2840250167992237
the lambda is 20.0
the regulation term lambda/alpha is 70.41633242517483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2879930913822028
the lambda is 20.0
the regulation term lambda/alpha is 69.44611033553406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2779235631246782
the lambda is 20.0
the regulation term lambda/alpha is 71.9622322596227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29403666023166763
the lambda is 20.0
the regulation term lambda/alpha is 68.01872931165202
810
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2650470340240306
the lambda is 20.0
the regulation term lambda/alpha is 75.45830525380144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24587587694333637
the lambda is 20.0
the regulation term lambda/alpha is 81.34185528338399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2715390536513149
the lambda is 20.0
the regulation term lambda/alpha is 73.65423032549171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.267832463149037
the lambda is 20.0
the regulation term lambda/alpha is 74.67354690633927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26759995422730887
the lambda is 20.0
the regulation term lambda/alpha is 74.73842832951792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2777504078922202
the lambda is 20.0
the regulation term lambda/alpha is 72.00709497341552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3372265318690178
the lambda is 20.0
the regulation term lambda/alpha is 59.30731454952128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25316995457705094
the lambda is 20.0
the regulation term lambda/alpha is 78.99831571014128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28476754979998575
the lambda is 20.0
the regulation term lambda/alpha is 70.232721439109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2678197101714772
the lambda is 20.0
the regulation term lambda/alpha is 74.67710269417654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27932658876904204
the lambda is 20.0
the regulation term lambda/alpha is 71.6007741623794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2821247427968625
the lambda is 20.0
the regulation term lambda/alpha is 70.89062732225703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29651308637517176
the lambda is 20.0
the regulation term lambda/alpha is 67.45064861890926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2731220824714162
the lambda is 20.0
the regulation term lambda/alpha is 73.22732683869717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2559308473664965
the lambda is 20.0
the regulation term lambda/alpha is 78.14610941118686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25790500908400465
the lambda is 20.0
the regulation term lambda/alpha is 77.54793158548391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2838636801351717
the lambda is 20.0
the regulation term lambda/alpha is 70.45635422776276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28150301043517434
the lambda is 20.0
the regulation term lambda/alpha is 71.04719757377401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27502554098812454
the lambda is 20.0
the regulation term lambda/alpha is 72.72051871307323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2680545489022647
the lambda is 20.0
the regulation term lambda/alpha is 74.6116791597228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2652333180779925
the lambda is 20.0
the regulation term lambda/alpha is 75.4053078434096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31279888639953707
the lambda is 20.0
the regulation term lambda/alpha is 63.93884655476062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28851232930776805
the lambda is 20.0
the regulation term lambda/alpha is 69.32112762039078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2655244349068951
the lambda is 20.0
the regulation term lambda/alpha is 75.3226346457075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26967676362704657
the lambda is 20.0
the regulation term lambda/alpha is 74.16285975479627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32970638868580643
the lambda is 20.0
the regulation term lambda/alpha is 60.660031732230074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33554995402412324
the lambda is 20.0
the regulation term lambda/alpha is 59.60364398846607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25418568660187196
the lambda is 20.0
the regulation term lambda/alpha is 78.68263656924854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3083032322740543
the lambda is 20.0
the regulation term lambda/alpha is 64.87119791926725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.275625657746987
the lambda is 20.0
the regulation term lambda/alpha is 72.56218511543355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27394207189503794
the lambda is 20.0
the regulation term lambda/alpha is 73.00813585020663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2735343836661365
the lambda is 20.0
the regulation term lambda/alpha is 73.11695053449324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2622163082762143
the lambda is 20.0
the regulation term lambda/alpha is 76.27290663757013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2580152164718872
the lambda is 20.0
the regulation term lambda/alpha is 77.51480813217526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2666100122686335
the lambda is 20.0
the regulation term lambda/alpha is 75.0159374354186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2962487238659826
the lambda is 20.0
the regulation term lambda/alpha is 67.51083933461136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2795709006615555
the lambda is 20.0
the regulation term lambda/alpha is 71.53820355649859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2448838291582047
the lambda is 20.0
the regulation term lambda/alpha is 81.67137890954491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28237985716849023
the lambda is 20.0
the regulation term lambda/alpha is 70.82658161437631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2481818620427231
the lambda is 20.0
the regulation term lambda/alpha is 80.58606634419203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27529013067840336
the lambda is 20.0
the regulation term lambda/alpha is 72.65062481794597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31476055358444016
the lambda is 20.0
the regulation term lambda/alpha is 63.54036353108218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.34241046501402694
the lambda is 20.0
the regulation term lambda/alpha is 58.409429744446314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2780333124978604
the lambda is 20.0
the regulation term lambda/alpha is 71.93382627541766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2936512716885087
the lambda is 20.0
the regulation term lambda/alpha is 68.10799723426722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2918907475171034
the lambda is 20.0
the regulation term lambda/alpha is 68.51878714938744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28196062113081394
the lambda is 20.0
the regulation term lambda/alpha is 70.93189084273268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23856710981529414
the lambda is 20.0
the regulation term lambda/alpha is 83.83385293758475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28911953341241015
the lambda is 20.0
the regulation term lambda/alpha is 69.1755405245183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2975324541033459
the lambda is 20.0
the regulation term lambda/alpha is 67.21955781352557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22148855367687637
the lambda is 20.0
the regulation term lambda/alpha is 90.29812000658714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3044042291775022
the lambda is 20.0
the regulation term lambda/alpha is 65.70210950761046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2561639305419174
the lambda is 20.0
the regulation term lambda/alpha is 78.07500438367649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3025726635127669
the lambda is 20.0
the regulation term lambda/alpha is 66.0998246431344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27412445555664416
the lambda is 20.0
the regulation term lambda/alpha is 72.95956123063696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2746403007158095
the lambda is 20.0
the regulation term lambda/alpha is 72.82252439963452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2760095927639096
the lambda is 20.0
the regulation term lambda/alpha is 72.46124962441942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3395656988924919
the lambda is 20.0
the regulation term lambda/alpha is 58.89876411319182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.239264503256749
the lambda is 20.0
the regulation term lambda/alpha is 83.58949918508588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27426204678586025
the lambda is 20.0
the regulation term lambda/alpha is 72.92295902544512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2889363324118436
the lambda is 20.0
the regulation term lambda/alpha is 69.21940149600998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30207397905352923
the lambda is 20.0
the regulation term lambda/alpha is 66.20894677080373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2664234670272224
the lambda is 20.0
the regulation term lambda/alpha is 75.0684623361517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2813007058277917
the lambda is 20.0
the regulation term lambda/alpha is 71.09829298559853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.263944423545829
the lambda is 20.0
the regulation term lambda/alpha is 75.77352736352611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.273800324720253
the lambda is 20.0
the regulation term lambda/alpha is 73.0459323612358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28872824353291004
the lambda is 20.0
the regulation term lambda/alpha is 69.26928850214941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2574729078799947
the lambda is 20.0
the regulation term lambda/alpha is 77.67807558736152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29674366014661696
the lambda is 20.0
the regulation term lambda/alpha is 67.39823856765221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29087520257454935
the lambda is 20.0
the regulation term lambda/alpha is 68.7580096996207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3258237259319906
the lambda is 20.0
the regulation term lambda/alpha is 61.382884081850484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3042001609695224
the lambda is 20.0
the regulation term lambda/alpha is 65.74618480232752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2553719362286972
the lambda is 20.0
the regulation term lambda/alpha is 78.317141246441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2707722560743189
the lambda is 20.0
the regulation term lambda/alpha is 73.86281109431906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.291226522032352
the lambda is 20.0
the regulation term lambda/alpha is 68.67506386584607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28013602394959647
the lambda is 20.0
the regulation term lambda/alpha is 71.3938882904917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30793319016384424
the lambda is 20.0
the regulation term lambda/alpha is 64.94915338407807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2554073181407314
the lambda is 20.0
the regulation term lambda/alpha is 78.30629186975702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2814722767107315
the lambda is 20.0
the regulation term lambda/alpha is 71.05495515835104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2878240602472783
the lambda is 20.0
the regulation term lambda/alpha is 69.48689412142056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32865421899039887
the lambda is 20.0
the regulation term lambda/alpha is 60.85423172548492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2613241309213646
the lambda is 20.0
the regulation term lambda/alpha is 76.53330723605555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2624748225517881
the lambda is 20.0
the regulation term lambda/alpha is 76.19778463152922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27722304458732844
the lambda is 20.0
the regulation term lambda/alpha is 72.14407456556077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29167471999647643
the lambda is 20.0
the regulation term lambda/alpha is 68.56953526943168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26109334998984496
the lambda is 20.0
the regulation term lambda/alpha is 76.6009551785899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2481186579726356
the lambda is 20.0
the regulation term lambda/alpha is 80.60659429411291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2711744529817227
the lambda is 20.0
the regulation term lambda/alpha is 73.75326023557244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3091479386299242
the lambda is 20.0
the regulation term lambda/alpha is 64.6939458455897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3069577512970072
the lambda is 20.0
the regulation term lambda/alpha is 65.1555463756585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2938002669504937
the lambda is 20.0
the regulation term lambda/alpha is 68.07345754852587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2622367964947533
the lambda is 20.0
the regulation term lambda/alpha is 76.26694753495492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2790990914589617
the lambda is 20.0
the regulation term lambda/alpha is 71.65913688737595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27490007797361393
the lambda is 20.0
the regulation term lambda/alpha is 72.75370799247166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24832666683352433
the lambda is 20.0
the regulation term lambda/alpha is 80.53907482037681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2849346043600218
the lambda is 20.0
the regulation term lambda/alpha is 70.19154463502619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3012515049793897
the lambda is 20.0
the regulation term lambda/alpha is 66.38970982524489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3129719720396111
the lambda is 20.0
the regulation term lambda/alpha is 63.9034858925601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2541838500080345
the lambda is 20.0
the regulation term lambda/alpha is 78.68320508705733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29804397468523686
the lambda is 20.0
the regulation term lambda/alpha is 67.10419165870381
820
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3023169128455208
the lambda is 20.0
the regulation term lambda/alpha is 66.15574303055841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2951440199786931
the lambda is 20.0
the regulation term lambda/alpha is 67.76352779041171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27825743835042116
the lambda is 20.0
the regulation term lambda/alpha is 71.87588629639136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2482017174785265
the lambda is 20.0
the regulation term lambda/alpha is 80.57961968667814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28352711848022827
the lambda is 20.0
the regulation term lambda/alpha is 70.53998963910288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2920519299391096
the lambda is 20.0
the regulation term lambda/alpha is 68.48097187431644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2852507604673968
the lambda is 20.0
the regulation term lambda/alpha is 70.11374822359478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28610781199573276
the lambda is 20.0
the regulation term lambda/alpha is 69.90371867335904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2683112512514449
the lambda is 20.0
the regulation term lambda/alpha is 74.54029567048318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3076169035315825
the lambda is 20.0
the regulation term lambda/alpha is 65.01593303355853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29103729974819736
the lambda is 20.0
the regulation term lambda/alpha is 68.71971399303047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2637266657200494
the lambda is 20.0
the regulation term lambda/alpha is 75.83609319669768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26580131881565106
the lambda is 20.0
the regulation term lambda/alpha is 75.24417143269024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25214297396702834
the lambda is 20.0
the regulation term lambda/alpha is 79.32007656344734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32529941400237566
the lambda is 20.0
the regulation term lambda/alpha is 61.481819945282595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29086234027706365
the lambda is 20.0
the regulation term lambda/alpha is 68.7610502650457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2920136078684844
the lambda is 20.0
the regulation term lambda/alpha is 68.48995889605082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24798570010254198
the lambda is 20.0
the regulation term lambda/alpha is 80.64981162917866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31629653704984145
the lambda is 20.0
the regulation term lambda/alpha is 63.23180198728649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3124278548890253
the lambda is 20.0
the regulation term lambda/alpha is 64.01477873060973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2897199335827834
the lambda is 20.0
the regulation term lambda/alpha is 69.03218481611752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3116605031855887
the lambda is 20.0
the regulation term lambda/alpha is 64.17239205986371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28682100703987423
the lambda is 20.0
the regulation term lambda/alpha is 69.72989951611032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31436427841255465
the lambda is 20.0
the regulation term lambda/alpha is 63.620459999443966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26686935331152284
the lambda is 20.0
the regulation term lambda/alpha is 74.94303767676737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2752763441163455
the lambda is 20.0
the regulation term lambda/alpha is 72.65426335198278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3184467281501447
the lambda is 20.0
the regulation term lambda/alpha is 62.80485315763767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2634724855009203
the lambda is 20.0
the regulation term lambda/alpha is 75.90925466837842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28027116245624406
the lambda is 20.0
the regulation term lambda/alpha is 71.35946425855496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.22941731974802382
the lambda is 20.0
the regulation term lambda/alpha is 87.17737624154367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3017436385333853
the lambda is 20.0
the regulation term lambda/alpha is 66.28143047922839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29566076663677004
the lambda is 20.0
the regulation term lambda/alpha is 67.6450928119615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28914405463013343
the lambda is 20.0
the regulation term lambda/alpha is 69.16967400759303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2982844146546851
the lambda is 20.0
the regulation term lambda/alpha is 67.05010056644562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2701121916796171
the lambda is 20.0
the regulation term lambda/alpha is 74.04330724813121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30996852328247915
the lambda is 20.0
the regulation term lambda/alpha is 64.52268052318877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2920090415753816
the lambda is 20.0
the regulation term lambda/alpha is 68.49102990818535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3045113291529852
the lambda is 20.0
the regulation term lambda/alpha is 65.67900135483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27964744844575457
the lambda is 20.0
the regulation term lambda/alpha is 71.51862143265562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2769149967182172
the lambda is 20.0
the regulation term lambda/alpha is 72.22432962109154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26292243496208473
the lambda is 20.0
the regulation term lambda/alpha is 76.06806168094458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.34657333391634737
the lambda is 20.0
the regulation term lambda/alpha is 57.70784432257391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27747956356695447
the lambda is 20.0
the regulation term lambda/alpha is 72.07738019659274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2904672967152645
the lambda is 20.0
the regulation term lambda/alpha is 68.85456719626974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27425471555895947
the lambda is 20.0
the regulation term lambda/alpha is 72.92490836206018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.279104052350091
the lambda is 20.0
the regulation term lambda/alpha is 71.6578631933055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2784444290685916
the lambda is 20.0
the regulation term lambda/alpha is 71.82761769341496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28068344723087285
the lambda is 20.0
the regulation term lambda/alpha is 71.25464717393625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26267355424789784
the lambda is 20.0
the regulation term lambda/alpha is 76.14013545164514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26403761067917053
the lambda is 20.0
the regulation term lambda/alpha is 75.74678451511137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25768869234494984
the lambda is 20.0
the regulation term lambda/alpha is 77.6130291865015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2934175150437001
the lambda is 20.0
the regulation term lambda/alpha is 68.16225676582839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2997123435820094
the lambda is 20.0
the regulation term lambda/alpha is 66.73065166742944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.34274646099435535
the lambda is 20.0
the regulation term lambda/alpha is 58.35217070360758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3161036139547039
the lambda is 20.0
the regulation term lambda/alpha is 63.27039336812487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2874770547818555
the lambda is 20.0
the regulation term lambda/alpha is 69.57076979648508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2951929169329867
the lambda is 20.0
the regulation term lambda/alpha is 67.75230316430765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.28724502306878175
the lambda is 20.0
the regulation term lambda/alpha is 69.62696789775514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30962788355524845
the lambda is 20.0
the regulation term lambda/alpha is 64.59366569429558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3057990634794162
the lambda is 20.0
the regulation term lambda/alpha is 65.4024239722573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2893583922539957
the lambda is 20.0
the regulation term lambda/alpha is 69.11843767242188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2905817452234633
the lambda is 20.0
the regulation term lambda/alpha is 68.82744814069305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27063771135338704
the lambda is 20.0
the regulation term lambda/alpha is 73.89953122196212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.34144303238358964
the lambda is 20.0
the regulation term lambda/alpha is 58.574924960047994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2768674642482523
the lambda is 20.0
the regulation term lambda/alpha is 72.23672905844604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.300379152338819
the lambda is 20.0
the regulation term lambda/alpha is 66.58251694325503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24393438176889515
the lambda is 20.0
the regulation term lambda/alpha is 81.98926225556886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30146140186209497
the lambda is 20.0
the regulation term lambda/alpha is 66.34348502482285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2389061497085621
the lambda is 20.0
the regulation term lambda/alpha is 83.71488144778897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2817418205994589
the lambda is 20.0
the regulation term lambda/alpha is 70.9869765072371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.29878809493498554
the lambda is 20.0
the regulation term lambda/alpha is 66.93707125229295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.245347506431959
the lambda is 20.0
the regulation term lambda/alpha is 81.51702982783932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27543814183326987
the lambda is 20.0
the regulation term lambda/alpha is 72.61158482584645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23791099780228891
the lambda is 20.0
the regulation term lambda/alpha is 84.06505031188425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.291951035080596
the lambda is 20.0
the regulation term lambda/alpha is 68.50463809617527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28704060040323914
the lambda is 20.0
the regulation term lambda/alpha is 69.67655436862829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2846992795814526
the lambda is 20.0
the regulation term lambda/alpha is 70.24956308074532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2930225939928715
the lambda is 20.0
the regulation term lambda/alpha is 68.25412241243946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27661923256302534
the lambda is 20.0
the regulation term lambda/alpha is 72.30155262412265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32312131526644355
the lambda is 20.0
the regulation term lambda/alpha is 61.89625708693387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2600514598555227
the lambda is 20.0
the regulation term lambda/alpha is 76.90785512648704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30112924804430624
the lambda is 20.0
the regulation term lambda/alpha is 66.41666370799467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2986302768125253
the lambda is 20.0
the regulation term lambda/alpha is 66.97244570601808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29362712293402893
the lambda is 20.0
the regulation term lambda/alpha is 68.11359863541465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3304808651144078
the lambda is 20.0
the regulation term lambda/alpha is 60.51787595350274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28681678172103653
the lambda is 20.0
the regulation term lambda/alpha is 69.73092676094657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3293964143726935
the lambda is 20.0
the regulation term lambda/alpha is 60.717115084838554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25502833062688396
the lambda is 20.0
the regulation term lambda/alpha is 78.42265975249923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2547437226053851
the lambda is 20.0
the regulation term lambda/alpha is 78.51027611377621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27644064965561416
the lambda is 20.0
the regulation term lambda/alpha is 72.34826001500039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2860112292020057
the lambda is 20.0
the regulation term lambda/alpha is 69.92732437744351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28105625202972745
the lambda is 20.0
the regulation term lambda/alpha is 71.16013202184376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25341398925347347
the lambda is 20.0
the regulation term lambda/alpha is 78.92224126583362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25059878244392436
the lambda is 20.0
the regulation term lambda/alpha is 79.80884745310098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2877132316825679
the lambda is 20.0
the regulation term lambda/alpha is 69.51366081788643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2518932958608178
the lambda is 20.0
the regulation term lambda/alpha is 79.39869908665963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30577777599163447
the lambda is 20.0
the regulation term lambda/alpha is 65.40697712624859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2871984625986618
the lambda is 20.0
the regulation term lambda/alpha is 69.63825578672576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2792565654165291
the lambda is 20.0
the regulation term lambda/alpha is 71.6187279972047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3563669482782885
the lambda is 20.0
the regulation term lambda/alpha is 56.121927402711634
830
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2971027685289738
the lambda is 20.0
the regulation term lambda/alpha is 67.31677425634483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27605493302552186
the lambda is 20.0
the regulation term lambda/alpha is 72.44934832644688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29182010677666065
the lambda is 20.0
the regulation term lambda/alpha is 68.53537345631446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2873264245535039
the lambda is 20.0
the regulation term lambda/alpha is 69.60724211523309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27319143583614397
the lambda is 20.0
the regulation term lambda/alpha is 73.208737084993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29654225081392616
the lambda is 20.0
the regulation term lambda/alpha is 67.4440149594385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2623870103717231
the lambda is 20.0
the regulation term lambda/alpha is 76.22328548835571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27658526926127047
the lambda is 20.0
the regulation term lambda/alpha is 72.31043089683645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30766222413978767
the lambda is 20.0
the regulation term lambda/alpha is 65.00635577188349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28840182641951656
the lambda is 20.0
the regulation term lambda/alpha is 69.34768842589608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31387968747267964
the lambda is 20.0
the regulation term lambda/alpha is 63.718682024432745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29103365725864433
the lambda is 20.0
the regulation term lambda/alpha is 68.72057406826254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2885643060438767
the lambda is 20.0
the regulation term lambda/alpha is 69.30864137076942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25424506627314947
the lambda is 20.0
the regulation term lambda/alpha is 78.66426001168848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3003641827192325
the lambda is 20.0
the regulation term lambda/alpha is 66.5858352981292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2930437569313074
the lambda is 20.0
the regulation term lambda/alpha is 68.2491932584942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3008559207874324
the lambda is 20.0
the regulation term lambda/alpha is 66.47700317033434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3075307535667072
the lambda is 20.0
the regulation term lambda/alpha is 65.03414623754614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30193439459944454
the lambda is 20.0
the regulation term lambda/alpha is 66.23955520712576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2702766277304624
the lambda is 20.0
the regulation term lambda/alpha is 73.99825936834358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3079305673867275
the lambda is 20.0
the regulation term lambda/alpha is 64.9497065839591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2535904141408008
the lambda is 20.0
the regulation term lambda/alpha is 78.86733442887717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2784853862106366
the lambda is 20.0
the regulation term lambda/alpha is 71.81705392925969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2330742101103218
the lambda is 20.0
the regulation term lambda/alpha is 85.80957966363302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27849876189232753
the lambda is 20.0
the regulation term lambda/alpha is 71.81360471445237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2486648395387838
the lambda is 20.0
the regulation term lambda/alpha is 80.42954539570376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27105409744390324
the lambda is 20.0
the regulation term lambda/alpha is 73.78600872890016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28038750439221394
the lambda is 20.0
the regulation term lambda/alpha is 71.32985488548533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2718787395829249
the lambda is 20.0
the regulation term lambda/alpha is 73.56220655826552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26943419822861686
the lambda is 20.0
the regulation term lambda/alpha is 74.22962686804091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26549837251639086
the lambda is 20.0
the regulation term lambda/alpha is 75.33002861915952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29706417345863634
the lambda is 20.0
the regulation term lambda/alpha is 67.32552016335565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26690856738352975
the lambda is 20.0
the regulation term lambda/alpha is 74.93202708349686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2829347693912698
the lambda is 20.0
the regulation term lambda/alpha is 70.68767137750415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2829254609797313
the lambda is 20.0
the regulation term lambda/alpha is 70.68999704283523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3118285987673096
the lambda is 20.0
the regulation term lambda/alpha is 64.13779903146167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26519443850182717
the lambda is 20.0
the regulation term lambda/alpha is 75.41636285054372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29551818055238593
the lambda is 20.0
the regulation term lambda/alpha is 67.67773124014155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29913993407962597
the lambda is 20.0
the regulation term lambda/alpha is 66.85834193797857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2578226284615883
the lambda is 20.0
the regulation term lambda/alpha is 77.57271004232159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2907185178357289
the lambda is 20.0
the regulation term lambda/alpha is 68.79506730046361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2652574690833629
the lambda is 20.0
the regulation term lambda/alpha is 75.39844238547933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3265295834515228
the lambda is 20.0
the regulation term lambda/alpha is 61.25019297974035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31775301906470943
the lambda is 20.0
the regulation term lambda/alpha is 62.94196687373429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3094713026434446
the lambda is 20.0
the regulation term lambda/alpha is 64.62634767477253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3195954176381251
the lambda is 20.0
the regulation term lambda/alpha is 62.579120025575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.309225634405169
the lambda is 20.0
the regulation term lambda/alpha is 64.67769089866141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3152607491218877
the lambda is 20.0
the regulation term lambda/alpha is 63.439549819338595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2947368379228963
the lambda is 20.0
the regulation term lambda/alpha is 67.85714382004748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26497222055857456
the lambda is 20.0
the regulation term lambda/alpha is 75.47961049591919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2728180228351211
the lambda is 20.0
the regulation term lambda/alpha is 73.3089397546404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27894699366922315
the lambda is 20.0
the regulation term lambda/alpha is 71.69820953050352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.35251975908996047
the lambda is 20.0
the regulation term lambda/alpha is 56.734408453105026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.34353407289247495
the lambda is 20.0
the regulation term lambda/alpha is 58.21838815464437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.34007637802570956
the lambda is 20.0
the regulation term lambda/alpha is 58.810318188251266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28128390467899317
the lambda is 20.0
the regulation term lambda/alpha is 71.10253970210063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.269164649328988
the lambda is 20.0
the regulation term lambda/alpha is 74.30396246259994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3097720972767214
the lambda is 20.0
the regulation term lambda/alpha is 64.56359425469452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30206116623296597
the lambda is 20.0
the regulation term lambda/alpha is 66.21175521971902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27355326976576055
the lambda is 20.0
the regulation term lambda/alpha is 73.11190254507171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25947134264364896
the lambda is 20.0
the regulation term lambda/alpha is 77.07980309589513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2857100562017574
the lambda is 20.0
the regulation term lambda/alpha is 70.00103624590929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3078384163125377
the lambda is 20.0
the regulation term lambda/alpha is 64.96914920357013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.304915738760687
the lambda is 20.0
the regulation term lambda/alpha is 65.59189132476035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2570731652227994
the lambda is 20.0
the regulation term lambda/alpha is 77.79886314725405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2638631800383901
the lambda is 20.0
the regulation term lambda/alpha is 75.79685804245273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27886237693035015
the lambda is 20.0
the regulation term lambda/alpha is 71.71996531104404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2976811052050936
the lambda is 20.0
the regulation term lambda/alpha is 67.18599081463563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.277460869393072
the lambda is 20.0
the regulation term lambda/alpha is 72.08223647445756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27386251028014363
the lambda is 20.0
the regulation term lambda/alpha is 73.02934592814947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26492408445846993
the lambda is 20.0
the regulation term lambda/alpha is 75.49332496847882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2765766156944099
the lambda is 20.0
the regulation term lambda/alpha is 72.31269335545723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.305471313678756
the lambda is 20.0
the regulation term lambda/alpha is 65.47259629436981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26873084102107914
the lambda is 20.0
the regulation term lambda/alpha is 74.4239102739652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2969528551291226
the lambda is 20.0
the regulation term lambda/alpha is 67.35075839329275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25935044406521784
the lambda is 20.0
the regulation term lambda/alpha is 77.11573455016209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.264377976182899
the lambda is 20.0
the regulation term lambda/alpha is 75.64926658703153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26191435334732743
the lambda is 20.0
the regulation term lambda/alpha is 76.36083988676171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2686701662071753
the lambda is 20.0
the regulation term lambda/alpha is 74.44071771101567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24182725722136098
the lambda is 20.0
the regulation term lambda/alpha is 82.70366306016793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24799368727568358
the lambda is 20.0
the regulation term lambda/alpha is 80.64721412753902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.249431518805058
the lambda is 20.0
the regulation term lambda/alpha is 80.18232858386635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2588544160285611
the lambda is 20.0
the regulation term lambda/alpha is 77.2635070587062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2961126697175986
the lambda is 20.0
the regulation term lambda/alpha is 67.54185837125415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26390389148612176
the lambda is 20.0
the regulation term lambda/alpha is 75.78516514998705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3143409281263089
the lambda is 20.0
the regulation term lambda/alpha is 63.62518593812757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27637409681838193
the lambda is 20.0
the regulation term lambda/alpha is 72.36568198771144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2721288780190428
the lambda is 20.0
the regulation term lambda/alpha is 73.49458883448767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24780463028403124
the lambda is 20.0
the regulation term lambda/alpha is 80.70874211299521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2857874836362108
the lambda is 20.0
the regulation term lambda/alpha is 69.98207110238152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31175484912494206
the lambda is 20.0
the regulation term lambda/alpha is 64.15297165749809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3165405197300174
the lambda is 20.0
the regulation term lambda/alpha is 63.18306426317341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26696916709495755
the lambda is 20.0
the regulation term lambda/alpha is 74.91501815595902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31129584099260066
the lambda is 20.0
the regulation term lambda/alpha is 64.24756571185732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23456189805575822
the lambda is 20.0
the regulation term lambda/alpha is 85.26534004787835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.305017077649736
the lambda is 20.0
the regulation term lambda/alpha is 65.57009907152427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2769357937829444
the lambda is 20.0
the regulation term lambda/alpha is 72.21890578606649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29291226646075674
the lambda is 20.0
the regulation term lambda/alpha is 68.27983082326641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23406046605781744
the lambda is 20.0
the regulation term lambda/alpha is 85.44800553827666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2938734018715095
the lambda is 20.0
the regulation term lambda/alpha is 68.05651642044357
840
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32097563447878547
the lambda is 20.0
the regulation term lambda/alpha is 62.31002559579605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25555233883888784
the lambda is 20.0
the regulation term lambda/alpha is 78.26185465909172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28225400271229656
the lambda is 20.0
the regulation term lambda/alpha is 70.85816253378748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.260633233985469
the lambda is 20.0
the regulation term lambda/alpha is 76.73618476880448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23641646524749124
the lambda is 20.0
the regulation term lambda/alpha is 84.59647672620058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27715915758672865
the lambda is 20.0
the regulation term lambda/alpha is 72.16070424713136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30922167039511494
the lambda is 20.0
the regulation term lambda/alpha is 64.67852002236631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3352376115114597
the lambda is 20.0
the regulation term lambda/alpha is 59.65917699337959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3076030578500512
the lambda is 20.0
the regulation term lambda/alpha is 65.01885949960062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2724938075933586
the lambda is 20.0
the regulation term lambda/alpha is 73.39616329867546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29025105702521414
the lambda is 20.0
the regulation term lambda/alpha is 68.90586447808387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2779354955294722
the lambda is 20.0
the regulation term lambda/alpha is 71.9591427568459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2936831122451628
the lambda is 20.0
the regulation term lambda/alpha is 68.10061309655512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28896319087398314
the lambda is 20.0
the regulation term lambda/alpha is 69.21296771228555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2885340115942919
the lambda is 20.0
the regulation term lambda/alpha is 69.31591838858162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2754422170444514
the lambda is 20.0
the regulation term lambda/alpha is 72.61051052596038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29660889197603624
the lambda is 20.0
the regulation term lambda/alpha is 67.42886184820058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2772711805020674
the lambda is 20.0
the regulation term lambda/alpha is 72.13154992807078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2967338016766974
the lambda is 20.0
the regulation term lambda/alpha is 67.40047775814483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25180674879060283
the lambda is 20.0
the regulation term lambda/alpha is 79.4259887634369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2614698138424962
the lambda is 20.0
the regulation term lambda/alpha is 76.490665236208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27493433797744504
the lambda is 20.0
the regulation term lambda/alpha is 72.7446420375499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29125364991291175
the lambda is 20.0
the regulation term lambda/alpha is 68.66866734882201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.34601838195100015
the lambda is 20.0
the regulation term lambda/alpha is 57.80039744487393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25128068615007276
the lambda is 20.0
the regulation term lambda/alpha is 79.59226913307363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3187762827123542
the lambda is 20.0
the regulation term lambda/alpha is 62.739924783070755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29593103057751236
the lambda is 20.0
the regulation term lambda/alpha is 67.5833148047023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2794963137784907
the lambda is 20.0
the regulation term lambda/alpha is 71.5572943686499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3069839456413653
the lambda is 20.0
the regulation term lambda/alpha is 65.14998677932509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2913155355162719
the lambda is 20.0
the regulation term lambda/alpha is 68.65407972340311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2941968651870261
the lambda is 20.0
the regulation term lambda/alpha is 67.98168970048559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.26183097093407104
the lambda is 20.0
the regulation term lambda/alpha is 76.38515767882934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29613472531517465
the lambda is 20.0
the regulation term lambda/alpha is 67.53682797150555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27610321831204626
the lambda is 20.0
the regulation term lambda/alpha is 72.43667829107449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3162637052296185
the lambda is 20.0
the regulation term lambda/alpha is 63.2383661776153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27835218398059886
the lambda is 20.0
the regulation term lambda/alpha is 71.8514211528299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3057132787765831
the lambda is 20.0
the regulation term lambda/alpha is 65.42077622547795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2469545908186526
the lambda is 20.0
the regulation term lambda/alpha is 80.98654871610263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30514835797251394
the lambda is 20.0
the regulation term lambda/alpha is 65.54188963324354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.284737994126156
the lambda is 20.0
the regulation term lambda/alpha is 70.24001156353866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3052493808426267
the lambda is 20.0
the regulation term lambda/alpha is 65.52019841871892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2790425065652839
the lambda is 20.0
the regulation term lambda/alpha is 71.67366809515404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.3061055195263508
the lambda is 20.0
the regulation term lambda/alpha is 65.33694665469213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28392341283563377
the lambda is 20.0
the regulation term lambda/alpha is 70.44153139839231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3004142203055638
the lambda is 20.0
the regulation term lambda/alpha is 66.57474462978873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2918720001726773
the lambda is 20.0
the regulation term lambda/alpha is 68.52318820636307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23657238221424615
the lambda is 20.0
the regulation term lambda/alpha is 84.5407220099237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23751036230010422
the lambda is 20.0
the regulation term lambda/alpha is 84.20685230873913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2826912595057916
the lambda is 20.0
the regulation term lambda/alpha is 70.74856164624451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27223793304323113
the lambda is 20.0
the regulation term lambda/alpha is 73.46514784485973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30469477301088294
the lambda is 20.0
the regulation term lambda/alpha is 65.63945880123664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28305937202873094
the lambda is 20.0
the regulation term lambda/alpha is 70.6565546890635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30261542922285256
the lambda is 20.0
the regulation term lambda/alpha is 66.09048339459112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2612189804723374
the lambda is 20.0
the regulation term lambda/alpha is 76.56411476622375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30525767081544924
the lambda is 20.0
the regulation term lambda/alpha is 65.51841906731796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25753002673819564
the lambda is 20.0
the regulation term lambda/alpha is 77.66084698283338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2461698659276697
the lambda is 20.0
the regulation term lambda/alpha is 81.24471256720128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28616396520637455
the lambda is 20.0
the regulation term lambda/alpha is 69.89000164844823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2786540211981867
the lambda is 20.0
the regulation term lambda/alpha is 71.77359190440474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26629397581058184
the lambda is 20.0
the regulation term lambda/alpha is 75.10496600278425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2572146624936812
the lambda is 20.0
the regulation term lambda/alpha is 77.75606493852708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2582418554219228
the lambda is 20.0
the regulation term lambda/alpha is 77.44677936627832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3088510584927329
the lambda is 20.0
the regulation term lambda/alpha is 64.75613228461896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25957558172679374
the lambda is 20.0
the regulation term lambda/alpha is 77.04884976835082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2743191365804786
the lambda is 20.0
the regulation term lambda/alpha is 72.907782699048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25958218440035713
the lambda is 20.0
the regulation term lambda/alpha is 77.0468899712845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2555859879559137
the lambda is 20.0
the regulation term lambda/alpha is 78.25155111183099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3079137641620642
the lambda is 20.0
the regulation term lambda/alpha is 64.95325096760989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3091504218878782
the lambda is 20.0
the regulation term lambda/alpha is 64.69342618996504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25700327713136056
the lambda is 20.0
the regulation term lambda/alpha is 77.8200193524284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25836878595742635
the lambda is 20.0
the regulation term lambda/alpha is 77.40873157679184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2693180767503186
the lambda is 20.0
the regulation term lambda/alpha is 74.2616323468764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23524974639352927
the lambda is 20.0
the regulation term lambda/alpha is 85.01603213864342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29117224195589375
the lambda is 20.0
the regulation term lambda/alpha is 68.68786621160669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2811225839012986
the lambda is 20.0
the regulation term lambda/alpha is 71.1433415360964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2674412457583068
the lambda is 20.0
the regulation term lambda/alpha is 74.78278058155057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2800800499686716
the lambda is 20.0
the regulation term lambda/alpha is 71.40815635471753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30985367398197805
the lambda is 20.0
the regulation term lambda/alpha is 64.54659627874302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27386454085701933
the lambda is 20.0
the regulation term lambda/alpha is 73.02880444986745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27994881470160743
the lambda is 20.0
the regulation term lambda/alpha is 71.4416312900544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2544697364898641
the lambda is 20.0
the regulation term lambda/alpha is 78.59480768078144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29137696309348643
the lambda is 20.0
the regulation term lambda/alpha is 68.63960619145834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24339313397463777
the lambda is 20.0
the regulation term lambda/alpha is 82.1715866565244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2833575137673417
the lambda is 20.0
the regulation term lambda/alpha is 70.58221161702294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2804445869374518
the lambda is 20.0
the regulation term lambda/alpha is 71.31533618960756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25746087523726735
the lambda is 20.0
the regulation term lambda/alpha is 77.6817059351976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3144937907216227
the lambda is 20.0
the regulation term lambda/alpha is 63.594260332164076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3047685520398018
the lambda is 20.0
the regulation term lambda/alpha is 65.62356865936766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3013686945400572
the lambda is 20.0
the regulation term lambda/alpha is 66.36389367025528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33658841542430445
the lambda is 20.0
the regulation term lambda/alpha is 59.41975149319365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2557329521535826
the lambda is 20.0
the regulation term lambda/alpha is 78.20658163750767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30756172821959876
the lambda is 20.0
the regulation term lambda/alpha is 65.02759662515624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2760816921231325
the lambda is 20.0
the regulation term lambda/alpha is 72.4423262049553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2735492620169923
the lambda is 20.0
the regulation term lambda/alpha is 73.11297370181771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2340824326392067
the lambda is 20.0
the regulation term lambda/alpha is 85.43998699306998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29576014986305094
the lambda is 20.0
the regulation term lambda/alpha is 67.62236227314877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.257846504299705
the lambda is 20.0
the regulation term lambda/alpha is 77.56552703446087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31490571074004337
the lambda is 20.0
the regulation term lambda/alpha is 63.51107432443524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.34780865764886426
the lambda is 20.0
the regulation term lambda/alpha is 57.502881426808294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27092725737424117
the lambda is 20.0
the regulation term lambda/alpha is 73.820553139743
850
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2801806468204552
the lambda is 20.0
the regulation term lambda/alpha is 71.3825177683181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28860505998836766
the lambda is 20.0
the regulation term lambda/alpha is 69.29885429176504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24188147784664427
the lambda is 20.0
the regulation term lambda/alpha is 82.68512404525757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29112158535963745
the lambda is 20.0
the regulation term lambda/alpha is 68.69981824017952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3604616817825562
the lambda is 20.0
the regulation term lambda/alpha is 55.48439962077505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2948939121763407
the lambda is 20.0
the regulation term lambda/alpha is 67.82099993993907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2831557861602816
the lambda is 20.0
the regulation term lambda/alpha is 70.63249623540771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3055819340104404
the lambda is 20.0
the regulation term lambda/alpha is 65.4488952848786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25845245358491303
the lambda is 20.0
the regulation term lambda/alpha is 77.38367240312972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2956955657651213
the lambda is 20.0
the regulation term lambda/alpha is 67.63713195444575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2914922662120874
the lambda is 20.0
the regulation term lambda/alpha is 68.61245500574675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2620301468210334
the lambda is 20.0
the regulation term lambda/alpha is 76.32709534624655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3030604879335466
the lambda is 20.0
the regulation term lambda/alpha is 65.99342638287274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26176512406075647
the lambda is 20.0
the regulation term lambda/alpha is 76.40437232332731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28524245437117823
the lambda is 20.0
the regulation term lambda/alpha is 70.11578989561822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2555980470774077
the lambda is 20.0
the regulation term lambda/alpha is 78.24785920192502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27178200543263376
the lambda is 20.0
the regulation term lambda/alpha is 73.58838922453008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2731022624753851
the lambda is 20.0
the regulation term lambda/alpha is 73.23264120451076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28523174827038517
the lambda is 20.0
the regulation term lambda/alpha is 70.11842167387698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28459394404807536
the lambda is 20.0
the regulation term lambda/alpha is 70.27556424960848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29568948429164726
the lambda is 20.0
the regulation term lambda/alpha is 67.6385230537093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27110227722149915
the lambda is 20.0
the regulation term lambda/alpha is 73.77289562071574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2505926234031724
the lambda is 20.0
the regulation term lambda/alpha is 79.81080898707256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2525076793217938
the lambda is 20.0
the regulation term lambda/alpha is 79.20551190251983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2738485215289395
the lambda is 20.0
the regulation term lambda/alpha is 73.0330764188057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3127435504819545
the lambda is 20.0
the regulation term lambda/alpha is 63.95015970490497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30455587484491314
the lambda is 20.0
the regulation term lambda/alpha is 65.66939485302807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28821337533839836
the lambda is 20.0
the regulation term lambda/alpha is 69.39303207742358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28265170443835785
the lambda is 20.0
the regulation term lambda/alpha is 70.75846239717866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.256092589173332
the lambda is 20.0
the regulation term lambda/alpha is 78.09675424251864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2762187749757088
the lambda is 20.0
the regulation term lambda/alpha is 72.40637426532226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2928414166395138
the lambda is 20.0
the regulation term lambda/alpha is 68.29635039165206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.288098648243102
the lambda is 20.0
the regulation term lambda/alpha is 69.42066587943064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.285814541619004
the lambda is 20.0
the regulation term lambda/alpha is 69.97544591926454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28126986753560673
the lambda is 20.0
the regulation term lambda/alpha is 71.10608816804077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28145558247988794
the lambda is 20.0
the regulation term lambda/alpha is 71.05916970550459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30185813142748247
the lambda is 20.0
the regulation term lambda/alpha is 66.25629034878175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2779574204164648
the lambda is 20.0
the regulation term lambda/alpha is 71.95346672175152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.264502471800684
the lambda is 20.0
the regulation term lambda/alpha is 75.6136601062504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3065443850758068
the lambda is 20.0
the regulation term lambda/alpha is 65.24340674207458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2888549315203235
the lambda is 20.0
the regulation term lambda/alpha is 69.23890790001217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2601304442234612
the lambda is 20.0
the regulation term lambda/alpha is 76.88450331026728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2636002738168197
the lambda is 20.0
the regulation term lambda/alpha is 75.8724553294597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26755190065619994
the lambda is 20.0
the regulation term lambda/alpha is 74.75185170035361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2637265524255867
the lambda is 20.0
the regulation term lambda/alpha is 75.83612577517472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3190384669202579
the lambda is 20.0
the regulation term lambda/alpha is 62.68836542835727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3001394402302961
the lambda is 20.0
the regulation term lambda/alpha is 66.63569434478208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2427872126188609
the lambda is 20.0
the regulation term lambda/alpha is 82.37666137465389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26866364110756497
the lambda is 20.0
the regulation term lambda/alpha is 74.442525670947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2823961528298857
the lambda is 20.0
the regulation term lambda/alpha is 70.82249456864207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2721485575975599
the lambda is 20.0
the regulation term lambda/alpha is 73.48927430133593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2274311108370295
the lambda is 20.0
the regulation term lambda/alpha is 87.9387165915547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.260549698582258
the lambda is 20.0
the regulation term lambda/alpha is 76.76078732321315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29667657175574114
the lambda is 20.0
the regulation term lambda/alpha is 67.41347953982137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25923595110920483
the lambda is 20.0
the regulation term lambda/alpha is 77.14979313025479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3240521572337836
the lambda is 20.0
the regulation term lambda/alpha is 61.71845967861043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28160139472443835
the lambda is 20.0
the regulation term lambda/alpha is 71.02237550908099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3284171754577148
the lambda is 20.0
the regulation term lambda/alpha is 60.89815483044092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33820062421119285
the lambda is 20.0
the regulation term lambda/alpha is 59.13649641140459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2990358613262502
the lambda is 20.0
the regulation term lambda/alpha is 66.88161049078947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30375333278847133
the lambda is 20.0
the regulation term lambda/alpha is 65.84289896146642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3258431647924887
the lambda is 20.0
the regulation term lambda/alpha is 61.3792221565761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2968832054374367
the lambda is 20.0
the regulation term lambda/alpha is 67.36655908350018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26536582415952736
the lambda is 20.0
the regulation term lambda/alpha is 75.36765543695934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3360613467869449
the lambda is 20.0
the regulation term lambda/alpha is 59.51294366703689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2525976077658731
the lambda is 20.0
the regulation term lambda/alpha is 79.17731358143953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.319593324599951
the lambda is 20.0
the regulation term lambda/alpha is 62.57952986044023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28498035921355513
the lambda is 20.0
the regulation term lambda/alpha is 70.18027507296614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3153020713818856
the lambda is 20.0
the regulation term lambda/alpha is 63.43123567931314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2715024189556223
the lambda is 20.0
the regulation term lambda/alpha is 73.66416872797382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2823112105205546
the lambda is 20.0
the regulation term lambda/alpha is 70.84380376932937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2950022493439487
the lambda is 20.0
the regulation term lambda/alpha is 67.79609323141676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2777883775513557
the lambda is 20.0
the regulation term lambda/alpha is 71.99725264352548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28914384203424065
the lambda is 20.0
the regulation term lambda/alpha is 69.1697248652855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2722458683499186
the lambda is 20.0
the regulation term lambda/alpha is 73.46300651400126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2726332376788082
the lambda is 20.0
the regulation term lambda/alpha is 73.35862703417764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27215890249081665
the lambda is 20.0
the regulation term lambda/alpha is 73.48648093800588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2692749492849816
the lambda is 20.0
the regulation term lambda/alpha is 74.27352619731965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25135693666491
the lambda is 20.0
the regulation term lambda/alpha is 79.56812437868975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30777498677794396
the lambda is 20.0
the regulation term lambda/alpha is 64.98253873512394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29527569390362735
the lambda is 20.0
the regulation term lambda/alpha is 67.73330962530102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2640249663684705
the lambda is 20.0
the regulation term lambda/alpha is 75.75041207310754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28507755503383525
the lambda is 20.0
the regulation term lambda/alpha is 70.15634744596515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3004087977329323
the lambda is 20.0
the regulation term lambda/alpha is 66.57594634688525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29005279700684033
the lambda is 20.0
the regulation term lambda/alpha is 68.9529637582786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27441550134483395
the lambda is 20.0
the regulation term lambda/alpha is 72.8821801319006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26718036907360404
the lambda is 20.0
the regulation term lambda/alpha is 74.8557989845815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2975547374645592
the lambda is 20.0
the regulation term lambda/alpha is 67.214523856748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3122561623902062
the lambda is 20.0
the regulation term lambda/alpha is 64.0499769385089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25679927789335055
the lambda is 20.0
the regulation term lambda/alpha is 77.88183893689161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25989192843120856
the lambda is 20.0
the regulation term lambda/alpha is 76.9550640557652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26016000484648544
the lambda is 20.0
the regulation term lambda/alpha is 76.8757673255793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2810696607128356
the lambda is 20.0
the regulation term lambda/alpha is 71.15673726319996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2712518608382782
the lambda is 20.0
the regulation term lambda/alpha is 73.73221307382701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.258707364509304
the lambda is 20.0
the regulation term lambda/alpha is 77.30742430906227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2659016797286567
the lambda is 20.0
the regulation term lambda/alpha is 75.2157715604102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31003983208938063
the lambda is 20.0
the regulation term lambda/alpha is 64.5078403804394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2876692646854253
the lambda is 20.0
the regulation term lambda/alpha is 69.52428519560677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33640822931447695
the lambda is 20.0
the regulation term lambda/alpha is 59.45157774753438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2594422986201444
the lambda is 20.0
the regulation term lambda/alpha is 77.08843201887628
860
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29622634978027723
the lambda is 20.0
the regulation term lambda/alpha is 67.51593845326315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2731990419130841
the lambda is 20.0
the regulation term lambda/alpha is 73.206698895975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2736514094234399
the lambda is 20.0
the regulation term lambda/alpha is 73.08568240937727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28058673282892455
the lambda is 20.0
the regulation term lambda/alpha is 71.2792076744203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30083709143550835
the lambda is 20.0
the regulation term lambda/alpha is 66.4811639567639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.36018351599820964
the lambda is 20.0
the regulation term lambda/alpha is 55.52724961488636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3025124454100082
the lambda is 20.0
the regulation term lambda/alpha is 66.1129824688473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27256173417585006
the lambda is 20.0
the regulation term lambda/alpha is 73.37787184424243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27059347142504525
the lambda is 20.0
the regulation term lambda/alpha is 73.91161322064647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24601255599289074
the lambda is 20.0
the regulation term lambda/alpha is 81.29666357589471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2201928756111555
the lambda is 20.0
the regulation term lambda/alpha is 90.829460056276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3027052201551334
the lambda is 20.0
the regulation term lambda/alpha is 66.07087908741778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29673929272673666
the lambda is 20.0
the regulation term lambda/alpha is 67.39923053741904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3234137062956313
the lambda is 20.0
the regulation term lambda/alpha is 61.84029807851765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29058719574292774
the lambda is 20.0
the regulation term lambda/alpha is 68.82615715006692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28880763017768524
the lambda is 20.0
the regulation term lambda/alpha is 69.25024795118901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2817074219374381
the lambda is 20.0
the regulation term lambda/alpha is 70.99564456786526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.255980594896443
the lambda is 20.0
the regulation term lambda/alpha is 78.13092241656445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.324367317116144
the lambda is 20.0
the regulation term lambda/alpha is 61.658493148490464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28520614537682004
the lambda is 20.0
the regulation term lambda/alpha is 70.12471618932194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26292521499200966
the lambda is 20.0
the regulation term lambda/alpha is 76.06725737814003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2555936930080539
the lambda is 20.0
the regulation term lambda/alpha is 78.24919216363367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2727485894732361
the lambda is 20.0
the regulation term lambda/alpha is 73.32760194516985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2983994738820911
the lambda is 20.0
the regulation term lambda/alpha is 67.02424685876878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27272750629541953
the lambda is 20.0
the regulation term lambda/alpha is 73.33327052950764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3099630537181295
the lambda is 20.0
the regulation term lambda/alpha is 64.52381908131335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2813526303495535
the lambda is 20.0
the regulation term lambda/alpha is 71.08517156975547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29382206892276747
the lambda is 20.0
the regulation term lambda/alpha is 68.06840641115046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2883041299852845
the lambda is 20.0
the regulation term lambda/alpha is 69.37118799172538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3065445610439528
the lambda is 20.0
the regulation term lambda/alpha is 65.24336928989705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2780476662673259
the lambda is 20.0
the regulation term lambda/alpha is 71.93011280580653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2857595204955779
the lambda is 20.0
the regulation term lambda/alpha is 69.98891923290968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27532104552958575
the lambda is 20.0
the regulation term lambda/alpha is 72.64246712970882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2645633883260647
the lambda is 20.0
the regulation term lambda/alpha is 75.59624983087505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28921196480060507
the lambda is 20.0
the regulation term lambda/alpha is 69.15343220253298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2584461719976728
the lambda is 20.0
the regulation term lambda/alpha is 77.38555322916562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2893988926894562
the lambda is 20.0
the regulation term lambda/alpha is 69.10876477147167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2881786890246898
the lambda is 20.0
the regulation term lambda/alpha is 69.40138449407164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2932581222653577
the lambda is 20.0
the regulation term lambda/alpha is 68.19930457681507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2842739856425311
the lambda is 20.0
the regulation term lambda/alpha is 70.35466138343592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29154090950085115
the lambda is 20.0
the regulation term lambda/alpha is 68.60100709105323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26662874044688806
the lambda is 20.0
the regulation term lambda/alpha is 75.01066826658906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2680512272387865
the lambda is 20.0
the regulation term lambda/alpha is 74.61260374004375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29048789286182136
the lambda is 20.0
the regulation term lambda/alpha is 68.8496852759146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30193466128443636
the lambda is 20.0
the regulation term lambda/alpha is 66.23949670077486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.22789468710593902
the lambda is 20.0
the regulation term lambda/alpha is 87.75983439536179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26760521272602106
the lambda is 20.0
the regulation term lambda/alpha is 74.73695970368243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29674346456285644
the lambda is 20.0
the regulation term lambda/alpha is 67.39828298986373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3155678177624545
the lambda is 20.0
the regulation term lambda/alpha is 63.377818884735305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28673602752463445
the lambda is 20.0
the regulation term lambda/alpha is 69.75056525912753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30778203987395614
the lambda is 20.0
the regulation term lambda/alpha is 64.98104960312324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29766766229506125
the lambda is 20.0
the regulation term lambda/alpha is 67.18902498779032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2984009749579315
the lambda is 20.0
the regulation term lambda/alpha is 67.02390970009262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2575936469128935
the lambda is 20.0
the regulation term lambda/alpha is 77.64166639856259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2690020808171468
the lambda is 20.0
the regulation term lambda/alpha is 74.34886726246154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2783003085862462
the lambda is 20.0
the regulation term lambda/alpha is 71.86481431371439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2701258542578349
the lambda is 20.0
the regulation term lambda/alpha is 74.03956224386435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30174883686065124
the lambda is 20.0
the regulation term lambda/alpha is 66.28028862704805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28357035371718053
the lambda is 20.0
the regulation term lambda/alpha is 70.5292345896886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2520471221574574
the lambda is 20.0
the regulation term lambda/alpha is 79.35024145011153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28682664219452525
the lambda is 20.0
the regulation term lambda/alpha is 69.72852956398674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26050082914487127
the lambda is 20.0
the regulation term lambda/alpha is 76.77518749423051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24716217091613088
the lambda is 20.0
the regulation term lambda/alpha is 80.9185318524596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24814717325079924
the lambda is 20.0
the regulation term lambda/alpha is 80.5973315673689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29328377098778097
the lambda is 20.0
the regulation term lambda/alpha is 68.19334030191959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30457062644778626
the lambda is 20.0
the regulation term lambda/alpha is 65.66621421527226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26182701411287695
the lambda is 20.0
the regulation term lambda/alpha is 76.38631203798454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28089942004631213
the lambda is 20.0
the regulation term lambda/alpha is 71.19986220228786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33412197179352343
the lambda is 20.0
the regulation term lambda/alpha is 59.85838013777601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.288863223465822
the lambda is 20.0
the regulation term lambda/alpha is 69.23692036679907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30344686102151514
the lambda is 20.0
the regulation term lambda/alpha is 65.90939821447667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.25063734482279737
the lambda is 20.0
the regulation term lambda/alpha is 79.79656828131563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2723231935549811
the lambda is 20.0
the regulation term lambda/alpha is 73.44214695382556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29771574709556103
the lambda is 20.0
the regulation term lambda/alpha is 67.17817312357477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2667596293453346
the lambda is 20.0
the regulation term lambda/alpha is 74.97386335812055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3024899409292454
the lambda is 20.0
the regulation term lambda/alpha is 66.11790110626569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27296353039805626
the lambda is 20.0
the regulation term lambda/alpha is 73.26986125521776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.244150438566571
the lambda is 20.0
the regulation term lambda/alpha is 81.91670724583491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25335131244803316
the lambda is 20.0
the regulation term lambda/alpha is 78.94176590895835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2627577904578348
the lambda is 20.0
the regulation term lambda/alpha is 76.11572606525412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27010627296743844
the lambda is 20.0
the regulation term lambda/alpha is 74.04492972442375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2643038942677257
the lambda is 20.0
the regulation term lambda/alpha is 75.67047037052383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.266333001691923
the lambda is 20.0
the regulation term lambda/alpha is 75.09396084205413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31375605937406903
the lambda is 20.0
the regulation term lambda/alpha is 63.743788852713195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28564224536426175
the lambda is 20.0
the regulation term lambda/alpha is 70.01765433714206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3064554528084955
the lambda is 20.0
the regulation term lambda/alpha is 65.26234014344013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3491107458447333
the lambda is 20.0
the regulation term lambda/alpha is 57.28841130801222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32159448128522833
the lambda is 20.0
the regulation term lambda/alpha is 62.190121920225415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2509049886390825
the lambda is 20.0
the regulation term lambda/alpha is 79.71144817996925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29583132012760066
the lambda is 20.0
the regulation term lambda/alpha is 67.60609387597438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2627350754164046
the lambda is 20.0
the regulation term lambda/alpha is 76.12230673160909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28466278195860767
the lambda is 20.0
the regulation term lambda/alpha is 70.25857002587773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28717887348878324
the lambda is 20.0
the regulation term lambda/alpha is 69.64300596708472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30701075850581677
the lambda is 20.0
the regulation term lambda/alpha is 65.14429688828338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27108923636890214
the lambda is 20.0
the regulation term lambda/alpha is 73.77644449440152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27800518033718435
the lambda is 20.0
the regulation term lambda/alpha is 71.94110547056204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31117722192187347
the lambda is 20.0
the regulation term lambda/alpha is 64.27205653574912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.270629202437315
the lambda is 20.0
the regulation term lambda/alpha is 73.90185471441332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2808338337893987
the lambda is 20.0
the regulation term lambda/alpha is 71.21649030009071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2741298342784073
the lambda is 20.0
the regulation term lambda/alpha is 72.95812968568727
870
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27082703540240827
the lambda is 20.0
the regulation term lambda/alpha is 73.84787109707496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24351043522118335
the lambda is 20.0
the regulation term lambda/alpha is 82.13200383726377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2830842261762638
the lambda is 20.0
the regulation term lambda/alpha is 70.65035120518125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27391992713764823
the lambda is 20.0
the regulation term lambda/alpha is 73.01403811322477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27827637987809944
the lambda is 20.0
the regulation term lambda/alpha is 71.87099389736605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2683168262409587
the lambda is 20.0
the regulation term lambda/alpha is 74.53874689930642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30183867827006394
the lambda is 20.0
the regulation term lambda/alpha is 66.26056049087722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31302277794487093
the lambda is 20.0
the regulation term lambda/alpha is 63.89311388554084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2622826005104712
the lambda is 20.0
the regulation term lambda/alpha is 76.25362857114699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2743487581446052
the lambda is 20.0
the regulation term lambda/alpha is 72.89991081154555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2547777315407324
the lambda is 20.0
the regulation term lambda/alpha is 78.49979619118524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3205062696429773
the lambda is 20.0
the regulation term lambda/alpha is 62.40127540181561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.34347127937884403
the lambda is 20.0
the regulation term lambda/alpha is 58.22903165635657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29121855234234945
the lambda is 20.0
the regulation term lambda/alpha is 68.67694327553859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2767472380237616
the lambda is 20.0
the regulation term lambda/alpha is 72.26811057923835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3218500913790684
the lambda is 20.0
the regulation term lambda/alpha is 62.140731153139285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2716891013437295
the lambda is 20.0
the regulation term lambda/alpha is 73.61355277441494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2609154197229036
the lambda is 20.0
the regulation term lambda/alpha is 76.65319290534964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2905889018873838
the lambda is 20.0
the regulation term lambda/alpha is 68.82575304872069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28304208551410115
the lambda is 20.0
the regulation term lambda/alpha is 70.66086996805852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2930219138678926
the lambda is 20.0
the regulation term lambda/alpha is 68.25428083517636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30798703932862737
the lambda is 20.0
the regulation term lambda/alpha is 64.93779752419927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33224736048597353
the lambda is 20.0
the regulation term lambda/alpha is 60.19611403607927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3026268071228337
the lambda is 20.0
the regulation term lambda/alpha is 66.0879985819702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29252519822941203
the lambda is 20.0
the regulation term lambda/alpha is 68.37017843609856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31333860449771805
the lambda is 20.0
the regulation term lambda/alpha is 63.82871345220934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32190066729527494
the lambda is 20.0
the regulation term lambda/alpha is 62.13096781702003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25624187373866575
the lambda is 20.0
the regulation term lambda/alpha is 78.05125566790643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31432110797527096
the lambda is 20.0
the regulation term lambda/alpha is 63.629197952475685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26958162791811413
the lambda is 20.0
the regulation term lambda/alpha is 74.18903192496127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32419601050719177
the lambda is 20.0
the regulation term lambda/alpha is 61.69107376957167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28960161395630996
the lambda is 20.0
the regulation term lambda/alpha is 69.06038860341866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3312564385959738
the lambda is 20.0
the regulation term lambda/alpha is 60.37618494230556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.290504835898111
the lambda is 20.0
the regulation term lambda/alpha is 68.84566977402957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3328778524757515
the lambda is 20.0
the regulation term lambda/alpha is 60.08209873757492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.269767847816893
the lambda is 20.0
the regulation term lambda/alpha is 74.137819469039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3273421857295991
the lambda is 20.0
the regulation term lambda/alpha is 61.09814399700072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2837791657302132
the lambda is 20.0
the regulation term lambda/alpha is 70.47733736384951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26148324581987864
the lambda is 20.0
the regulation term lambda/alpha is 76.48673603270511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.309693285226185
the lambda is 20.0
the regulation term lambda/alpha is 64.58002466986963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2551447146943904
the lambda is 20.0
the regulation term lambda/alpha is 78.3868873159132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27442886578967385
the lambda is 20.0
the regulation term lambda/alpha is 72.87863083371224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2559763100361821
the lambda is 20.0
the regulation term lambda/alpha is 78.1322302722975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.21358836561340283
the lambda is 20.0
the regulation term lambda/alpha is 93.63805908885602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2942091819372674
the lambda is 20.0
the regulation term lambda/alpha is 67.97884372033123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26283347964586595
the lambda is 20.0
the regulation term lambda/alpha is 76.09380672107453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25634976275599664
the lambda is 20.0
the regulation term lambda/alpha is 78.01840651218684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26334859746444045
the lambda is 20.0
the regulation term lambda/alpha is 75.94496493455055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26245768134323805
the lambda is 20.0
the regulation term lambda/alpha is 76.20276113711571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29100036544952035
the lambda is 20.0
the regulation term lambda/alpha is 68.72843602483168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2587973975441977
the lambda is 20.0
the regulation term lambda/alpha is 77.28052982675135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29917527606048316
the lambda is 20.0
the regulation term lambda/alpha is 66.85044387142698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3170997881823145
the lambda is 20.0
the regulation term lambda/alpha is 63.07162838122468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3221428409891249
the lambda is 20.0
the regulation term lambda/alpha is 62.08426031940028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2830235634881838
the lambda is 20.0
the regulation term lambda/alpha is 70.66549425604627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.268714107378106
the lambda is 20.0
the regulation term lambda/alpha is 74.42854487672327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29355179016341554
the lambda is 20.0
the regulation term lambda/alpha is 68.13107829751719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3187499640640752
the lambda is 20.0
the regulation term lambda/alpha is 62.74510511310864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2944918858001259
the lambda is 20.0
the regulation term lambda/alpha is 67.91358595725168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29119317786791293
the lambda is 20.0
the regulation term lambda/alpha is 68.68292776100725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3534499601192047
the lambda is 20.0
the regulation term lambda/alpha is 56.585096213491695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3096334738444891
the lambda is 20.0
the regulation term lambda/alpha is 64.59249948552022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27560022693955133
the lambda is 20.0
the regulation term lambda/alpha is 72.56888073748463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2854968878427861
the lambda is 20.0
the regulation term lambda/alpha is 70.0533030364007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2767628301427253
the lambda is 20.0
the regulation term lambda/alpha is 72.26403917638108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28873162999616353
the lambda is 20.0
the regulation term lambda/alpha is 69.26847605946652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31727367454272587
the lambda is 20.0
the regulation term lambda/alpha is 63.0370610761363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28761619995553417
the lambda is 20.0
the regulation term lambda/alpha is 69.537112315273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3347010125027462
the lambda is 20.0
the regulation term lambda/alpha is 59.754823716991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3184490986845072
the lambda is 20.0
the regulation term lambda/alpha is 62.80438563845436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25556162714409747
the lambda is 20.0
the regulation term lambda/alpha is 78.25901025713486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26467015766394
the lambda is 20.0
the regulation term lambda/alpha is 75.56575390488348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2795426027697527
the lambda is 20.0
the regulation term lambda/alpha is 71.54544531615865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31653095229207334
the lambda is 20.0
the regulation term lambda/alpha is 63.1849740291602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3110783875669245
the lambda is 20.0
the regulation term lambda/alpha is 64.29247674976217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28622197488392154
the lambda is 20.0
the regulation term lambda/alpha is 69.87583678056544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3154621400699056
the lambda is 20.0
the regulation term lambda/alpha is 63.39905002726493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32363886227845917
the lambda is 20.0
the regulation term lambda/alpha is 61.79727570168005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2666297439917035
the lambda is 20.0
the regulation term lambda/alpha is 75.01038594037101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25901449624412626
the lambda is 20.0
the regulation term lambda/alpha is 77.21575545003321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3059996488411486
the lambda is 20.0
the regulation term lambda/alpha is 65.35955212936358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2330017773557867
the lambda is 20.0
the regulation term lambda/alpha is 85.83625510058064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2840701415263611
the lambda is 20.0
the regulation term lambda/alpha is 70.40514674487196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27451609453533
the lambda is 20.0
the regulation term lambda/alpha is 72.85547331515754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29240068682906684
the lambda is 20.0
the regulation term lambda/alpha is 68.39929213877568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29302783151274636
the lambda is 20.0
the regulation term lambda/alpha is 68.25290245213456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32989565229164947
the lambda is 20.0
the regulation term lambda/alpha is 60.62523061782786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32921754257051256
the lambda is 20.0
the regulation term lambda/alpha is 60.7501041525342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26289139358135316
the lambda is 20.0
the regulation term lambda/alpha is 76.07704355605271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30434447758621486
the lambda is 20.0
the regulation term lambda/alpha is 65.71500872505364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2519770629050317
the lambda is 20.0
the regulation term lambda/alpha is 79.37230384948909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2949149903965645
the lambda is 20.0
the regulation term lambda/alpha is 67.81615262454622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32889632596232915
the lambda is 20.0
the regulation term lambda/alpha is 60.80943574386642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3058558071575753
the lambda is 20.0
the regulation term lambda/alpha is 65.39029023469253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25281092655586596
the lambda is 20.0
the regulation term lambda/alpha is 79.11050472567457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2978271699268325
the lambda is 20.0
the regulation term lambda/alpha is 67.15304048624381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26612327753992543
the lambda is 20.0
the regulation term lambda/alpha is 75.15314024719044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26667105509915195
the lambda is 20.0
the regulation term lambda/alpha is 74.9987657736747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30430219940173864
the lambda is 20.0
the regulation term lambda/alpha is 65.7241388308077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27359881928830027
the lambda is 20.0
the regulation term lambda/alpha is 73.09973066413465
880
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2910517365540901
the lambda is 20.0
the regulation term lambda/alpha is 68.71630534416389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2595221086333837
the lambda is 20.0
the regulation term lambda/alpha is 77.06472525719643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25873969153144005
the lambda is 20.0
the regulation term lambda/alpha is 77.29776549404966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2950408058372017
the lambda is 20.0
the regulation term lambda/alpha is 67.78723350910194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2835015476372533
the lambda is 20.0
the regulation term lambda/alpha is 70.54635209819192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2785167205159561
the lambda is 20.0
the regulation term lambda/alpha is 71.80897420790292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31709984525514523
the lambda is 20.0
the regulation term lambda/alpha is 63.0716170293542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2857759666594835
the lambda is 20.0
the regulation term lambda/alpha is 69.98489143011459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29022394915892025
the lambda is 20.0
the regulation term lambda/alpha is 68.91230051124568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2778172856735612
the lambda is 20.0
the regulation term lambda/alpha is 71.98976100968841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2906205766872026
the lambda is 20.0
the regulation term lambda/alpha is 68.81825171493679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2774228229889796
the lambda is 20.0
the regulation term lambda/alpha is 72.09212199817635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26337216050524437
the lambda is 20.0
the regulation term lambda/alpha is 75.93817038836856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.254300964382595
the lambda is 20.0
the regulation term lambda/alpha is 78.64696875435386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33277811973064103
the lambda is 20.0
the regulation term lambda/alpha is 60.10010518777047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2707359188880678
the lambda is 20.0
the regulation term lambda/alpha is 73.87272469106227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23815018228547008
the lambda is 20.0
the regulation term lambda/alpha is 83.98062016188611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2592509593777724
the lambda is 20.0
the regulation term lambda/alpha is 77.14532686012792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3008551347920184
the lambda is 20.0
the regulation term lambda/alpha is 66.4771768440184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2598423002739103
the lambda is 20.0
the regulation term lambda/alpha is 76.96976196299521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2736926987627691
the lambda is 20.0
the regulation term lambda/alpha is 73.07465668762896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29947770708486204
the lambda is 20.0
the regulation term lambda/alpha is 66.78293417791082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32898056408011606
the lambda is 20.0
the regulation term lambda/alpha is 60.7938649990564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31843540913345475
the lambda is 20.0
the regulation term lambda/alpha is 62.8070856015202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.27176238649610046
the lambda is 20.0
the regulation term lambda/alpha is 73.59370168132881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25444461632483756
the lambda is 20.0
the regulation term lambda/alpha is 78.6025669903227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23801892741986913
the lambda is 20.0
the regulation term lambda/alpha is 84.02693103779804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2817236481375317
the lambda is 20.0
the regulation term lambda/alpha is 70.99155549141693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25796501947429984
the lambda is 20.0
the regulation term lambda/alpha is 77.5298916138222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26944637476755207
the lambda is 20.0
the regulation term lambda/alpha is 74.22627236033048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2632132959813028
the lambda is 20.0
the regulation term lambda/alpha is 75.98400348826105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.289117098165252
the lambda is 20.0
the regulation term lambda/alpha is 69.17612319340763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29763171739636446
the lambda is 20.0
the regulation term lambda/alpha is 67.19713938741765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2865366383553331
the lambda is 20.0
the regulation term lambda/alpha is 69.7991018349216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30545962907765056
the lambda is 20.0
the regulation term lambda/alpha is 65.47510078628368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2719269227456939
the lambda is 20.0
the regulation term lambda/alpha is 73.54917195420184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2731613570185545
the lambda is 20.0
the regulation term lambda/alpha is 73.21679837255128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3153703484455945
the lambda is 20.0
the regulation term lambda/alpha is 63.417502940832954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28051643063131376
the lambda is 20.0
the regulation term lambda/alpha is 71.29707145848526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2784810186661304
the lambda is 20.0
the regulation term lambda/alpha is 71.81818026878847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.270941320902636
the lambda is 20.0
the regulation term lambda/alpha is 73.81672139698135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29676651885092825
the lambda is 20.0
the regulation term lambda/alpha is 67.39304715855228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2751571698193433
the lambda is 20.0
the regulation term lambda/alpha is 72.68573089747639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.23267875080656245
the lambda is 20.0
the regulation term lambda/alpha is 85.95542107163455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2858339847887086
the lambda is 20.0
the regulation term lambda/alpha is 69.97068600776848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2971835937397911
the lambda is 20.0
the regulation term lambda/alpha is 67.29846607047784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2644873081790591
the lambda is 20.0
the regulation term lambda/alpha is 75.61799519869555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3056810803542132
the lambda is 20.0
the regulation term lambda/alpha is 65.42766721716848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3000373455175962
the lambda is 20.0
the regulation term lambda/alpha is 66.6583686957298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24751628452490143
the lambda is 20.0
the regulation term lambda/alpha is 80.80276430453567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2794213403487836
the lambda is 20.0
the regulation term lambda/alpha is 71.57649439028278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3022770155722923
the lambda is 20.0
the regulation term lambda/alpha is 66.1644748679769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.283952479748254
the lambda is 20.0
the regulation term lambda/alpha is 70.4343206219983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2994604211435323
the lambda is 20.0
the regulation term lambda/alpha is 66.78678913102156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24796292206361017
the lambda is 20.0
the regulation term lambda/alpha is 80.65722017451213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2719433314176925
the lambda is 20.0
the regulation term lambda/alpha is 73.54473410227116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2695840691226772
the lambda is 20.0
the regulation term lambda/alpha is 74.18836011002854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2574013796937359
the lambda is 20.0
the regulation term lambda/alpha is 77.69966122091738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23623699895622305
the lambda is 20.0
the regulation term lambda/alpha is 84.66074361072539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2506558975449445
the lambda is 20.0
the regulation term lambda/alpha is 79.79066200273165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2848291054648302
the lambda is 20.0
the regulation term lambda/alpha is 70.21754313822937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2674724069662877
the lambda is 20.0
the regulation term lambda/alpha is 74.77406819956873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26056444903748227
the lambda is 20.0
the regulation term lambda/alpha is 76.75644192398248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25986620763583945
the lambda is 20.0
the regulation term lambda/alpha is 76.96268084239244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24849006796203044
the lambda is 20.0
the regulation term lambda/alpha is 80.48611425007145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31539493816331504
the lambda is 20.0
the regulation term lambda/alpha is 63.412558604995034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2762926064960622
the lambda is 20.0
the regulation term lambda/alpha is 72.38702567412004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2598485993895055
the lambda is 20.0
the regulation term lambda/alpha is 76.96789610176263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28243937589078943
the lambda is 20.0
the regulation term lambda/alpha is 70.81165626046908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2792796951608585
the lambda is 20.0
the regulation term lambda/alpha is 71.61279658544626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28489138318029283
the lambda is 20.0
the regulation term lambda/alpha is 70.20219347014454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3447333411801315
the lambda is 20.0
the regulation term lambda/alpha is 58.0158563472093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27529979693265416
the lambda is 20.0
the regulation term lambda/alpha is 72.64807392826572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2957151111283504
the lambda is 20.0
the regulation term lambda/alpha is 67.63266146152172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29808076249456206
the lambda is 20.0
the regulation term lambda/alpha is 67.09590995616453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2710849655676843
the lambda is 20.0
the regulation term lambda/alpha is 73.77760680352601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27947456647573593
the lambda is 20.0
the regulation term lambda/alpha is 71.56286259678805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24894570495887847
the lambda is 20.0
the regulation term lambda/alpha is 80.33880320732449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29186953059928844
the lambda is 20.0
the regulation term lambda/alpha is 68.52376799638694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3103826698344708
the lambda is 20.0
the regulation term lambda/alpha is 64.43658729614684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2736083420363
the lambda is 20.0
the regulation term lambda/alpha is 73.09718647886316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3233925489006007
the lambda is 20.0
the regulation term lambda/alpha is 61.84434387245973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.310831225091552
the lambda is 20.0
the regulation term lambda/alpha is 64.34359995238322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2994536095840127
the lambda is 20.0
the regulation term lambda/alpha is 66.78830830519321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3061460463637166
the lambda is 20.0
the regulation term lambda/alpha is 65.32829751535975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26057198377129265
the lambda is 20.0
the regulation term lambda/alpha is 76.75422242459594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29980689052569615
the lambda is 20.0
the regulation term lambda/alpha is 66.70960752413333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26334337192974816
the lambda is 20.0
the regulation term lambda/alpha is 75.94647191399744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24070593414242117
the lambda is 20.0
the regulation term lambda/alpha is 83.08893617955583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30964487685017855
the lambda is 20.0
the regulation term lambda/alpha is 64.5901207972415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2805128625558005
the lambda is 20.0
the regulation term lambda/alpha is 71.29797834500918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2817912363208683
the lambda is 20.0
the regulation term lambda/alpha is 70.97452802693454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2811734299463725
the lambda is 20.0
the regulation term lambda/alpha is 71.13047631781761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26329412602633767
the lambda is 20.0
the regulation term lambda/alpha is 75.96067676040511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31435997062288035
the lambda is 20.0
the regulation term lambda/alpha is 63.62133181388051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2844006183766146
the lambda is 20.0
the regulation term lambda/alpha is 70.32333513957133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3287950193900727
the lambda is 20.0
the regulation term lambda/alpha is 60.82817202371484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2887084004789679
the lambda is 20.0
the regulation term lambda/alpha is 69.27404941047767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3208141610508884
the lambda is 20.0
the regulation term lambda/alpha is 62.34138771956375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25205244104685354
the lambda is 20.0
the regulation term lambda/alpha is 79.34856697651358
890
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32127053383487986
the lambda is 20.0
the regulation term lambda/alpha is 62.25283022774568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2756918140623789
the lambda is 20.0
the regulation term lambda/alpha is 72.54477274930889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2924695756656776
the lambda is 20.0
the regulation term lambda/alpha is 68.38318124023276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33165075089441887
the lambda is 20.0
the regulation term lambda/alpha is 60.304401380255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3026327136998648
the lambda is 20.0
the regulation term lambda/alpha is 66.0867087218963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2914317836612474
the lambda is 20.0
the regulation term lambda/alpha is 68.62669455177706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28639924308134984
the lambda is 20.0
the regulation term lambda/alpha is 69.83258679325186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3025354580407994
the lambda is 20.0
the regulation term lambda/alpha is 66.10795352557595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3142781821147129
the lambda is 20.0
the regulation term lambda/alpha is 63.63788878191968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26837487505393987
the lambda is 20.0
the regulation term lambda/alpha is 74.52262435513109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3358027692375758
the lambda is 20.0
the regulation term lambda/alpha is 59.55877030260664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28706768021438306
the lambda is 20.0
the regulation term lambda/alpha is 69.66998160525746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2812294819157725
the lambda is 20.0
the regulation term lambda/alpha is 71.11629927188767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28839075334420233
the lambda is 20.0
the regulation term lambda/alpha is 69.35035110549973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29383285002997644
the lambda is 20.0
the regulation term lambda/alpha is 68.0659088933032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.253777191256552
the lambda is 20.0
the regulation term lambda/alpha is 78.80928897105382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2910455170576034
the lambda is 20.0
the regulation term lambda/alpha is 68.71777377708801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31278850779592937
the lambda is 20.0
the regulation term lambda/alpha is 63.94096810311354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31805242050200283
the lambda is 20.0
the regulation term lambda/alpha is 62.88271590083389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3141531333349145
the lambda is 20.0
the regulation term lambda/alpha is 63.66321986888561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2944685223705883
the lambda is 20.0
the regulation term lambda/alpha is 67.91897428965268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27659089282985694
the lambda is 20.0
the regulation term lambda/alpha is 72.30896070140265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28575643476159296
the lambda is 20.0
the regulation term lambda/alpha is 69.98967500656995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2880400539636731
the lambda is 20.0
the regulation term lambda/alpha is 69.43478771366412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26620177507758236
the lambda is 20.0
the regulation term lambda/alpha is 75.13097910098894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.2696902239965121
the lambda is 20.0
the regulation term lambda/alpha is 74.15915825061074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25823306871983304
the lambda is 20.0
the regulation term lambda/alpha is 77.44941458949538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2731429570500399
the lambda is 20.0
the regulation term lambda/alpha is 73.22173053993845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2902275184370649
the lambda is 20.0
the regulation term lambda/alpha is 68.91145301349826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3023649217869099
the lambda is 20.0
the regulation term lambda/alpha is 66.14523894440009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.283455589934303
the lambda is 20.0
the regulation term lambda/alpha is 70.55779003912195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2977752331061355
the lambda is 20.0
the regulation term lambda/alpha is 67.16475306350087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27644232194580776
the lambda is 20.0
the regulation term lambda/alpha is 72.34782235666755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37871650332426915
the lambda is 20.0
the regulation term lambda/alpha is 52.80995104371082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3049937862669672
the lambda is 20.0
the regulation term lambda/alpha is 65.57510644657395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2778269715542023
the lambda is 20.0
the regulation term lambda/alpha is 71.98725123092711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31625959937537873
the lambda is 20.0
the regulation term lambda/alpha is 63.23918717250177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2525743227091617
the lambda is 20.0
the regulation term lambda/alpha is 79.18461301004821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2816952845737692
the lambda is 20.0
the regulation term lambda/alpha is 70.99870354685501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2742008032260842
the lambda is 20.0
the regulation term lambda/alpha is 72.93924658386062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2695263633793141
the lambda is 20.0
the regulation term lambda/alpha is 74.204243878931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2595196436496092
the lambda is 20.0
the regulation term lambda/alpha is 77.06545723761484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3067081024747902
the lambda is 20.0
the regulation term lambda/alpha is 65.20858053185567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3472512159918302
the lambda is 20.0
the regulation term lambda/alpha is 57.59519068313512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25156621232260973
the lambda is 20.0
the regulation term lambda/alpha is 79.50193237536965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.307956681238553
the lambda is 20.0
the regulation term lambda/alpha is 64.94419903332886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3049314061948392
the lambda is 20.0
the regulation term lambda/alpha is 65.5885212008001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29874334839647104
the lambda is 20.0
the regulation term lambda/alpha is 66.94709725706566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2661596234625111
the lambda is 20.0
the regulation term lambda/alpha is 75.14287757029767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 0.24421648504542534
the lambda is 20.0
the regulation term lambda/alpha is 81.89455349944912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2818003652364826
the lambda is 20.0
the regulation term lambda/alpha is 70.97222880891691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28198956018738924
the lambda is 20.0
the regulation term lambda/alpha is 70.92461148813273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31556031728379247
the lambda is 20.0
the regulation term lambda/alpha is 63.379325297145726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2961432831128901
the lambda is 20.0
the regulation term lambda/alpha is 67.53487632665968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30205602077195953
the lambda is 20.0
the regulation term lambda/alpha is 66.21288312309198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30448666304251687
the lambda is 20.0
the regulation term lambda/alpha is 65.68432193434793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29299620046964886
the lambda is 20.0
the regulation term lambda/alpha is 68.2602708429039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29171667222580105
the lambda is 20.0
the regulation term lambda/alpha is 68.55967417768689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26113729065776076
the lambda is 20.0
the regulation term lambda/alpha is 76.58806580103277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2702270061690788
the lambda is 20.0
the regulation term lambda/alpha is 74.01184760743774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2621349118856005
the lambda is 20.0
the regulation term lambda/alpha is 76.29659039360729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3169448533944451
the lambda is 20.0
the regulation term lambda/alpha is 63.1024602097247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.246799782912085
the lambda is 20.0
the regulation term lambda/alpha is 81.03734842880473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2862567189784165
the lambda is 20.0
the regulation term lambda/alpha is 69.86735567771244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25419218537285826
the lambda is 20.0
the regulation term lambda/alpha is 78.68062493999679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2756794590678302
the lambda is 20.0
the regulation term lambda/alpha is 72.54802395371449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3015571004150585
the lambda is 20.0
the regulation term lambda/alpha is 66.32243105027973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3236315113374773
the lambda is 20.0
the regulation term lambda/alpha is 61.798679360194775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26841088786892303
the lambda is 20.0
the regulation term lambda/alpha is 74.51262561959442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3052596800584855
the lambda is 20.0
the regulation term lambda/alpha is 65.51798781997067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.280477939613738
the lambda is 20.0
the regulation term lambda/alpha is 71.30685581740627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.22534107253425872
the lambda is 20.0
the regulation term lambda/alpha is 88.75434813136158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.286529946090233
the lambda is 20.0
the regulation term lambda/alpha is 69.80073208020522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30831989474585464
the lambda is 20.0
the regulation term lambda/alpha is 64.86769209779935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28837192210765744
the lambda is 20.0
the regulation term lambda/alpha is 69.35487981570353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28748583728506183
the lambda is 20.0
the regulation term lambda/alpha is 69.56864445523497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3158672647327892
the lambda is 20.0
the regulation term lambda/alpha is 63.3177357486512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33188564145255106
the lambda is 20.0
the regulation term lambda/alpha is 60.26172121356854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24994752131893674
the lambda is 20.0
the regulation term lambda/alpha is 80.01679670381569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.277155915033147
the lambda is 20.0
the regulation term lambda/alpha is 72.16154848294708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.286825047066948
the lambda is 20.0
the regulation term lambda/alpha is 69.72891734706764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.264120227456042
the lambda is 20.0
the regulation term lambda/alpha is 75.72309092959809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2875357313346752
the lambda is 20.0
the regulation term lambda/alpha is 69.55657269851147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31221043703355505
the lambda is 20.0
the regulation term lambda/alpha is 64.05935749627257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30818166376680073
the lambda is 20.0
the regulation term lambda/alpha is 64.89678767888633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3362980309932572
the lambda is 20.0
the regulation term lambda/alpha is 59.47105887278002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2430984442715124
the lambda is 20.0
the regulation term lambda/alpha is 82.27119700388683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3045198254835036
the lambda is 20.0
the regulation term lambda/alpha is 65.67716886164916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2838662669815661
the lambda is 20.0
the regulation term lambda/alpha is 70.4557121656825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24742034439809435
the lambda is 20.0
the regulation term lambda/alpha is 80.83409651964756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2976260631177921
the lambda is 20.0
the regulation term lambda/alpha is 67.1984159938458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26784001979444283
the lambda is 20.0
the regulation term lambda/alpha is 74.67144012067072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2852150260155501
the lambda is 20.0
the regulation term lambda/alpha is 70.12253274099797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2753016019834759
the lambda is 20.0
the regulation term lambda/alpha is 72.64759760170388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2706503689740914
the lambda is 20.0
the regulation term lambda/alpha is 73.89607513121308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27052973727061885
the lambda is 20.0
the regulation term lambda/alpha is 73.92902607225545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2980636726916339
the lambda is 20.0
the regulation term lambda/alpha is 67.09975697270325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26806476172139904
the lambda is 20.0
the regulation term lambda/alpha is 74.60883657952064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3071816882204127
the lambda is 20.0
the regulation term lambda/alpha is 65.10804766998142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30256116190205434
the lambda is 20.0
the regulation term lambda/alpha is 66.10233737294557
900
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2566997440290133
the lambda is 20.0
the regulation term lambda/alpha is 77.91203717655252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2790961691198414
the lambda is 20.0
the regulation term lambda/alpha is 71.65988721046249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24520695756992877
the lambda is 20.0
the regulation term lambda/alpha is 81.56375413734476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31736453278886345
the lambda is 20.0
the regulation term lambda/alpha is 63.019014205048606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3077867904669081
the lambda is 20.0
the regulation term lambda/alpha is 64.98004664092403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2979135453068428
the lambda is 20.0
the regulation term lambda/alpha is 67.13357051086935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3033070247798781
the lambda is 20.0
the regulation term lambda/alpha is 65.93978499019201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27921075191284195
the lambda is 20.0
the regulation term lambda/alpha is 71.63047935289818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2814886459176441
the lambda is 20.0
the regulation term lambda/alpha is 71.05082315061281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2976778398823424
the lambda is 20.0
the regulation term lambda/alpha is 67.18672779910331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.259054225449397
the lambda is 20.0
the regulation term lambda/alpha is 77.20391344825507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28805613121224327
the lambda is 20.0
the regulation term lambda/alpha is 69.43091235667453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33939786549641116
the lambda is 20.0
the regulation term lambda/alpha is 58.92788975189204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26802580827272
the lambda is 20.0
the regulation term lambda/alpha is 74.61967983191276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28346457744059284
the lambda is 20.0
the regulation term lambda/alpha is 70.5555529392081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25854836698566697
the lambda is 20.0
the regulation term lambda/alpha is 77.35496546806165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29550260548890434
the lambda is 20.0
the regulation term lambda/alpha is 67.681298332075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32990107839795746
the lambda is 20.0
the regulation term lambda/alpha is 60.62423347362974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3080744982872393
the lambda is 20.0
the regulation term lambda/alpha is 64.91936239835277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2590317091395553
the lambda is 20.0
the regulation term lambda/alpha is 77.2106243920309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2709757377756809
the lambda is 20.0
the regulation term lambda/alpha is 73.80734586856775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25609707141136295
the lambda is 20.0
the regulation term lambda/alpha is 78.09538738486569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28576345303882716
the lambda is 20.0
the regulation term lambda/alpha is 69.98795607807331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29576883449072827
the lambda is 20.0
the regulation term lambda/alpha is 67.620376685181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3221040800503588
the lambda is 20.0
the regulation term lambda/alpha is 62.09173133377614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2529376833760267
the lambda is 20.0
the regulation term lambda/alpha is 79.07085940321217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25854672271004375
the lambda is 20.0
the regulation term lambda/alpha is 77.35545742124799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3009912561046378
the lambda is 20.0
the regulation term lambda/alpha is 66.44711297874754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24066952461272023
the lambda is 20.0
the regulation term lambda/alpha is 83.1015062342585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2640012918898324
the lambda is 20.0
the regulation term lambda/alpha is 75.75720503801924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28664754932844794
the lambda is 20.0
the regulation term lambda/alpha is 69.77209484907718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2855890240597618
the lambda is 20.0
the regulation term lambda/alpha is 70.03070256584805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3285079802502642
the lambda is 20.0
the regulation term lambda/alpha is 60.881321618925625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24945731259181914
the lambda is 20.0
the regulation term lambda/alpha is 80.17403776302805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27852712145177877
the lambda is 20.0
the regulation term lambda/alpha is 71.80629267179853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28604281705810136
the lambda is 20.0
the regulation term lambda/alpha is 69.91960226687873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2575086031050435
the lambda is 20.0
the regulation term lambda/alpha is 77.66730803879805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28774523074139746
the lambda is 20.0
the regulation term lambda/alpha is 69.50593046657447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2840579267746917
the lambda is 20.0
the regulation term lambda/alpha is 70.40817423082703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2941321632604011
the lambda is 20.0
the regulation term lambda/alpha is 67.99664401982996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2840763387377783
the lambda is 20.0
the regulation term lambda/alpha is 70.40361083525985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3243753355260593
the lambda is 20.0
the regulation term lambda/alpha is 61.65696897874427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2558978633523657
the lambda is 20.0
the regulation term lambda/alpha is 78.15618207198722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32829842393144115
the lambda is 20.0
the regulation term lambda/alpha is 60.920182803486796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28736043124271937
the lambda is 20.0
the regulation term lambda/alpha is 69.59900468379718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29528615238747025
the lambda is 20.0
the regulation term lambda/alpha is 67.7309106380183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27257104755683675
the lambda is 20.0
the regulation term lambda/alpha is 73.37536462242778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2456574691350689
the lambda is 20.0
the regulation term lambda/alpha is 81.4141742582371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3340075202246316
the lambda is 20.0
the regulation term lambda/alpha is 59.87889130924151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2815969569165108
the lambda is 20.0
the regulation term lambda/alpha is 71.02349478133634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27808356376011917
the lambda is 20.0
the regulation term lambda/alpha is 71.92082742888188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2939881752960922
the lambda is 20.0
the regulation term lambda/alpha is 68.0299470543564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33191032984611984
the lambda is 20.0
the regulation term lambda/alpha is 60.25723878275314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30936309290665504
the lambda is 20.0
the regulation term lambda/alpha is 64.64895282784961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28594647071910967
the lambda is 20.0
the regulation term lambda/alpha is 69.94316086400086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30104965686892254
the lambda is 20.0
the regulation term lambda/alpha is 66.43422287210255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29927946288021234
the lambda is 20.0
the regulation term lambda/alpha is 66.82717152564882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3045213727318745
the lambda is 20.0
the regulation term lambda/alpha is 65.67683516128648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29019894697779375
the lambda is 20.0
the regulation term lambda/alpha is 68.91823767206989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26301580495552906
the lambda is 20.0
the regulation term lambda/alpha is 76.04105769758444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2959740965296595
the lambda is 20.0
the regulation term lambda/alpha is 67.57348103939835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.290317467181048
the lambda is 20.0
the regulation term lambda/alpha is 68.89010225322606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2547782302575959
the lambda is 20.0
the regulation term lambda/alpha is 78.49964253138431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2811943041166126
the lambda is 20.0
the regulation term lambda/alpha is 71.12519601999443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.264883459527334
the lambda is 20.0
the regulation term lambda/alpha is 75.50490330988806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29221624305602184
the lambda is 20.0
the regulation term lambda/alpha is 68.44246504177295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2920790821231182
the lambda is 20.0
the regulation term lambda/alpha is 68.47460576300197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2715338087382558
the lambda is 20.0
the regulation term lambda/alpha is 73.65565302138468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3130837866738442
the lambda is 20.0
the regulation term lambda/alpha is 63.88066342392572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29249186763634716
the lambda is 20.0
the regulation term lambda/alpha is 68.37796948551691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27874073738152266
the lambda is 20.0
the regulation term lambda/alpha is 71.75126315542916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2604815144481952
the lambda is 20.0
the regulation term lambda/alpha is 76.78088037213719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2823893890143938
the lambda is 20.0
the regulation term lambda/alpha is 70.82419091526336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35012030972266395
the lambda is 20.0
the regulation term lambda/alpha is 57.12322148875719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2781866381764755
the lambda is 20.0
the regulation term lambda/alpha is 71.89417914210689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27916995925706906
the lambda is 20.0
the regulation term lambda/alpha is 71.64094608612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28783874063502174
the lambda is 20.0
the regulation term lambda/alpha is 69.48335014208499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2753428477351742
the lambda is 20.0
the regulation term lambda/alpha is 72.63671515170816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29483195362287207
the lambda is 20.0
the regulation term lambda/alpha is 67.83525243529935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3029405881878703
the lambda is 20.0
the regulation term lambda/alpha is 66.01954567935574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2879486026149468
the lambda is 20.0
the regulation term lambda/alpha is 69.45683993036972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2702674452445562
the lambda is 20.0
the regulation term lambda/alpha is 74.00077350012559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31697149579209244
the lambda is 20.0
the regulation term lambda/alpha is 63.09715626012749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27589755593641196
the lambda is 20.0
the regulation term lambda/alpha is 72.49067478006053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26533258198800413
the lambda is 20.0
the regulation term lambda/alpha is 75.37709786770256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.312542455092991
the lambda is 20.0
the regulation term lambda/alpha is 63.991306378038736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2933777442419443
the lambda is 20.0
the regulation term lambda/alpha is 68.17149696094975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2853797571080961
the lambda is 20.0
the regulation term lambda/alpha is 70.08205558330616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24555193963472954
the lambda is 20.0
the regulation term lambda/alpha is 81.44916317806722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26860085085964147
the lambda is 20.0
the regulation term lambda/alpha is 74.45992794137159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27250268766014496
the lambda is 20.0
the regulation term lambda/alpha is 73.39377153205639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2857792128944241
the lambda is 20.0
the regulation term lambda/alpha is 69.98409645486929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29894007456197746
the lambda is 20.0
the regulation term lambda/alpha is 66.90304078268878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32306311985997377
the lambda is 20.0
the regulation term lambda/alpha is 61.907406851851924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3251238346920828
the lambda is 20.0
the regulation term lambda/alpha is 61.51502248040823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31265845697353595
the lambda is 20.0
the regulation term lambda/alpha is 63.967564458660526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29609626800312705
the lambda is 20.0
the regulation term lambda/alpha is 67.54559972970947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25859732770034527
the lambda is 20.0
the regulation term lambda/alpha is 77.34031970808064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.312697774476992
the lambda is 20.0
the regulation term lambda/alpha is 63.95952140513741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25411969678291485
the lambda is 20.0
the regulation term lambda/alpha is 78.70306888129679
910
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29153639036411055
the lambda is 20.0
the regulation term lambda/alpha is 68.60207048259485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32319486326499924
the lambda is 20.0
the regulation term lambda/alpha is 61.88217163464405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2686905928891463
the lambda is 20.0
the regulation term lambda/alpha is 74.43505849961558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29420036703274277
the lambda is 20.0
the regulation term lambda/alpha is 67.98088051934387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3063079605475078
the lambda is 20.0
the regulation term lambda/alpha is 65.29376502083444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26013964233567777
the lambda is 20.0
the regulation term lambda/alpha is 76.8817847999979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33942376672909597
the lambda is 20.0
the regulation term lambda/alpha is 58.92339299847139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30750722744486353
the lambda is 20.0
the regulation term lambda/alpha is 65.03912173441852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2590830889070278
the lambda is 20.0
the regulation term lambda/alpha is 77.19531245505961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33202604975849137
the lambda is 20.0
the regulation term lambda/alpha is 60.23623753180683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3018143102132941
the lambda is 20.0
the regulation term lambda/alpha is 66.26591027398891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25838537897630026
the lambda is 20.0
the regulation term lambda/alpha is 77.4037605348964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3258807618665007
the lambda is 20.0
the regulation term lambda/alpha is 61.37214079606557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33904176842480505
the lambda is 20.0
the regulation term lambda/alpha is 58.98978197559671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2864744382100745
the lambda is 20.0
the regulation term lambda/alpha is 69.81425681454274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2799873351074713
the lambda is 20.0
the regulation term lambda/alpha is 71.4318024146454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2787277436947845
the lambda is 20.0
the regulation term lambda/alpha is 71.75460804468973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25767628941183823
the lambda is 20.0
the regulation term lambda/alpha is 77.6167649947584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2586047441241972
the lambda is 20.0
the regulation term lambda/alpha is 77.33810169543844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31691437350944734
the lambda is 20.0
the regulation term lambda/alpha is 63.10852921728964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2837380923198986
the lambda is 20.0
the regulation term lambda/alpha is 70.48753953505522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2871398150014166
the lambda is 20.0
the regulation term lambda/alpha is 69.65247922828581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2627835543774545
the lambda is 20.0
the regulation term lambda/alpha is 76.1082634999015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27621467174675834
the lambda is 20.0
the regulation term lambda/alpha is 72.40744987774067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2587625520565981
the lambda is 20.0
the regulation term lambda/alpha is 77.29093657889678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2950681035650356
the lambda is 20.0
the regulation term lambda/alpha is 67.78096228754805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3081825586906482
the lambda is 20.0
the regulation term lambda/alpha is 64.8965992266807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.316302897495319
the lambda is 20.0
the regulation term lambda/alpha is 63.23053047686983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3296257641340803
the lambda is 20.0
the regulation term lambda/alpha is 60.674868824466934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29154381864901074
the lambda is 20.0
the regulation term lambda/alpha is 68.60032256104176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2507698435028598
the lambda is 20.0
the regulation term lambda/alpha is 79.75440635377642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27375426314895096
the lambda is 20.0
the regulation term lambda/alpha is 73.05822298415826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2961997549488174
the lambda is 20.0
the regulation term lambda/alpha is 67.52200049407857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.286880614993359
the lambda is 20.0
the regulation term lambda/alpha is 69.7154110620649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24776556596946592
the lambda is 20.0
the regulation term lambda/alpha is 80.72146717298382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29801768848524546
the lambda is 20.0
the regulation term lambda/alpha is 67.11011048255338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25721801369341996
the lambda is 20.0
the regulation term lambda/alpha is 77.75505188310079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29319424768716523
the lambda is 20.0
the regulation term lambda/alpha is 68.21416230969088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26328454217708197
the lambda is 20.0
the regulation term lambda/alpha is 75.96344181326165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2573209577289093
the lambda is 20.0
the regulation term lambda/alpha is 77.72394513263953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2595483506607535
the lambda is 20.0
the regulation term lambda/alpha is 77.05693351194243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3374450436739887
the lambda is 20.0
the regulation term lambda/alpha is 59.26891022682299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2563184605208792
the lambda is 20.0
the regulation term lambda/alpha is 78.02793431014244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2643735126640759
the lambda is 20.0
the regulation term lambda/alpha is 75.6505438024453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26154894870221107
the lambda is 20.0
the regulation term lambda/alpha is 76.46752204219786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30786982058261636
the lambda is 20.0
the regulation term lambda/alpha is 64.96252202360002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29868159677597905
the lambda is 20.0
the regulation term lambda/alpha is 66.96093839019032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2801419838336944
the lambda is 20.0
the regulation term lambda/alpha is 71.39236942033277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2987107288359492
the lambda is 20.0
the regulation term lambda/alpha is 66.95440795828905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3067777785563318
the lambda is 20.0
the regulation term lambda/alpha is 65.19377020760164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25372370848834
the lambda is 20.0
the regulation term lambda/alpha is 78.82590128907528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2445315100290408
the lambda is 20.0
the regulation term lambda/alpha is 81.7890504075519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28597281063192664
the lambda is 20.0
the regulation term lambda/alpha is 69.9367186544942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29916607050107735
the lambda is 20.0
the regulation term lambda/alpha is 66.85250090861483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24889180961548008
the lambda is 20.0
the regulation term lambda/alpha is 80.35619987213947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3006157618709291
the lambda is 20.0
the regulation term lambda/alpha is 66.53011098129679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29478386280181584
the lambda is 20.0
the regulation term lambda/alpha is 67.84631902814186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29962008431806497
the lambda is 20.0
the regulation term lambda/alpha is 66.75119942483155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2755245617235618
the lambda is 20.0
the regulation term lambda/alpha is 72.58880977757009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29291982294391083
the lambda is 20.0
the regulation term lambda/alpha is 68.27806940136537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29914089375533515
the lambda is 20.0
the regulation term lambda/alpha is 66.85812744932772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29520148692999437
the lambda is 20.0
the regulation term lambda/alpha is 67.75033624658843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30934608883436704
the lambda is 20.0
the regulation term lambda/alpha is 64.65250643821324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2727317319718874
the lambda is 20.0
the regulation term lambda/alpha is 73.3321343116083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26109449265959106
the lambda is 20.0
the regulation term lambda/alpha is 76.60061993753172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2916443592440757
the lambda is 20.0
the regulation term lambda/alpha is 68.57667349315027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2952000585309212
the lambda is 20.0
the regulation term lambda/alpha is 67.75066407347974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29289823930643716
the lambda is 20.0
the regulation term lambda/alpha is 68.28310080442485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28375176701714017
the lambda is 20.0
the regulation term lambda/alpha is 70.48414256673824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29476501483306594
the lambda is 20.0
the regulation term lambda/alpha is 67.8506572814504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2973712913262612
the lambda is 20.0
the regulation term lambda/alpha is 67.2559879966926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2629988664713684
the lambda is 20.0
the regulation term lambda/alpha is 76.04595513409681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25046841704223755
the lambda is 20.0
the regulation term lambda/alpha is 79.85038687183987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31178443901662983
the lambda is 20.0
the regulation term lambda/alpha is 64.14688322188282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32253727877315114
the lambda is 20.0
the regulation term lambda/alpha is 62.00833614047609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2780129463108069
the lambda is 20.0
the regulation term lambda/alpha is 71.93909587807768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.300557790719983
the lambda is 20.0
the regulation term lambda/alpha is 66.54294321265209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2876131677732185
the lambda is 20.0
the regulation term lambda/alpha is 69.5378454152346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27112327288646115
the lambda is 20.0
the regulation term lambda/alpha is 73.76718268068208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2810835902578764
the lambda is 20.0
the regulation term lambda/alpha is 71.15321097774249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26956579262834873
the lambda is 20.0
the regulation term lambda/alpha is 74.19339006256654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2463827510926815
the lambda is 20.0
the regulation term lambda/alpha is 81.17451368369787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29012318744905924
the lambda is 20.0
the regulation term lambda/alpha is 68.93623421089589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2910692852170324
the lambda is 20.0
the regulation term lambda/alpha is 68.71216241551298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2839520239426041
the lambda is 20.0
the regulation term lambda/alpha is 70.4344336846236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29855225195329865
the lambda is 20.0
the regulation term lambda/alpha is 66.98994855724123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29150157275700983
the lambda is 20.0
the regulation term lambda/alpha is 68.61026446904154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3115919756711099
the lambda is 20.0
the regulation term lambda/alpha is 64.18650530689631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28869382249110487
the lambda is 20.0
the regulation term lambda/alpha is 69.2775474979768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.306003735442864
the lambda is 20.0
the regulation term lambda/alpha is 65.35867926924158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35816045937228075
the lambda is 20.0
the regulation term lambda/alpha is 55.840893310926624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2834811989111066
the lambda is 20.0
the regulation term lambda/alpha is 70.55141602625842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2890043997146418
the lambda is 20.0
the regulation term lambda/alpha is 69.20309870627462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28320993565211416
the lambda is 20.0
the regulation term lambda/alpha is 70.61899136394476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2655410071842889
the lambda is 20.0
the regulation term lambda/alpha is 75.31793379890188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24601141038906463
the lambda is 20.0
the regulation term lambda/alpha is 81.29704215089129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32223389800926694
the lambda is 20.0
the regulation term lambda/alpha is 62.06671651728221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3168773447754436
the lambda is 20.0
the regulation term lambda/alpha is 63.11590377082047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24842556852727282
the lambda is 20.0
the regulation term lambda/alpha is 80.50701108812939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25929136122670815
the lambda is 20.0
the regulation term lambda/alpha is 77.1333063522824
920
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25400555277020903
the lambda is 20.0
the regulation term lambda/alpha is 78.73843615573783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2688788063672606
the lambda is 20.0
the regulation term lambda/alpha is 74.38295442550452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26707100254369553
the lambda is 20.0
the regulation term lambda/alpha is 74.8864527017597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2743925728065136
the lambda is 20.0
the regulation term lambda/alpha is 72.88827024521137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.316761723311814
the lambda is 20.0
the regulation term lambda/alpha is 63.13894176005727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2581042843705236
the lambda is 20.0
the regulation term lambda/alpha is 77.48805894011758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2476604853513523
the lambda is 20.0
the regulation term lambda/alpha is 80.75571672899814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2861465193341331
the lambda is 20.0
the regulation term lambda/alpha is 69.89426272435631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32480715566430635
the lambda is 20.0
the regulation term lambda/alpha is 61.57499812187123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3091679260869876
the lambda is 20.0
the regulation term lambda/alpha is 64.68976343416941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28135039819396285
the lambda is 20.0
the regulation term lambda/alpha is 71.08573553968105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30524685196062123
the lambda is 20.0
the regulation term lambda/alpha is 65.52074123463893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3222433821765116
the lambda is 20.0
the regulation term lambda/alpha is 62.06488978893856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2876824622445084
the lambda is 20.0
the regulation term lambda/alpha is 69.52109573854213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31936991166963064
the lambda is 20.0
the regulation term lambda/alpha is 62.6233069215638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30675442536929626
the lambda is 20.0
the regulation term lambda/alpha is 65.19873340351114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2520471794149203
the lambda is 20.0
the regulation term lambda/alpha is 79.35022342414705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29466585640437015
the lambda is 20.0
the regulation term lambda/alpha is 67.87348980315517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.34680245191474623
the lambda is 20.0
the regulation term lambda/alpha is 57.669719142921636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33897743426366517
the lambda is 20.0
the regulation term lambda/alpha is 59.000977582606566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32627667257191695
the lambda is 20.0
the regulation term lambda/alpha is 61.29767060068218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30556362009781785
the lambda is 20.0
the regulation term lambda/alpha is 65.45281795521845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2794367023301159
the lambda is 20.0
the regulation term lambda/alpha is 71.57255948566399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2790235593284731
the lambda is 20.0
the regulation term lambda/alpha is 71.67853513206578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2704339160923392
the lambda is 20.0
the regulation term lambda/alpha is 73.95522088720202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2817882318387616
the lambda is 20.0
the regulation term lambda/alpha is 70.97528477145185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29779537941908535
the lambda is 20.0
the regulation term lambda/alpha is 67.16020926521543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3143059345361648
the lambda is 20.0
the regulation term lambda/alpha is 63.63226971681234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2693323689899857
the lambda is 20.0
the regulation term lambda/alpha is 74.25769162095641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27633465118234296
the lambda is 20.0
the regulation term lambda/alpha is 72.37601189147554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2731489719682363
the lambda is 20.0
the regulation term lambda/alpha is 73.22011814976094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26169566552000795
the lambda is 20.0
the regulation term lambda/alpha is 76.4246513608033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28464258248360663
the lambda is 20.0
the regulation term lambda/alpha is 70.26355587942243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2804376470558226
the lambda is 20.0
the regulation term lambda/alpha is 71.31710100255867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29641975219589595
the lambda is 20.0
the regulation term lambda/alpha is 67.47188691657273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25070331204931934
the lambda is 20.0
the regulation term lambda/alpha is 79.77557151724234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32784263818348813
the lambda is 20.0
the regulation term lambda/alpha is 61.0048775559399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28924988583688505
the lambda is 20.0
the regulation term lambda/alpha is 69.14436609761871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.272223307163315
the lambda is 20.0
the regulation term lambda/alpha is 73.46909494417902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2857739038350478
the lambda is 20.0
the regulation term lambda/alpha is 69.98539660760713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3042027560608426
the lambda is 20.0
the regulation term lambda/alpha is 65.74562393510946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30155807000069323
the lambda is 20.0
the regulation term lambda/alpha is 66.32221780685234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32641303164763535
the lambda is 20.0
the regulation term lambda/alpha is 61.27206349282681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2639078949816374
the lambda is 20.0
the regulation term lambda/alpha is 75.78401548537072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2598459279739192
the lambda is 20.0
the regulation term lambda/alpha is 76.96868739081185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2752735131043489
the lambda is 20.0
the regulation term lambda/alpha is 72.6550105546062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27999965044470027
the lambda is 20.0
the regulation term lambda/alpha is 71.4286606009531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3035495641966795
the lambda is 20.0
the regulation term lambda/alpha is 65.88709838186873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.320155576221193
the lambda is 20.0
the regulation term lambda/alpha is 62.46962878504466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3028041057472223
the lambda is 20.0
the regulation term lambda/alpha is 66.0493025702095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2552012755182027
the lambda is 20.0
the regulation term lambda/alpha is 78.36951425649697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.279832476444092
the lambda is 20.0
the regulation term lambda/alpha is 71.4713326135175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33193122315706475
the lambda is 20.0
the regulation term lambda/alpha is 60.253445908992745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3069125962853313
the lambda is 20.0
the regulation term lambda/alpha is 65.16513249070543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3195292131938495
the lambda is 20.0
the regulation term lambda/alpha is 62.59208602584501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.290568472362644
the lambda is 20.0
the regulation term lambda/alpha is 68.83059210580493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28280820237416454
the lambda is 20.0
the regulation term lambda/alpha is 70.71930669655522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2569495682425922
the lambda is 20.0
the regulation term lambda/alpha is 77.83628568356856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2603269007047384
the lambda is 20.0
the regulation term lambda/alpha is 76.8264821878086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27335775711231364
the lambda is 20.0
the regulation term lambda/alpha is 73.16419409961233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.267836328087776
the lambda is 20.0
the regulation term lambda/alpha is 74.67246935018295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28392976599588976
the lambda is 20.0
the regulation term lambda/alpha is 70.4399552116333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29747156833437327
the lambda is 20.0
the regulation term lambda/alpha is 67.23331615181111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2893558737047064
the lambda is 20.0
the regulation term lambda/alpha is 69.11903927829165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3069960416847489
the lambda is 20.0
the regulation term lambda/alpha is 65.1474197850987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33959046567824047
the lambda is 20.0
the regulation term lambda/alpha is 58.89446854774143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29191021274101814
the lambda is 20.0
the regulation term lambda/alpha is 68.51421816387061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28818668293778077
the lambda is 20.0
the regulation term lambda/alpha is 69.39945939250073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29174939180140097
the lambda is 20.0
the regulation term lambda/alpha is 68.55198523811956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25094393250021785
the lambda is 20.0
the regulation term lambda/alpha is 79.69907780090534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2686041177295287
the lambda is 20.0
the regulation term lambda/alpha is 74.45902233017526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29305371232047206
the lambda is 20.0
the regulation term lambda/alpha is 68.2468747508265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3207754546843399
the lambda is 20.0
the regulation term lambda/alpha is 62.3489101423956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2983259571461445
the lambda is 20.0
the regulation term lambda/alpha is 67.04076370465597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2802451385497239
the lambda is 20.0
the regulation term lambda/alpha is 71.36609078573329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26978551906641884
the lambda is 20.0
the regulation term lambda/alpha is 74.13296335996512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2732105083236936
the lambda is 20.0
the regulation term lambda/alpha is 73.20362647363642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26614078940366215
the lambda is 20.0
the regulation term lambda/alpha is 75.14819522709658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29139941938568314
the lambda is 20.0
the regulation term lambda/alpha is 68.63431657538378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28980417132914316
the lambda is 20.0
the regulation term lambda/alpha is 69.01211914332707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28887227417584477
the lambda is 20.0
the regulation term lambda/alpha is 69.23475109219181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24619908978866906
the lambda is 20.0
the regulation term lambda/alpha is 81.23506881023599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26229886374884437
the lambda is 20.0
the regulation term lambda/alpha is 76.24890064011234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29013510225199246
the lambda is 20.0
the regulation term lambda/alpha is 68.93340324821952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26503221727719767
the lambda is 20.0
the regulation term lambda/alpha is 75.46252378472903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2801894876395552
the lambda is 20.0
the regulation term lambda/alpha is 71.38026543568489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.304380427174319
the lambda is 20.0
the regulation term lambda/alpha is 65.7072472946691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3125278761612124
the lambda is 20.0
the regulation term lambda/alpha is 63.99429147140566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2627235683213738
the lambda is 20.0
the regulation term lambda/alpha is 76.12564083148877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24983341698269787
the lambda is 20.0
the regulation term lambda/alpha is 80.05334210909461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28125463313061017
the lambda is 20.0
the regulation term lambda/alpha is 71.1099396919528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30860125963171664
the lambda is 20.0
the regulation term lambda/alpha is 64.80854946563701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25982188740739126
the lambda is 20.0
the regulation term lambda/alpha is 76.97580908047492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2802990757432111
the lambda is 20.0
the regulation term lambda/alpha is 71.35235800178839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2832832754636087
the lambda is 20.0
the regulation term lambda/alpha is 70.60070866262365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31127029787179816
the lambda is 20.0
the regulation term lambda/alpha is 64.25283792492573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2683084718532138
the lambda is 20.0
the regulation term lambda/alpha is 74.5410678308421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2846110894792162
the lambda is 20.0
the regulation term lambda/alpha is 70.27133073625546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32695530654759625
the lambda is 20.0
the regulation term lambda/alpha is 61.170440116678506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25902340288205455
the lambda is 20.0
the regulation term lambda/alpha is 77.21310035104023
930
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28200796260974553
the lambda is 20.0
the regulation term lambda/alpha is 70.91998330443187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2998343894150349
the lambda is 20.0
the regulation term lambda/alpha is 66.70348934629952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3024485657516632
the lambda is 20.0
the regulation term lambda/alpha is 66.12694608187283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2942194529761206
the lambda is 20.0
the regulation term lambda/alpha is 67.97647061638455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2705397405606092
the lambda is 20.0
the regulation term lambda/alpha is 73.92629252381273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27627329561948694
the lambda is 20.0
the regulation term lambda/alpha is 72.3920853629883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29153183386335096
the lambda is 20.0
the regulation term lambda/alpha is 68.60314269958783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2928358985781867
the lambda is 20.0
the regulation term lambda/alpha is 68.29763733581329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24597620710435347
the lambda is 20.0
the regulation term lambda/alpha is 81.30867710922608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2576644801380889
the lambda is 20.0
the regulation term lambda/alpha is 77.62032232491454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32917394864695604
the lambda is 20.0
the regulation term lambda/alpha is 60.75814955043814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23966807802406045
the lambda is 20.0
the regulation term lambda/alpha is 83.44874363281782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26781463588199683
the lambda is 20.0
the regulation term lambda/alpha is 74.67851760279562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2817651080714829
the lambda is 20.0
the regulation term lambda/alpha is 70.98110953797041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2597947297544857
the lambda is 20.0
the regulation term lambda/alpha is 76.98385574988622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27431325720973404
the lambda is 20.0
the regulation term lambda/alpha is 72.90934533546233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2917826948369621
the lambda is 20.0
the regulation term lambda/alpha is 68.54416095915248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2587742545741363
the lambda is 20.0
the regulation term lambda/alpha is 77.28744126000447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2698648694834652
the lambda is 20.0
the regulation term lambda/alpha is 74.11116548175016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.291079873898109
the lambda is 20.0
the regulation term lambda/alpha is 68.7096628570098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32446879032734627
the lambda is 20.0
the regulation term lambda/alpha is 61.639210291450944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3123375831198772
the lambda is 20.0
the regulation term lambda/alpha is 64.0332802739396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31207222197193557
the lambda is 20.0
the regulation term lambda/alpha is 64.08772903151433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2708281864086636
the lambda is 20.0
the regulation term lambda/alpha is 73.84755724731396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2749758857967065
the lambda is 20.0
the regulation term lambda/alpha is 72.73365059649731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28474938836400576
the lambda is 20.0
the regulation term lambda/alpha is 70.23720091167766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2915917869655522
the lambda is 20.0
the regulation term lambda/alpha is 68.58903746271406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28890650531660667
the lambda is 20.0
the regulation term lambda/alpha is 69.22654779989261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30297225452917476
the lambda is 20.0
the regulation term lambda/alpha is 66.01264538589653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.37001429091465804
the lambda is 20.0
the regulation term lambda/alpha is 54.05196634584284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28941884910563853
the lambda is 20.0
the regulation term lambda/alpha is 69.10399948657096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27259323290299964
the lambda is 20.0
the regulation term lambda/alpha is 73.36939287526943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31209436977368804
the lambda is 20.0
the regulation term lambda/alpha is 64.0831810407307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30087352810507334
the lambda is 20.0
the regulation term lambda/alpha is 66.47311289218986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23848962442797866
the lambda is 20.0
the regulation term lambda/alpha is 83.86109059448742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2711262338249295
the lambda is 20.0
the regulation term lambda/alpha is 73.76637707775012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2600273126150807
the lambda is 20.0
the regulation term lambda/alpha is 76.91499711649932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.280940328927256
the lambda is 20.0
the regulation term lambda/alpha is 71.18949449645802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26753518589780134
the lambda is 20.0
the regulation term lambda/alpha is 74.75652196133939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3753285260780111
the lambda is 20.0
the regulation term lambda/alpha is 53.28665052184989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28298639795876307
the lambda is 20.0
the regulation term lambda/alpha is 70.67477498658579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25561671147483805
the lambda is 20.0
the regulation term lambda/alpha is 78.24214576819139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26094930038482955
the lambda is 20.0
the regulation term lambda/alpha is 76.64324054713086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27211373041394155
the lambda is 20.0
the regulation term lambda/alpha is 73.49868001727015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34232666823198293
the lambda is 20.0
the regulation term lambda/alpha is 58.42372755617944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3372921321428915
the lambda is 20.0
the regulation term lambda/alpha is 59.29577981240054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2759872932848841
the lambda is 20.0
the regulation term lambda/alpha is 72.46710441612714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26924003317480266
the lambda is 20.0
the regulation term lambda/alpha is 74.28315828135078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3244360433202886
the lambda is 20.0
the regulation term lambda/alpha is 61.645431855595874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3113459666310682
the lambda is 20.0
the regulation term lambda/alpha is 64.23722207295896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24992410556530908
the lambda is 20.0
the regulation term lambda/alpha is 80.02429359409545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2586591881416722
the lambda is 20.0
the regulation term lambda/alpha is 77.32182314376416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2502742760038163
the lambda is 20.0
the regulation term lambda/alpha is 79.91232786423096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3255984797188799
the lambda is 20.0
the regulation term lambda/alpha is 61.425348230335416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2967916690170427
the lambda is 20.0
the regulation term lambda/alpha is 67.38733626263458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28073043416997634
the lambda is 20.0
the regulation term lambda/alpha is 71.2427210079062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29202440275278274
the lambda is 20.0
the regulation term lambda/alpha is 68.48742711728538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3029357928542659
the lambda is 20.0
the regulation term lambda/alpha is 66.02059073825406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24910089088976534
the lambda is 20.0
the regulation term lambda/alpha is 80.28875339851997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2859661932510761
the lambda is 20.0
the regulation term lambda/alpha is 69.93833702027902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31656823670866385
the lambda is 20.0
the regulation term lambda/alpha is 63.17753230058232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27965150154697754
the lambda is 20.0
the regulation term lambda/alpha is 71.51758488462927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2917000911015289
the lambda is 20.0
the regulation term lambda/alpha is 68.56357131900523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2685025422463958
the lambda is 20.0
the regulation term lambda/alpha is 74.4871904477041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26930678731174235
the lambda is 20.0
the regulation term lambda/alpha is 74.26474542154236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3214736762142437
the lambda is 20.0
the regulation term lambda/alpha is 62.213492051744694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2799280791654905
the lambda is 20.0
the regulation term lambda/alpha is 71.44692329409446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.301608996260416
the lambda is 20.0
the regulation term lambda/alpha is 66.31101939257657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29803054453851846
the lambda is 20.0
the regulation term lambda/alpha is 67.10721557405715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.262195078738713
the lambda is 20.0
the regulation term lambda/alpha is 76.27908233903479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3157437643631766
the lambda is 20.0
the regulation term lambda/alpha is 63.342501918725105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3244675791999113
the lambda is 20.0
the regulation term lambda/alpha is 61.63944036971897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2788932982141604
the lambda is 20.0
the regulation term lambda/alpha is 71.71201361978274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2661186714898959
the lambda is 20.0
the regulation term lambda/alpha is 75.15444101696325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2550494457104075
the lambda is 20.0
the regulation term lambda/alpha is 78.41616728196593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28320223938669187
the lambda is 20.0
the regulation term lambda/alpha is 70.62091049602002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31042211757752913
the lambda is 20.0
the regulation term lambda/alpha is 64.42839883986335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2753837005063057
the lambda is 20.0
the regulation term lambda/alpha is 72.6259396007428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3232197304657735
the lambda is 20.0
the regulation term lambda/alpha is 61.87741067409202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2712200946464749
the lambda is 20.0
the regulation term lambda/alpha is 73.74084883374604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2946775631237421
the lambda is 20.0
the regulation term lambda/alpha is 67.8707933783256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2889380887757564
the lambda is 20.0
the regulation term lambda/alpha is 69.21898073300372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2886342165803889
the lambda is 20.0
the regulation term lambda/alpha is 69.29185401838768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28471923745164335
the lambda is 20.0
the regulation term lambda/alpha is 70.2446388203635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2635974786599393
the lambda is 20.0
the regulation term lambda/alpha is 75.87325987211551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3133070878069803
the lambda is 20.0
the regulation term lambda/alpha is 63.83513421286351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29372064219301847
the lambda is 20.0
the regulation term lambda/alpha is 68.0919115887572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31895784564639423
the lambda is 20.0
the regulation term lambda/alpha is 62.70421083221314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28347783592317394
the lambda is 20.0
the regulation term lambda/alpha is 70.55225300019664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33139263468034297
the lambda is 20.0
the regulation term lambda/alpha is 60.35137147598872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2907836824170032
the lambda is 20.0
the regulation term lambda/alpha is 68.77965033580759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3031060715431171
the lambda is 20.0
the regulation term lambda/alpha is 65.98350174306879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2899482857688204
the lambda is 20.0
the regulation term lambda/alpha is 68.97781770624525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2748762686910818
the lambda is 20.0
the regulation term lambda/alpha is 72.76000978635552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33056656115936717
the lambda is 20.0
the regulation term lambda/alpha is 60.50218730489784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28215780142279107
the lambda is 20.0
the regulation term lambda/alpha is 70.88232152061458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2566528121234753
the lambda is 20.0
the regulation term lambda/alpha is 77.92628428469364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2609723358704412
the lambda is 20.0
the regulation term lambda/alpha is 76.63647540760385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2753288171319655
the lambda is 20.0
the regulation term lambda/alpha is 72.64041667826572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3149044666771499
the lambda is 20.0
the regulation term lambda/alpha is 63.51132523154916
940
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30071782763422505
the lambda is 20.0
the regulation term lambda/alpha is 66.50753018981897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2785697194217208
the lambda is 20.0
the regulation term lambda/alpha is 71.79531228849186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30394491712820176
the lambda is 20.0
the regulation term lambda/alpha is 65.80139647988963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2570311004050727
the lambda is 20.0
the regulation term lambda/alpha is 77.81159543915365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.331271374615164
the lambda is 20.0
the regulation term lambda/alpha is 60.373462763674894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2897120121158998
the lambda is 20.0
the regulation term lambda/alpha is 69.03407233248915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30489437529296676
the lambda is 20.0
the regulation term lambda/alpha is 65.59648724507433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2832278797539658
the lambda is 20.0
the regulation term lambda/alpha is 70.61451724799687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2872251733429004
the lambda is 20.0
the regulation term lambda/alpha is 69.63177971912384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30326447685674013
the lambda is 20.0
the regulation term lambda/alpha is 65.94903632398677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2701805043802161
the lambda is 20.0
the regulation term lambda/alpha is 74.02458606656037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23121658994840077
the lambda is 20.0
the regulation term lambda/alpha is 86.49898350487429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29395090902704935
the lambda is 20.0
the regulation term lambda/alpha is 68.03857169960172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2702830452895075
the lambda is 20.0
the regulation term lambda/alpha is 73.99650236505757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26841574555596914
the lambda is 20.0
the regulation term lambda/alpha is 74.51127711816618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29333274915097246
the lambda is 20.0
the regulation term lambda/alpha is 68.18195396827785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28314486694408314
the lambda is 20.0
the regulation term lambda/alpha is 70.63522011137042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2713057048658271
the lambda is 20.0
the regulation term lambda/alpha is 73.71757998929989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2889035141394415
the lambda is 20.0
the regulation term lambda/alpha is 69.22726454046123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31483442867828726
the lambda is 20.0
the regulation term lambda/alpha is 63.5254539472141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.262046492015787
the lambda is 20.0
the regulation term lambda/alpha is 76.32233443062118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2953057434320927
the lambda is 20.0
the regulation term lambda/alpha is 67.72641726353392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2622842349816903
the lambda is 20.0
the regulation term lambda/alpha is 76.25315338299373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30153879201672257
the lambda is 20.0
the regulation term lambda/alpha is 66.32645792018312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32066660704082806
the lambda is 20.0
the regulation term lambda/alpha is 62.370073967363716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2782173917302818
the lambda is 20.0
the regulation term lambda/alpha is 71.8862321137315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30436230472053943
the lambda is 20.0
the regulation term lambda/alpha is 65.71115966007577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3310484982980835
the lambda is 20.0
the regulation term lambda/alpha is 60.41410881734781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27250868762014757
the lambda is 20.0
the regulation term lambda/alpha is 73.39215558469897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2719459882266744
the lambda is 20.0
the regulation term lambda/alpha is 73.54401559816156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3108014336508319
the lambda is 20.0
the regulation term lambda/alpha is 64.34976751899055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2878515851145476
the lambda is 20.0
the regulation term lambda/alpha is 69.48024966421916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3106135875161829
the lambda is 20.0
the regulation term lambda/alpha is 64.38868357282665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28870890473303573
the lambda is 20.0
the regulation term lambda/alpha is 69.27392841759995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33614236714404333
the lambda is 20.0
the regulation term lambda/alpha is 59.4985992688914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29017347074022143
the lambda is 20.0
the regulation term lambda/alpha is 68.92428845745535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2750927039733338
the lambda is 20.0
the regulation term lambda/alpha is 72.7027642359381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2707982253143203
the lambda is 20.0
the regulation term lambda/alpha is 73.85572773523772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30862087871463834
the lambda is 20.0
the regulation term lambda/alpha is 64.80442957487882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23507135339336938
the lambda is 20.0
the regulation term lambda/alpha is 85.08054984705821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27838451899936406
the lambda is 20.0
the regulation term lambda/alpha is 71.8430754407205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28537524022984934
the lambda is 20.0
the regulation term lambda/alpha is 70.08316483199955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3096165038738765
the lambda is 20.0
the regulation term lambda/alpha is 64.59603977747607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2760186221539698
the lambda is 20.0
the regulation term lambda/alpha is 72.45887920143129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2651718004867493
the lambda is 20.0
the regulation term lambda/alpha is 75.42280123032691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31984218216498894
the lambda is 20.0
the regulation term lambda/alpha is 62.530839005103786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2927515884729345
the lambda is 20.0
the regulation term lambda/alpha is 68.31730650660174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26653358054523346
the lambda is 20.0
the regulation term lambda/alpha is 75.0374491615168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26967416883150463
the lambda is 20.0
the regulation term lambda/alpha is 74.16357334727235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3450428589133475
the lambda is 20.0
the regulation term lambda/alpha is 57.96381372153744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3044794583866393
the lambda is 20.0
the regulation term lambda/alpha is 65.68587617034991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25809666448203294
the lambda is 20.0
the regulation term lambda/alpha is 77.49034665030425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3277138365590694
the lambda is 20.0
the regulation term lambda/alpha is 61.02885435047862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29035128983358194
the lambda is 20.0
the regulation term lambda/alpha is 68.88207733281716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30670702965360597
the lambda is 20.0
the regulation term lambda/alpha is 65.20880862296487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2744994575324975
the lambda is 20.0
the regulation term lambda/alpha is 72.85988897676505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30502894966698635
the lambda is 20.0
the regulation term lambda/alpha is 65.5675470208152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.285331842651465
the lambda is 20.0
the regulation term lambda/alpha is 70.09382413875956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2847068972962093
the lambda is 20.0
the regulation term lambda/alpha is 70.24768345949829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29760330903828985
the lambda is 20.0
the regulation term lambda/alpha is 67.20355383355897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28683427508471965
the lambda is 20.0
the regulation term lambda/alpha is 69.72667403187008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27996009695034996
the lambda is 20.0
the regulation term lambda/alpha is 71.43875222884688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.36987832214739114
the lambda is 20.0
the regulation term lambda/alpha is 54.07183606729537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2800577082929668
the lambda is 20.0
the regulation term lambda/alpha is 71.41385295875561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3163023829133417
the lambda is 20.0
the regulation term lambda/alpha is 63.23063334454695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2900071499211813
the lambda is 20.0
the regulation term lambda/alpha is 68.96381694532579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3026154013369835
the lambda is 20.0
the regulation term lambda/alpha is 66.09048948479854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25705222261703314
the lambda is 20.0
the regulation term lambda/alpha is 77.8052015904831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.291784617571725
the lambda is 20.0
the regulation term lambda/alpha is 68.5437092826996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2667272891862607
the lambda is 20.0
the regulation term lambda/alpha is 74.98295379155458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25598502188178207
the lambda is 20.0
the regulation term lambda/alpha is 78.12957122638338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.323152823009928
the lambda is 20.0
the regulation term lambda/alpha is 61.89022213612398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2801616199616342
the lambda is 20.0
the regulation term lambda/alpha is 71.3873656310912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2674363273159655
the lambda is 20.0
the regulation term lambda/alpha is 74.78415591749727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32797353001292007
the lambda is 20.0
the regulation term lambda/alpha is 60.980530956910236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2788024891532603
the lambda is 20.0
the regulation term lambda/alpha is 71.73537101745823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.34189158882918036
the lambda is 20.0
the regulation term lambda/alpha is 58.49807556977548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30077526118649583
the lambda is 20.0
the regulation term lambda/alpha is 66.49483046279857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2957966614425458
the lambda is 20.0
the regulation term lambda/alpha is 67.61401532547286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28486492420521564
the lambda is 20.0
the regulation term lambda/alpha is 70.20871402753704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2868531582446394
the lambda is 20.0
the regulation term lambda/alpha is 69.72208401813457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.270869504877557
the lambda is 20.0
the regulation term lambda/alpha is 73.83629253149311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28478750040446266
the lambda is 20.0
the regulation term lambda/alpha is 70.2278013311521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2780611054454949
the lambda is 20.0
the regulation term lambda/alpha is 71.92663629800741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2962483187964892
the lambda is 20.0
the regulation term lambda/alpha is 67.51093164427104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2981085890785631
the lambda is 20.0
the regulation term lambda/alpha is 67.08964696998123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2850046384713434
the lambda is 20.0
the regulation term lambda/alpha is 70.17429648609371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.278737770296438
the lambda is 20.0
the regulation term lambda/alpha is 71.75202692742349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30225367102357614
the lambda is 20.0
the regulation term lambda/alpha is 66.16958507822383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2968764701045414
the lambda is 20.0
the regulation term lambda/alpha is 67.36808745050507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3144575814112061
the lambda is 20.0
the regulation term lambda/alpha is 63.60158311415186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2734762898921832
the lambda is 20.0
the regulation term lambda/alpha is 73.13248255592801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29609667075806706
the lambda is 20.0
the regulation term lambda/alpha is 67.54550785321555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2550784853524729
the lambda is 20.0
the regulation term lambda/alpha is 78.40723992211092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2571213063537232
the lambda is 20.0
the regulation term lambda/alpha is 77.78429677269098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28353705623479536
the lambda is 20.0
the regulation term lambda/alpha is 70.5375172670133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28936392415372114
the lambda is 20.0
the regulation term lambda/alpha is 69.11711630429521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3191051800768161
the lambda is 20.0
the regulation term lambda/alpha is 62.67525959680608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2718076503614346
the lambda is 20.0
the regulation term lambda/alpha is 73.5814461933103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3053892280084294
the lambda is 20.0
the regulation term lambda/alpha is 65.49019469490901
950
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33538068114918973
the lambda is 20.0
the regulation term lambda/alpha is 59.63372705747252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25666923561650734
the lambda is 20.0
the regulation term lambda/alpha is 77.92129801595017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2779060792889261
the lambda is 20.0
the regulation term lambda/alpha is 71.96675960156642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31230838121009913
the lambda is 20.0
the regulation term lambda/alpha is 64.03926760628754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2979402249730767
the lambda is 20.0
the regulation term lambda/alpha is 67.12755889812225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2856290394438538
the lambda is 20.0
the regulation term lambda/alpha is 70.02089156950515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30986010096295935
the lambda is 20.0
the regulation term lambda/alpha is 64.54525748182984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26623638010241646
the lambda is 20.0
the regulation term lambda/alpha is 75.1212136835182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.283473190840503
the lambda is 20.0
the regulation term lambda/alpha is 70.55340909205435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26658757410268036
the lambda is 20.0
the regulation term lambda/alpha is 75.02225138331724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28137694451000905
the lambda is 20.0
the regulation term lambda/alpha is 71.07902900441286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30478255298008167
the lambda is 20.0
the regulation term lambda/alpha is 65.6205540784582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28044584334726824
the lambda is 20.0
the regulation term lambda/alpha is 71.31501669373847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2841096378554377
the lambda is 20.0
the regulation term lambda/alpha is 70.39535916826769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.284116659464584
the lambda is 20.0
the regulation term lambda/alpha is 70.39361942974365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2915610322378811
the lambda is 20.0
the regulation term lambda/alpha is 68.59627243904886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2981809185198915
the lambda is 20.0
the regulation term lambda/alpha is 67.07337310273196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2728509038897289
the lambda is 20.0
the regulation term lambda/alpha is 73.30010535014715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2878739097778053
the lambda is 20.0
the regulation term lambda/alpha is 69.47486146082827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33266820922711376
the lambda is 20.0
the regulation term lambda/alpha is 60.11996170738975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3023530144928552
the lambda is 20.0
the regulation term lambda/alpha is 66.1478438822465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2794672135384531
the lambda is 20.0
the regulation term lambda/alpha is 71.56474545536668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3129567836373582
the lambda is 20.0
the regulation term lambda/alpha is 63.90658725319468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28714732198928655
the lambda is 20.0
the regulation term lambda/alpha is 69.65065828037288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28024990724911897
the lambda is 20.0
the regulation term lambda/alpha is 71.36487642874278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.284238206817086
the lambda is 20.0
the regulation term lambda/alpha is 70.363517360882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26647595297703563
the lambda is 20.0
the regulation term lambda/alpha is 75.05367661345247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2908466327109935
the lambda is 20.0
the regulation term lambda/alpha is 68.76476379863564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2644258212193036
the lambda is 20.0
the regulation term lambda/alpha is 75.63557865785296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.277171080265578
the lambda is 20.0
the regulation term lambda/alpha is 72.1576002115247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3083209953666791
the lambda is 20.0
the regulation term lambda/alpha is 64.86746053804885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3344261005565663
the lambda is 20.0
the regulation term lambda/alpha is 59.80394462846991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3159934892548378
the lambda is 20.0
the regulation term lambda/alpha is 63.29244329420564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30968735948092463
the lambda is 20.0
the regulation term lambda/alpha is 64.58126038312491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2729273420791725
the lambda is 20.0
the regulation term lambda/alpha is 73.27957634306303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24225378499804748
the lambda is 20.0
the regulation term lambda/alpha is 82.55804960967357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2682003616626252
the lambda is 20.0
the regulation term lambda/alpha is 74.57111495307534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27209998622285064
the lambda is 20.0
the regulation term lambda/alpha is 73.50239254925924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32652440036051555
the lambda is 20.0
the regulation term lambda/alpha is 61.25116523579249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28822832237514306
the lambda is 20.0
the regulation term lambda/alpha is 69.38943347131944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.279647916035329
the lambda is 20.0
the regulation term lambda/alpha is 71.51850184885097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.297170096008535
the lambda is 20.0
the regulation term lambda/alpha is 67.30152282693203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24357802239191226
the lambda is 20.0
the regulation term lambda/alpha is 82.10921413845948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2998248178512713
the lambda is 20.0
the regulation term lambda/alpha is 66.70561877876648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29843742259296346
the lambda is 20.0
the regulation term lambda/alpha is 67.01572418844351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29137935410039634
the lambda is 20.0
the regulation term lambda/alpha is 68.63904294711591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27575230192856426
the lambda is 20.0
the regulation term lambda/alpha is 72.52885963280609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2715205877262037
the lambda is 20.0
the regulation term lambda/alpha is 73.65923949813937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2824368260292994
the lambda is 20.0
the regulation term lambda/alpha is 70.8122955535736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3266071219538564
the lambda is 20.0
the regulation term lambda/alpha is 61.23565181418682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3109111841565736
the lambda is 20.0
the regulation term lambda/alpha is 64.32705228747282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29558039718450374
the lambda is 20.0
the regulation term lambda/alpha is 67.66348577411185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27727952667790823
the lambda is 20.0
the regulation term lambda/alpha is 72.1293787522664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27171022607013234
the lambda is 20.0
the regulation term lambda/alpha is 73.60782952216789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2771058132245011
the lambda is 20.0
the regulation term lambda/alpha is 72.17459557153614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3383895447986823
the lambda is 20.0
the regulation term lambda/alpha is 59.10348090659414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.298846599868232
the lambda is 20.0
the regulation term lambda/alpha is 66.92396704134643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30854035892003934
the lambda is 20.0
the regulation term lambda/alpha is 64.82134159046323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2863353816566734
the lambda is 20.0
the regulation term lambda/alpha is 69.84816156593855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3237381617609429
the lambda is 20.0
the regulation term lambda/alpha is 61.778320761481766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29791646455316245
the lambda is 20.0
the regulation term lambda/alpha is 67.13291267737587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32776143517359063
the lambda is 20.0
the regulation term lambda/alpha is 61.01999153563476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2599145907206476
the lambda is 20.0
the regulation term lambda/alpha is 76.94835424416672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2822478553859515
the lambda is 20.0
the regulation term lambda/alpha is 70.85970581654763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28312949914823105
the lambda is 20.0
the regulation term lambda/alpha is 70.63905407302366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2908487590192872
the lambda is 20.0
the regulation term lambda/alpha is 68.76426108001283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30871453678507843
the lambda is 20.0
the regulation term lambda/alpha is 64.78476915365876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2985029908138163
the lambda is 20.0
the regulation term lambda/alpha is 67.00100372687554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3292364851065992
the lambda is 20.0
the regulation term lambda/alpha is 60.74660891099132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2991703454208779
the lambda is 20.0
the regulation term lambda/alpha is 66.85154563652912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31274789023545313
the lambda is 20.0
the regulation term lambda/alpha is 63.94927231944856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30911176354662945
the lambda is 20.0
the regulation term lambda/alpha is 64.70151692231863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.277145848076542
the lambda is 20.0
the regulation term lambda/alpha is 72.1641696558139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3035527121041769
the lambda is 20.0
the regulation term lambda/alpha is 65.88641511836059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2638051693179064
the lambda is 20.0
the regulation term lambda/alpha is 75.81352576112107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3055112224353962
the lambda is 20.0
the regulation term lambda/alpha is 65.46404364647923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3172848771953495
the lambda is 20.0
the regulation term lambda/alpha is 63.034835371892555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33232510161679013
the lambda is 20.0
the regulation term lambda/alpha is 60.18203230119628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2762071416247276
the lambda is 20.0
the regulation term lambda/alpha is 72.40942389235272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3316814629999624
the lambda is 20.0
the regulation term lambda/alpha is 60.29881748321361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2633705007040319
the lambda is 20.0
the regulation term lambda/alpha is 75.93864896234305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2850441004339339
the lambda is 20.0
the regulation term lambda/alpha is 70.16458144390012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2768583720623698
the lambda is 20.0
the regulation term lambda/alpha is 72.2391013535775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26642114163876085
the lambda is 20.0
the regulation term lambda/alpha is 75.06911755193177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27805734742721844
the lambda is 20.0
the regulation term lambda/alpha is 71.92760840543875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26963069881211094
the lambda is 20.0
the regulation term lambda/alpha is 74.17553004206235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.281575284752442
the lambda is 20.0
the regulation term lambda/alpha is 71.02896128679684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3264727791884316
the lambda is 20.0
the regulation term lambda/alpha is 61.26085013800345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2718628136549224
the lambda is 20.0
the regulation term lambda/alpha is 73.56651588762765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33458062231424207
the lambda is 20.0
the regulation term lambda/alpha is 59.77632494572792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2743509006974572
the lambda is 20.0
the regulation term lambda/alpha is 72.8993414971696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2986416273361266
the lambda is 20.0
the regulation term lambda/alpha is 66.96990027277623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3282251573537137
the lambda is 20.0
the regulation term lambda/alpha is 60.93378143603687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3353806037441242
the lambda is 20.0
the regulation term lambda/alpha is 59.63374082079842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2558160756365038
the lambda is 20.0
the regulation term lambda/alpha is 78.1811696166372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26829268303692894
the lambda is 20.0
the regulation term lambda/alpha is 74.54545451486321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31237207321829213
the lambda is 20.0
the regulation term lambda/alpha is 64.02621013442383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2770426435848742
the lambda is 20.0
the regulation term lambda/alpha is 72.1910523997467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2803921009379392
the lambda is 20.0
the regulation term lambda/alpha is 71.32868555532781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.293015564952939
the lambda is 20.0
the regulation term lambda/alpha is 68.25575973485293
960
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24516592575578827
the lambda is 20.0
the regulation term lambda/alpha is 81.57740492829399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2929033036362328
the lambda is 20.0
the regulation term lambda/alpha is 68.28192018222752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3361030300877777
the lambda is 20.0
the regulation term lambda/alpha is 59.505562906638296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2561668454952114
the lambda is 20.0
the regulation term lambda/alpha is 78.07411595882678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.333200705125663
the lambda is 20.0
the regulation term lambda/alpha is 60.02388257989195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28489985432911513
the lambda is 20.0
the regulation term lambda/alpha is 70.20010609375771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26366714608381636
the lambda is 20.0
the regulation term lambda/alpha is 75.8532122680247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3107855943576367
the lambda is 20.0
the regulation term lambda/alpha is 64.35304712671137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3045872591106873
the lambda is 20.0
the regulation term lambda/alpha is 65.66262836598816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.300464082184641
the lambda is 20.0
the regulation term lambda/alpha is 66.56369658090983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30196660935694464
the lambda is 20.0
the regulation term lambda/alpha is 66.23248856087486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2591096787424829
the lambda is 20.0
the regulation term lambda/alpha is 77.18739067202917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.353513306615816
the lambda is 20.0
the regulation term lambda/alpha is 56.574956658520335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3083247779955281
the lambda is 20.0
the regulation term lambda/alpha is 64.86666472290487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2734018401857732
the lambda is 20.0
the regulation term lambda/alpha is 73.15239716898118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2666039952264018
the lambda is 20.0
the regulation term lambda/alpha is 75.01763048605432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30184345618869457
the lambda is 20.0
the regulation term lambda/alpha is 66.25951164399996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3282474047493635
the lambda is 20.0
the regulation term lambda/alpha is 60.929651569587264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2847411227609657
the lambda is 20.0
the regulation term lambda/alpha is 70.23923979111927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2802801069104561
the lambda is 20.0
the regulation term lambda/alpha is 71.35718699575636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28134849332726664
the lambda is 20.0
the regulation term lambda/alpha is 71.08621682482533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31761774193408265
the lambda is 20.0
the regulation term lambda/alpha is 62.96877459745537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.283129938486294
the lambda is 20.0
the regulation term lambda/alpha is 70.63894446107182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.266515855733556
the lambda is 20.0
the regulation term lambda/alpha is 75.04243957625773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29194118681285736
the lambda is 20.0
the regulation term lambda/alpha is 68.50694901374287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29305435145462755
the lambda is 20.0
the regulation term lambda/alpha is 68.24672590844132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30822055762738076
the lambda is 20.0
the regulation term lambda/alpha is 64.88859845675427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3093466171354109
the lambda is 20.0
the regulation term lambda/alpha is 64.6523960248945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2972652203539214
the lambda is 20.0
the regulation term lambda/alpha is 67.27998645851733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.278870941119808
the lambda is 20.0
the regulation term lambda/alpha is 71.71776277474403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2680189275329275
the lambda is 20.0
the regulation term lambda/alpha is 74.62159551229044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2456870615429388
the lambda is 20.0
the regulation term lambda/alpha is 81.40436811933866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2606148963281963
the lambda is 20.0
the regulation term lambda/alpha is 76.74158416030716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3042535984412492
the lambda is 20.0
the regulation term lambda/alpha is 65.73463749472124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3292810690352517
the lambda is 20.0
the regulation term lambda/alpha is 60.73838395446557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25009368397414955
the lambda is 20.0
the regulation term lambda/alpha is 79.97003235822325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30766534961210257
the lambda is 20.0
the regulation term lambda/alpha is 65.00569539343817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33693827513930524
the lambda is 20.0
the regulation term lambda/alpha is 59.35805301944729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29484765088061227
the lambda is 20.0
the regulation term lambda/alpha is 67.8316409856637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2858176396866022
the lambda is 20.0
the regulation term lambda/alpha is 69.97468743332257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2763658648057305
the lambda is 20.0
the regulation term lambda/alpha is 72.36783751878643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32943949803885425
the lambda is 20.0
the regulation term lambda/alpha is 60.7091745800353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2791968399486253
the lambda is 20.0
the regulation term lambda/alpha is 71.63404859338729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25682839061751983
the lambda is 20.0
the regulation term lambda/alpha is 77.87301065864203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27419331446697154
the lambda is 20.0
the regulation term lambda/alpha is 72.94123869825111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.270976005527494
the lambda is 20.0
the regulation term lambda/alpha is 73.80727293941435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32535781871097547
the lambda is 20.0
the regulation term lambda/alpha is 61.470783395454724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25370841787145265
the lambda is 20.0
the regulation term lambda/alpha is 78.83065200514345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3213406091367176
the lambda is 20.0
the regulation term lambda/alpha is 62.23925464549922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34711158118741814
the lambda is 20.0
the regulation term lambda/alpha is 57.61835987028412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2474710371412404
the lambda is 20.0
the regulation term lambda/alpha is 80.81753820987664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2887064735449032
the lambda is 20.0
the regulation term lambda/alpha is 69.27451177117216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2801944112131914
the lambda is 20.0
the regulation term lambda/alpha is 71.37901114231222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25361527973496584
the lambda is 20.0
the regulation term lambda/alpha is 78.85960191712616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2733644425291454
the lambda is 20.0
the regulation term lambda/alpha is 73.16240479179238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2657310979369875
the lambda is 20.0
the regulation term lambda/alpha is 75.2640551116173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3001294572787851
the lambda is 20.0
the regulation term lambda/alpha is 66.6379107913501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26236740306052364
the lambda is 20.0
the regulation term lambda/alpha is 76.22898182738938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28172848770859177
the lambda is 20.0
the regulation term lambda/alpha is 70.99033598862451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.281847450481306
the lambda is 20.0
the regulation term lambda/alpha is 70.96037223628011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2828268701146997
the lambda is 20.0
the regulation term lambda/alpha is 70.71463893048441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3257963416299271
the lambda is 20.0
the regulation term lambda/alpha is 61.38804352419049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3102696840231337
the lambda is 20.0
the regulation term lambda/alpha is 64.46005210908326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2390231570816022
the lambda is 20.0
the regulation term lambda/alpha is 83.67390107382786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29517564437694693
the lambda is 20.0
the regulation term lambda/alpha is 67.75626777140015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29217373390743373
the lambda is 20.0
the regulation term lambda/alpha is 68.45242292154977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28844991695822514
the lambda is 20.0
the regulation term lambda/alpha is 69.33612673875898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28974819210324465
the lambda is 20.0
the regulation term lambda/alpha is 69.02545225501697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28399428430844315
the lambda is 20.0
the regulation term lambda/alpha is 70.42395254081316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2658794279615607
the lambda is 20.0
the regulation term lambda/alpha is 75.22206645822737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3023470522217688
the lambda is 20.0
the regulation term lambda/alpha is 66.1491483149311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28642710321427184
the lambda is 20.0
the regulation term lambda/alpha is 69.82579433147532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2438952378222407
the lambda is 20.0
the regulation term lambda/alpha is 82.00242111564594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25872832694374953
the lambda is 20.0
the regulation term lambda/alpha is 77.30116078224486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2556203631424014
the lambda is 20.0
the regulation term lambda/alpha is 78.24102803914087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29451478931340797
the lambda is 20.0
the regulation term lambda/alpha is 67.90830452564131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28440128875303755
the lambda is 20.0
the regulation term lambda/alpha is 70.32316937694041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28165544540802406
the lambda is 20.0
the regulation term lambda/alpha is 71.00874606214953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33132426076546856
the lambda is 20.0
the regulation term lambda/alpha is 60.36382592024317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30080883604501496
the lambda is 20.0
the regulation term lambda/alpha is 66.48740862454942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3341990951007368
the lambda is 20.0
the regulation term lambda/alpha is 59.84456658678698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2706059153448522
the lambda is 20.0
the regulation term lambda/alpha is 73.90821436594463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30082387476754363
the lambda is 20.0
the regulation term lambda/alpha is 66.48408480029934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2980703995717113
the lambda is 20.0
the regulation term lambda/alpha is 67.09824265924232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34354544740972925
the lambda is 20.0
the regulation term lambda/alpha is 58.216460589992955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2723343940316114
the lambda is 20.0
the regulation term lambda/alpha is 73.43912645010415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2728446038919208
the lambda is 20.0
the regulation term lambda/alpha is 73.30179785385238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29195964531794205
the lambda is 20.0
the regulation term lambda/alpha is 68.50261781288349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2875827484192506
the lambda is 20.0
the regulation term lambda/alpha is 69.54520085065441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2553422058078244
the lambda is 20.0
the regulation term lambda/alpha is 78.32625999578148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2996610293305594
the lambda is 20.0
the regulation term lambda/alpha is 66.74207869031171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27646734732932404
the lambda is 20.0
the regulation term lambda/alpha is 72.34127354712989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3174678499770202
the lambda is 20.0
the regulation term lambda/alpha is 62.99850520752792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3203656583928734
the lambda is 20.0
the regulation term lambda/alpha is 62.42866385969946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2946031137252323
the lambda is 20.0
the regulation term lambda/alpha is 67.88794506311096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2922157219014703
the lambda is 20.0
the regulation term lambda/alpha is 68.44258710605456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26722149792223676
the lambda is 20.0
the regulation term lambda/alpha is 74.84427770785169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2701518203864453
the lambda is 20.0
the regulation term lambda/alpha is 74.032445798035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2875061770769407
the lambda is 20.0
the regulation term lambda/alpha is 69.56372278098122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27612213326187
the lambda is 20.0
the regulation term lambda/alpha is 72.43171622548745
970
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3159991053044813
the lambda is 20.0
the regulation term lambda/alpha is 63.29131843816133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2984719527959159
the lambda is 20.0
the regulation term lambda/alpha is 67.007971143189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32932504944040164
the lambda is 20.0
the regulation term lambda/alpha is 60.730272519459305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31643106595365306
the lambda is 20.0
the regulation term lambda/alpha is 63.20491933914401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33904374539220916
the lambda is 20.0
the regulation term lambda/alpha is 58.989438005599546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2850370169599689
the lambda is 20.0
the regulation term lambda/alpha is 70.16632510860452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3073359571546617
the lambda is 20.0
the regulation term lambda/alpha is 65.07536633578911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.244125978109169
the lambda is 20.0
the regulation term lambda/alpha is 81.92491497589141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28014087161885204
the lambda is 20.0
the regulation term lambda/alpha is 71.39265286220414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2659943202205027
the lambda is 20.0
the regulation term lambda/alpha is 75.18957541431898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26621660290719795
the lambda is 20.0
the regulation term lambda/alpha is 75.12679442826457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3231178879982529
the lambda is 20.0
the regulation term lambda/alpha is 61.896913612248355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2995353289779188
the lambda is 20.0
the regulation term lambda/alpha is 66.77008708202953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25859893804619377
the lambda is 20.0
the regulation term lambda/alpha is 77.33983809487795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30094733300366155
the lambda is 20.0
the regulation term lambda/alpha is 66.45681089905743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3146869125794078
the lambda is 20.0
the regulation term lambda/alpha is 63.555232837823276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3289777240003995
the lambda is 20.0
the regulation term lambda/alpha is 60.794389835269556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29043623838811744
the lambda is 20.0
the regulation term lambda/alpha is 68.8619302845862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2996675433861827
the lambda is 20.0
the regulation term lambda/alpha is 66.74062787716028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29340652330379974
the lambda is 20.0
the regulation term lambda/alpha is 68.16481029391275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23497135269784647
the lambda is 20.0
the regulation term lambda/alpha is 85.11675900218496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2897071061308451
the lambda is 20.0
the regulation term lambda/alpha is 69.03524137570543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27865241775811694
the lambda is 20.0
the regulation term lambda/alpha is 71.77400490872796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28384098788362616
the lambda is 20.0
the regulation term lambda/alpha is 70.46198700590745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30520876699921834
the lambda is 20.0
the regulation term lambda/alpha is 65.52891712986482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2854113402918959
the lambda is 20.0
the regulation term lambda/alpha is 70.0743004098772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32573965568123314
the lambda is 20.0
the regulation term lambda/alpha is 61.39872640981692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3051137143308855
the lambda is 20.0
the regulation term lambda/alpha is 65.54933148075631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28496364052595347
the lambda is 20.0
the regulation term lambda/alpha is 70.18439251788851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2928690273748333
the lambda is 20.0
the regulation term lambda/alpha is 68.2899116348096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.332623360335835
the lambda is 20.0
the regulation term lambda/alpha is 60.1280679138317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28201687980381296
the lambda is 20.0
the regulation term lambda/alpha is 70.91774085974265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33616400008414943
the lambda is 20.0
the regulation term lambda/alpha is 59.494770394788105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2898757705825856
the lambda is 20.0
the regulation term lambda/alpha is 68.99507316463347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2651728745771651
the lambda is 20.0
the regulation term lambda/alpha is 75.42249572808404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3192411918266335
the lambda is 20.0
the regulation term lambda/alpha is 62.648556990919765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2626370446668745
the lambda is 20.0
the regulation term lambda/alpha is 76.15071980941511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26654826958380207
the lambda is 20.0
the regulation term lambda/alpha is 75.03331397059418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28785587387301975
the lambda is 20.0
the regulation term lambda/alpha is 69.47921447947415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25866980818046037
the lambda is 20.0
the regulation term lambda/alpha is 77.31864859174847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2888364926116696
the lambda is 20.0
the regulation term lambda/alpha is 69.24332801288128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2735003571432186
the lambda is 20.0
the regulation term lambda/alpha is 73.12604710613593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3170144730084298
the lambda is 20.0
the regulation term lambda/alpha is 63.08860226538672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2639510519606378
the lambda is 20.0
the regulation term lambda/alpha is 75.77162451689163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28425383631879125
the lambda is 20.0
the regulation term lambda/alpha is 70.35964847126974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2846088488974661
the lambda is 20.0
the regulation term lambda/alpha is 70.27188394695784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.317951064201752
the lambda is 20.0
the regulation term lambda/alpha is 62.90276162532119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2806005845128869
the lambda is 20.0
the regulation term lambda/alpha is 71.27568901796596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2904777607565587
the lambda is 20.0
the regulation term lambda/alpha is 68.85208681005167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2963580103623428
the lambda is 20.0
the regulation term lambda/alpha is 67.48594369204649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2931732016586269
the lambda is 20.0
the regulation term lambda/alpha is 68.21905920067057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.286484865604275
the lambda is 20.0
the regulation term lambda/alpha is 69.81171573519084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26625008861303134
the lambda is 20.0
the regulation term lambda/alpha is 75.11734589154656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2457325826330618
the lambda is 20.0
the regulation term lambda/alpha is 81.3892882486196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2679657588985135
the lambda is 20.0
the regulation term lambda/alpha is 74.63640161418753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25535319070872897
the lambda is 20.0
the regulation term lambda/alpha is 78.32289052073443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2719152493063422
the lambda is 20.0
the regulation term lambda/alpha is 73.55232945198972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2759265786745343
the lambda is 20.0
the regulation term lambda/alpha is 72.48305000581603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2735188827051502
the lambda is 20.0
the regulation term lambda/alpha is 73.12109424474266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3068697992714402
the lambda is 20.0
the regulation term lambda/alpha is 65.17422062217695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2906706996146139
the lambda is 20.0
the regulation term lambda/alpha is 68.80638477327444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2826697815947037
the lambda is 20.0
the regulation term lambda/alpha is 70.75393728741868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33949907819508796
the lambda is 20.0
the regulation term lambda/alpha is 58.91032195529941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2496914013168399
the lambda is 20.0
the regulation term lambda/alpha is 80.09887362769646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27011072406895065
the lambda is 20.0
the regulation term lambda/alpha is 74.0437095525857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29884073462108185
the lambda is 20.0
the regulation term lambda/alpha is 66.9252805356646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26910890989838004
the lambda is 20.0
the regulation term lambda/alpha is 74.31935273920261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2749769577557669
the lambda is 20.0
the regulation term lambda/alpha is 72.73336705457297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29394967122644533
the lambda is 20.0
the regulation term lambda/alpha is 68.0388582050596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3122696526283109
the lambda is 20.0
the regulation term lambda/alpha is 64.04720994071636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2949846186040586
the lambda is 20.0
the regulation term lambda/alpha is 67.8001452911173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29823577943453317
the lambda is 20.0
the regulation term lambda/alpha is 67.06103485611548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26207543060934974
the lambda is 20.0
the regulation term lambda/alpha is 76.31390685306953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2794346878091719
the lambda is 20.0
the regulation term lambda/alpha is 71.57307547178307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2944635679684351
the lambda is 20.0
the regulation term lambda/alpha is 67.92011703853257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3069081678862933
the lambda is 20.0
the regulation term lambda/alpha is 65.16607276287876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31135032995373596
the lambda is 20.0
the regulation term lambda/alpha is 64.2363218403264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2503357966442252
the lambda is 20.0
the regulation term lambda/alpha is 79.8926892122576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.275851589826593
the lambda is 20.0
the regulation term lambda/alpha is 72.50275415332021
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32635704673879096
the lambda is 20.0
the regulation term lambda/alpha is 61.2825744069426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28837573280325035
the lambda is 20.0
the regulation term lambda/alpha is 69.35396333659382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28111667639677895
the lambda is 20.0
the regulation term lambda/alpha is 71.14483657231074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2711742856293233
the lambda is 20.0
the regulation term lambda/alpha is 73.7533057516325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3006822328980935
the lambda is 20.0
the regulation term lambda/alpha is 66.51540334535946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30368919623703267
the lambda is 20.0
the regulation term lambda/alpha is 65.85680441654496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2885268855957479
the lambda is 20.0
the regulation term lambda/alpha is 69.31763034389037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.258942551221829
the lambda is 20.0
the regulation term lambda/alpha is 77.23720920192272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26747194953240505
the lambda is 20.0
the regulation term lambda/alpha is 74.77419607911797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29682658309541565
the lambda is 20.0
the regulation term lambda/alpha is 67.37940986091178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27810776255099895
the lambda is 20.0
the regulation term lambda/alpha is 71.91456943361095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24934410423780182
the lambda is 20.0
the regulation term lambda/alpha is 80.210438747434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27960916099553634
the lambda is 20.0
the regulation term lambda/alpha is 71.52841462272146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26631013941170445
the lambda is 20.0
the regulation term lambda/alpha is 75.10040753304112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2831519729475168
the lambda is 20.0
the regulation term lambda/alpha is 70.63344744451796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2946867875512617
the lambda is 20.0
the regulation term lambda/alpha is 67.86866885411663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3677536167259303
the lambda is 20.0
the regulation term lambda/alpha is 54.38423740888746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.23732326957133232
the lambda is 20.0
the regulation term lambda/alpha is 84.27323640081823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2847279089049979
the lambda is 20.0
the regulation term lambda/alpha is 70.24249950387964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29086795399791443
the lambda is 20.0
the regulation term lambda/alpha is 68.75972318402393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3342490667640523
the lambda is 20.0
the regulation term lambda/alpha is 59.835619568440194
980
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2762150095021479
the lambda is 20.0
the regulation term lambda/alpha is 72.40736133799592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30105698459545227
the lambda is 20.0
the regulation term lambda/alpha is 66.43260586322273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2945071428319709
the lambda is 20.0
the regulation term lambda/alpha is 67.91006767333609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29150977583387166
the lambda is 20.0
the regulation term lambda/alpha is 68.60833377813644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25305039447406735
the lambda is 20.0
the regulation term lambda/alpha is 79.03564047614873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29143086844946214
the lambda is 20.0
the regulation term lambda/alpha is 68.62691006758695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3305802744248982
the lambda is 20.0
the regulation term lambda/alpha is 60.49967752853214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2583108153237456
the lambda is 20.0
the regulation term lambda/alpha is 77.42610380031374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2922938302164035
the lambda is 20.0
the regulation term lambda/alpha is 68.42429751320013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25978906521065326
the lambda is 20.0
the regulation term lambda/alpha is 76.98553433641538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2933160351604759
the lambda is 20.0
the regulation term lambda/alpha is 68.18583917192872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3007222750426699
the lambda is 20.0
the regulation term lambda/alpha is 66.50654660404578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2725140420637942
the lambda is 20.0
the regulation term lambda/alpha is 73.39071355199412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2860567712973622
the lambda is 20.0
the regulation term lambda/alpha is 69.91619149336468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3065684533126706
the lambda is 20.0
the regulation term lambda/alpha is 65.23828457849154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26187076665579095
the lambda is 20.0
the regulation term lambda/alpha is 76.37354965355284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2844168227100753
the lambda is 20.0
the regulation term lambda/alpha is 70.3193285454402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31725575577972465
the lambda is 20.0
the regulation term lambda/alpha is 63.04062144072272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2777508881138007
the lambda is 20.0
the regulation term lambda/alpha is 72.00697047566435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2679144528662609
the lambda is 20.0
the regulation term lambda/alpha is 74.65069460057728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3132900005369527
the lambda is 20.0
the regulation term lambda/alpha is 63.83861586939156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3182874642845232
the lambda is 20.0
the regulation term lambda/alpha is 62.83627928909453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31891482409486244
the lambda is 20.0
the regulation term lambda/alpha is 62.71266961880368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30269297989299737
the lambda is 20.0
the regulation term lambda/alpha is 66.07355085364068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27977191881917507
the lambda is 20.0
the regulation term lambda/alpha is 71.48680283715892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2830361313445605
the lambda is 20.0
the regulation term lambda/alpha is 70.66235644541277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29770996256432375
the lambda is 20.0
the regulation term lambda/alpha is 67.17947840149543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2937427063325241
the lambda is 20.0
the regulation term lambda/alpha is 68.08679694453247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2891103649321444
the lambda is 20.0
the regulation term lambda/alpha is 69.17773427007397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.279951942997094
the lambda is 20.0
the regulation term lambda/alpha is 71.44083297256346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31101203725832915
the lambda is 20.0
the regulation term lambda/alpha is 64.30619270014888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3581154728103098
the lambda is 20.0
the regulation term lambda/alpha is 55.847908058956726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3158838527413891
the lambda is 20.0
the regulation term lambda/alpha is 63.31441074442573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2929815642648771
the lambda is 20.0
the regulation term lambda/alpha is 68.263680857129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2775637521462658
the lambda is 20.0
the regulation term lambda/alpha is 72.05551822004749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28976747728976604
the lambda is 20.0
the regulation term lambda/alpha is 69.0208583346298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33041267436991123
the lambda is 20.0
the regulation term lambda/alpha is 60.530365665117124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27888657488737995
the lambda is 20.0
the regulation term lambda/alpha is 71.7137424348103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31123553643344865
the lambda is 20.0
the regulation term lambda/alpha is 64.26001422969446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28308770050521925
the lambda is 20.0
the regulation term lambda/alpha is 70.64948411501638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2874760010533365
the lambda is 20.0
the regulation term lambda/alpha is 69.57102480456908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3139519093373779
the lambda is 20.0
the regulation term lambda/alpha is 63.704024104238435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30519438884265615
the lambda is 20.0
the regulation term lambda/alpha is 65.53200429353588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31054092268498507
the lambda is 20.0
the regulation term lambda/alpha is 64.40375016302809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2808037756866341
the lambda is 20.0
the regulation term lambda/alpha is 71.22411353300038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29516951007718945
the lambda is 20.0
the regulation term lambda/alpha is 67.75767590212763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2904498681033958
the lambda is 20.0
the regulation term lambda/alpha is 68.85869885429007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2841345686299873
the lambda is 20.0
the regulation term lambda/alpha is 70.38918247939374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31505673587493915
the lambda is 20.0
the regulation term lambda/alpha is 63.48062974898255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2914681900982168
the lambda is 20.0
the regulation term lambda/alpha is 68.61812259259081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31816102907215277
the lambda is 20.0
the regulation term lambda/alpha is 62.861250035322165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3027938411174074
the lambda is 20.0
the regulation term lambda/alpha is 66.05154162381083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30669240554118343
the lambda is 20.0
the regulation term lambda/alpha is 65.21191799551863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2933111985878954
the lambda is 20.0
the regulation term lambda/alpha is 68.18696352640856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2727169875925547
the lambda is 20.0
the regulation term lambda/alpha is 73.33609899607886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3217501693221337
the lambda is 20.0
the regulation term lambda/alpha is 62.160029448115566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3102524918342416
the lambda is 20.0
the regulation term lambda/alpha is 64.46362406876457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2977566065875049
the lambda is 20.0
the regulation term lambda/alpha is 67.16895463450409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3119377913897272
the lambda is 20.0
the regulation term lambda/alpha is 64.1153478419436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33508851461542694
the lambda is 20.0
the regulation term lambda/alpha is 59.685722212692134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3424736020580808
the lambda is 20.0
the regulation term lambda/alpha is 58.39866161891263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2797157642786688
the lambda is 20.0
the regulation term lambda/alpha is 71.50115422195104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2841479693989486
the lambda is 20.0
the regulation term lambda/alpha is 70.3858628386665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26107469401576827
the lambda is 20.0
the regulation term lambda/alpha is 76.60642895857248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29473723798251333
the lambda is 20.0
the regulation term lambda/alpha is 67.85705171460755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2959337570159666
the lambda is 20.0
the regulation term lambda/alpha is 67.58269215945154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29168301850265393
the lambda is 20.0
the regulation term lambda/alpha is 68.56758443693226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33085003534469926
the lambda is 20.0
the regulation term lambda/alpha is 60.45034868792687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3195511601768562
the lambda is 20.0
the regulation term lambda/alpha is 62.58778716037508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3071524054454777
the lambda is 20.0
the regulation term lambda/alpha is 65.11425483057198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3064420197224032
the lambda is 20.0
the regulation term lambda/alpha is 65.26520096074752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29977773360722715
the lambda is 20.0
the regulation term lambda/alpha is 66.71609581985922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32353549211169325
the lambda is 20.0
the regulation term lambda/alpha is 61.81702004148422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29090487047736235
the lambda is 20.0
the regulation term lambda/alpha is 68.75099742118742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3024765115912749
the lambda is 20.0
the regulation term lambda/alpha is 66.120836605737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28574863264257006
the lambda is 20.0
the regulation term lambda/alpha is 69.99158601405134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2623286494779648
the lambda is 20.0
the regulation term lambda/alpha is 76.24024306838041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29118655873130633
the lambda is 20.0
the regulation term lambda/alpha is 68.68448903390176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3093061485160382
the lambda is 20.0
the regulation term lambda/alpha is 64.66085493597278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2887985652818451
the lambda is 20.0
the regulation term lambda/alpha is 69.25242159870685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25982802791743465
the lambda is 20.0
the regulation term lambda/alpha is 76.97398991287955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28907817797582114
the lambda is 20.0
the regulation term lambda/alpha is 69.18543675639475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3034782488453314
the lambda is 20.0
the regulation term lambda/alpha is 65.9025814077142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28768360003942584
the lambda is 20.0
the regulation term lambda/alpha is 69.52082078109105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30019318227628017
the lambda is 20.0
the regulation term lambda/alpha is 66.62376489814207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3487051199727964
the lambda is 20.0
the regulation term lambda/alpha is 57.355051172062694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29816981705659984
the lambda is 20.0
the regulation term lambda/alpha is 67.07587037960826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2854368403161648
the lambda is 20.0
the regulation term lambda/alpha is 70.0680401935747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2735342680763978
the lambda is 20.0
the regulation term lambda/alpha is 73.11698143215469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27565912079664484
the lambda is 20.0
the regulation term lambda/alpha is 72.5533765840968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28958543890321
the lambda is 20.0
the regulation term lambda/alpha is 69.06424603304978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2744952776625281
the lambda is 20.0
the regulation term lambda/alpha is 72.8609984489006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30329287249713266
the lambda is 20.0
the regulation term lambda/alpha is 65.94286187912009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2706047252507525
the lambda is 20.0
the regulation term lambda/alpha is 73.90853940731171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27540797389790933
the lambda is 20.0
the regulation term lambda/alpha is 72.6195386318545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2686073705853614
the lambda is 20.0
the regulation term lambda/alpha is 74.45812062571139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24765553370980717
the lambda is 20.0
the regulation term lambda/alpha is 80.75733136427793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.314170165714032
the lambda is 20.0
the regulation term lambda/alpha is 63.659768439644445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.33000833349772035
the lambda is 20.0
the regulation term lambda/alpha is 60.60453015844267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3387294082419452
the lambda is 20.0
the regulation term lambda/alpha is 59.044179552649126
990
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29658198630788746
the lambda is 20.0
the regulation term lambda/alpha is 67.43497893778894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3018263424052088
the lambda is 20.0
the regulation term lambda/alpha is 66.26326860877353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2618736189741233
the lambda is 20.0
the regulation term lambda/alpha is 76.3727177955114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31515232204053306
the lambda is 20.0
the regulation term lambda/alpha is 63.46137598004979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2887650937026313
the lambda is 20.0
the regulation term lambda/alpha is 69.2604488428781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3009211523026714
the lambda is 20.0
the regulation term lambda/alpha is 66.462592765442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2720389355176057
the lambda is 20.0
the regulation term lambda/alpha is 73.51888788252388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27419209106245007
the lambda is 20.0
the regulation term lambda/alpha is 72.94156415126064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29039176477466583
the lambda is 20.0
the regulation term lambda/alpha is 68.87247651640301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2691229471031529
the lambda is 20.0
the regulation term lambda/alpha is 74.31547631029079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25074149650784483
the lambda is 20.0
the regulation term lambda/alpha is 79.76342280215381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27392689868443737
the lambda is 20.0
the regulation term lambda/alpha is 73.0121798773764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31784192951112433
the lambda is 20.0
the regulation term lambda/alpha is 62.924360013677834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31301356198322333
the lambda is 20.0
the regulation term lambda/alpha is 63.894995070762924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32570083272278294
the lambda is 20.0
the regulation term lambda/alpha is 61.406045028514875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29620560626632086
the lambda is 20.0
the regulation term lambda/alpha is 67.52066664807768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29080770149418833
the lambda is 20.0
the regulation term lambda/alpha is 68.77396952432393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2755434740757579
the lambda is 20.0
the regulation term lambda/alpha is 72.58382753242489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31302540380688904
the lambda is 20.0
the regulation term lambda/alpha is 63.89257790827212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3068587586852754
the lambda is 20.0
the regulation term lambda/alpha is 65.17656554986155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2625263032461139
the lambda is 20.0
the regulation term lambda/alpha is 76.18284245312495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2957357041362671
the lambda is 20.0
the regulation term lambda/alpha is 67.62795198642817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31658875724077995
the lambda is 20.0
the regulation term lambda/alpha is 63.173437282831564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29553884976843753
the lambda is 20.0
the regulation term lambda/alpha is 67.67299803619905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32633201991609656
the lambda is 20.0
the regulation term lambda/alpha is 61.28727424646289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29434489200571656
the lambda is 20.0
the regulation term lambda/alpha is 67.94750153031897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3057616983171506
the lambda is 20.0
the regulation term lambda/alpha is 65.4104163800629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2919188061448933
the lambda is 20.0
the regulation term lambda/alpha is 68.51220126624196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2750869131925611
the lambda is 20.0
the regulation term lambda/alpha is 72.70429468231366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2877842897111885
the lambda is 20.0
the regulation term lambda/alpha is 69.49649690770606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29066605625947034
the lambda is 20.0
the regulation term lambda/alpha is 68.80748394696111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27104209325367284
the lambda is 20.0
the regulation term lambda/alpha is 73.78927663933611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.313581883350086
the lambda is 20.0
the regulation term lambda/alpha is 63.77919472366902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27940024188192336
the lambda is 20.0
the regulation term lambda/alpha is 71.58189937592162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3486604808815862
the lambda is 20.0
the regulation term lambda/alpha is 57.36239435404352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29576459896479484
the lambda is 20.0
the regulation term lambda/alpha is 67.62134504941417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2601801371999672
the lambda is 20.0
the regulation term lambda/alpha is 76.86981879261812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27823516919487656
the lambda is 20.0
the regulation term lambda/alpha is 71.88163903892377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2826544965120811
the lambda is 20.0
the regulation term lambda/alpha is 70.7577634419312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2703118402572501
the lambda is 20.0
the regulation term lambda/alpha is 73.98861988792804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30489143881916414
the lambda is 20.0
the regulation term lambda/alpha is 65.59711901868884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26589970989917777
the lambda is 20.0
the regulation term lambda/alpha is 75.2163287714134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.290492349538087
the lambda is 20.0
the regulation term lambda/alpha is 68.84862899763824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2766852105922317
the lambda is 20.0
the regulation term lambda/alpha is 72.2843116811012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27945241557509015
the lambda is 20.0
the regulation term lambda/alpha is 71.5685350539613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.363401305177441
the lambda is 20.0
the regulation term lambda/alpha is 55.03557558835522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28441628044998174
the lambda is 20.0
the regulation term lambda/alpha is 70.31946261429735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27646229194203875
the lambda is 20.0
the regulation term lambda/alpha is 72.34259637908619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29450639873020135
the lambda is 20.0
the regulation term lambda/alpha is 67.91023925535177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25089684039936594
the lambda is 20.0
the regulation term lambda/alpha is 79.71403692515588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33912881146624085
the lambda is 20.0
the regulation term lambda/alpha is 58.97464126839879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3028243865938816
the lambda is 20.0
the regulation term lambda/alpha is 66.0448790962864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2927294173503514
the lambda is 20.0
the regulation term lambda/alpha is 68.32248081190666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3137496349500584
the lambda is 20.0
the regulation term lambda/alpha is 63.74509408810477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2641801586202948
the lambda is 20.0
the regulation term lambda/alpha is 75.70591260317141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2925833105684967
the lambda is 20.0
the regulation term lambda/alpha is 68.35659888166383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31364914111129805
the lambda is 20.0
the regulation term lambda/alpha is 63.76551814915706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3044117069057878
the lambda is 20.0
the regulation term lambda/alpha is 65.70049556664978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33643821253494566
the lambda is 20.0
the regulation term lambda/alpha is 59.44627944996768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29247557050914447
the lambda is 20.0
the regulation term lambda/alpha is 68.38177959678409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2719402825909337
the lambda is 20.0
the regulation term lambda/alpha is 73.5455586404792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.301142147047199
the lambda is 20.0
the regulation term lambda/alpha is 66.41381884305066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29775059837276985
the lambda is 20.0
the regulation term lambda/alpha is 67.17031001550141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2762501509170215
the lambda is 20.0
the regulation term lambda/alpha is 72.39815049370775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29489826423272975
the lambda is 20.0
the regulation term lambda/alpha is 67.81999904962571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.285988383529301
the lambda is 20.0
the regulation term lambda/alpha is 69.93291039721862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29832496426977795
the lambda is 20.0
the regulation term lambda/alpha is 67.04098682775277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.320262224578711
the lambda is 20.0
the regulation term lambda/alpha is 62.448826196436386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3304479180386168
the lambda is 20.0
the regulation term lambda/alpha is 60.52390984549269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27406241238058276
the lambda is 20.0
the regulation term lambda/alpha is 72.97607806292883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.297872160571072
the lambda is 20.0
the regulation term lambda/alpha is 67.14289768354509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26466574979717206
the lambda is 20.0
the regulation term lambda/alpha is 75.5670124121731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2977874349320622
the lambda is 20.0
the regulation term lambda/alpha is 67.16200099095127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27690681453765137
the lambda is 20.0
the regulation term lambda/alpha is 72.22646374157966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33480240113240256
the lambda is 20.0
the regulation term lambda/alpha is 59.73672808902796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29451939756573264
the lambda is 20.0
the regulation term lambda/alpha is 67.90724198577202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2921565482970396
the lambda is 20.0
the regulation term lambda/alpha is 68.45644951851541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.308793935499566
the lambda is 20.0
the regulation term lambda/alpha is 64.76811135440225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30337174030822867
the lambda is 20.0
the regulation term lambda/alpha is 65.9257186568525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31039570575363196
the lambda is 20.0
the regulation term lambda/alpha is 64.43388110489663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2635162454431624
the lambda is 20.0
the regulation term lambda/alpha is 75.89664905237801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2941424650051234
the lambda is 20.0
the regulation term lambda/alpha is 67.99426257494522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32523750757099873
the lambda is 20.0
the regulation term lambda/alpha is 61.49352253178868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27814642832306014
the lambda is 20.0
the regulation term lambda/alpha is 71.90457242460255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2552235058811576
the lambda is 20.0
the regulation term lambda/alpha is 78.36268815033365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2562467673809281
the lambda is 20.0
the regulation term lambda/alpha is 78.04976509330419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3161352559489222
the lambda is 20.0
the regulation term lambda/alpha is 63.26406063116031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3142229455609118
the lambda is 20.0
the regulation term lambda/alpha is 63.649075545067156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27390068030280684
the lambda is 20.0
the regulation term lambda/alpha is 73.01916876544189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26388808321641066
the lambda is 20.0
the regulation term lambda/alpha is 75.78970507583816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.256811812066528
the lambda is 20.0
the regulation term lambda/alpha is 77.87803777039248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2632051608144911
the lambda is 20.0
the regulation term lambda/alpha is 75.98635200810574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26658888271758635
the lambda is 20.0
the regulation term lambda/alpha is 75.02188311876156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2757015971747226
the lambda is 20.0
the regulation term lambda/alpha is 72.54219853984102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2777102072222866
the lambda is 20.0
the regulation term lambda/alpha is 72.01751854944052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2661382949960318
the lambda is 20.0
the regulation term lambda/alpha is 75.14889956102786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2548407670431064
the lambda is 20.0
the regulation term lambda/alpha is 78.48037906987227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33953843154665736
the lambda is 20.0
the regulation term lambda/alpha is 58.90349410196801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28230924447615807
the lambda is 20.0
the regulation term lambda/alpha is 70.84429713632373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2798453706682223
the lambda is 20.0
the regulation term lambda/alpha is 71.46803948281675
1000
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3100270333955074
the lambda is 20.0
the regulation term lambda/alpha is 64.51050342595646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2515979559983917
the lambda is 20.0
the regulation term lambda/alpha is 79.4919017550677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2860550459177467
the lambda is 20.0
the regulation term lambda/alpha is 69.91661320230956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32635710254494815
the lambda is 20.0
the regulation term lambda/alpha is 61.28256392779275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33933394488581453
the lambda is 20.0
the regulation term lambda/alpha is 58.93899004630962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2967972869896081
the lambda is 20.0
the regulation term lambda/alpha is 67.38606071119602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2986566909857428
the lambda is 20.0
the regulation term lambda/alpha is 66.96652244417572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2856543249665192
the lambda is 20.0
the regulation term lambda/alpha is 70.01469346681219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27349486079973007
the lambda is 20.0
the regulation term lambda/alpha is 73.12751669818485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32091418016187806
the lambda is 20.0
the regulation term lambda/alpha is 62.32195782034761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29607588857097117
the lambda is 20.0
the regulation term lambda/alpha is 67.55024901396482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3123791506747011
the lambda is 20.0
the regulation term lambda/alpha is 64.02475951676807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3147807931517501
the lambda is 20.0
the regulation term lambda/alpha is 63.53627805479975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27060343904792006
the lambda is 20.0
the regulation term lambda/alpha is 73.90889070134206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.263289441506451
the lambda is 20.0
the regulation term lambda/alpha is 75.96202827415686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3651938357561106
the lambda is 20.0
the regulation term lambda/alpha is 54.76543698661089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28149951718248806
the lambda is 20.0
the regulation term lambda/alpha is 71.04807923004206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3141640545039333
the lambda is 20.0
the regulation term lambda/alpha is 63.66100676788153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29651991691515833
the lambda is 20.0
the regulation term lambda/alpha is 67.44909484688172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31732174342209946
the lambda is 20.0
the regulation term lambda/alpha is 63.027512027110355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3169152873020835
the lambda is 20.0
the regulation term lambda/alpha is 63.10834725033636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2803918761229508
the lambda is 20.0
the regulation term lambda/alpha is 71.3287427458493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3230831269739761
the lambda is 20.0
the regulation term lambda/alpha is 61.90357319901442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31312190448763194
the lambda is 20.0
the regulation term lambda/alpha is 63.87288692794082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2687237982992731
the lambda is 20.0
the regulation term lambda/alpha is 74.42586077815982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2918538000725429
the lambda is 20.0
the regulation term lambda/alpha is 68.52746133519186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3110998507697469
the lambda is 20.0
the regulation term lambda/alpha is 64.28804112414224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28927430010185956
the lambda is 20.0
the regulation term lambda/alpha is 69.13853042927623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28815289391326654
the lambda is 20.0
the regulation term lambda/alpha is 69.40759722517296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2754291479994592
the lambda is 20.0
the regulation term lambda/alpha is 72.61395587673701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31949093061441924
the lambda is 20.0
the regulation term lambda/alpha is 62.59958604000936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31256607471764863
the lambda is 20.0
the regulation term lambda/alpha is 63.98647075843617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29109304485646836
the lambda is 20.0
the regulation term lambda/alpha is 68.70655398125903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31737265091649614
the lambda is 20.0
the regulation term lambda/alpha is 63.017402231240766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28364983683158224
the lambda is 20.0
the regulation term lambda/alpha is 70.5094711966115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3065479896832577
the lambda is 20.0
the regulation term lambda/alpha is 65.2426395640862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2943191450018006
the lambda is 20.0
the regulation term lambda/alpha is 67.9534455696983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.291677847193583
the lambda is 20.0
the regulation term lambda/alpha is 68.56880010749067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26925478632000643
the lambda is 20.0
the regulation term lambda/alpha is 74.2790881207594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27226040345903285
the lambda is 20.0
the regulation term lambda/alpha is 73.45908455986479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2944758960841781
the lambda is 20.0
the regulation term lambda/alpha is 67.91727358996762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2808794584612893
the lambda is 20.0
the regulation term lambda/alpha is 71.20492224516444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2825105275203522
the lambda is 20.0
the regulation term lambda/alpha is 70.79382200565672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29647921098009233
the lambda is 20.0
the regulation term lambda/alpha is 67.45835545731717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3142017966116038
the lambda is 20.0
the regulation term lambda/alpha is 63.65335976968561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.311517221695615
the lambda is 20.0
the regulation term lambda/alpha is 64.20190797522615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2864982170487813
the lambda is 20.0
the regulation term lambda/alpha is 69.80846235631076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28060220022029086
the lambda is 20.0
the regulation term lambda/alpha is 71.27527861256507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2922908787396455
the lambda is 20.0
the regulation term lambda/alpha is 68.42498844383972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3482078260991295
the lambda is 20.0
the regulation term lambda/alpha is 57.4369629311729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2778523866140242
the lambda is 20.0
the regulation term lambda/alpha is 71.98066658244254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2762420395395372
the lambda is 20.0
the regulation term lambda/alpha is 72.40027634221654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2877699062036301
the lambda is 20.0
the regulation term lambda/alpha is 69.49997052800829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2988588968010328
the lambda is 20.0
the regulation term lambda/alpha is 66.92121336884652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30182958357432577
the lambda is 20.0
the regulation term lambda/alpha is 66.26255704678128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34985901136365516
the lambda is 20.0
the regulation term lambda/alpha is 57.16588497190753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29591792083905694
the lambda is 20.0
the regulation term lambda/alpha is 67.58630887676975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29982694770589485
the lambda is 20.0
the regulation term lambda/alpha is 66.70514492786127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29482349661227164
the lambda is 20.0
the regulation term lambda/alpha is 67.83719828919337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2690460181852339
the lambda is 20.0
the regulation term lambda/alpha is 74.33672549738432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2740189919545203
the lambda is 20.0
the regulation term lambda/alpha is 72.98764168623559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2717276530257747
the lambda is 20.0
the regulation term lambda/alpha is 73.60310876457945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2847663683311502
the lambda is 20.0
the regulation term lambda/alpha is 70.23301282805392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28342365453825585
the lambda is 20.0
the regulation term lambda/alpha is 70.56574029638887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2992194604497612
the lambda is 20.0
the regulation term lambda/alpha is 66.84057236764515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3040627329490789
the lambda is 20.0
the regulation term lambda/alpha is 65.7759002756493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25993817865082947
the lambda is 20.0
the regulation term lambda/alpha is 76.94137161307751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3055265525956576
the lambda is 20.0
the regulation term lambda/alpha is 65.46075890977816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28556968710944736
the lambda is 20.0
the regulation term lambda/alpha is 70.03544459652262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27675559170634295
the lambda is 20.0
the regulation term lambda/alpha is 72.26592921461692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31296275053445904
the lambda is 20.0
the regulation term lambda/alpha is 63.905368820555154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30594020668726835
the lambda is 20.0
the regulation term lambda/alpha is 65.3722510570308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27317021648974954
the lambda is 20.0
the regulation term lambda/alpha is 73.2144238013974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2840526052999571
the lambda is 20.0
the regulation term lambda/alpha is 70.40949326579904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30422219300071424
the lambda is 20.0
the regulation term lambda/alpha is 65.74142340744038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.308599515937231
the lambda is 20.0
the regulation term lambda/alpha is 64.80891565645874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3070362399831418
the lambda is 20.0
the regulation term lambda/alpha is 65.13889044856114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28899227489043405
the lambda is 20.0
the regulation term lambda/alpha is 69.20600215899411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2967254310732648
the lambda is 20.0
the regulation term lambda/alpha is 67.40237912085728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2991883061427438
the lambda is 20.0
the regulation term lambda/alpha is 66.84753243817602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2654325044456498
the lambda is 20.0
the regulation term lambda/alpha is 75.34872204807613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2823471739089063
the lambda is 20.0
the regulation term lambda/alpha is 70.83478018608609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3013134677872158
the lambda is 20.0
the regulation term lambda/alpha is 66.376057289692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3233506758978682
the lambda is 20.0
the regulation term lambda/alpha is 61.85235254098276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2956143278856033
the lambda is 20.0
the regulation term lambda/alpha is 67.65571933894756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2976369742647368
the lambda is 20.0
the regulation term lambda/alpha is 67.19595255060871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31308122641814085
the lambda is 20.0
the regulation term lambda/alpha is 63.881185814982935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30898394724320505
the lambda is 20.0
the regulation term lambda/alpha is 64.72828177140786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33060275678369233
the lambda is 20.0
the regulation term lambda/alpha is 60.49556329950889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30652635152431545
the lambda is 20.0
the regulation term lambda/alpha is 65.24724514072808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.321539568362223
the lambda is 20.0
the regulation term lambda/alpha is 62.20074282574597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3258326618598895
the lambda is 20.0
the regulation term lambda/alpha is 61.38120066244356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2861307765179549
the lambda is 20.0
the regulation term lambda/alpha is 69.89810828247268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2885934273471549
the lambda is 20.0
the regulation term lambda/alpha is 69.3016475941484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25239717643298565
the lambda is 20.0
the regulation term lambda/alpha is 79.24018914415325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28553825506361774
the lambda is 20.0
the regulation term lambda/alpha is 70.04315409696684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2650509882179463
the lambda is 20.0
the regulation term lambda/alpha is 75.45717952032076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3077308334793269
the lambda is 20.0
the regulation term lambda/alpha is 64.99186244638558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28614566226046123
the lambda is 20.0
the regulation term lambda/alpha is 69.89447207413964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25529589109394935
the lambda is 20.0
the regulation term lambda/alpha is 78.3404696186041
1010
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3176002297919858
the lambda is 20.0
the regulation term lambda/alpha is 62.97224662935263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3262926648293651
the lambda is 20.0
the regulation term lambda/alpha is 61.2946662789953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2536718130393311
the lambda is 20.0
the regulation term lambda/alpha is 78.84202726496481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.298414717225204
the lambda is 20.0
the regulation term lambda/alpha is 67.02082318851132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31333853969205905
the lambda is 20.0
the regulation term lambda/alpha is 63.828726653463946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30913359952675445
the lambda is 20.0
the regulation term lambda/alpha is 64.69694666195309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2967213079269462
the lambda is 20.0
the regulation term lambda/alpha is 67.40331572319731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3086277124056148
the lambda is 20.0
the regulation term lambda/alpha is 64.80299466340516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2820442869275427
the lambda is 20.0
the regulation term lambda/alpha is 70.9108495615017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3032246415804481
the lambda is 20.0
the regulation term lambda/alpha is 65.95770019137389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3023503122490397
the lambda is 20.0
the regulation term lambda/alpha is 66.14843507595393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28616583231458187
the lambda is 20.0
the regulation term lambda/alpha is 69.88954564643488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28417462508030156
the lambda is 20.0
the regulation term lambda/alpha is 70.37926061958711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24513239763237854
the lambda is 20.0
the regulation term lambda/alpha is 81.58856272435155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3297541898065023
the lambda is 20.0
the regulation term lambda/alpha is 60.65123846261324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2730963958388279
the lambda is 20.0
the regulation term lambda/alpha is 73.23421438268747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2721333370634337
the lambda is 20.0
the regulation term lambda/alpha is 73.49338458793105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27050728393689455
the lambda is 20.0
the regulation term lambda/alpha is 73.93516251734542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3169995507398521
the lambda is 20.0
the regulation term lambda/alpha is 63.09157206476024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2849976094866293
the lambda is 20.0
the regulation term lambda/alpha is 70.17602721660128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2981221785973165
the lambda is 20.0
the regulation term lambda/alpha is 67.08658877411017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2625038557340876
the lambda is 20.0
the regulation term lambda/alpha is 76.18935708228109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29066778804551124
the lambda is 20.0
the regulation term lambda/alpha is 68.80707399496399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3099411739755304
the lambda is 20.0
the regulation term lambda/alpha is 64.52837402486894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27721744003547133
the lambda is 20.0
the regulation term lambda/alpha is 72.14553311451438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27938608291786404
the lambda is 20.0
the regulation term lambda/alpha is 71.58552706392231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2567422214051592
the lambda is 20.0
the regulation term lambda/alpha is 77.89914681948025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29511452733972215
the lambda is 20.0
the regulation term lambda/alpha is 67.7702998232172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.295131870685843
the lambda is 20.0
the regulation term lambda/alpha is 67.7663173195187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28298752200561184
the lambda is 20.0
the regulation term lambda/alpha is 70.67449426128191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3142152242650358
the lambda is 20.0
the regulation term lambda/alpha is 63.65063961105304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27058901015861214
the lambda is 20.0
the regulation term lambda/alpha is 73.9128318192839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32553914954792834
the lambda is 20.0
the regulation term lambda/alpha is 61.43654312476309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26376451936683365
the lambda is 20.0
the regulation term lambda/alpha is 75.82520972877614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30096587770615835
the lambda is 20.0
the regulation term lambda/alpha is 66.45271601030657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25254608825220876
the lambda is 20.0
the regulation term lambda/alpha is 79.19346578841765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.285312304964928
the lambda is 20.0
the regulation term lambda/alpha is 70.09862404097328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2810642321006691
the lambda is 20.0
the regulation term lambda/alpha is 71.1581116192564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2986796367543957
the lambda is 20.0
the regulation term lambda/alpha is 66.96137780710508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30844144511830746
the lambda is 20.0
the regulation term lambda/alpha is 64.84212908653925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27433653095516913
the lambda is 20.0
the regulation term lambda/alpha is 72.90315996329454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30334344025519905
the lambda is 20.0
the regulation term lambda/alpha is 65.93186911566062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2700316456736034
the lambda is 20.0
the regulation term lambda/alpha is 74.06539315090015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3399347380154829
the lambda is 20.0
the regulation term lambda/alpha is 58.83482258023617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27059624092757417
the lambda is 20.0
the regulation term lambda/alpha is 73.91085674894151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3096377065765461
the lambda is 20.0
the regulation term lambda/alpha is 64.5916165092631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28479594663706226
the lambda is 20.0
the regulation term lambda/alpha is 70.22571857557918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2818631050012115
the lambda is 20.0
the regulation term lambda/alpha is 70.95643113671808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3157499183681984
the lambda is 20.0
the regulation term lambda/alpha is 63.3412673655163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2837918036359845
the lambda is 20.0
the regulation term lambda/alpha is 70.47419884491696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2947334233164791
the lambda is 20.0
the regulation term lambda/alpha is 67.8579299726193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2868132951290287
the lambda is 20.0
the regulation term lambda/alpha is 69.73177443187423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2895686343472256
the lambda is 20.0
the regulation term lambda/alpha is 69.06825404307338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29891255338603534
the lambda is 20.0
the regulation term lambda/alpha is 66.90920061216259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26862036038189574
the lambda is 20.0
the regulation term lambda/alpha is 74.45452002061994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.306880580159755
the lambda is 20.0
the regulation term lambda/alpha is 65.171931014952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2835572499412266
the lambda is 20.0
the regulation term lambda/alpha is 70.53249389372141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3391150380871955
the lambda is 20.0
the regulation term lambda/alpha is 58.977036562021965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24773024613252997
the lambda is 20.0
the regulation term lambda/alpha is 80.73297593746571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2795834005668062
the lambda is 20.0
the regulation term lambda/alpha is 71.53500515214249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3143507357896037
the lambda is 20.0
the regulation term lambda/alpha is 63.62320084845001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2927491150356518
the lambda is 20.0
the regulation term lambda/alpha is 68.31788371952668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29357032697473523
the lambda is 20.0
the regulation term lambda/alpha is 68.12677632001005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30465614097489424
the lambda is 20.0
the regulation term lambda/alpha is 65.64778223737869
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2912416237542669
the lambda is 20.0
the regulation term lambda/alpha is 68.67150286483385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2513879977468816
the lambda is 20.0
the regulation term lambda/alpha is 79.55829307387089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28858731383843006
the lambda is 20.0
the regulation term lambda/alpha is 69.30311569827806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.244782060604716
the lambda is 20.0
the regulation term lambda/alpha is 81.7053339227208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2788050500871915
the lambda is 20.0
the regulation term lambda/alpha is 71.73471209988968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2926044004264672
the lambda is 20.0
the regulation term lambda/alpha is 68.35167198733258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28423777365516234
the lambda is 20.0
the regulation term lambda/alpha is 70.36362459081187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27968520107443284
the lambda is 20.0
the regulation term lambda/alpha is 71.50896766496196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27880704542620055
the lambda is 20.0
the regulation term lambda/alpha is 71.73419871591425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2845404833931415
the lambda is 20.0
the regulation term lambda/alpha is 70.28876791625665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31420737632030643
the lambda is 20.0
the regulation term lambda/alpha is 63.652229410463555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29732648264803935
the lambda is 20.0
the regulation term lambda/alpha is 67.26612383086989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3265210403949909
the lambda is 20.0
the regulation term lambda/alpha is 61.25179552229191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3299957895701057
the lambda is 20.0
the regulation term lambda/alpha is 60.606833881288395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2978478496847175
the lambda is 20.0
the regulation term lambda/alpha is 67.14837800968081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3163453488686235
the lambda is 20.0
the regulation term lambda/alpha is 63.222045373917894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29774726787423594
the lambda is 20.0
the regulation term lambda/alpha is 67.17106135948728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31656830271722225
the lambda is 20.0
the regulation term lambda/alpha is 63.177519127255124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32179432161454025
the lambda is 20.0
the regulation term lambda/alpha is 62.15150068420692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2855891732909186
the lambda is 20.0
the regulation term lambda/alpha is 70.03066597215427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3016408417700765
the lambda is 20.0
the regulation term lambda/alpha is 66.30401865555345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27137181820379075
the lambda is 20.0
the regulation term lambda/alpha is 73.69962044098735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2871837723050788
the lambda is 20.0
the regulation term lambda/alpha is 69.64181798807823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28281941181510817
the lambda is 20.0
the regulation term lambda/alpha is 70.71650376345066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24073689661771033
the lambda is 20.0
the regulation term lambda/alpha is 83.07824966174569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2821947436631257
the lambda is 20.0
the regulation term lambda/alpha is 70.8730422841444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33542723391874385
the lambda is 20.0
the regulation term lambda/alpha is 59.62545070161159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27945465886923704
the lambda is 20.0
the regulation term lambda/alpha is 71.56796054474954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27935530295269606
the lambda is 20.0
the regulation term lambda/alpha is 71.59341451050474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3031333806416701
the lambda is 20.0
the regulation term lambda/alpha is 65.97755733025565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27421570171535853
the lambda is 20.0
the regulation term lambda/alpha is 72.9352837014432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2675293299868308
the lambda is 20.0
the regulation term lambda/alpha is 74.75815829608105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3056832178545526
the lambda is 20.0
the regulation term lambda/alpha is 65.42720971197123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29132036861026245
the lambda is 20.0
the regulation term lambda/alpha is 68.65294073122854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31049697349594496
the lambda is 20.0
the regulation term lambda/alpha is 64.41286617005044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27284243848341755
the lambda is 20.0
the regulation term lambda/alpha is 73.30237961209079
1020
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30132517982959955
the lambda is 20.0
the regulation term lambda/alpha is 66.3734773552946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2890609914681563
the lambda is 20.0
the regulation term lambda/alpha is 69.1895502690243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31975496407754694
the lambda is 20.0
the regulation term lambda/alpha is 62.547895253784404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2579244257858215
the lambda is 20.0
the regulation term lambda/alpha is 77.54209373178115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29244714475444455
the lambda is 20.0
the regulation term lambda/alpha is 68.3884262805614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.310678199427497
the lambda is 20.0
the regulation term lambda/alpha is 64.37529262386305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29339423964464556
the lambda is 20.0
the regulation term lambda/alpha is 68.16766417849131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3194193974809364
the lambda is 20.0
the regulation term lambda/alpha is 62.613605052566164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25568111063104854
the lambda is 20.0
the regulation term lambda/alpha is 78.22243868793375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28630138309270176
the lambda is 20.0
the regulation term lambda/alpha is 69.85645610214948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28755222569975913
the lambda is 20.0
the regulation term lambda/alpha is 69.5525828441423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29918220848565147
the lambda is 20.0
the regulation term lambda/alpha is 66.84889486320903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27157671363431307
the lambda is 20.0
the regulation term lambda/alpha is 73.64401657400809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32443345012617203
the lambda is 20.0
the regulation term lambda/alpha is 61.645924587067114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2773698274906074
the lambda is 20.0
the regulation term lambda/alpha is 72.10589623587397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26559328489990586
the lambda is 20.0
the regulation term lambda/alpha is 75.30310868942865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2647286318553588
the lambda is 20.0
the regulation term lambda/alpha is 75.5490626753494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3469064217394309
the lambda is 20.0
the regulation term lambda/alpha is 57.652435200586865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30313011991304634
the lambda is 20.0
the regulation term lambda/alpha is 65.9782670416818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30815185386905286
the lambda is 20.0
the regulation term lambda/alpha is 64.90306564405377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2767625094623591
the lambda is 20.0
the regulation term lambda/alpha is 72.26412290758654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32387144594952233
the lambda is 20.0
the regulation term lambda/alpha is 61.75289686734885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3031386465552757
the lambda is 20.0
the regulation term lambda/alpha is 65.97641121404527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31670270238533904
the lambda is 20.0
the regulation term lambda/alpha is 63.15070837528114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28614364272514853
the lambda is 20.0
the regulation term lambda/alpha is 69.89496537307569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26671823787997173
the lambda is 20.0
the regulation term lambda/alpha is 74.98549840075195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2734428717332629
the lambda is 20.0
the regulation term lambda/alpha is 73.14142026532521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34718522119623685
the lambda is 20.0
the regulation term lambda/alpha is 57.606138680354576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3141659495426469
the lambda is 20.0
the regulation term lambda/alpha is 63.66062276677464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38133820596686396
the lambda is 20.0
the regulation term lambda/alpha is 52.446882287315006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2695385624999273
the lambda is 20.0
the regulation term lambda/alpha is 74.20088544846118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30667195522961144
the lambda is 20.0
the regulation term lambda/alpha is 65.21626662935513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3030861765377673
the lambda is 20.0
the regulation term lambda/alpha is 65.98783299345827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3010727977687063
the lambda is 20.0
the regulation term lambda/alpha is 66.42911663963955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29257070910543537
the lambda is 20.0
the regulation term lambda/alpha is 68.359543103792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3179659159544078
the lambda is 20.0
the regulation term lambda/alpha is 62.899823523436204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33778011650443435
the lambda is 20.0
the regulation term lambda/alpha is 59.21011635312596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2482029013705012
the lambda is 20.0
the regulation term lambda/alpha is 80.57923533353583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2791971148680945
the lambda is 20.0
the regulation term lambda/alpha is 71.63397805686107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29026518860649203
the lambda is 20.0
the regulation term lambda/alpha is 68.90250979118852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2516121422661981
the lambda is 20.0
the regulation term lambda/alpha is 79.48741988310167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2547618885421502
the lambda is 20.0
the regulation term lambda/alpha is 78.5046778953007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2926433223773585
the lambda is 20.0
the regulation term lambda/alpha is 68.34258112409736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32480241467734716
the lambda is 20.0
the regulation term lambda/alpha is 61.57589690294525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27767205343934304
the lambda is 20.0
the regulation term lambda/alpha is 72.02741418256902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32889139885941815
the lambda is 20.0
the regulation term lambda/alpha is 60.810346726485335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29335951994300236
the lambda is 20.0
the regulation term lambda/alpha is 68.1757319615394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2544110154673525
the lambda is 20.0
the regulation term lambda/alpha is 78.61294827686623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.307463470107752
the lambda is 20.0
the regulation term lambda/alpha is 65.04837791946767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2605106527858822
the lambda is 20.0
the regulation term lambda/alpha is 76.77229236548078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29505123977755116
the lambda is 20.0
the regulation term lambda/alpha is 67.78483633920216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2999219769756599
the lambda is 20.0
the regulation term lambda/alpha is 66.68400962702074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28250503882618305
the lambda is 20.0
the regulation term lambda/alpha is 70.79519743470985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28196589580114606
the lambda is 20.0
the regulation term lambda/alpha is 70.93056393637343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3113127669962225
the lambda is 20.0
the regulation term lambda/alpha is 64.24407258646954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31766830367652277
the lambda is 20.0
the regulation term lambda/alpha is 62.95875215918842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2932818115534053
the lambda is 20.0
the regulation term lambda/alpha is 68.19379590594927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2886590402633435
the lambda is 20.0
the regulation term lambda/alpha is 69.28589515767118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2802558164490717
the lambda is 20.0
the regulation term lambda/alpha is 71.3633716987794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2978490672134969
the lambda is 20.0
the regulation term lambda/alpha is 67.14810352474291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2963065133119512
the lambda is 20.0
the regulation term lambda/alpha is 67.4976725163784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27954353220344347
the lambda is 20.0
the regulation term lambda/alpha is 71.54520743997966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3195627764954636
the lambda is 20.0
the regulation term lambda/alpha is 62.58551205285298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3293520782118513
the lambda is 20.0
the regulation term lambda/alpha is 60.72528859871128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29493920708071336
the lambda is 20.0
the regulation term lambda/alpha is 67.81058441825532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29451421787854537
the lambda is 20.0
the regulation term lambda/alpha is 67.90843628557109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30402704991641677
the lambda is 20.0
the regulation term lambda/alpha is 65.78362025845531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2952530014919123
the lambda is 20.0
the regulation term lambda/alpha is 67.73851543909825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.268532428617009
the lambda is 20.0
the regulation term lambda/alpha is 74.47890038087262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3162744101683118
the lambda is 20.0
the regulation term lambda/alpha is 63.23622574888874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28593336406425957
the lambda is 20.0
the regulation term lambda/alpha is 69.94636692871308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30199802149018196
the lambda is 20.0
the regulation term lambda/alpha is 66.2255994304592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29660187312808867
the lambda is 20.0
the regulation term lambda/alpha is 67.43045749870542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2721102741925335
the lambda is 20.0
the regulation term lambda/alpha is 73.49961356420106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29122523393088956
the lambda is 20.0
the regulation term lambda/alpha is 68.67536761854292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2808155795138962
the lambda is 20.0
the regulation term lambda/alpha is 71.22111969222242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2832548169069575
the lambda is 20.0
the regulation term lambda/alpha is 70.60780190216335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29265159001419605
the lambda is 20.0
the regulation term lambda/alpha is 68.3406503926045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29418803946220223
the lambda is 20.0
the regulation term lambda/alpha is 67.98372917050435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30203712128643034
the lambda is 20.0
the regulation term lambda/alpha is 66.21702628741927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31065154151781804
the lambda is 20.0
the regulation term lambda/alpha is 64.38081685441391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2894042241023879
the lambda is 20.0
the regulation term lambda/alpha is 69.10749164782138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2864143644323886
the lambda is 20.0
the regulation term lambda/alpha is 69.82889995631217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26958403813009435
the lambda is 20.0
the regulation term lambda/alpha is 74.18836863905315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27693693589366897
the lambda is 20.0
the regulation term lambda/alpha is 72.21860794935306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34572083461631575
the lambda is 20.0
the regulation term lambda/alpha is 57.85014380807043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30536726564580763
the lambda is 20.0
the regulation term lambda/alpha is 65.49490482453281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30430192984686066
the lambda is 20.0
the regulation term lambda/alpha is 65.72419705016317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3076408183683333
the lambda is 20.0
the regulation term lambda/alpha is 65.01087894017473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.31529002991167204
the lambda is 20.0
the regulation term lambda/alpha is 63.433658227641914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3177680436583795
the lambda is 20.0
the regulation term lambda/alpha is 62.9389908744293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3011836990772631
the lambda is 20.0
the regulation term lambda/alpha is 66.40465623230615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3012916563462132
the lambda is 20.0
the regulation term lambda/alpha is 66.38086245912523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31341191210916
the lambda is 20.0
the regulation term lambda/alpha is 63.81378380102569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27194266262663236
the lambda is 20.0
the regulation term lambda/alpha is 73.54491497150373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2777340661659924
the lambda is 20.0
the regulation term lambda/alpha is 72.01133183297243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2866706175918691
the lambda is 20.0
the regulation term lambda/alpha is 69.76648031809752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28946883726100286
the lambda is 20.0
the regulation term lambda/alpha is 69.09206596897604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.321282511315924
the lambda is 20.0
the regulation term lambda/alpha is 62.25050942886079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2895761208741379
the lambda is 20.0
the regulation term lambda/alpha is 69.06646839396281
1030
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32937887174553926
the lambda is 20.0
the regulation term lambda/alpha is 60.7203488615109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31965739957832223
the lambda is 20.0
the regulation term lambda/alpha is 62.566985861685374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28956670773375076
the lambda is 20.0
the regulation term lambda/alpha is 69.06871358426153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25152012712645344
the lambda is 20.0
the regulation term lambda/alpha is 79.5164992499581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2840055303398086
the lambda is 20.0
the regulation term lambda/alpha is 70.4211638980068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2865455990193188
the lambda is 20.0
the regulation term lambda/alpha is 69.79691912368756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28511078008145385
the lambda is 20.0
the regulation term lambda/alpha is 70.14817185897412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27470305544982915
the lambda is 20.0
the regulation term lambda/alpha is 72.80588840648237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27805665483477116
the lambda is 20.0
the regulation term lambda/alpha is 71.92778756503614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25091242534887565
the lambda is 20.0
the regulation term lambda/alpha is 79.70908563890944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28052676448579433
the lambda is 20.0
the regulation term lambda/alpha is 71.29444506537551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3179695065297477
the lambda is 20.0
the regulation term lambda/alpha is 62.89911324603354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27808929098391394
the lambda is 20.0
the regulation term lambda/alpha is 71.91934622594619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2715496475308263
the lambda is 20.0
the regulation term lambda/alpha is 73.65135687657117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3049163964366282
the lambda is 20.0
the regulation term lambda/alpha is 65.59174984923013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3275704017545582
the lambda is 20.0
the regulation term lambda/alpha is 61.05557734421192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2978213967880249
the lambda is 20.0
the regulation term lambda/alpha is 67.15434221885357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28541082295677006
the lambda is 20.0
the regulation term lambda/alpha is 70.07442742642354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25967466070920375
the lambda is 20.0
the regulation term lambda/alpha is 77.0194517454168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2730484895436855
the lambda is 20.0
the regulation term lambda/alpha is 73.24706330887857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2946298233154842
the lambda is 20.0
the regulation term lambda/alpha is 67.88179069905074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3038573604586323
the lambda is 20.0
the regulation term lambda/alpha is 65.82035718934917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28453226823252575
the lambda is 20.0
the regulation term lambda/alpha is 70.2907973293756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24853354176446807
the lambda is 20.0
the regulation term lambda/alpha is 80.47203551685485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3108449813922804
the lambda is 20.0
the regulation term lambda/alpha is 64.3407524561588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2867963546098285
the lambda is 20.0
the regulation term lambda/alpha is 69.73589335613752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28080675371338937
the lambda is 20.0
the regulation term lambda/alpha is 71.22335818323434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31692832262037607
the lambda is 20.0
the regulation term lambda/alpha is 63.10575159278665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3301311045468102
the lambda is 20.0
the regulation term lambda/alpha is 60.581992198084876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.352509558045402
the lambda is 20.0
the regulation term lambda/alpha is 56.7360502532078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26708375967547127
the lambda is 20.0
the regulation term lambda/alpha is 74.88287578511567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29738926672382854
the lambda is 20.0
the regulation term lambda/alpha is 67.25192277558915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29584466854454083
the lambda is 20.0
the regulation term lambda/alpha is 67.60304351061477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28942969713119787
the lambda is 20.0
the regulation term lambda/alpha is 69.10140942079639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30668550366773756
the lambda is 20.0
the regulation term lambda/alpha is 65.21338557191135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27183812917295397
the lambda is 20.0
the regulation term lambda/alpha is 73.57319615481617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2714780939661246
the lambda is 20.0
the regulation term lambda/alpha is 73.6707691873497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26480982413198584
the lambda is 20.0
the regulation term lambda/alpha is 75.5258988806686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2667287645290757
the lambda is 20.0
the regulation term lambda/alpha is 74.98253904227803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2951927914532522
the lambda is 20.0
the regulation term lambda/alpha is 67.75233196426909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2896646149984203
the lambda is 20.0
the regulation term lambda/alpha is 69.04536821009039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2883865821749647
the lambda is 20.0
the regulation term lambda/alpha is 69.35135417592335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27009024847003255
the lambda is 20.0
the regulation term lambda/alpha is 74.04932282188288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2952789038995239
the lambda is 20.0
the regulation term lambda/alpha is 67.73257329214927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30428074331527083
the lambda is 20.0
the regulation term lambda/alpha is 65.72877331010604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3050741075931118
the lambda is 20.0
the regulation term lambda/alpha is 65.55784152837614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3328620311234612
the lambda is 20.0
the regulation term lambda/alpha is 60.08495451552971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29450896026488976
the lambda is 20.0
the regulation term lambda/alpha is 67.90964859612906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31075503010040206
the lambda is 20.0
the regulation term lambda/alpha is 64.35937655953046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2819509503203396
the lambda is 20.0
the regulation term lambda/alpha is 70.93432377963943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3061128832367892
the lambda is 20.0
the regulation term lambda/alpha is 65.33537493921577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25610309132055137
the lambda is 20.0
the regulation term lambda/alpha is 78.09355168995991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30617556884815395
the lambda is 20.0
the regulation term lambda/alpha is 65.32199833984431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3489755299152057
the lambda is 20.0
the regulation term lambda/alpha is 57.310608582955986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26506488793970384
the lambda is 20.0
the regulation term lambda/alpha is 75.45322262581055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32298781003955057
the lambda is 20.0
the regulation term lambda/alpha is 61.92184156284708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24481205373724227
the lambda is 20.0
the regulation term lambda/alpha is 81.69532379915442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3013467789126289
the lambda is 20.0
the regulation term lambda/alpha is 66.36872002470851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30318022324954114
the lambda is 20.0
the regulation term lambda/alpha is 65.96736352271378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2641359299429643
the lambda is 20.0
the regulation term lambda/alpha is 75.71858930482749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28483108779150274
the lambda is 20.0
the regulation term lambda/alpha is 70.21705444821411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3057141638204591
the lambda is 20.0
the regulation term lambda/alpha is 65.42058683203724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2935738700026915
the lambda is 20.0
the regulation term lambda/alpha is 68.12595412465231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22734094394348595
the lambda is 20.0
the regulation term lambda/alpha is 87.97359443080234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.308921237017762
the lambda is 20.0
the regulation term lambda/alpha is 64.74142144798567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29356436785737966
the lambda is 20.0
the regulation term lambda/alpha is 68.12815923803281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30426331269005463
the lambda is 20.0
the regulation term lambda/alpha is 65.73253877759983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29489511530668167
the lambda is 20.0
the regulation term lambda/alpha is 67.8207232398564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29223992184737346
the lambda is 20.0
the regulation term lambda/alpha is 68.43691947893858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2821761543321452
the lambda is 20.0
the regulation term lambda/alpha is 70.87771129114726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3274181077547139
the lambda is 20.0
the regulation term lambda/alpha is 61.083976500722585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2977510897033709
the lambda is 20.0
the regulation term lambda/alpha is 67.17019917517224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3152042936905927
the lambda is 20.0
the regulation term lambda/alpha is 63.45091231413292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2943176071320487
the lambda is 20.0
the regulation term lambda/alpha is 67.95380064036328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.273904462397828
the lambda is 20.0
the regulation term lambda/alpha is 73.0181605108402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3053089246360876
the lambda is 20.0
the regulation term lambda/alpha is 65.5074201444945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27338938584851935
the lambda is 20.0
the regulation term lambda/alpha is 73.15572964885212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3063820226289961
the lambda is 20.0
the regulation term lambda/alpha is 65.27798148332738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2804182115840013
the lambda is 20.0
the regulation term lambda/alpha is 71.32204391086367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28493426257953247
the lambda is 20.0
the regulation term lambda/alpha is 70.19162883023759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3035620813502897
the lambda is 20.0
the regulation term lambda/alpha is 65.8843815770303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2652706620748463
the lambda is 20.0
the regulation term lambda/alpha is 75.39469251355428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29459262495994726
the lambda is 20.0
the regulation term lambda/alpha is 67.89036216612413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2839651747807593
the lambda is 20.0
the regulation term lambda/alpha is 70.43117176407769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2722802875037034
the lambda is 20.0
the regulation term lambda/alpha is 73.45372000067383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26723189374953316
the lambda is 20.0
the regulation term lambda/alpha is 74.8413661235559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30803134964468626
the lambda is 20.0
the regulation term lambda/alpha is 64.92845622067355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3145762188790477
the lambda is 20.0
the regulation term lambda/alpha is 63.577596778508735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28532333475000393
the lambda is 20.0
the regulation term lambda/alpha is 70.09591422840933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32444883684803616
the lambda is 20.0
the regulation term lambda/alpha is 61.64300107929654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2750873495435803
the lambda is 20.0
the regulation term lambda/alpha is 72.70417935678839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3003327293773251
the lambda is 20.0
the regulation term lambda/alpha is 66.5928087207334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2890711726895615
the lambda is 20.0
the regulation term lambda/alpha is 69.18711338082245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30518197657686363
the lambda is 20.0
the regulation term lambda/alpha is 65.53466959069507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2889353682465959
the lambda is 20.0
the regulation term lambda/alpha is 69.21963247825971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.343318634588558
the lambda is 20.0
the regulation term lambda/alpha is 58.25492118704399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27877057215776563
the lambda is 20.0
the regulation term lambda/alpha is 71.743584142308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32813346973793683
the lambda is 20.0
the regulation term lambda/alpha is 60.950807657545454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2851162509468368
the lambda is 20.0
the regulation term lambda/alpha is 70.14682584237974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29010884525136693
the lambda is 20.0
the regulation term lambda/alpha is 68.93964223211069
1040
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27117010412088516
the lambda is 20.0
the regulation term lambda/alpha is 73.75444304540365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3045065654574424
the lambda is 20.0
the regulation term lambda/alpha is 65.68002883601268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2795613605810878
the lambda is 20.0
the regulation term lambda/alpha is 71.54064481024345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28806279707094745
the lambda is 20.0
the regulation term lambda/alpha is 69.42930570473551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3215376961621133
the lambda is 20.0
the regulation term lambda/alpha is 62.201104998638705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29394335193778104
the lambda is 20.0
the regulation term lambda/alpha is 68.04032092630351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2771824962072797
the lambda is 20.0
the regulation term lambda/alpha is 72.15462835374645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2783233485045887
the lambda is 20.0
the regulation term lambda/alpha is 71.85886526394053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2633166555989045
the lambda is 20.0
the regulation term lambda/alpha is 75.95417750734644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30572853935226924
the lambda is 20.0
the regulation term lambda/alpha is 65.41751071840703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29414614226021907
the lambda is 20.0
the regulation term lambda/alpha is 67.993412547654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27918058486284203
the lambda is 20.0
the regulation term lambda/alpha is 71.63821943358187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3150883354041313
the lambda is 20.0
the regulation term lambda/alpha is 63.474263413617216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35720719265653167
the lambda is 20.0
the regulation term lambda/alpha is 55.989914008340705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32712718752295905
the lambda is 20.0
the regulation term lambda/alpha is 61.138299605856886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29022339608854053
the lambda is 20.0
the regulation term lambda/alpha is 68.91243183543499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27365996309550544
the lambda is 20.0
the regulation term lambda/alpha is 73.08339800155618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30204530956065184
the lambda is 20.0
the regulation term lambda/alpha is 66.21523118200888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28799339177409927
the lambda is 20.0
the regulation term lambda/alpha is 69.44603789967483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27400903393867193
the lambda is 20.0
the regulation term lambda/alpha is 72.99029419765903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2684947665323039
the lambda is 20.0
the regulation term lambda/alpha is 74.48934762605029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.311100448663632
the lambda is 20.0
the regulation term lambda/alpha is 64.28791757103635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3033309390611941
the lambda is 20.0
the regulation term lambda/alpha is 65.93458636926314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35312271729024564
the lambda is 20.0
the regulation term lambda/alpha is 56.63753426421785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32295000795255957
the lambda is 20.0
the regulation term lambda/alpha is 61.929089665599086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31481029433245444
the lambda is 20.0
the regulation term lambda/alpha is 63.53032400801691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29547318355360835
the lambda is 20.0
the regulation term lambda/alpha is 67.68803774157513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33111767586890095
the lambda is 20.0
the regulation term lambda/alpha is 60.40148701671419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27633682766888656
the lambda is 20.0
the regulation term lambda/alpha is 72.37544184289645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3011526798122492
the lambda is 20.0
the regulation term lambda/alpha is 66.41149603074697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31990428364737544
the lambda is 20.0
the regulation term lambda/alpha is 62.51870019360425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29452484062005746
the lambda is 20.0
the regulation term lambda/alpha is 67.90598700569495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3052823172882694
the lambda is 20.0
the regulation term lambda/alpha is 65.51312954400359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2727683888938365
the lambda is 20.0
the regulation term lambda/alpha is 73.32227931948577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31227215148321497
the lambda is 20.0
the regulation term lambda/alpha is 64.04669742404175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25407423802910717
the lambda is 20.0
the regulation term lambda/alpha is 78.71715036968355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30852842107235173
the lambda is 20.0
the regulation term lambda/alpha is 64.82384971370233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27458464953948675
the lambda is 20.0
the regulation term lambda/alpha is 72.8372836338176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3068772546011215
the lambda is 20.0
the regulation term lambda/alpha is 65.17263726826533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26654901162436023
the lambda is 20.0
the regulation term lambda/alpha is 75.03310508682515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3123126106863941
the lambda is 20.0
the regulation term lambda/alpha is 64.03840035804004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2723276430401029
the lambda is 20.0
the regulation term lambda/alpha is 73.44094700314652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2718969119567121
the lambda is 20.0
the regulation term lambda/alpha is 73.55728998931824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24683926307845128
the lambda is 20.0
the regulation term lambda/alpha is 81.0243870872501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28402582796120074
the lambda is 20.0
the regulation term lambda/alpha is 70.41613132004352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2762799130500085
the lambda is 20.0
the regulation term lambda/alpha is 72.39035143456074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29719975280196415
the lambda is 20.0
the regulation term lambda/alpha is 67.29480698231531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2708897473627571
the lambda is 20.0
the regulation term lambda/alpha is 73.83077504671066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25816629058003304
the lambda is 20.0
the regulation term lambda/alpha is 77.46944790919511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28305476428928344
the lambda is 20.0
the regulation term lambda/alpha is 70.65770487989347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2902444610437008
the lambda is 20.0
the regulation term lambda/alpha is 68.90743040566997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28250771799248797
the lambda is 20.0
the regulation term lambda/alpha is 70.79452604736204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2680242006098926
the lambda is 20.0
the regulation term lambda/alpha is 74.62012741569505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3257454417626099
the lambda is 20.0
the regulation term lambda/alpha is 61.39763580966758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27078300151563145
the lambda is 20.0
the regulation term lambda/alpha is 73.85988000744376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.290036800199396
the lambda is 20.0
the regulation term lambda/alpha is 68.95676681803928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2651842714204783
the lambda is 20.0
the regulation term lambda/alpha is 75.41925429011528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3082190841526232
the lambda is 20.0
the regulation term lambda/alpha is 64.88890866373623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.280383492814741
the lambda is 20.0
the regulation term lambda/alpha is 71.33087543500532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3011084677544306
the lambda is 20.0
the regulation term lambda/alpha is 66.42124729720662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3564638056335717
the lambda is 20.0
the regulation term lambda/alpha is 56.106678108461516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.301337671501458
the lambda is 20.0
the regulation term lambda/alpha is 66.37072590475377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29559027122939696
the lambda is 20.0
the regulation term lambda/alpha is 67.66122550927503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.284394328937829
the lambda is 20.0
the regulation term lambda/alpha is 70.32489035451958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2877042040060585
the lambda is 20.0
the regulation term lambda/alpha is 69.51584204024644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2817861822583526
the lambda is 20.0
the regulation term lambda/alpha is 70.97580101235488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2908260059700999
the lambda is 20.0
the regulation term lambda/alpha is 68.76964091738144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3245369335818284
the lambda is 20.0
the regulation term lambda/alpha is 61.62626786192032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31736474500681494
the lambda is 20.0
the regulation term lambda/alpha is 63.018972064999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2526094726138304
the lambda is 20.0
the regulation term lambda/alpha is 79.17359469165449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2895298392231231
the lambda is 20.0
the regulation term lambda/alpha is 69.07750874198224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28833450037468633
the lambda is 20.0
the regulation term lambda/alpha is 69.36388109647059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3323958819107461
the lambda is 20.0
the regulation term lambda/alpha is 60.16921715465277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28594362892774133
the lambda is 20.0
the regulation term lambda/alpha is 69.94385597957859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28190142719201233
the lambda is 20.0
the regulation term lambda/alpha is 70.94678519090058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29684319340569504
the lambda is 20.0
the regulation term lambda/alpha is 67.375639544027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2722025021395821
the lambda is 20.0
the regulation term lambda/alpha is 73.47471034540398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2883365424611283
the lambda is 20.0
the regulation term lambda/alpha is 69.36338984052385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29965843275662823
the lambda is 20.0
the regulation term lambda/alpha is 66.74265701790972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34140173294375104
the lambda is 20.0
the regulation term lambda/alpha is 58.58201078110865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28528415280191993
the lambda is 20.0
the regulation term lambda/alpha is 70.10554145251282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3017061856173301
the lambda is 20.0
the regulation term lambda/alpha is 66.2896584605231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26937620907207865
the lambda is 20.0
the regulation term lambda/alpha is 74.24560642862293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3120895096891391
the lambda is 20.0
the regulation term lambda/alpha is 64.08417899057633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27233946091160666
the lambda is 20.0
the regulation term lambda/alpha is 73.43776011399027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2652727428198494
the lambda is 20.0
the regulation term lambda/alpha is 75.39410113304514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2930954894644543
the lambda is 20.0
the regulation term lambda/alpha is 68.23714700128654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31057354233900786
the lambda is 20.0
the regulation term lambda/alpha is 64.39698581332765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3024875977286439
the lambda is 20.0
the regulation term lambda/alpha is 66.11841328430805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27463604518478424
the lambda is 20.0
the regulation term lambda/alpha is 72.82365279671623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26248681715585526
the lambda is 20.0
the regulation term lambda/alpha is 76.1943026956844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33553053966015295
the lambda is 20.0
the regulation term lambda/alpha is 59.60709275601945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30236078560640556
the lambda is 20.0
the regulation term lambda/alpha is 66.14614378610179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.267992539839646
the lambda is 20.0
the regulation term lambda/alpha is 74.628943074188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2966079041737302
the lambda is 20.0
the regulation term lambda/alpha is 67.42908640858583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3258363308298849
the lambda is 20.0
the regulation term lambda/alpha is 61.38050950015685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29674725281472614
the lambda is 20.0
the regulation term lambda/alpha is 67.39742258873406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27862776851782056
the lambda is 20.0
the regulation term lambda/alpha is 71.78035450806416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25927788341127844
the lambda is 20.0
the regulation term lambda/alpha is 77.13731590548001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29445980150586887
the lambda is 20.0
the regulation term lambda/alpha is 67.92098581103397
1050
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31807541238189924
the lambda is 20.0
the regulation term lambda/alpha is 62.87817046350906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.264816115794765
the lambda is 20.0
the regulation term lambda/alpha is 75.52410449030296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28886920484547535
the lambda is 20.0
the regulation term lambda/alpha is 69.23548673420758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29879289475728316
the lambda is 20.0
the regulation term lambda/alpha is 66.93599597221511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28424633282691153
the lambda is 20.0
the regulation term lambda/alpha is 70.36150581467226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3062651126692218
the lambda is 20.0
the regulation term lambda/alpha is 65.3028999146918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27051640842806784
the lambda is 20.0
the regulation term lambda/alpha is 73.93266869177044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2649838556498243
the lambda is 20.0
the regulation term lambda/alpha is 75.47629628587624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28370719210519824
the lambda is 20.0
the regulation term lambda/alpha is 70.49521674651106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32311254649800225
the lambda is 20.0
the regulation term lambda/alpha is 61.897936854407035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28781123917797485
the lambda is 20.0
the regulation term lambda/alpha is 69.4899895400976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3110052314989459
the lambda is 20.0
the regulation term lambda/alpha is 64.30759991916017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31017877622620466
the lambda is 20.0
the regulation term lambda/alpha is 64.47894418609275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31037937571828295
the lambda is 20.0
the regulation term lambda/alpha is 64.43727117407788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2794699551212146
the lambda is 20.0
the regulation term lambda/alpha is 71.56404340969459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3093845489954645
the lambda is 20.0
the regulation term lambda/alpha is 64.6444693664815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27503507327533644
the lambda is 20.0
the regulation term lambda/alpha is 72.7179983331729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32256698627571134
the lambda is 20.0
the regulation term lambda/alpha is 62.00262534897224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28082632828167015
the lambda is 20.0
the regulation term lambda/alpha is 71.21839366834546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29267950895841344
the lambda is 20.0
the regulation term lambda/alpha is 68.33413132055576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2934659448119191
the lambda is 20.0
the regulation term lambda/alpha is 68.15100816150202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3490932712417487
the lambda is 20.0
the regulation term lambda/alpha is 57.29127900076283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30300252537248223
the lambda is 20.0
the regulation term lambda/alpha is 66.00605052850275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2927287709050528
the lambda is 20.0
the regulation term lambda/alpha is 68.3226316913244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26539062557462806
the lambda is 20.0
the regulation term lambda/alpha is 75.36061214180296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29282789105144275
the lambda is 20.0
the regulation term lambda/alpha is 68.29950496923972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2916102023392966
the lambda is 20.0
the regulation term lambda/alpha is 68.58470602043424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31986929026469246
the lambda is 20.0
the regulation term lambda/alpha is 62.525539677316196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2932679895965281
the lambda is 20.0
the regulation term lambda/alpha is 68.19700993455022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29655645420599963
the lambda is 20.0
the regulation term lambda/alpha is 67.44078476911929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2801415235369165
the lambda is 20.0
the regulation term lambda/alpha is 71.39248672417689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28025801577544407
the lambda is 20.0
the regulation term lambda/alpha is 71.36281167431423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3036746990798667
the lambda is 20.0
the regulation term lambda/alpha is 65.85994836119022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29154085859999374
the lambda is 20.0
the regulation term lambda/alpha is 68.60101906827694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28096449865200496
the lambda is 20.0
the regulation term lambda/alpha is 71.18337048258705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3044875409127968
the lambda is 20.0
the regulation term lambda/alpha is 65.68413255939384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2688338683883746
the lambda is 20.0
the regulation term lambda/alpha is 74.3953881997737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31333823797965743
the lambda is 20.0
the regulation term lambda/alpha is 63.82878811394363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.262522304965904
the lambda is 20.0
the regulation term lambda/alpha is 76.18400273682485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30023441417541885
the lambda is 20.0
the regulation term lambda/alpha is 66.61461529961232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29437967087248323
the lambda is 20.0
the regulation term lambda/alpha is 67.93947401572923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26836890314317724
the lambda is 20.0
the regulation term lambda/alpha is 74.52428267864485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28313898373229324
the lambda is 20.0
the regulation term lambda/alpha is 70.63668780739116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27419121789433126
the lambda is 20.0
the regulation term lambda/alpha is 72.94179643531714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3106017497338461
the lambda is 20.0
the regulation term lambda/alpha is 64.39113758096326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2964227047170315
the lambda is 20.0
the regulation term lambda/alpha is 67.47121486220911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29128959279592004
the lambda is 20.0
the regulation term lambda/alpha is 68.6601941663332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2911359880540467
the lambda is 20.0
the regulation term lambda/alpha is 68.69641961366584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30543935445721787
the lambda is 20.0
the regulation term lambda/alpha is 65.47944692831437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30699513993169875
the lambda is 20.0
the regulation term lambda/alpha is 65.14761114605808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31136006579105713
the lambda is 20.0
the regulation term lambda/alpha is 64.23431325140233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2738357639363224
the lambda is 20.0
the regulation term lambda/alpha is 73.03647891898731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.331488359135377
the lambda is 20.0
the regulation term lambda/alpha is 60.33394370820778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3070455847504328
the lambda is 20.0
the regulation term lambda/alpha is 65.1369079814518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2793790235588411
the lambda is 20.0
the regulation term lambda/alpha is 71.58733588954549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2946424046096721
the lambda is 20.0
the regulation term lambda/alpha is 67.87889213195577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29657407672827185
the lambda is 20.0
the regulation term lambda/alpha is 67.4367774170784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2789625621475409
the lambda is 20.0
the regulation term lambda/alpha is 71.6942081619618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2937772282222169
the lambda is 20.0
the regulation term lambda/alpha is 68.07879603544949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2836311213217251
the lambda is 20.0
the regulation term lambda/alpha is 70.51412379149268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3174039055951093
the lambda is 20.0
the regulation term lambda/alpha is 63.011196924314625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2850681425933121
the lambda is 20.0
the regulation term lambda/alpha is 70.1586638831568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28024095804064925
the lambda is 20.0
the regulation term lambda/alpha is 71.36715539310632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2863222976427581
the lambda is 20.0
the regulation term lambda/alpha is 69.85135340368717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27981508575540953
the lambda is 20.0
the regulation term lambda/alpha is 71.47577460309732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3264830881163108
the lambda is 20.0
the regulation term lambda/alpha is 61.25891578455949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29457720320411274
the lambda is 20.0
the regulation term lambda/alpha is 67.89391637390891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30139924929752715
the lambda is 20.0
the regulation term lambda/alpha is 66.35716594057254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2883326868171376
the lambda is 20.0
the regulation term lambda/alpha is 69.36431738203906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26830476187082053
the lambda is 20.0
the regulation term lambda/alpha is 74.54209854698482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2954596370879772
the lambda is 20.0
the regulation term lambda/alpha is 67.69114115592285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3398740417903497
the lambda is 20.0
the regulation term lambda/alpha is 58.84532956575996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2934588181119232
the lambda is 20.0
the regulation term lambda/alpha is 68.15266322095026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28868625650169993
the lambda is 20.0
the regulation term lambda/alpha is 69.27936314793784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2939342449415084
the lambda is 20.0
the regulation term lambda/alpha is 68.0424290268727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27686649672125424
the lambda is 20.0
the regulation term lambda/alpha is 72.23698149413778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28371109651152177
the lambda is 20.0
the regulation term lambda/alpha is 70.49424659774554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24649680640685767
the lambda is 20.0
the regulation term lambda/alpha is 81.13695382725895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25091321557939567
the lambda is 20.0
the regulation term lambda/alpha is 79.70883460170501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3469272350406226
the lambda is 20.0
the regulation term lambda/alpha is 57.64897644215839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31305225477727866
the lambda is 20.0
the regulation term lambda/alpha is 63.88709774420574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32446742156958747
the lambda is 20.0
the regulation term lambda/alpha is 61.639470314928566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2765036848915534
the lambda is 20.0
the regulation term lambda/alpha is 72.33176660138953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3199124435785889
the lambda is 20.0
the regulation term lambda/alpha is 62.51710554387001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3276324861135209
the lambda is 20.0
the regulation term lambda/alpha is 61.04400768448288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3154513642687904
the lambda is 20.0
the regulation term lambda/alpha is 63.4012157352991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2480857522319794
the lambda is 20.0
the regulation term lambda/alpha is 80.61728583791644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29755563550505304
the lambda is 20.0
the regulation term lambda/alpha is 67.21432099934253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.275593635470462
the lambda is 20.0
the regulation term lambda/alpha is 72.57061639271271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2714099247958771
the lambda is 20.0
the regulation term lambda/alpha is 73.68927284085748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29611565083412716
the lambda is 20.0
the regulation term lambda/alpha is 67.54117839993282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29647518762163266
the lambda is 20.0
the regulation term lambda/alpha is 67.45927091046953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3023064589851613
the lambda is 20.0
the regulation term lambda/alpha is 66.1580307186943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28562838334363116
the lambda is 20.0
the regulation term lambda/alpha is 70.02105241039223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2938812678406463
the lambda is 20.0
the regulation term lambda/alpha is 68.05469483289683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27802668040880935
the lambda is 20.0
the regulation term lambda/alpha is 71.93554219541836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2737822608264639
the lambda is 20.0
the regulation term lambda/alpha is 73.05075186254285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28130066681559124
the lambda is 20.0
the regulation term lambda/alpha is 71.09830284586972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3231594909940463
the lambda is 20.0
the regulation term lambda/alpha is 61.88894511029066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2964869405306775
the lambda is 20.0
the regulation term lambda/alpha is 67.45659678703656
1060
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2922236601333689
the lambda is 20.0
the regulation term lambda/alpha is 68.44072786875688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30716526114114395
the lambda is 20.0
the regulation term lambda/alpha is 65.11152962316888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2898758202496984
the lambda is 20.0
the regulation term lambda/alpha is 68.99506134306768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31056405435493084
the lambda is 20.0
the regulation term lambda/alpha is 64.39895319354257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3052622206653967
the lambda is 20.0
the regulation term lambda/alpha is 65.51744253319296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2921034024709512
the lambda is 20.0
the regulation term lambda/alpha is 68.46890460986307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3020131706536751
the lambda is 20.0
the regulation term lambda/alpha is 66.22227751429564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26821140277368566
the lambda is 20.0
the regulation term lambda/alpha is 74.56804518067347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.29196549920122006
the lambda is 20.0
the regulation term lambda/alpha is 68.50124434125752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26166519567828933
the lambda is 20.0
the regulation term lambda/alpha is 76.43355069884605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3150514692267283
the lambda is 20.0
the regulation term lambda/alpha is 63.481690941129706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27469769456473137
the lambda is 20.0
the regulation term lambda/alpha is 72.80730925569193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2988339757195733
the lambda is 20.0
the regulation term lambda/alpha is 66.92679422358607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2877725232649326
the lambda is 20.0
the regulation term lambda/alpha is 69.49933848127453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3027873280618695
the lambda is 20.0
the regulation term lambda/alpha is 66.05296241430995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2712470689199696
the lambda is 20.0
the regulation term lambda/alpha is 73.73351564547569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31794070438025973
the lambda is 20.0
the regulation term lambda/alpha is 62.9048112571325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2699240533781051
the lambda is 20.0
the regulation term lambda/alpha is 74.09491577241667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26761829257599107
the lambda is 20.0
the regulation term lambda/alpha is 74.73330693312354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2678665902375041
the lambda is 20.0
the regulation term lambda/alpha is 74.66403324978673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2820410015886762
the lambda is 20.0
the regulation term lambda/alpha is 70.91167556257534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2806757380677406
the lambda is 20.0
the regulation term lambda/alpha is 71.25660428538015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27279767963583124
the lambda is 20.0
the regulation term lambda/alpha is 73.31440658402526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2914544011400143
the lambda is 20.0
the regulation term lambda/alpha is 68.62136897494311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33912887948127685
the lambda is 20.0
the regulation term lambda/alpha is 58.97462944055813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2747434755350162
the lambda is 20.0
the regulation term lambda/alpha is 72.79517725053671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3230586658986144
the lambda is 20.0
the regulation term lambda/alpha is 61.908260359982435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3311559596419316
the lambda is 20.0
the regulation term lambda/alpha is 60.394504213740746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29794964477738856
the lambda is 20.0
the regulation term lambda/alpha is 67.12543663189426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3309429014119238
the lambda is 20.0
the regulation term lambda/alpha is 60.43338568276481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31225148337737907
the lambda is 20.0
the regulation term lambda/alpha is 64.05093671189552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31256755659146934
the lambda is 20.0
the regulation term lambda/alpha is 63.98616740041357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2752421037986729
the lambda is 20.0
the regulation term lambda/alpha is 72.6633015951262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27396356655838394
the lambda is 20.0
the regulation term lambda/alpha is 73.00240776993182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3234737385488466
the lambda is 20.0
the regulation term lambda/alpha is 61.828821374257785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2747155900864963
the lambda is 20.0
the regulation term lambda/alpha is 72.80256644227161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2723611511920726
the lambda is 20.0
the regulation term lambda/alpha is 73.43191168220515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2453253606771674
the lambda is 20.0
the regulation term lambda/alpha is 81.52438844803628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2911645089080123
the lambda is 20.0
the regulation term lambda/alpha is 68.68969049493118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31976916917562165
the lambda is 20.0
the regulation term lambda/alpha is 62.54511669014508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29836349448903443
the lambda is 20.0
the regulation term lambda/alpha is 67.03232925412411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.296520033590872
the lambda is 20.0
the regulation term lambda/alpha is 67.44906830678194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26188218834574595
the lambda is 20.0
the regulation term lambda/alpha is 76.37021870916745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3135698352784944
the lambda is 20.0
the regulation term lambda/alpha is 63.78164526647523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27879399765467794
the lambda is 20.0
the regulation term lambda/alpha is 71.73755593107339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3086390741678038
the lambda is 20.0
the regulation term lambda/alpha is 64.80060910604668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31441674424147964
the lambda is 20.0
the regulation term lambda/alpha is 63.609843834015145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3161952056918095
the lambda is 20.0
the regulation term lambda/alpha is 63.25206593895572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30872755729777035
the lambda is 20.0
the regulation term lambda/alpha is 64.78203687113628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3198630231264301
the lambda is 20.0
the regulation term lambda/alpha is 62.52676475234443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.277471262165219
the lambda is 20.0
the regulation term lambda/alpha is 72.07953661194323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3014509991035168
the lambda is 20.0
the regulation term lambda/alpha is 66.34577446907747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3181722761161535
the lambda is 20.0
the regulation term lambda/alpha is 62.85902795848468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3331867365854033
the lambda is 20.0
the regulation term lambda/alpha is 60.0263990246609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30093369939713277
the lambda is 20.0
the regulation term lambda/alpha is 66.4598216818736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31964291402413936
the lambda is 20.0
the regulation term lambda/alpha is 62.56982126777134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3054532187459804
the lambda is 20.0
the regulation term lambda/alpha is 65.476474866131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37809060625205254
the lambda is 20.0
the regulation term lambda/alpha is 52.89737345832677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3231297477354134
the lambda is 20.0
the regulation term lambda/alpha is 61.89464182782853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31874588091926787
the lambda is 20.0
the regulation term lambda/alpha is 62.74590887988796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38368101197068605
the lambda is 20.0
the regulation term lambda/alpha is 52.12663482426396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25471694669698075
the lambda is 20.0
the regulation term lambda/alpha is 78.51852913340952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35171381378429706
the lambda is 20.0
the regulation term lambda/alpha is 56.864414237269116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3306971315442959
the lambda is 20.0
the regulation term lambda/alpha is 60.47829900006574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27925115592502864
the lambda is 20.0
the regulation term lambda/alpha is 71.62011535368347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.301282859344636
the lambda is 20.0
the regulation term lambda/alpha is 66.38280067941767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.322989657075049
the lambda is 20.0
the regulation term lambda/alpha is 61.92148745912583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.279527321783066
the lambda is 20.0
the regulation term lambda/alpha is 71.54935650806074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2681831012023052
the lambda is 20.0
the regulation term lambda/alpha is 74.57591440451314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3041584908268223
the lambda is 20.0
the regulation term lambda/alpha is 65.75519212247582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2836930700877543
the lambda is 20.0
the regulation term lambda/alpha is 70.4987259428418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3100176411616399
the lambda is 20.0
the regulation term lambda/alpha is 64.51245782356048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33023486530734975
the lambda is 20.0
the regulation term lambda/alpha is 60.562957158948045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28779207255653555
the lambda is 20.0
the regulation term lambda/alpha is 69.49461749357631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29099601682079534
the lambda is 20.0
the regulation term lambda/alpha is 68.72946309885967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2820250734319603
the lambda is 20.0
the regulation term lambda/alpha is 70.91568049826279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24868879162370133
the lambda is 20.0
the regulation term lambda/alpha is 80.42179894565822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32341006154870194
the lambda is 20.0
the regulation term lambda/alpha is 61.8409950025263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.299243141760788
the lambda is 20.0
the regulation term lambda/alpha is 66.83528278147742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.334630022186508
the lambda is 20.0
the regulation term lambda/alpha is 59.7675004451719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29906984872664716
the lambda is 20.0
the regulation term lambda/alpha is 66.8740098179546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2733109033142002
the lambda is 20.0
the regulation term lambda/alpha is 73.1767366668422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27487656979770997
the lambda is 20.0
the regulation term lambda/alpha is 72.75993008323194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29924706553004005
the lambda is 20.0
the regulation term lambda/alpha is 66.83440642792966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28877092081029515
the lambda is 20.0
the regulation term lambda/alpha is 69.25905123646012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2844270586860289
the lambda is 20.0
the regulation term lambda/alpha is 70.31679788974452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2962645737017749
the lambda is 20.0
the regulation term lambda/alpha is 67.50722757737599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30354398645213115
the lambda is 20.0
the regulation term lambda/alpha is 65.88830908417287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2544070538284693
the lambda is 20.0
the regulation term lambda/alpha is 78.61417244147934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2818749980922168
the lambda is 20.0
the regulation term lambda/alpha is 70.9534372873216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2912668913317359
the lambda is 20.0
the regulation term lambda/alpha is 68.66554557078433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2960228601070795
the lambda is 20.0
the regulation term lambda/alpha is 67.56234972111767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31253712417936524
the lambda is 20.0
the regulation term lambda/alpha is 63.99239787117894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28962393820241106
the lambda is 20.0
the regulation term lambda/alpha is 69.05506542080956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2914564145025103
the lambda is 20.0
the regulation term lambda/alpha is 68.620894942862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3289223798110466
the lambda is 20.0
the regulation term lambda/alpha is 60.80461904565217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3270977109196282
the lambda is 20.0
the regulation term lambda/alpha is 61.14380911982059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29545209562506514
the lambda is 20.0
the regulation term lambda/alpha is 67.69286898333738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28742865229993353
the lambda is 20.0
the regulation term lambda/alpha is 69.58248539233966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2871969970951924
the lambda is 20.0
the regulation term lambda/alpha is 69.63861113551592
1070
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3042602449720365
the lambda is 20.0
the regulation term lambda/alpha is 65.73320152896784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29782013741314844
the lambda is 20.0
the regulation term lambda/alpha is 67.15462619055599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30516319643336626
the lambda is 20.0
the regulation term lambda/alpha is 65.53870268024633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27759860689210525
the lambda is 20.0
the regulation term lambda/alpha is 72.04647106811107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3218863022571369
the lambda is 20.0
the regulation term lambda/alpha is 62.13374057782404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2883375624341517
the lambda is 20.0
the regulation term lambda/alpha is 69.36314447260906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2723093749559283
the lambda is 20.0
the regulation term lambda/alpha is 73.44587384564666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2921406028597601
the lambda is 20.0
the regulation term lambda/alpha is 68.46018596600503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2815725479454773
the lambda is 20.0
the regulation term lambda/alpha is 71.02965166857362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28791234275124705
the lambda is 20.0
the regulation term lambda/alpha is 69.46558736899921
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2813830143006827
the lambda is 20.0
the regulation term lambda/alpha is 71.07749573905775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2605174907245479
the lambda is 20.0
the regulation term lambda/alpha is 76.7702772830195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32844771411409146
the lambda is 20.0
the regulation term lambda/alpha is 60.89249259640969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.298440124373734
the lambda is 20.0
the regulation term lambda/alpha is 67.01511749457043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29089547897926005
the lambda is 20.0
the regulation term lambda/alpha is 68.75321703238275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2851004515691297
the lambda is 20.0
the regulation term lambda/alpha is 70.15071316065769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.30004587199137434
the lambda is 20.0
the regulation term lambda/alpha is 66.6564744492634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2819615942340267
the lambda is 20.0
the regulation term lambda/alpha is 70.93164604325545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3230042814237125
the lambda is 20.0
the regulation term lambda/alpha is 61.91868390055264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2669252647405047
the lambda is 20.0
the regulation term lambda/alpha is 74.92733975348227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30803722022351765
the lambda is 20.0
the regulation term lambda/alpha is 64.92721881299805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26409357446893234
the lambda is 20.0
the regulation term lambda/alpha is 75.7307330942002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27490554482646307
the lambda is 20.0
the regulation term lambda/alpha is 72.75226119074901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2652431940939047
the lambda is 20.0
the regulation term lambda/alpha is 75.40250021615768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26702259426649844
the lambda is 20.0
the regulation term lambda/alpha is 74.90002879696112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2980443324457195
the lambda is 20.0
the regulation term lambda/alpha is 67.10411110951907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3064407786461651
the lambda is 20.0
the regulation term lambda/alpha is 65.26546528291263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30032489818632185
the lambda is 20.0
the regulation term lambda/alpha is 66.59454517684371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.254210125566658
the lambda is 20.0
the regulation term lambda/alpha is 78.67507226715749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2835170177049236
the lambda is 20.0
the regulation term lambda/alpha is 70.54250274604478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3185896695666502
the lambda is 20.0
the regulation term lambda/alpha is 62.776674545675824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2577621195133026
the lambda is 20.0
the regulation term lambda/alpha is 77.59092002255142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24973680917785082
the lambda is 20.0
the regulation term lambda/alpha is 80.08430982137254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3151801130648596
the lambda is 20.0
the regulation term lambda/alpha is 63.45578026962724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2954657427634169
the lambda is 20.0
the regulation term lambda/alpha is 67.68974234693005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27635926597044097
the lambda is 20.0
the regulation term lambda/alpha is 72.36956549934958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29512378042739346
the lambda is 20.0
the regulation term lambda/alpha is 67.76817500452293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3178751906784409
the lambda is 20.0
the regulation term lambda/alpha is 62.91777586452723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29124185561823956
the lambda is 20.0
the regulation term lambda/alpha is 68.67144819395754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28030987564450055
the lambda is 20.0
the regulation term lambda/alpha is 71.34960890698245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3000837093777159
the lambda is 20.0
the regulation term lambda/alpha is 66.64806977184477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29488002772563693
the lambda is 20.0
the regulation term lambda/alpha is 67.82419329737874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2726668230386904
the lambda is 20.0
the regulation term lambda/alpha is 73.3495911864645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29095427365461246
the lambda is 20.0
the regulation term lambda/alpha is 68.7393237046647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31246269455849596
the lambda is 20.0
the regulation term lambda/alpha is 64.00764106659079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27762954802626477
the lambda is 20.0
the regulation term lambda/alpha is 72.03844166510665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.293006989548621
the lambda is 20.0
the regulation term lambda/alpha is 68.25775736889457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3119540508162306
the lambda is 20.0
the regulation term lambda/alpha is 64.1120060716308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32171226963379645
the lambda is 20.0
the regulation term lambda/alpha is 62.16735228272737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2789041674275212
the lambda is 20.0
the regulation term lambda/alpha is 71.70921892085889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30707065818094936
the lambda is 20.0
the regulation term lambda/alpha is 65.13158931718732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2653164879038911
the lambda is 20.0
the regulation term lambda/alpha is 75.3816702384695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3394706800565883
the lambda is 20.0
the regulation term lambda/alpha is 58.91525004947728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2785138097374253
the lambda is 20.0
the regulation term lambda/alpha is 71.80972469140909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28553642608023333
the lambda is 20.0
the regulation term lambda/alpha is 70.04360275343703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2729583617397402
the lambda is 20.0
the regulation term lambda/alpha is 73.27124867150822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29139619923322524
the lambda is 20.0
the regulation term lambda/alpha is 68.63507503744951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28118190039816465
the lambda is 20.0
the regulation term lambda/alpha is 71.1283335509121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.271724349845188
the lambda is 20.0
the regulation term lambda/alpha is 73.60400351089176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2677130942221256
the lambda is 20.0
the regulation term lambda/alpha is 74.70684262984051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30365495278924254
the lambda is 20.0
the regulation term lambda/alpha is 65.86423114883748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25368453749461056
the lambda is 20.0
the regulation term lambda/alpha is 78.83807266110925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2928873144944928
the lambda is 20.0
the regulation term lambda/alpha is 68.28564779092221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3051494457046007
the lambda is 20.0
the regulation term lambda/alpha is 65.54165600340288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3286206201140045
the lambda is 20.0
the regulation term lambda/alpha is 60.860453592539734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2762473185072887
the lambda is 20.0
the regulation term lambda/alpha is 72.39889280399407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3111858777380371
the lambda is 20.0
the regulation term lambda/alpha is 64.2702687711183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33995951714465567
the lambda is 20.0
the regulation term lambda/alpha is 58.830534200017205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3000849226902175
the lambda is 20.0
the regulation term lambda/alpha is 66.64780029833861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3234687382536624
the lambda is 20.0
the regulation term lambda/alpha is 61.8297771462419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28582879264500893
the lambda is 20.0
the regulation term lambda/alpha is 69.97195704086893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28036778081057856
the lambda is 20.0
the regulation term lambda/alpha is 71.33487286655222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31149196535636825
the lambda is 20.0
the regulation term lambda/alpha is 64.20711358355142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2968758854987205
the lambda is 20.0
the regulation term lambda/alpha is 67.36822011124981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.284310046733759
the lambda is 20.0
the regulation term lambda/alpha is 70.34573779493948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27934587510287145
the lambda is 20.0
the regulation term lambda/alpha is 71.59583076941742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25663356091771783
the lambda is 20.0
the regulation term lambda/alpha is 77.93212987607815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28708392562172685
the lambda is 20.0
the regulation term lambda/alpha is 69.66603914408218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3079088062214637
the lambda is 20.0
the regulation term lambda/alpha is 64.95429684338089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2987287267503292
the lambda is 20.0
the regulation term lambda/alpha is 66.95037406534911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2686463242339564
the lambda is 20.0
the regulation term lambda/alpha is 74.44732421718368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2892020364975588
the lambda is 20.0
the regulation term lambda/alpha is 69.15580623917502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2819498317916417
the lambda is 20.0
the regulation term lambda/alpha is 70.9346051845841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26800633827401626
the lambda is 20.0
the regulation term lambda/alpha is 74.62510076739868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2789295908063939
the lambda is 20.0
the regulation term lambda/alpha is 71.7026828963517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2695122245729273
the lambda is 20.0
the regulation term lambda/alpha is 74.20813668727743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2757371102956842
the lambda is 20.0
the regulation term lambda/alpha is 72.53285558317914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2809748852667203
the lambda is 20.0
the regulation term lambda/alpha is 71.1807390935124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2687331062212217
the lambda is 20.0
the regulation term lambda/alpha is 74.42328294131336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3413049368078989
the lambda is 20.0
the regulation term lambda/alpha is 58.598624992221716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3106518483524695
the lambda is 20.0
the regulation term lambda/alpha is 64.38075326468925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3180974126177937
the lambda is 20.0
the regulation term lambda/alpha is 62.87382168691442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24497327303986274
the lambda is 20.0
the regulation term lambda/alpha is 81.64155930898447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32546350458322554
the lambda is 20.0
the regulation term lambda/alpha is 61.45082234523079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3076248211930082
the lambda is 20.0
the regulation term lambda/alpha is 65.01425965056218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.32415744812479313
the lambda is 20.0
the regulation term lambda/alpha is 61.69841265624864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26465493481237484
the lambda is 20.0
the regulation term lambda/alpha is 75.57010041841409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31914388718881864
the lambda is 20.0
the regulation term lambda/alpha is 62.66765807789756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3161308626777333
the lambda is 20.0
the regulation term lambda/alpha is 63.26493981192903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31925310767435755
the lambda is 20.0
the regulation term lambda/alpha is 62.646218687400435
1080
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28296837887146475
the lambda is 20.0
the regulation term lambda/alpha is 70.67927547157055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2647184489720213
the lambda is 20.0
the regulation term lambda/alpha is 75.55196880937395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2937374801464117
the lambda is 20.0
the regulation term lambda/alpha is 68.08800834687871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2824038179699333
the lambda is 20.0
the regulation term lambda/alpha is 70.82057227048304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3281109830447613
the lambda is 20.0
the regulation term lambda/alpha is 60.954984848134686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30652453710668176
the lambda is 20.0
the regulation term lambda/alpha is 65.24763136022376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26797378617901946
the lambda is 20.0
the regulation term lambda/alpha is 74.63416584575565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3197184701218606
the lambda is 20.0
the regulation term lambda/alpha is 62.55503472282038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32792608604940493
the lambda is 20.0
the regulation term lambda/alpha is 60.98935354897879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32283532336645715
the lambda is 20.0
the regulation term lambda/alpha is 61.95108946395429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30344464387014963
the lambda is 20.0
the regulation term lambda/alpha is 65.90987978867877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33662265794204715
the lambda is 20.0
the regulation term lambda/alpha is 59.41370709348743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2690055296847239
the lambda is 20.0
the regulation term lambda/alpha is 74.3479140500945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3071978059352218
the lambda is 20.0
the regulation term lambda/alpha is 65.10463165292711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2962270691576194
the lambda is 20.0
the regulation term lambda/alpha is 67.51577449310753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2793132092715628
the lambda is 20.0
the regulation term lambda/alpha is 71.60420394065561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33042178684036394
the lambda is 20.0
the regulation term lambda/alpha is 60.528696340664006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3192764535917373
the lambda is 20.0
the regulation term lambda/alpha is 62.641637912873605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33860948008844305
the lambda is 20.0
the regulation term lambda/alpha is 59.06509172388234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2752983696827295
the lambda is 20.0
the regulation term lambda/alpha is 72.64845056310797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3293420143982175
the lambda is 20.0
the regulation term lambda/alpha is 60.72714420158186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2760382705693738
the lambda is 20.0
the regulation term lambda/alpha is 72.45372157544223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27820101787678286
the lambda is 20.0
the regulation term lambda/alpha is 71.89046306386318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27541056194017316
the lambda is 20.0
the regulation term lambda/alpha is 72.61885622362064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25913191525722684
the lambda is 20.0
the regulation term lambda/alpha is 77.18076710137011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3212434560317009
the lambda is 20.0
the regulation term lambda/alpha is 62.258077556065025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.305953913277818
the lambda is 20.0
the regulation term lambda/alpha is 65.369322411115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2691074818453446
the lambda is 20.0
the regulation term lambda/alpha is 74.31974712428824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3092256958792383
the lambda is 20.0
the regulation term lambda/alpha is 64.67767804073625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3125954852726968
the lambda is 20.0
the regulation term lambda/alpha is 63.98045058953022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2914794483244943
the lambda is 20.0
the regulation term lambda/alpha is 68.61547225701715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.293394969354698
the lambda is 20.0
the regulation term lambda/alpha is 68.1674946369688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34098516795807254
the lambda is 20.0
the regulation term lambda/alpha is 58.65357757279107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32070366846929693
the lambda is 20.0
the regulation term lambda/alpha is 62.36286630414622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31314030578750546
the lambda is 20.0
the regulation term lambda/alpha is 63.86913351733086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3313206250940667
the lambda is 20.0
the regulation term lambda/alpha is 60.36448830893553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2897372305309249
the lambda is 20.0
the regulation term lambda/alpha is 69.02806368153406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28714814940722694
the lambda is 20.0
the regulation term lambda/alpha is 69.65045758186815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24698250951705558
the lambda is 20.0
the regulation term lambda/alpha is 80.97739406368322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2810447844864762
the lambda is 20.0
the regulation term lambda/alpha is 71.16303558717132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32059225312750855
the lambda is 20.0
the regulation term lambda/alpha is 62.38453925474437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2546817224481623
the lambda is 20.0
the regulation term lambda/alpha is 78.5293887906337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31102534073625004
the lambda is 20.0
the regulation term lambda/alpha is 64.30344213322486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3019634090956004
the lambda is 20.0
the regulation term lambda/alpha is 66.23319050444314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28592941860553545
the lambda is 20.0
the regulation term lambda/alpha is 69.94733209873638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2912659965897181
the lambda is 20.0
the regulation term lambda/alpha is 68.66575650494595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2894160765315563
the lambda is 20.0
the regulation term lambda/alpha is 69.10466149526187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26449159127184335
the lambda is 20.0
the regulation term lambda/alpha is 75.61677066490967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3024180153117266
the lambda is 20.0
the regulation term lambda/alpha is 66.13362626358219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2790461368132379
the lambda is 20.0
the regulation term lambda/alpha is 71.6727356572786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29602363430587975
the lambda is 20.0
the regulation term lambda/alpha is 67.56217302343535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3562766528126978
the lambda is 20.0
the regulation term lambda/alpha is 56.13615105594479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32261800969370336
the lambda is 20.0
the regulation term lambda/alpha is 61.992819368603115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2753250480712821
the lambda is 20.0
the regulation term lambda/alpha is 72.64141108883769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30775502085801526
the lambda is 20.0
the regulation term lambda/alpha is 64.98675454340395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28650313956996204
the lambda is 20.0
the regulation term lambda/alpha is 69.8072629501365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26218033664718055
the lambda is 20.0
the regulation term lambda/alpha is 76.28337142199287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3042217550199141
the lambda is 20.0
the regulation term lambda/alpha is 65.74151805379867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30106968181681576
the lambda is 20.0
the regulation term lambda/alpha is 66.42980415467039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2683184466915946
the lambda is 20.0
the regulation term lambda/alpha is 74.53829673882994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2886156532842621
the lambda is 20.0
the regulation term lambda/alpha is 69.29631075935333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26241786840511233
the lambda is 20.0
the regulation term lambda/alpha is 76.21432230035738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30540899491111784
the lambda is 20.0
the regulation term lambda/alpha is 65.48595599098361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2866585620490161
the lambda is 20.0
the regulation term lambda/alpha is 69.76941437590891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3335623073700442
the lambda is 20.0
the regulation term lambda/alpha is 59.958812965676564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27360609363721905
the lambda is 20.0
the regulation term lambda/alpha is 73.09778716594845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28422847516071803
the lambda is 20.0
the regulation term lambda/alpha is 70.3659265268581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2932010232957291
the lambda is 20.0
the regulation term lambda/alpha is 68.21258594253797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3060648238209355
the lambda is 20.0
the regulation term lambda/alpha is 65.34563413828008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27559570518561227
the lambda is 20.0
the regulation term lambda/alpha is 72.57007138964704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2878958054306084
the lambda is 20.0
the regulation term lambda/alpha is 69.46957761362941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29417933801051427
the lambda is 20.0
the regulation term lambda/alpha is 67.98574004298419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2991082785447747
the lambda is 20.0
the regulation term lambda/alpha is 66.8654177587603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.271110877711306
the lambda is 20.0
the regulation term lambda/alpha is 73.77055531241767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2855112659754044
the lambda is 20.0
the regulation term lambda/alpha is 70.04977520474768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3005269234751414
the lambda is 20.0
the regulation term lambda/alpha is 66.54977786592333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2755027481918695
the lambda is 20.0
the regulation term lambda/alpha is 72.5945571550935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3553996404925476
the lambda is 20.0
the regulation term lambda/alpha is 56.27467707137251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32169675558739513
the lambda is 20.0
the regulation term lambda/alpha is 62.170350345876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3278701099990602
the lambda is 20.0
the regulation term lambda/alpha is 60.99976603557222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3311031662276826
the lambda is 20.0
the regulation term lambda/alpha is 60.40413393765927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32682716106819015
the lambda is 20.0
the regulation term lambda/alpha is 61.19442440044676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31513723132483085
the lambda is 20.0
the regulation term lambda/alpha is 63.46441490242326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3213875203402775
the lambda is 20.0
the regulation term lambda/alpha is 62.23016991706608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2770728607850858
the lambda is 20.0
the regulation term lambda/alpha is 72.18317933892915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2853841831942687
the lambda is 20.0
the regulation term lambda/alpha is 70.08096866526573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24263507969120507
the lambda is 20.0
the regulation term lambda/alpha is 82.42831179009006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31438418822031566
the lambda is 20.0
the regulation term lambda/alpha is 63.616430944625954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24879034747342357
the lambda is 20.0
the regulation term lambda/alpha is 80.3889708869692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2816468271422717
the lambda is 20.0
the regulation term lambda/alpha is 71.01091889771993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32489861609783033
the lambda is 20.0
the regulation term lambda/alpha is 61.55766448071848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2964418697723514
the lambda is 20.0
the regulation term lambda/alpha is 67.46685282803922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29528590250547293
the lambda is 20.0
the regulation term lambda/alpha is 67.73096795445328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2607350997101903
the lambda is 20.0
the regulation term lambda/alpha is 76.70620496523176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30404473741864235
the lambda is 20.0
the regulation term lambda/alpha is 65.77979336133615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2779044229626852
the lambda is 20.0
the regulation term lambda/alpha is 71.96718852756598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31581952491397036
the lambda is 20.0
the regulation term lambda/alpha is 63.327306965736284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28835197780940514
the lambda is 20.0
the regulation term lambda/alpha is 69.35967685028191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2700726341747607
the lambda is 20.0
the regulation term lambda/alpha is 74.0541523620577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3142633321573673
the lambda is 20.0
the regulation term lambda/alpha is 63.64089587768071
1090
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2774763922336493
the lambda is 20.0
the regulation term lambda/alpha is 72.07820398341845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2634341489179613
the lambda is 20.0
the regulation term lambda/alpha is 75.92030145730425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2865019709615733
the lambda is 20.0
the regulation term lambda/alpha is 69.80754768588476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3008459454974353
the lambda is 20.0
the regulation term lambda/alpha is 66.47920737948087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24878375640341466
the lambda is 20.0
the regulation term lambda/alpha is 80.3911006455303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34950787526034244
the lambda is 20.0
the regulation term lambda/alpha is 57.2233171716155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3134190318467146
the lambda is 20.0
the regulation term lambda/alpha is 63.81233418454786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2825553618970174
the lambda is 20.0
the regulation term lambda/alpha is 70.78258881984824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2916700348883851
the lambda is 20.0
the regulation term lambda/alpha is 68.57063670477326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25706944020556904
the lambda is 20.0
the regulation term lambda/alpha is 77.79999047730733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3176531611412948
the lambda is 20.0
the regulation term lambda/alpha is 62.961753404694846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2833822438931462
the lambda is 20.0
the regulation term lambda/alpha is 70.57605206747293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2816054754487926
the lambda is 20.0
the regulation term lambda/alpha is 71.02134632903052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2929262765579996
the lambda is 20.0
the regulation term lambda/alpha is 68.27656513102193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2552067762425544
the lambda is 20.0
the regulation term lambda/alpha is 78.36782508075545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27084827011948764
the lambda is 20.0
the regulation term lambda/alpha is 73.84208136598689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30480829345655586
the lambda is 20.0
the regulation term lambda/alpha is 65.61501254837276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2874292746221206
the lambda is 20.0
the regulation term lambda/alpha is 69.58233473710614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2679571611790028
the lambda is 20.0
the regulation term lambda/alpha is 74.63879641059283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3145871749078962
the lambda is 20.0
the regulation term lambda/alpha is 63.575382581491226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27755324683852706
the lambda is 20.0
the regulation term lambda/alpha is 72.05824549995431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3096979396976834
the lambda is 20.0
the regulation term lambda/alpha is 64.5790540922659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2874551521639597
the lambda is 20.0
the regulation term lambda/alpha is 69.57607073465265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28243026446959246
the lambda is 20.0
the regulation term lambda/alpha is 70.81394069987594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3104779915013497
the lambda is 20.0
the regulation term lambda/alpha is 64.41680424202647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29682981384292606
the lambda is 20.0
the regulation term lambda/alpha is 67.37867649165267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31664769572405577
the lambda is 20.0
the regulation term lambda/alpha is 63.16167864183386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28675503421503434
the lambda is 20.0
the regulation term lambda/alpha is 69.74594205380969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2915367939658286
the lambda is 20.0
the regulation term lambda/alpha is 68.60197551031663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3043612121537891
the lambda is 20.0
the regulation term lambda/alpha is 65.7113955437078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.306253782101481
the lambda is 20.0
the regulation term lambda/alpha is 65.30531594667049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2910255840152768
the lambda is 20.0
the regulation term lambda/alpha is 68.72248042271823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27963802487186806
the lambda is 20.0
the regulation term lambda/alpha is 71.52103155200058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2578050975506938
the lambda is 20.0
the regulation term lambda/alpha is 77.57798503603009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3183179265107008
the lambda is 20.0
the regulation term lambda/alpha is 62.83026601496685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28700819205328854
the lambda is 20.0
the regulation term lambda/alpha is 69.68442209582165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32427289221758665
the lambda is 20.0
the regulation term lambda/alpha is 61.67644746135618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3286095977572962
the lambda is 20.0
the regulation term lambda/alpha is 60.862494998614004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32545021891561904
the lambda is 20.0
the regulation term lambda/alpha is 61.453330916902814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2583157333467656
the lambda is 20.0
the regulation term lambda/alpha is 77.4246296997783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3268650572204641
the lambda is 20.0
the regulation term lambda/alpha is 61.18732962792774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27577944200585225
the lambda is 20.0
the regulation term lambda/alpha is 72.52172190404093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31393752019899696
the lambda is 20.0
the regulation term lambda/alpha is 63.70694394006333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28018944380972005
the lambda is 20.0
the regulation term lambda/alpha is 71.38027660164897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2770813462816366
the lambda is 20.0
the regulation term lambda/alpha is 72.18096876023981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3233248982505232
the lambda is 20.0
the regulation term lambda/alpha is 61.85728382879847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29751392846429664
the lambda is 20.0
the regulation term lambda/alpha is 67.22374345038476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30302114029178506
the lambda is 20.0
the regulation term lambda/alpha is 66.00199570479342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34245818287713375
the lambda is 20.0
the regulation term lambda/alpha is 58.4012910188674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2954467693020833
the lambda is 20.0
the regulation term lambda/alpha is 67.69408935235553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2622668814635577
the lambda is 20.0
the regulation term lambda/alpha is 76.25819885603445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2789965054870714
the lambda is 20.0
the regulation term lambda/alpha is 71.68548568407354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28161085506580374
the lambda is 20.0
the regulation term lambda/alpha is 71.01998960702925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3147235173484988
the lambda is 20.0
the regulation term lambda/alpha is 63.54784087473722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28418944048153516
the lambda is 20.0
the regulation term lambda/alpha is 70.37559159872963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2927967532347093
the lambda is 20.0
the regulation term lambda/alpha is 68.30676836080818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2907000970545991
the lambda is 20.0
the regulation term lambda/alpha is 68.79942663467227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29953055688239266
the lambda is 20.0
the regulation term lambda/alpha is 66.77115085741579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2882114500323377
the lambda is 20.0
the regulation term lambda/alpha is 69.39349563577704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2988426498194891
the lambda is 20.0
the regulation term lambda/alpha is 66.92485163038363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2865265092669686
the lambda is 20.0
the regulation term lambda/alpha is 69.80156932483051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26138264392034893
the lambda is 20.0
the regulation term lambda/alpha is 76.51617452494128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30250993106426577
the lambda is 20.0
the regulation term lambda/alpha is 66.11353197443016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3448782113668069
the lambda is 20.0
the regulation term lambda/alpha is 57.99148609805425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31077810316625326
the lambda is 20.0
the regulation term lambda/alpha is 64.35459833314202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3460671594067392
the lambda is 20.0
the regulation term lambda/alpha is 57.79225059750216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3437275635659064
the lambda is 20.0
the regulation term lambda/alpha is 58.185615935235276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.333541654883748
the lambda is 20.0
the regulation term lambda/alpha is 59.962525541137474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32505556576882844
the lambda is 20.0
the regulation term lambda/alpha is 61.52794200799352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33856545964986795
the lambda is 20.0
the regulation term lambda/alpha is 59.07277139458724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.298291922275765
the lambda is 20.0
the regulation term lambda/alpha is 67.04841300231521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3008491351874884
the lambda is 20.0
the regulation term lambda/alpha is 66.47850254758436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3018267394367617
the lambda is 20.0
the regulation term lambda/alpha is 66.26318144416881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2967630565458882
the lambda is 20.0
the regulation term lambda/alpha is 67.39383342652498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30273400161732933
the lambda is 20.0
the regulation term lambda/alpha is 66.06459761094489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28089383941235013
the lambda is 20.0
the regulation term lambda/alpha is 71.20127675936725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29682629900645885
the lambda is 20.0
the regulation term lambda/alpha is 67.37947434895183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30410015178448174
the lambda is 20.0
the regulation term lambda/alpha is 65.76780669999192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2733294320030261
the lambda is 20.0
the regulation term lambda/alpha is 73.17177609976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31481824338289344
the lambda is 20.0
the regulation term lambda/alpha is 63.52871988957536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28076248604032483
the lambda is 20.0
the regulation term lambda/alpha is 71.23458793254693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29898924457410475
the lambda is 20.0
the regulation term lambda/alpha is 66.89203830221051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3135006847684436
the lambda is 20.0
the regulation term lambda/alpha is 63.79571392251441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28694656362111337
the lambda is 20.0
the regulation term lambda/alpha is 69.69938844226121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29809023821094255
the lambda is 20.0
the regulation term lambda/alpha is 67.09377710600194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26814280723735767
the lambda is 20.0
the regulation term lambda/alpha is 74.58712096758268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29074564677020603
the lambda is 20.0
the regulation term lambda/alpha is 68.78864816093778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2977748023198772
the lambda is 20.0
the regulation term lambda/alpha is 67.16485022972326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2729815826117915
the lambda is 20.0
the regulation term lambda/alpha is 73.26501593494716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29138168732428604
the lambda is 20.0
the regulation term lambda/alpha is 68.63849332350627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3168864477690047
the lambda is 20.0
the regulation term lambda/alpha is 63.11409068076984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3022399650836139
the lambda is 20.0
the regulation term lambda/alpha is 66.1725857282542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30828238493629423
the lambda is 20.0
the regulation term lambda/alpha is 64.87558477962648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3292607474802861
the lambda is 20.0
the regulation term lambda/alpha is 60.742132650347166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2829401016514689
the lambda is 20.0
the regulation term lambda/alpha is 70.68633920488368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3154008664761774
the lambda is 20.0
the regulation term lambda/alpha is 63.41136669486805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3427770871680771
the lambda is 20.0
the regulation term lambda/alpha is 58.34695710041206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31068802062741496
the lambda is 20.0
the regulation term lambda/alpha is 64.37325764801376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30025803747004604
the lambda is 20.0
the regulation term lambda/alpha is 66.60937428526027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3098183584509229
the lambda is 20.0
the regulation term lambda/alpha is 64.55395380699532
1100
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2652303423486068
the lambda is 20.0
the regulation term lambda/alpha is 75.40615384688114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32555624780838943
the lambda is 20.0
the regulation term lambda/alpha is 61.43331646877584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30724070283540433
the lambda is 20.0
the regulation term lambda/alpha is 65.09554175416154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29031939911676524
the lambda is 20.0
the regulation term lambda/alpha is 68.88964382278873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29505038246173926
the lambda is 20.0
the regulation term lambda/alpha is 67.78503329882484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30962859278045224
the lambda is 20.0
the regulation term lambda/alpha is 64.59351773814171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29952110146663136
the lambda is 20.0
the regulation term lambda/alpha is 66.77325871889575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3070350266087696
the lambda is 20.0
the regulation term lambda/alpha is 65.13914787150463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33920967503905375
the lambda is 20.0
the regulation term lambda/alpha is 58.960582411740965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3267032762762448
the lambda is 20.0
the regulation term lambda/alpha is 61.21762912193433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28374072090896635
the lambda is 20.0
the regulation term lambda/alpha is 70.48688653475537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31258267128585776
the lambda is 20.0
the regulation term lambda/alpha is 63.98307339855683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2934221067321173
the lambda is 20.0
the regulation term lambda/alpha is 68.16119011189298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29269763493707895
the lambda is 20.0
the regulation term lambda/alpha is 68.32989957127391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.304755250212803
the lambda is 20.0
the regulation term lambda/alpha is 65.62643296886436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3004223474412382
the lambda is 20.0
the regulation term lambda/alpha is 66.57294362534714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3131627999662567
the lambda is 20.0
the regulation term lambda/alpha is 63.864545859709395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29628604275458337
the lambda is 20.0
the regulation term lambda/alpha is 67.50233596580922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28288599297166434
the lambda is 20.0
the regulation term lambda/alpha is 70.6998596498319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2788610689299558
the lambda is 20.0
the regulation term lambda/alpha is 71.72030171419729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29858021819755015
the lambda is 20.0
the regulation term lambda/alpha is 66.98367400471041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29635693285122544
the lambda is 20.0
the regulation term lambda/alpha is 67.48618906121635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29698916743920717
the lambda is 20.0
the regulation term lambda/alpha is 67.34252354202091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32381790667915694
the lambda is 20.0
the regulation term lambda/alpha is 61.763106942125546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3008214042049144
the lambda is 20.0
the regulation term lambda/alpha is 66.48463081561957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2686327611824549
the lambda is 20.0
the regulation term lambda/alpha is 74.4510830025532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28832692547439237
the lambda is 20.0
the regulation term lambda/alpha is 69.3657034184145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3298045616261319
the lambda is 20.0
the regulation term lambda/alpha is 60.64197505755575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25941552133569046
the lambda is 20.0
the regulation term lambda/alpha is 77.09638920995586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28799396563786567
the lambda is 20.0
the regulation term lambda/alpha is 69.44589951981405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31358925142256067
the lambda is 20.0
the regulation term lambda/alpha is 63.77769617189479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.305495614611657
the lambda is 20.0
the regulation term lambda/alpha is 65.46738821578111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.326381971246593
the lambda is 20.0
the regulation term lambda/alpha is 61.27789449769975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26929869688899843
the lambda is 20.0
the regulation term lambda/alpha is 74.26697652474624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29442874869078794
the lambda is 20.0
the regulation term lambda/alpha is 67.92814930244533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2610141247386242
the lambda is 20.0
the regulation term lambda/alpha is 76.6242057590857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27894109757677016
the lambda is 20.0
the regulation term lambda/alpha is 71.6997250449823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.28590036033401434
the lambda is 20.0
the regulation term lambda/alpha is 69.95444138872092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32749955612389814
the lambda is 20.0
the regulation term lambda/alpha is 61.06878505946338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3043353130065149
the lambda is 20.0
the regulation term lambda/alpha is 65.71698762927278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33363561372196393
the lambda is 20.0
the regulation term lambda/alpha is 59.945638826995996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2754788260300449
the lambda is 20.0
the regulation term lambda/alpha is 72.60086115590863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2939795881969903
the lambda is 20.0
the regulation term lambda/alpha is 68.0319341987729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.307993049373717
the lambda is 20.0
the regulation term lambda/alpha is 64.9365303556968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2789322808968972
the lambda is 20.0
the regulation term lambda/alpha is 71.70199137830403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33537292125426826
the lambda is 20.0
the regulation term lambda/alpha is 59.63510686909837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27382672916764916
the lambda is 20.0
the regulation term lambda/alpha is 73.03888871913264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28805429456695114
the lambda is 20.0
the regulation term lambda/alpha is 69.43135505084959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2565020510502365
the lambda is 20.0
the regulation term lambda/alpha is 77.97208606368203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28496797864277956
the lambda is 20.0
the regulation term lambda/alpha is 70.18332408874232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28807204762834343
the lambda is 20.0
the regulation term lambda/alpha is 69.42707619381048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29273807411730196
the lambda is 20.0
the regulation term lambda/alpha is 68.3204603989636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28022469149629387
the lambda is 20.0
the regulation term lambda/alpha is 71.37129812939597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2731856651445181
the lambda is 20.0
the regulation term lambda/alpha is 73.21028352428299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33297693296692893
the lambda is 20.0
the regulation term lambda/alpha is 60.06422073082879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2722396581858551
the lambda is 20.0
the regulation term lambda/alpha is 73.4646823070363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30900863632978265
the lambda is 20.0
the regulation term lambda/alpha is 64.72311012904973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26486013794783325
the lambda is 20.0
the regulation term lambda/alpha is 75.51155170031359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.282903592858792
the lambda is 20.0
the regulation term lambda/alpha is 70.69546129795094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31705722000048153
the lambda is 20.0
the regulation term lambda/alpha is 63.0800963938611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2851041349671347
the lambda is 20.0
the regulation term lambda/alpha is 70.14980684971648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33974622971116186
the lambda is 20.0
the regulation term lambda/alpha is 58.8674671003801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26650851133643766
the lambda is 20.0
the regulation term lambda/alpha is 75.04450758329516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31539492798516416
the lambda is 20.0
the regulation term lambda/alpha is 63.41256065138999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2543569272192958
the lambda is 20.0
the regulation term lambda/alpha is 78.62966508774043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27965616123730325
the lambda is 20.0
the regulation term lambda/alpha is 71.51639324344772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3153426731795103
the lambda is 20.0
the regulation term lambda/alpha is 63.42306862038588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27504991427827835
the lambda is 20.0
the regulation term lambda/alpha is 72.71407465252015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28539693756124973
the lambda is 20.0
the regulation term lambda/alpha is 70.07783675221725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2992692944162516
the lambda is 20.0
the regulation term lambda/alpha is 66.8294421551385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32412005906334507
the lambda is 20.0
the regulation term lambda/alpha is 61.70552991319571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30801942147852907
the lambda is 20.0
the regulation term lambda/alpha is 64.93097059918388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27295901181556137
the lambda is 20.0
the regulation term lambda/alpha is 73.27107416960469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30049612803823617
the lambda is 20.0
the regulation term lambda/alpha is 66.55659801864445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3127673016633621
the lambda is 20.0
the regulation term lambda/alpha is 63.945303404914156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31319996216349794
the lambda is 20.0
the regulation term lambda/alpha is 63.856968123002254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32457241940855874
the lambda is 20.0
the regulation term lambda/alpha is 61.619530200515285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32725316576836627
the lambda is 20.0
the regulation term lambda/alpha is 61.11476401776428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3023377304246628
the lambda is 20.0
the regulation term lambda/alpha is 66.15118785177111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28350768630837336
the lambda is 20.0
the regulation term lambda/alpha is 70.54482458809196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29377617326451877
the lambda is 20.0
the regulation term lambda/alpha is 68.0790405081348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.312966811953754
the lambda is 20.0
the regulation term lambda/alpha is 63.90453951058341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.302688740683843
the lambda is 20.0
the regulation term lambda/alpha is 66.07447622536415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31925148172382195
the lambda is 20.0
the regulation term lambda/alpha is 62.64653774512971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26978177292609584
the lambda is 20.0
the regulation term lambda/alpha is 74.13399275672641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30635363073998967
the lambda is 20.0
the regulation term lambda/alpha is 65.28403124092407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3062352908483932
the lambda is 20.0
the regulation term lambda/alpha is 65.30925924504675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3046969875010578
the lambda is 20.0
the regulation term lambda/alpha is 65.6389817438893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30079096599071503
the lambda is 20.0
the regulation term lambda/alpha is 66.49135865542375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29047946152371756
the lambda is 20.0
the regulation term lambda/alpha is 68.85168367873405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32077332351881915
the lambda is 20.0
the regulation term lambda/alpha is 62.34932437836165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31778662613334224
the lambda is 20.0
the regulation term lambda/alpha is 62.935310536347316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29583102673481776
the lambda is 20.0
the regulation term lambda/alpha is 67.6061609248578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2960053680119726
the lambda is 20.0
the regulation term lambda/alpha is 67.56634224008754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3032515910220614
the lambda is 20.0
the regulation term lambda/alpha is 65.95183864524229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25266165550444236
the lambda is 20.0
the regulation term lambda/alpha is 79.15724275640375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28653298979088204
the lambda is 20.0
the regulation term lambda/alpha is 69.79999062096282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24562136359245446
the lambda is 20.0
the regulation term lambda/alpha is 81.42614187740143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2690126442121637
the lambda is 20.0
the regulation term lambda/alpha is 74.3459477846197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3177596663814616
the lambda is 20.0
the regulation term lambda/alpha is 62.940650170467386
1110
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30662500572841705
the lambda is 20.0
the regulation term lambda/alpha is 65.22625234849352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3231418036442873
the lambda is 20.0
the regulation term lambda/alpha is 61.89233263677605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27938194294672564
the lambda is 20.0
the regulation term lambda/alpha is 71.58658784119677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27266368318815637
the lambda is 20.0
the regulation term lambda/alpha is 73.3504358415002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2790027920609369
the lambda is 20.0
the regulation term lambda/alpha is 71.68387044539614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29207530596183306
the lambda is 20.0
the regulation term lambda/alpha is 68.47549105234353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2975597315773939
the lambda is 20.0
the regulation term lambda/alpha is 67.21339575747699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31250397563409116
the lambda is 20.0
the regulation term lambda/alpha is 63.9991858004964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2862796186668417
the lambda is 20.0
the regulation term lambda/alpha is 69.86176694358052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30539367323433314
the lambda is 20.0
the regulation term lambda/alpha is 65.48924143773503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32744565868515024
the lambda is 20.0
the regulation term lambda/alpha is 61.07883695972484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29374157972631804
the lambda is 20.0
the regulation term lambda/alpha is 68.08705808225788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30748371588739287
the lambda is 20.0
the regulation term lambda/alpha is 65.04409491175926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30469446525719446
the lambda is 20.0
the regulation term lambda/alpha is 65.63952509973517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2621133865890054
the lambda is 20.0
the regulation term lambda/alpha is 76.30285602833426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3153994468037012
the lambda is 20.0
the regulation term lambda/alpha is 63.411652121405375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3615190853848467
the lambda is 20.0
the regulation term lambda/alpha is 55.322113848317215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28031275809264644
the lambda is 20.0
the regulation term lambda/alpha is 71.3488752209765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33821814309611875
the lambda is 20.0
the regulation term lambda/alpha is 59.133433283371104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2805383360778187
the lambda is 20.0
the regulation term lambda/alpha is 71.29150432564121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3142861654055985
the lambda is 20.0
the regulation term lambda/alpha is 63.636272294038854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30573899052278336
the lambda is 20.0
the regulation term lambda/alpha is 65.4152745313968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.25373254963283
the lambda is 20.0
the regulation term lambda/alpha is 78.82315465217805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30233650134199275
the lambda is 20.0
the regulation term lambda/alpha is 66.15145677490221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28563896502863395
the lambda is 20.0
the regulation term lambda/alpha is 70.01845843404136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2915587068918639
the lambda is 20.0
the regulation term lambda/alpha is 68.5968195332194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33347702746494207
the lambda is 20.0
the regulation term lambda/alpha is 59.97414620142783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3083015513132073
the lambda is 20.0
the regulation term lambda/alpha is 64.87155161824586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32687031243266756
the lambda is 20.0
the regulation term lambda/alpha is 61.18634589710506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29370362936780625
the lambda is 20.0
the regulation term lambda/alpha is 68.09585582258474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2854074013316776
the lambda is 20.0
the regulation term lambda/alpha is 70.07526751822951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.322934649159064
the lambda is 20.0
the regulation term lambda/alpha is 61.93203501724227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.36071846397912
the lambda is 20.0
the regulation term lambda/alpha is 55.444902319049824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.2412582172775864
the lambda is 20.0
the regulation term lambda/alpha is 82.89873076939982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3092453596217437
the lambda is 20.0
the regulation term lambda/alpha is 64.6735654318732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3139043062506804
the lambda is 20.0
the regulation term lambda/alpha is 63.71368471775035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3117350586456364
the lambda is 20.0
the regulation term lambda/alpha is 64.15704440460424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28859482847177487
the lambda is 20.0
the regulation term lambda/alpha is 69.30131113543511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3481900347929327
the lambda is 20.0
the regulation term lambda/alpha is 57.43989776127259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28380944046054435
the lambda is 20.0
the regulation term lambda/alpha is 70.46981935324463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26968011504181083
the lambda is 20.0
the regulation term lambda/alpha is 74.16193810544478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29971078797339457
the lambda is 20.0
the regulation term lambda/alpha is 66.73099802391967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34952798457593404
the lambda is 20.0
the regulation term lambda/alpha is 57.2200249552695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27333430883724974
the lambda is 20.0
the regulation term lambda/alpha is 73.17047056799778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2830450562052948
the lambda is 20.0
the regulation term lambda/alpha is 70.6601283489433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3208542032404407
the lambda is 20.0
the regulation term lambda/alpha is 62.33360759501244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31847089127162315
the lambda is 20.0
the regulation term lambda/alpha is 62.800088008489425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27670652562290576
the lambda is 20.0
the regulation term lambda/alpha is 72.2787435351485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32473325436296124
the lambda is 20.0
the regulation term lambda/alpha is 61.58901107690553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3142636945858692
the lambda is 20.0
the regulation term lambda/alpha is 63.640822483028536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35950865235538315
the lambda is 20.0
the regulation term lambda/alpha is 55.63148444124095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29607048426816734
the lambda is 20.0
the regulation term lambda/alpha is 67.55148203792209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.278805388885933
the lambda is 20.0
the regulation term lambda/alpha is 71.7346249292999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30606460029343674
the lambda is 20.0
the regulation term lambda/alpha is 65.34568186201598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3261559179867482
the lambda is 20.0
the regulation term lambda/alpha is 61.32036519053015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29782568620170513
the lambda is 20.0
the regulation term lambda/alpha is 67.15337503312196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2621324202542891
the lambda is 20.0
the regulation term lambda/alpha is 76.29731561093597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.289935001814568
the lambda is 20.0
the regulation term lambda/alpha is 68.98097806346017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29256939433246454
the lambda is 20.0
the regulation term lambda/alpha is 68.35985030366086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.24777370681535058
the lambda is 20.0
the regulation term lambda/alpha is 80.71881499074752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2918473256409347
the lambda is 20.0
the regulation term lambda/alpha is 68.52898156965256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29193268526513694
the lambda is 20.0
the regulation term lambda/alpha is 68.50894404590478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2778568194922523
the lambda is 20.0
the regulation term lambda/alpha is 71.97951821570345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31855052906720244
the lambda is 20.0
the regulation term lambda/alpha is 62.78438795429135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2958473587672386
the lambda is 20.0
the regulation term lambda/alpha is 67.60242877725075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3088994912838215
the lambda is 20.0
the regulation term lambda/alpha is 64.74597907843008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29356989947322243
the lambda is 20.0
the regulation term lambda/alpha is 68.1268755273879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2909069601185223
the lambda is 20.0
the regulation term lambda/alpha is 68.75050356942829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2891796220799951
the lambda is 20.0
the regulation term lambda/alpha is 69.16116653084029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3102061090767836
the lambda is 20.0
the regulation term lambda/alpha is 64.47326282361999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2694371757685703
the lambda is 20.0
the regulation term lambda/alpha is 74.22880655926542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27509863388372685
the lambda is 20.0
the regulation term lambda/alpha is 72.70119708574488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2866773892916176
the lambda is 20.0
the regulation term lambda/alpha is 69.76483234140012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2648613132422699
the lambda is 20.0
the regulation term lambda/alpha is 75.51121662568329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29051804284154625
the lambda is 20.0
the regulation term lambda/alpha is 68.84254005149126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3094770122269387
the lambda is 20.0
the regulation term lambda/alpha is 64.6251553744937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31289386853759776
the lambda is 20.0
the regulation term lambda/alpha is 63.91943726310755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2946430716946854
the lambda is 20.0
the regulation term lambda/alpha is 67.87873845112628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27205044542658186
the lambda is 20.0
the regulation term lambda/alpha is 73.51577744575827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2701611873232698
the lambda is 20.0
the regulation term lambda/alpha is 74.0298789702474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29330566621596266
the lambda is 20.0
the regulation term lambda/alpha is 68.18824967831983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2854629523001791
the lambda is 20.0
the regulation term lambda/alpha is 70.0616309011229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3040371516011115
the lambda is 20.0
the regulation term lambda/alpha is 65.78143458678187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29066066323963263
the lambda is 20.0
the regulation term lambda/alpha is 68.80876062513893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2766778716120473
the lambda is 20.0
the regulation term lambda/alpha is 72.28622904850026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27655932181391085
the lambda is 20.0
the regulation term lambda/alpha is 72.31721523188233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29654544233928826
the lambda is 20.0
the regulation term lambda/alpha is 67.4432891034531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2948532855101097
the lambda is 20.0
the regulation term lambda/alpha is 67.83034472686673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2795370796940519
the lambda is 20.0
the regulation term lambda/alpha is 71.54685890648076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28779200281347755
the lambda is 20.0
the regulation term lambda/alpha is 69.49463433479181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33105004195506954
the lambda is 20.0
the regulation term lambda/alpha is 60.4138271117163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3443939180537104
the lambda is 20.0
the regulation term lambda/alpha is 58.0730348347234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29823505909843984
the lambda is 20.0
the regulation term lambda/alpha is 67.06119683064662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3307163367346189
the lambda is 20.0
the regulation term lambda/alpha is 60.47478693515181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2896861689259228
the lambda is 20.0
the regulation term lambda/alpha is 69.04023093043944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2942211729994883
the lambda is 20.0
the regulation term lambda/alpha is 67.97607322446092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2882333223749961
the lambda is 20.0
the regulation term lambda/alpha is 69.38822976886651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29453216198810583
the lambda is 20.0
the regulation term lambda/alpha is 67.90429902459232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.281428942493092
the lambda is 20.0
the regulation term lambda/alpha is 71.06589614709198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3197332535665353
the lambda is 20.0
the regulation term lambda/alpha is 62.552142377765136
1120
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28245107316236867
the lambda is 20.0
the regulation term lambda/alpha is 70.80872370593856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2780746843198524
the lambda is 20.0
the regulation term lambda/alpha is 71.92312399425478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2965024832246552
the lambda is 20.0
the regulation term lambda/alpha is 67.45306070454161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2764940762525384
the lambda is 20.0
the regulation term lambda/alpha is 72.33428025319724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.285128742879067
the lambda is 20.0
the regulation term lambda/alpha is 70.14375260119846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29056757586875603
the lambda is 20.0
the regulation term lambda/alpha is 68.83080447019191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32300796045737784
the lambda is 20.0
the regulation term lambda/alpha is 61.91797865191956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3029456801444003
the lambda is 20.0
the regulation term lambda/alpha is 66.01843601290804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2999222398601559
the lambda is 20.0
the regulation term lambda/alpha is 66.68395117789649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2646395771866778
the lambda is 20.0
the regulation term lambda/alpha is 75.57448592011588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2990092619827923
the lambda is 20.0
the regulation term lambda/alpha is 66.88756016243731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29104779710441747
the lambda is 20.0
the regulation term lambda/alpha is 68.71723544715482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2773879742307903
the lambda is 20.0
the regulation term lambda/alpha is 72.10117906322697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27056076900622794
the lambda is 20.0
the regulation term lambda/alpha is 73.92054684594582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29648789157834093
the lambda is 20.0
the regulation term lambda/alpha is 67.45638040572528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27840955707770454
the lambda is 20.0
the regulation term lambda/alpha is 71.83661441053896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27431900912099605
the lambda is 20.0
the regulation term lambda/alpha is 72.90781657489308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2977678447511581
the lambda is 20.0
the regulation term lambda/alpha is 67.16641958675498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3558279151272346
the lambda is 20.0
the regulation term lambda/alpha is 56.20694484537148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.338462819299869
the lambda is 20.0
the regulation term lambda/alpha is 59.090685474319514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3042066779001883
the lambda is 20.0
the regulation term lambda/alpha is 65.74477634104436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32608046547824815
the lambda is 20.0
the regulation term lambda/alpha is 61.3345542507947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.293065509013689
the lambda is 20.0
the regulation term lambda/alpha is 68.24412762631104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31358029017086325
the lambda is 20.0
the regulation term lambda/alpha is 63.779518760896686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29079764731379143
the lambda is 20.0
the regulation term lambda/alpha is 68.77634734925682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2969511589868099
the lambda is 20.0
the regulation term lambda/alpha is 67.35114309113833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28669709311773883
the lambda is 20.0
the regulation term lambda/alpha is 69.76003761498389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31931715011085066
the lambda is 20.0
the regulation term lambda/alpha is 62.633654324727054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34150814111122124
the lambda is 20.0
the regulation term lambda/alpha is 58.56375761620999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.268689839867013
the lambda is 20.0
the regulation term lambda/alpha is 74.435267109091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3129704627723241
the lambda is 20.0
the regulation term lambda/alpha is 63.90379406042977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30619943801082117
the lambda is 20.0
the regulation term lambda/alpha is 65.31690629456085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3158693289362413
the lambda is 20.0
the regulation term lambda/alpha is 63.317321967771775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2846661758292147
the lambda is 20.0
the regulation term lambda/alpha is 70.25773238334781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33288963483759876
the lambda is 20.0
the regulation term lambda/alpha is 60.07997217983991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2853446969808476
the lambda is 20.0
the regulation term lambda/alpha is 70.09066652233038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2839676393529616
the lambda is 20.0
the regulation term lambda/alpha is 70.43056048770654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26586654180378755
the lambda is 20.0
the regulation term lambda/alpha is 75.22571236045272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2900438623225675
the lambda is 20.0
the regulation term lambda/alpha is 68.95508782653476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2785918761765833
the lambda is 20.0
the regulation term lambda/alpha is 71.7896023189246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31140520670251304
the lambda is 20.0
the regulation term lambda/alpha is 64.2250019252443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3034794688365331
the lambda is 20.0
the regulation term lambda/alpha is 65.90231647852544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.293846101560561
the lambda is 20.0
the regulation term lambda/alpha is 68.06283933591014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2923117722806293
the lambda is 20.0
the regulation term lambda/alpha is 68.42009763739284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2902400343141041
the lambda is 20.0
the regulation term lambda/alpha is 68.90848137909039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29641474439195137
the lambda is 20.0
the regulation term lambda/alpha is 67.47302682606724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27420464898564473
the lambda is 20.0
the regulation term lambda/alpha is 72.9382236004578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3072426856179707
the lambda is 20.0
the regulation term lambda/alpha is 65.09512166180009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3255018553800841
the lambda is 20.0
the regulation term lambda/alpha is 61.44358217757706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28767604972583677
the lambda is 20.0
the regulation term lambda/alpha is 69.52264541681713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3275784226152505
the lambda is 20.0
the regulation term lambda/alpha is 61.05408237920032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3013161485406231
the lambda is 20.0
the regulation term lambda/alpha is 66.37546675432705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2848950040007317
the lambda is 20.0
the regulation term lambda/alpha is 70.20130124833159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3074939839713018
the lambda is 20.0
the regulation term lambda/alpha is 65.04192290756032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2880611248596641
the lambda is 20.0
the regulation term lambda/alpha is 69.4297087458208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28974801253020227
the lambda is 20.0
the regulation term lambda/alpha is 69.02549503394876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27957082682201473
the lambda is 20.0
the regulation term lambda/alpha is 71.53822245098824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2912144289958825
the lambda is 20.0
the regulation term lambda/alpha is 68.67791568213394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2781083048874129
the lambda is 20.0
the regulation term lambda/alpha is 71.9144291936792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2868205501425117
the lambda is 20.0
the regulation term lambda/alpha is 69.73001059395033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2826361528866613
the lambda is 20.0
the regulation term lambda/alpha is 70.76235575574125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3111130639101692
the lambda is 20.0
the regulation term lambda/alpha is 64.2853107761968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2964385645419139
the lambda is 20.0
the regulation term lambda/alpha is 67.46760506989355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31962890523105797
the lambda is 20.0
the regulation term lambda/alpha is 62.57256359696915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.26412205004370454
the lambda is 20.0
the regulation term lambda/alpha is 75.72256839855127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29312581398946536
the lambda is 20.0
the regulation term lambda/alpha is 68.23008771489084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2727230563443367
the lambda is 20.0
the regulation term lambda/alpha is 73.33446708938408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3066702030459125
the lambda is 20.0
the regulation term lambda/alpha is 65.2166392474907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31569793649272343
the lambda is 20.0
the regulation term lambda/alpha is 63.3516969486463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30626847940860313
the lambda is 20.0
the regulation term lambda/alpha is 65.30218205484125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27548485323549016
the lambda is 20.0
the regulation term lambda/alpha is 72.59927275531038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.325854671031331
the lambda is 20.0
the regulation term lambda/alpha is 61.37705479777209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30196866351355933
the lambda is 20.0
the regulation term lambda/alpha is 66.23203801112938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3326104670781181
the lambda is 20.0
the regulation term lambda/alpha is 60.130398708416855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29860872274977596
the lambda is 20.0
the regulation term lambda/alpha is 66.9772798859574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2746530960043311
the lambda is 20.0
the regulation term lambda/alpha is 72.81913181013118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2644491361223622
the lambda is 20.0
the regulation term lambda/alpha is 75.6289103200015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29634659335583297
the lambda is 20.0
the regulation term lambda/alpha is 67.48854364586992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29886471074339865
the lambda is 20.0
the regulation term lambda/alpha is 66.91991152201217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2699789986406852
the lambda is 20.0
the regulation term lambda/alpha is 74.07983621206768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2928320595657608
the lambda is 20.0
the regulation term lambda/alpha is 68.29853271413621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2971829003655732
the lambda is 20.0
the regulation term lambda/alpha is 67.2986230883319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27570818258396146
the lambda is 20.0
the regulation term lambda/alpha is 72.54046583804018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29028622404087034
the lambda is 20.0
the regulation term lambda/alpha is 68.89751680804575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31858242018902877
the lambda is 20.0
the regulation term lambda/alpha is 62.7781030357329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2867671774906147
the lambda is 20.0
the regulation term lambda/alpha is 69.74298863284156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25230630078785016
the lambda is 20.0
the regulation term lambda/alpha is 79.26872986345612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27830606775020356
the lambda is 20.0
the regulation term lambda/alpha is 71.86332716953625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.316832523913675
the lambda is 20.0
the regulation term lambda/alpha is 63.12483249178437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3113666144036063
the lambda is 20.0
the regulation term lambda/alpha is 64.23296228565845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30864835268346213
the lambda is 20.0
the regulation term lambda/alpha is 64.79866108506735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2784290841704279
the lambda is 20.0
the regulation term lambda/alpha is 71.83157628661343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32536094174880115
the lambda is 20.0
the regulation term lambda/alpha is 61.47019335664833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2958881281458158
the lambda is 20.0
the regulation term lambda/alpha is 67.59311407770932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3407248968666597
the lambda is 20.0
the regulation term lambda/alpha is 58.698381550400356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29721037142174794
the lambda is 20.0
the regulation term lambda/alpha is 67.2924026988936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30442209080196986
the lambda is 20.0
the regulation term lambda/alpha is 65.69825451008492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28132993014090846
the lambda is 20.0
the regulation term lambda/alpha is 71.09090735558314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27393532819634897
the lambda is 20.0
the regulation term lambda/alpha is 73.00993315350905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28293814186682176
the lambda is 20.0
the regulation term lambda/alpha is 70.68682881721175
1130
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27930555871009927
the lambda is 20.0
the regulation term lambda/alpha is 71.60616527778697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2879690761903771
the lambda is 20.0
the regulation term lambda/alpha is 69.45190179648995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3034450392199483
the lambda is 20.0
the regulation term lambda/alpha is 65.90979391659539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3266364182508678
the lambda is 20.0
the regulation term lambda/alpha is 61.23015953670948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27644029298039197
the lambda is 20.0
the regulation term lambda/alpha is 72.34835336185456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28098164536445064
the lambda is 20.0
the regulation term lambda/alpha is 71.1790265661615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30192926438009093
the lambda is 20.0
the regulation term lambda/alpha is 66.24068071395199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28924203365023016
the lambda is 20.0
the regulation term lambda/alpha is 69.14624319155932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.319762435534129
the lambda is 20.0
the regulation term lambda/alpha is 62.54643378166712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2957490826704059
the lambda is 20.0
the regulation term lambda/alpha is 67.62489276184422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3050647296030835
the lambda is 20.0
the regulation term lambda/alpha is 65.55985684094581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29444595974041676
the lambda is 20.0
the regulation term lambda/alpha is 67.9241787444867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2715359692763825
the lambda is 20.0
the regulation term lambda/alpha is 73.65506696331279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29921188775166185
the lambda is 20.0
the regulation term lambda/alpha is 66.84226402327799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30799902378287825
the lambda is 20.0
the regulation term lambda/alpha is 64.93527074975036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29490130561385364
the lambda is 20.0
the regulation term lambda/alpha is 67.81929960726649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2845502508896599
the lambda is 20.0
the regulation term lambda/alpha is 70.28635517793096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3208917656939434
the lambda is 20.0
the regulation term lambda/alpha is 62.32631104369122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2630705194753857
the lambda is 20.0
the regulation term lambda/alpha is 76.02524235662716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2940462727190929
the lambda is 20.0
the regulation term lambda/alpha is 68.01650575284224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3111387564984484
the lambda is 20.0
the regulation term lambda/alpha is 64.28000235354716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3046297957097883
the lambda is 20.0
the regulation term lambda/alpha is 65.65345964730712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27960957221909727
the lambda is 20.0
the regulation term lambda/alpha is 71.52830942543105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3086903218936319
the lambda is 20.0
the regulation term lambda/alpha is 64.78985112753737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31389633105406917
the lambda is 20.0
the regulation term lambda/alpha is 63.715303497940425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30282647669859614
the lambda is 20.0
the regulation term lambda/alpha is 66.04442325532204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2695098171059318
the lambda is 20.0
the regulation term lambda/alpha is 74.20879957088512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2774054828046722
the lambda is 20.0
the regulation term lambda/alpha is 72.09662836434447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2527226315852948
the lambda is 20.0
the regulation term lambda/alpha is 79.13814395862654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31775147824263594
the lambda is 20.0
the regulation term lambda/alpha is 62.942272088276304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2780043101991212
the lambda is 20.0
the regulation term lambda/alpha is 71.94133064222981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.280667154400432
the lambda is 20.0
the regulation term lambda/alpha is 71.25878353213253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2803147996516894
the lambda is 20.0
the regulation term lambda/alpha is 71.34835558040956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3318527358162124
the lambda is 20.0
the regulation term lambda/alpha is 60.267696605871755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29889357200920125
the lambda is 20.0
the regulation term lambda/alpha is 66.91344971240905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2887304702963914
the lambda is 20.0
the regulation term lambda/alpha is 69.2687542796205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3152095049412886
the lambda is 20.0
the regulation term lambda/alpha is 63.449863301949705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3192327808829915
the lambda is 20.0
the regulation term lambda/alpha is 62.65020761552244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2855844619497324
the lambda is 20.0
the regulation term lambda/alpha is 70.03182128137045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3222588817454712
the lambda is 20.0
the regulation term lambda/alpha is 62.06190467636682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2746956065654521
the lambda is 20.0
the regulation term lambda/alpha is 72.80786267411442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30408304678592496
the lambda is 20.0
the regulation term lambda/alpha is 65.77150620988101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3011685123115103
the lambda is 20.0
the regulation term lambda/alpha is 66.40800476283928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3172545642244241
the lambda is 20.0
the regulation term lambda/alpha is 63.04085821079665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2630310208583834
the lambda is 20.0
the regulation term lambda/alpha is 76.03665885009073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2858526939486656
the lambda is 20.0
the regulation term lambda/alpha is 69.96610640161282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2599676935132704
the lambda is 20.0
the regulation term lambda/alpha is 76.93263624304561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30384348543321715
the lambda is 20.0
the regulation term lambda/alpha is 65.82336287870115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2668001743075848
the lambda is 20.0
the regulation term lambda/alpha is 74.96246976564072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2994186242173802
the lambda is 20.0
the regulation term lambda/alpha is 66.79611213990432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2979699423001983
the lambda is 20.0
the regulation term lambda/alpha is 67.12086408987666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2977865420681925
the lambda is 20.0
the regulation term lambda/alpha is 67.16220236514262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31326290812209334
the lambda is 20.0
the regulation term lambda/alpha is 63.84413692605144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2999800270867368
the lambda is 20.0
the regulation term lambda/alpha is 66.67110538735021
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26387233941427063
the lambda is 20.0
the regulation term lambda/alpha is 75.79422702809588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3387708709049188
the lambda is 20.0
the regulation term lambda/alpha is 59.03695304905156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3115781424634826
the lambda is 20.0
the regulation term lambda/alpha is 64.18935501017704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2563436024873216
the lambda is 20.0
the regulation term lambda/alpha is 78.02028139551162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3086260334825867
the lambda is 20.0
the regulation term lambda/alpha is 64.80334719115146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27400286650461925
the lambda is 20.0
the regulation term lambda/alpha is 72.99193711049308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2947088701218208
the lambda is 20.0
the regulation term lambda/alpha is 67.86358344671746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2848811901942721
the lambda is 20.0
the regulation term lambda/alpha is 70.20470528911082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31001499289085127
the lambda is 20.0
the regulation term lambda/alpha is 64.51300891451244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29093470217065265
the lambda is 20.0
the regulation term lambda/alpha is 68.74394787139784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.279187499030709
the lambda is 20.0
the regulation term lambda/alpha is 71.63644529012424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3157777540638385
the lambda is 20.0
the regulation term lambda/alpha is 63.33568385554083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28876032128189505
the lambda is 20.0
the regulation term lambda/alpha is 69.26159352924219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34006377420970857
the lambda is 20.0
the regulation term lambda/alpha is 58.81249788066669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3189609084014441
the lambda is 20.0
the regulation term lambda/alpha is 62.703608728214455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31094502308546296
the lambda is 20.0
the regulation term lambda/alpha is 64.32005182634173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30334320432861567
the lambda is 20.0
the regulation term lambda/alpha is 65.93192039447746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29317236310557454
the lambda is 20.0
the regulation term lambda/alpha is 68.21925432581715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2558595195320265
the lambda is 20.0
the regulation term lambda/alpha is 78.16789477515044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2885355531262696
the lambda is 20.0
the regulation term lambda/alpha is 69.31554806089201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26471473989129496
the lambda is 20.0
the regulation term lambda/alpha is 75.55302741438952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2563607962120588
the lambda is 20.0
the regulation term lambda/alpha is 78.01504869510633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29120699101134756
the lambda is 20.0
the regulation term lambda/alpha is 68.67966984769488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3303316946782453
the lambda is 20.0
the regulation term lambda/alpha is 60.545204478427976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27837461887966325
the lambda is 20.0
the regulation term lambda/alpha is 71.84563046908264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.313050499095385
the lambda is 20.0
the regulation term lambda/alpha is 63.88745604237511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25771238887809045
the lambda is 20.0
the regulation term lambda/alpha is 77.60589270491339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29626887044137934
the lambda is 20.0
the regulation term lambda/alpha is 67.50624853095142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28736644449263793
the lambda is 20.0
the regulation term lambda/alpha is 69.59754829869283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2906918946716739
the lambda is 20.0
the regulation term lambda/alpha is 68.80136793146326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31954992228277007
the lambda is 20.0
the regulation term lambda/alpha is 62.58802961717505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27899457827821633
the lambda is 20.0
the regulation term lambda/alpha is 71.68598086539083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2399228504274203
the lambda is 20.0
the regulation term lambda/alpha is 83.36012999332989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3190087753671661
the lambda is 20.0
the regulation term lambda/alpha is 62.69420011089292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30889037225781
the lambda is 20.0
the regulation term lambda/alpha is 64.74789050177111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3120336890198447
the lambda is 20.0
the regulation term lambda/alpha is 64.09564320706423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29793394722348415
the lambda is 20.0
the regulation term lambda/alpha is 67.12897333917353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34306162251031763
the lambda is 20.0
the regulation term lambda/alpha is 58.29856412866029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31183689193663844
the lambda is 20.0
the regulation term lambda/alpha is 64.1360933140129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26154563324832897
the lambda is 20.0
the regulation term lambda/alpha is 76.4684913741636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3061500674385633
the lambda is 20.0
the regulation term lambda/alpha is 65.3274394721912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3017707509913765
the lambda is 20.0
the regulation term lambda/alpha is 66.27547545378752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2916781445675114
the lambda is 20.0
the regulation term lambda/alpha is 68.56873019970418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2967276813130388
the lambda is 20.0
the regulation term lambda/alpha is 67.40186797368797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28971334162361834
the lambda is 20.0
the regulation term lambda/alpha is 69.03375553198734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3627156325201748
the lambda is 20.0
the regulation term lambda/alpha is 55.139614085664114
1140
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3258094447359628
the lambda is 20.0
the regulation term lambda/alpha is 61.385574676044385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2900311206290494
the lambda is 20.0
the regulation term lambda/alpha is 68.95811717246735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28836822238572735
the lambda is 20.0
the regulation term lambda/alpha is 69.3557696286229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2876675686374479
the lambda is 20.0
the regulation term lambda/alpha is 69.52469510112321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26704313422544496
the lambda is 20.0
the regulation term lambda/alpha is 74.89426776692737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.311459872671009
the lambda is 20.0
the regulation term lambda/alpha is 64.21372945569055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2899137673246284
the lambda is 20.0
the regulation term lambda/alpha is 68.98603051715435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26116233689106827
the lambda is 20.0
the regulation term lambda/alpha is 76.58072078112117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2939329140331119
the lambda is 20.0
the regulation term lambda/alpha is 68.04273711839899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32254455020385475
the lambda is 20.0
the regulation term lambda/alpha is 62.00693822716766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30903789902668866
the lambda is 20.0
the regulation term lambda/alpha is 64.71698151906213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29968234626566664
the lambda is 20.0
the regulation term lambda/alpha is 66.73733120825915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3064375975216385
the lambda is 20.0
the regulation term lambda/alpha is 65.26614280281889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3039250338157561
the lambda is 20.0
the regulation term lambda/alpha is 65.80570132345301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29612701844147554
the lambda is 20.0
the regulation term lambda/alpha is 67.53858565577886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2743862726613378
the lambda is 20.0
the regulation term lambda/alpha is 72.88994382268193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.259043149304907
the lambda is 20.0
the regulation term lambda/alpha is 77.20721452648408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2884972036652236
the lambda is 20.0
the regulation term lambda/alpha is 69.32476206323405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3398845546298139
the lambda is 20.0
the regulation term lambda/alpha is 58.843509443325694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2880073479162797
the lambda is 20.0
the regulation term lambda/alpha is 69.4426727119954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2908640063312466
the lambda is 20.0
the regulation term lambda/alpha is 68.76065640525925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27101876489568655
the lambda is 20.0
the regulation term lambda/alpha is 73.79562816507513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2836039989966529
the lambda is 20.0
the regulation term lambda/alpha is 70.52086737407409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27055776246155067
the lambda is 20.0
the regulation term lambda/alpha is 73.92136828024746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30420231393502295
the lambda is 20.0
the regulation term lambda/alpha is 65.7457194894052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2782016976161615
the lambda is 20.0
the regulation term lambda/alpha is 71.89028741152494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32811165975491
the lambda is 20.0
the regulation term lambda/alpha is 60.95485913222171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.327605230688888
the lambda is 20.0
the regulation term lambda/alpha is 61.04908629799352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31065893015532875
the lambda is 20.0
the regulation term lambda/alpha is 64.37928563650189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30827857851678653
the lambda is 20.0
the regulation term lambda/alpha is 64.8763858203367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2999770890451752
the lambda is 20.0
the regulation term lambda/alpha is 66.67175837881435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2866666862451886
the lambda is 20.0
the regulation term lambda/alpha is 69.76743709554664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28948219445779333
the lambda is 20.0
the regulation term lambda/alpha is 69.08887794449828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28113874224178126
the lambda is 20.0
the regulation term lambda/alpha is 71.1392526000556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29673814562508216
the lambda is 20.0
the regulation term lambda/alpha is 67.39949108285279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3283824379086244
the lambda is 20.0
the regulation term lambda/alpha is 60.9045968699617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29775056045430764
the lambda is 20.0
the regulation term lambda/alpha is 67.17031856962421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28513995121606506
the lambda is 20.0
the regulation term lambda/alpha is 70.14099537684561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28566334733935217
the lambda is 20.0
the regulation term lambda/alpha is 70.01248212722619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28898822196223845
the lambda is 20.0
the regulation term lambda/alpha is 69.20697274165506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33354173589853864
the lambda is 20.0
the regulation term lambda/alpha is 59.96251097668892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25813179620951865
the lambda is 20.0
the regulation term lambda/alpha is 77.47980021712063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2922600099255881
the lambda is 20.0
the regulation term lambda/alpha is 68.43221556412104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2795919445347365
the lambda is 20.0
the regulation term lambda/alpha is 71.53281913497761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2798344387081053
the lambda is 20.0
the regulation term lambda/alpha is 71.47083143994995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26851610575160634
the lambda is 20.0
the regulation term lambda/alpha is 74.48342788980119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2765796921903436
the lambda is 20.0
the regulation term lambda/alpha is 72.31188899521912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32609640055587497
the lambda is 20.0
the regulation term lambda/alpha is 61.3315570668898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3056451492712796
the lambda is 20.0
the regulation term lambda/alpha is 65.4353587736762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3091453389253617
the lambda is 20.0
the regulation term lambda/alpha is 64.69448987820155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27727455807754053
the lambda is 20.0
the regulation term lambda/alpha is 72.13067126918637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30918499559509083
the lambda is 20.0
the regulation term lambda/alpha is 64.68619203692546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32948016445240985
the lambda is 20.0
the regulation term lambda/alpha is 60.701681490415794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2810076842530199
the lambda is 20.0
the regulation term lambda/alpha is 71.17243093605923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32501200221190457
the lambda is 20.0
the regulation term lambda/alpha is 61.536189014214315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31960061215516533
the lambda is 20.0
the regulation term lambda/alpha is 62.57810291768167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26033281702339206
the lambda is 20.0
the regulation term lambda/alpha is 76.824736230634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32529345222667866
the lambda is 20.0
the regulation term lambda/alpha is 61.482946745768274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34177774931902144
the lambda is 20.0
the regulation term lambda/alpha is 58.51756013915243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3001561052568659
the lambda is 20.0
the regulation term lambda/alpha is 66.63199465119828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2983566418903174
the lambda is 20.0
the regulation term lambda/alpha is 67.03386883993838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3132450216339587
the lambda is 20.0
the regulation term lambda/alpha is 63.847782466502935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3434247194730334
the lambda is 20.0
the regulation term lambda/alpha is 58.23692607418859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28223099678113445
the lambda is 20.0
the regulation term lambda/alpha is 70.86393850463446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3018730318292241
the lambda is 20.0
the regulation term lambda/alpha is 66.25301994950784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3188387739749086
the lambda is 20.0
the regulation term lambda/alpha is 62.727627981576425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2704797468273942
the lambda is 20.0
the regulation term lambda/alpha is 73.94268973773825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29956783334722065
the lambda is 20.0
the regulation term lambda/alpha is 66.76284224687957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.274174026711498
the lambda is 20.0
the regulation term lambda/alpha is 72.94637001135477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30304374495997294
the lambda is 20.0
the regulation term lambda/alpha is 65.99707247757802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2958326771577773
the lambda is 20.0
the regulation term lambda/alpha is 67.60578375638113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30011007388079797
the lambda is 20.0
the regulation term lambda/alpha is 66.64221477598213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3089112343486679
the lambda is 20.0
the regulation term lambda/alpha is 64.74351780105872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29260225145052843
the lambda is 20.0
the regulation term lambda/alpha is 68.35217398654054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.282304681751729
the lambda is 20.0
the regulation term lambda/alpha is 70.84544215100502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32560310508025125
the lambda is 20.0
the regulation term lambda/alpha is 61.42447565133204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33529940253706375
the lambda is 20.0
the regulation term lambda/alpha is 59.64818263518741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31504070054284444
the lambda is 20.0
the regulation term lambda/alpha is 63.4838608647649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3060055105571505
the lambda is 20.0
the regulation term lambda/alpha is 65.35830012860093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3141548979664752
the lambda is 20.0
the regulation term lambda/alpha is 63.66286226781759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3516051371799024
the lambda is 20.0
the regulation term lambda/alpha is 56.881990292897214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3029347798125281
the lambda is 20.0
the regulation term lambda/alpha is 66.02081151717557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.288850315679712
the lambda is 20.0
the regulation term lambda/alpha is 69.24001434077277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3060786017387117
the lambda is 20.0
the regulation term lambda/alpha is 65.34269264949558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26120283623239426
the lambda is 20.0
the regulation term lambda/alpha is 76.56884698681388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.321653923409087
the lambda is 20.0
the regulation term lambda/alpha is 62.1786290931186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2955205639529861
the lambda is 20.0
the regulation term lambda/alpha is 67.67718541299809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32876118990866315
the lambda is 20.0
the regulation term lambda/alpha is 60.834431234284146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2849191466515147
the lambda is 20.0
the regulation term lambda/alpha is 70.19535273444451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.306492342824993
the lambda is 20.0
the regulation term lambda/alpha is 65.25448504082202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29770485691041937
the lambda is 20.0
the regulation term lambda/alpha is 67.18063053307216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3159432872533589
the lambda is 20.0
the regulation term lambda/alpha is 63.302500185616374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2941714828732586
the lambda is 20.0
the regulation term lambda/alpha is 67.98755543757733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2954565001310922
the lambda is 20.0
the regulation term lambda/alpha is 67.69185985458476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3044078389421955
the lambda is 20.0
the regulation term lambda/alpha is 65.70133039115932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32728920720934707
the lambda is 20.0
the regulation term lambda/alpha is 61.10803399394473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28279829888641594
the lambda is 20.0
the regulation term lambda/alpha is 70.72178325949855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27795350542883307
the lambda is 20.0
the regulation term lambda/alpha is 71.95448018956817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2835387608525035
the lambda is 20.0
the regulation term lambda/alpha is 70.5370931997688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27026840256056406
the lambda is 20.0
the regulation term lambda/alpha is 74.00051138245148
1150
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.288811522303203
the lambda is 20.0
the regulation term lambda/alpha is 69.2493147105239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3082238433975777
the lambda is 20.0
the regulation term lambda/alpha is 64.88790672239466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2743753263512881
the lambda is 20.0
the regulation term lambda/alpha is 72.89285179525804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25307923102094565
the lambda is 20.0
the regulation term lambda/alpha is 79.02663493688559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27450757735647463
the lambda is 20.0
the regulation term lambda/alpha is 72.8577338104881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28532713066760274
the lambda is 20.0
the regulation term lambda/alpha is 70.09498169068044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.27488477243789117
the lambda is 20.0
the regulation term lambda/alpha is 72.75775890612093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2867658795154298
the lambda is 20.0
the regulation term lambda/alpha is 69.74330430731692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3191094750636704
the lambda is 20.0
the regulation term lambda/alpha is 62.674416032333404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3098823929072603
the lambda is 20.0
the regulation term lambda/alpha is 64.54061430326401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27354271128774715
the lambda is 20.0
the regulation term lambda/alpha is 73.11472459217327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2862649690663183
the lambda is 20.0
the regulation term lambda/alpha is 69.86534211724191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31423088922708586
the lambda is 20.0
the regulation term lambda/alpha is 63.64746651481026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2668113969575979
the lambda is 20.0
the regulation term lambda/alpha is 74.95931668608006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3075734615396185
the lambda is 20.0
the regulation term lambda/alpha is 65.02511595079149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2872532065042041
the lambda is 20.0
the regulation term lambda/alpha is 69.62498432443883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29796501375143475
the lambda is 20.0
the regulation term lambda/alpha is 67.12197431569665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30918091705516293
the lambda is 20.0
the regulation term lambda/alpha is 64.68704534061419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30094173606867486
the lambda is 20.0
the regulation term lambda/alpha is 66.45804686737104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.303392909761638
the lambda is 20.0
the regulation term lambda/alpha is 65.921118643521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2879030060257169
the lambda is 20.0
the regulation term lambda/alpha is 69.46784014548811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3107952031563467
the lambda is 20.0
the regulation term lambda/alpha is 64.35105753527002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3207704244449229
the lambda is 20.0
the regulation term lambda/alpha is 62.349887881992224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2849590992625018
the lambda is 20.0
the regulation term lambda/alpha is 70.18551101460416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3009698325944427
the lambda is 20.0
the regulation term lambda/alpha is 66.45184278967264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2753438556581559
the lambda is 20.0
the regulation term lambda/alpha is 72.63644925794291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26159205667280755
the lambda is 20.0
the regulation term lambda/alpha is 76.45492089622383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29573589957947455
the lambda is 20.0
the regulation term lambda/alpha is 67.62790729309243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3112390616908824
the lambda is 20.0
the regulation term lambda/alpha is 64.25928638694997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3345543173779955
the lambda is 20.0
the regulation term lambda/alpha is 59.78102496702513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3199830830603163
the lambda is 20.0
the regulation term lambda/alpha is 62.50330426446335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26695194039009557
the lambda is 20.0
the regulation term lambda/alpha is 74.91985250518913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27898394916151215
the lambda is 20.0
the regulation term lambda/alpha is 71.68871205712772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3068437860740778
the lambda is 20.0
the regulation term lambda/alpha is 65.17974587620174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2862328725010443
the lambda is 20.0
the regulation term lambda/alpha is 69.87317642884302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2980908318151692
the lambda is 20.0
the regulation term lambda/alpha is 67.09364349857285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2828683773636784
the lambda is 20.0
the regulation term lambda/alpha is 70.70426247853922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27638130500403835
the lambda is 20.0
the regulation term lambda/alpha is 72.36379464851203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3140061521979853
the lambda is 20.0
the regulation term lambda/alpha is 63.69301957940531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2932328129909555
the lambda is 20.0
the regulation term lambda/alpha is 68.20519094026794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3081973682095964
the lambda is 20.0
the regulation term lambda/alpha is 64.89348081129154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32492518556032385
the lambda is 20.0
the regulation term lambda/alpha is 61.55263084796149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3130048141367363
the lambda is 20.0
the regulation term lambda/alpha is 63.896780805623614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31341321958091783
the lambda is 20.0
the regulation term lambda/alpha is 63.81351758787682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2971071074325307
the lambda is 20.0
the regulation term lambda/alpha is 67.31579117319416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30681026901325054
the lambda is 20.0
the regulation term lambda/alpha is 65.18686634682439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3191516098000141
the lambda is 20.0
the regulation term lambda/alpha is 62.66614168899961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31475322749996765
the lambda is 20.0
the regulation term lambda/alpha is 63.54184247404439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.301977830101046
the lambda is 20.0
the regulation term lambda/alpha is 66.23002752654962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3138716401687892
the lambda is 20.0
the regulation term lambda/alpha is 63.72031569734908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2914418587978984
the lambda is 20.0
the regulation term lambda/alpha is 68.62432212892618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.292367331819701
the lambda is 20.0
the regulation term lambda/alpha is 68.40709553806693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26967404151743835
the lambda is 20.0
the regulation term lambda/alpha is 74.16360836015694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28864785901979656
the lambda is 20.0
the regulation term lambda/alpha is 69.28857905933168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32424915559513967
the lambda is 20.0
the regulation term lambda/alpha is 61.68096247865692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2985498948411787
the lambda is 20.0
the regulation term lambda/alpha is 66.99047745650526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26065200675996436
the lambda is 20.0
the regulation term lambda/alpha is 76.73065804714135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34835050357441943
the lambda is 20.0
the regulation term lambda/alpha is 57.41343788735854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2738388091066309
the lambda is 20.0
the regulation term lambda/alpha is 73.03566673127088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2689300780648917
the lambda is 20.0
the regulation term lambda/alpha is 74.36877326594194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3194073840608485
the lambda is 20.0
the regulation term lambda/alpha is 62.61596004990891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.296186122421551
the lambda is 20.0
the regulation term lambda/alpha is 67.52510832203922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3217902117889871
the lambda is 20.0
the regulation term lambda/alpha is 62.15229446790922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2733038253070168
the lambda is 20.0
the regulation term lambda/alpha is 73.17863179387604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2893479235863349
the lambda is 20.0
the regulation term lambda/alpha is 69.1209383917782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32063487994596485
the lambda is 20.0
the regulation term lambda/alpha is 62.37624553938271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29332046595245226
the lambda is 20.0
the regulation term lambda/alpha is 68.18480918151151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2802495465001264
the lambda is 20.0
the regulation term lambda/alpha is 71.36496829261053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2715421425874624
the lambda is 20.0
the regulation term lambda/alpha is 73.65339246948786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2790000765675226
the lambda is 20.0
the regulation term lambda/alpha is 71.68456814082512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26828654208424835
the lambda is 20.0
the regulation term lambda/alpha is 74.54716082523261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3154362404468358
the lambda is 20.0
the regulation term lambda/alpha is 63.40425555309912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30945436007498633
the lambda is 20.0
the regulation term lambda/alpha is 64.62988595524601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2896906048030552
the lambda is 20.0
the regulation term lambda/alpha is 69.039173754347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3114333719944735
the lambda is 20.0
the regulation term lambda/alpha is 64.21919356913011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2651004200366767
the lambda is 20.0
the regulation term lambda/alpha is 75.44310943465497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2845979863834516
the lambda is 20.0
the regulation term lambda/alpha is 70.27456607880953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3129524774160837
the lambda is 20.0
the regulation term lambda/alpha is 63.90746660685209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2904841313977932
the lambda is 20.0
the regulation term lambda/alpha is 68.85057680693652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37156160101503216
the lambda is 20.0
the regulation term lambda/alpha is 53.82687539660716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.297860387224492
the lambda is 20.0
the regulation term lambda/alpha is 67.1455516000735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2907836309568672
the lambda is 20.0
the regulation term lambda/alpha is 68.77966250777939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2753551722826034
the lambda is 20.0
the regulation term lambda/alpha is 72.63346402468711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3309804912394162
the lambda is 20.0
the regulation term lambda/alpha is 60.42652219502844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2750652347970195
the lambda is 20.0
the regulation term lambda/alpha is 72.71002464109547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3204915639020089
the lambda is 20.0
the regulation term lambda/alpha is 62.404138681525644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3037432326774161
the lambda is 20.0
the regulation term lambda/alpha is 65.84508837844814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2565518778209945
the lambda is 20.0
the regulation term lambda/alpha is 77.95694254849587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29387084140621034
the lambda is 20.0
the regulation term lambda/alpha is 68.05710938961276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29836937736635183
the lambda is 20.0
the regulation term lambda/alpha is 67.03100759379562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2992292551585785
the lambda is 20.0
the regulation term lambda/alpha is 66.83838446678908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3033806431300394
the lambda is 20.0
the regulation term lambda/alpha is 65.92378404124918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27517454398087504
the lambda is 20.0
the regulation term lambda/alpha is 72.68114161530154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2791022815341902
the lambda is 20.0
the regulation term lambda/alpha is 71.6583178398346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28976364550941514
the lambda is 20.0
the regulation term lambda/alpha is 69.0217710535746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30645271911435934
the lambda is 20.0
the regulation term lambda/alpha is 65.26292231245165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30252303428564675
the lambda is 20.0
the regulation term lambda/alpha is 66.11066839001656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3116318023763918
the lambda is 20.0
the regulation term lambda/alpha is 64.1783022383698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2703490468146067
the lambda is 20.0
the regulation term lambda/alpha is 73.97843726711974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3004550112411372
the lambda is 20.0
the regulation term lambda/alpha is 66.56570618470575
1160
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3338485535276758
the lambda is 20.0
the regulation term lambda/alpha is 59.907403487797396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3067190806362105
the lambda is 20.0
the regulation term lambda/alpha is 65.20624657101574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2747306525349229
the lambda is 20.0
the regulation term lambda/alpha is 72.79857495136136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31533464934070554
the lambda is 20.0
the regulation term lambda/alpha is 63.42468245026527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3377376769466099
the lambda is 20.0
the regulation term lambda/alpha is 59.217556598405906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.298997008931413
the lambda is 20.0
the regulation term lambda/alpha is 66.89030124909311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31303974716429334
the lambda is 20.0
the regulation term lambda/alpha is 63.88965037562261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28016989468731557
the lambda is 20.0
the regulation term lambda/alpha is 71.38525722872923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2888939028398314
the lambda is 20.0
the regulation term lambda/alpha is 69.22956768349799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3051106940101264
the lambda is 20.0
the regulation term lambda/alpha is 65.54998036003357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24677568987193946
the lambda is 20.0
the regulation term lambda/alpha is 81.04526021334881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26342392495369765
the lambda is 20.0
the regulation term lambda/alpha is 75.92324806304296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31217744326501246
the lambda is 20.0
the regulation term lambda/alpha is 64.0661278752984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32731763318376983
the lambda is 20.0
the regulation term lambda/alpha is 61.102727052811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31768358926927726
the lambda is 20.0
the regulation term lambda/alpha is 62.95572284990603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28974622104921577
the lambda is 20.0
the regulation term lambda/alpha is 69.02592181384425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27217601207669345
the lambda is 20.0
the regulation term lambda/alpha is 73.48186141534185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27138426117640335
the lambda is 20.0
the regulation term lambda/alpha is 73.69624131223931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2903671824340052
the lambda is 20.0
the regulation term lambda/alpha is 68.8783072258712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27729208228721197
the lambda is 20.0
the regulation term lambda/alpha is 72.12611277982512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.273873175761069
the lambda is 20.0
the regulation term lambda/alpha is 73.02650193624035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3256608636450184
the lambda is 20.0
the regulation term lambda/alpha is 61.413581528177396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.287710894501223
the lambda is 20.0
the regulation term lambda/alpha is 69.51422550290317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28858852660754186
the lambda is 20.0
the regulation term lambda/alpha is 69.30282445773895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2978662286831303
the lambda is 20.0
the regulation term lambda/alpha is 67.14423480775316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30912203024047613
the lambda is 20.0
the regulation term lambda/alpha is 64.69936802770526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30239037402210117
the lambda is 20.0
the regulation term lambda/alpha is 66.13967149145506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32424113414346967
the lambda is 20.0
the regulation term lambda/alpha is 61.68248841354729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2832932065578998
the lambda is 20.0
the regulation term lambda/alpha is 70.59823369224485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30300025316482504
the lambda is 20.0
the regulation term lambda/alpha is 66.00654550978368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31450490030663986
the lambda is 20.0
the regulation term lambda/alpha is 63.59201392569767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2865278468720893
the lambda is 20.0
the regulation term lambda/alpha is 69.80124346841696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2998692215124863
the lambda is 20.0
the regulation term lambda/alpha is 66.69574122720434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30626516441771107
the lambda is 20.0
the regulation term lambda/alpha is 65.30288888070294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33868133407248624
the lambda is 20.0
the regulation term lambda/alpha is 59.052560586995625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30182774596363227
the lambda is 20.0
the regulation term lambda/alpha is 66.26296047153278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.299943352372393
the lambda is 20.0
the regulation term lambda/alpha is 66.67925740580878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2778812426949194
the lambda is 20.0
the regulation term lambda/alpha is 71.97319187879704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3260821521995147
the lambda is 20.0
the regulation term lambda/alpha is 61.33423698627614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3248443558661042
the lambda is 20.0
the regulation term lambda/alpha is 61.567946737679165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3051201906506197
the lambda is 20.0
the regulation term lambda/alpha is 65.54794016532705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3375103224332821
the lambda is 20.0
the regulation term lambda/alpha is 59.25744687098728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28282120034139796
the lambda is 20.0
the regulation term lambda/alpha is 70.71605656102754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27897702689555187
the lambda is 20.0
the regulation term lambda/alpha is 71.69049087145063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3005659245731171
the lambda is 20.0
the regulation term lambda/alpha is 66.54114244123075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2800001589281822
the lambda is 20.0
the regulation term lambda/alpha is 71.42853088569082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2873397273568909
the lambda is 20.0
the regulation term lambda/alpha is 69.60401954846627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29785820154109743
the lambda is 20.0
the regulation term lambda/alpha is 67.14604431411122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31453734651911347
the lambda is 20.0
the regulation term lambda/alpha is 63.585454068757656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3185564271719599
the lambda is 20.0
the regulation term lambda/alpha is 62.783225494941284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.266003500582788
the lambda is 20.0
the regulation term lambda/alpha is 75.186980457708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28688143641246416
the lambda is 20.0
the regulation term lambda/alpha is 69.71521144799684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27357224252321927
the lambda is 20.0
the regulation term lambda/alpha is 73.10683209500874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3210189904113865
the lambda is 20.0
the regulation term lambda/alpha is 62.3016101769243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29771215585785765
the lambda is 20.0
the regulation term lambda/alpha is 67.1789834794283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3150062433169416
the lambda is 20.0
the regulation term lambda/alpha is 63.49080510089168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32058021919231244
the lambda is 20.0
the regulation term lambda/alpha is 62.38688104459192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3169526881285812
the lambda is 20.0
the regulation term lambda/alpha is 63.10090038386553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2755718874223547
the lambda is 20.0
the regulation term lambda/alpha is 72.57634364330872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28465977759046873
the lambda is 20.0
the regulation term lambda/alpha is 70.25931155181813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2972566831462328
the lambda is 20.0
the regulation term lambda/alpha is 67.28191873876617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2865226537682379
the lambda is 20.0
the regulation term lambda/alpha is 69.80250858690418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3090363622117119
the lambda is 20.0
the regulation term lambda/alpha is 64.71730335182556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27077269141140553
the lambda is 20.0
the regulation term lambda/alpha is 73.86269234075928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29761312635267445
the lambda is 20.0
the regulation term lambda/alpha is 67.20133700117718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2919614371909173
the lambda is 20.0
the regulation term lambda/alpha is 68.50219738753289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28916571112430883
the lambda is 20.0
the regulation term lambda/alpha is 69.16449368162549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26542876361870926
the lambda is 20.0
the regulation term lambda/alpha is 75.34978397718106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2961712843577624
the lambda is 20.0
the regulation term lambda/alpha is 67.52849130316376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26219103078724815
the lambda is 20.0
the regulation term lambda/alpha is 76.28026000717304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29624861278834763
the lambda is 20.0
the regulation term lambda/alpha is 67.51086464762228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2654378577263034
the lambda is 20.0
the regulation term lambda/alpha is 75.3472024349378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29290437297366617
the lambda is 20.0
the regulation term lambda/alpha is 68.28167089809246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.286759306310541
the lambda is 20.0
the regulation term lambda/alpha is 69.74490298962208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34273944582271804
the lambda is 20.0
the regulation term lambda/alpha is 58.353365052544895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28900699708062416
the lambda is 20.0
the regulation term lambda/alpha is 69.20247676363562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3051379281267675
the lambda is 20.0
the regulation term lambda/alpha is 65.54412990472667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3193964060474804
the lambda is 20.0
the regulation term lambda/alpha is 62.61811223081473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29456190714233627
the lambda is 20.0
the regulation term lambda/alpha is 67.8974419809678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3101153243117532
the lambda is 20.0
the regulation term lambda/alpha is 64.49213706025817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3258998691506205
the lambda is 20.0
the regulation term lambda/alpha is 61.36854258986105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2723359000472978
the lambda is 20.0
the regulation term lambda/alpha is 73.4387203322313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3011982828988907
the lambda is 20.0
the regulation term lambda/alpha is 66.40144096277535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29130390373636894
the lambda is 20.0
the regulation term lambda/alpha is 68.65682108434795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28080354846808325
the lambda is 20.0
the regulation term lambda/alpha is 71.22417116560493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2806606474610934
the lambda is 20.0
the regulation term lambda/alpha is 71.26043562189281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2876053704359796
the lambda is 20.0
the regulation term lambda/alpha is 69.53973067221274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28319396694122434
the lambda is 20.0
the regulation term lambda/alpha is 70.62297342001962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3053676476374079
the lambda is 20.0
the regulation term lambda/alpha is 65.49482289541001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2742073141578784
the lambda is 20.0
the regulation term lambda/alpha is 72.93751467360474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28903272035554795
the lambda is 20.0
the regulation term lambda/alpha is 69.19631789576415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30136487477365387
the lambda is 20.0
the regulation term lambda/alpha is 66.36473482525594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30641167538489444
the lambda is 20.0
the regulation term lambda/alpha is 65.27166425651797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2891025710612166
the lambda is 20.0
the regulation term lambda/alpha is 69.17959922177606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27234440647922714
the lambda is 20.0
the regulation term lambda/alpha is 73.43642654003061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27454372806145627
the lambda is 20.0
the regulation term lambda/alpha is 72.84814022603723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30692734444330433
the lambda is 20.0
the regulation term lambda/alpha is 65.16200124259181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30126405211115576
the lambda is 20.0
the regulation term lambda/alpha is 66.38694480754282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2623767425025198
the lambda is 20.0
the regulation term lambda/alpha is 76.22626841557012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3142909211572372
the lambda is 20.0
the regulation term lambda/alpha is 63.6353093699266
1170
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31307961191482814
the lambda is 20.0
the regulation term lambda/alpha is 63.88151524041402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3131206425592979
the lambda is 20.0
the regulation term lambda/alpha is 63.873144346312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28697538008594864
the lambda is 20.0
the regulation term lambda/alpha is 69.69238961896325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3255857860585655
the lambda is 20.0
the regulation term lambda/alpha is 61.42774302930551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3144549919690807
the lambda is 20.0
the regulation term lambda/alpha is 63.60210685402804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28708789616864444
the lambda is 20.0
the regulation term lambda/alpha is 69.66507563332232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3098338691320737
the lambda is 20.0
the regulation term lambda/alpha is 64.55072215321478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30314028656224035
the lambda is 20.0
the regulation term lambda/alpha is 65.9760542777399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3020093245619074
the lambda is 20.0
the regulation term lambda/alpha is 66.22312085566186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29354007541056304
the lambda is 20.0
the regulation term lambda/alpha is 68.13379730868701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2874879361561006
the lambda is 20.0
the regulation term lambda/alpha is 69.56813655352958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30209094746021015
the lambda is 20.0
the regulation term lambda/alpha is 66.20522782343319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3217270971388749
the lambda is 20.0
the regulation term lambda/alpha is 62.164487162754945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.322522664030168
the lambda is 20.0
the regulation term lambda/alpha is 62.01114597679637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2932170804169958
the lambda is 20.0
the regulation term lambda/alpha is 68.20885049246516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28421580764413995
the lambda is 20.0
the regulation term lambda/alpha is 70.3690627406676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2798485338675758
the lambda is 20.0
the regulation term lambda/alpha is 71.4672316613386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2935626605929336
the lambda is 20.0
the regulation term lambda/alpha is 68.12855544913066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29661274153714096
the lambda is 20.0
the regulation term lambda/alpha is 67.42798672893713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29410596566536357
the lambda is 20.0
the regulation term lambda/alpha is 68.0027008454367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32021698081028865
the lambda is 20.0
the regulation term lambda/alpha is 62.45764965178073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28637169503790505
the lambda is 20.0
the regulation term lambda/alpha is 69.83930446531295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30280213966941805
the lambda is 20.0
the regulation term lambda/alpha is 66.04973142473447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29560076323656187
the lambda is 20.0
the regulation term lambda/alpha is 67.65882395234041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33846506411871297
the lambda is 20.0
the regulation term lambda/alpha is 59.09029356419845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31718928800952795
the lambda is 20.0
the regulation term lambda/alpha is 63.05383175297908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27980289568867317
the lambda is 20.0
the regulation term lambda/alpha is 71.47888856108658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29448212458907863
the lambda is 20.0
the regulation term lambda/alpha is 67.91583709166751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3071297796165073
the lambda is 20.0
the regulation term lambda/alpha is 65.11905170828007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31047186100199237
the lambda is 20.0
the regulation term lambda/alpha is 64.41807620005748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30692947680211063
the lambda is 20.0
the regulation term lambda/alpha is 65.16154853674995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.306549778973299
the lambda is 20.0
the regulation term lambda/alpha is 65.24225875152901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27835893164497794
the lambda is 20.0
the regulation term lambda/alpha is 71.84967941143064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29163356927862694
the lambda is 20.0
the regulation term lambda/alpha is 68.57921071799517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2965179653179482
the lambda is 20.0
the regulation term lambda/alpha is 67.44953877770791
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30101554528859326
the lambda is 20.0
the regulation term lambda/alpha is 66.44175130830988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2574478190577797
the lambda is 20.0
the regulation term lambda/alpha is 77.68564547641924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32279935756047634
the lambda is 20.0
the regulation term lambda/alpha is 61.9579919586829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3001535017214059
the lambda is 20.0
the regulation term lambda/alpha is 66.63257261800477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3212383486659764
the lambda is 20.0
the regulation term lambda/alpha is 62.25906739670113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2898677032429703
the lambda is 20.0
the regulation term lambda/alpha is 68.99699337402822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3197802539025148
the lambda is 20.0
the regulation term lambda/alpha is 62.54294865278646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26720354221091613
the lambda is 20.0
the regulation term lambda/alpha is 74.84930714059574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3035610136505189
the lambda is 20.0
the regulation term lambda/alpha is 65.88461330882703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28653020494433945
the lambda is 20.0
the regulation term lambda/alpha is 69.80066902156142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3009127703474112
the lambda is 20.0
the regulation term lambda/alpha is 66.46444408759889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3152389681076532
the lambda is 20.0
the regulation term lambda/alpha is 63.443933090055225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2980163776748748
the lambda is 20.0
the regulation term lambda/alpha is 67.11040566307159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2724643205871565
the lambda is 20.0
the regulation term lambda/alpha is 73.40410647860351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2994244655498585
the lambda is 20.0
the regulation term lambda/alpha is 66.79480904565466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2871824018137542
the lambda is 20.0
the regulation term lambda/alpha is 69.6421503326327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2931964542781576
the lambda is 20.0
the regulation term lambda/alpha is 68.21364893119019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33099388972288185
the lambda is 20.0
the regulation term lambda/alpha is 60.4240761566463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27291945342985735
the lambda is 20.0
the regulation term lambda/alpha is 73.28169446572694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2910043550958875
the lambda is 20.0
the regulation term lambda/alpha is 68.72749376348644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3423747613663914
the lambda is 20.0
the regulation term lambda/alpha is 58.41552081754372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30364114212587007
the lambda is 20.0
the regulation term lambda/alpha is 65.86722688491696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3020222296459453
the lambda is 20.0
the regulation term lambda/alpha is 66.22029121315211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28885751344421357
the lambda is 20.0
the regulation term lambda/alpha is 69.2382890149837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3124663732988528
the lambda is 20.0
the regulation term lambda/alpha is 64.00688748952632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26725034926342117
the lambda is 20.0
the regulation term lambda/alpha is 74.83619780150993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2925747675038705
the lambda is 20.0
the regulation term lambda/alpha is 68.35859486664522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30497730451356886
the lambda is 20.0
the regulation term lambda/alpha is 65.5786502930095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2923384596272732
the lambda is 20.0
the regulation term lambda/alpha is 68.41385162082224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3104501448285819
the lambda is 20.0
the regulation term lambda/alpha is 64.42258228303677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3055249219299966
the lambda is 20.0
the regulation term lambda/alpha is 65.46110829080746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3223023625699175
the lambda is 20.0
the regulation term lambda/alpha is 62.05353209491715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2817077918977878
the lambda is 20.0
the regulation term lambda/alpha is 70.9955513309217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3266314403370236
the lambda is 20.0
the regulation term lambda/alpha is 61.231092693843785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30818508219876667
the lambda is 20.0
the regulation term lambda/alpha is 64.89606783465535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2850562804804892
the lambda is 20.0
the regulation term lambda/alpha is 70.16158341183754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3000132632476421
the lambda is 20.0
the regulation term lambda/alpha is 66.66371940860246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2611035383848053
the lambda is 20.0
the regulation term lambda/alpha is 76.59796616974488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.317043565575798
the lambda is 20.0
the regulation term lambda/alpha is 63.08281312594073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27676171021340323
the lambda is 20.0
the regulation term lambda/alpha is 72.26433159622607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30128367192792654
the lambda is 20.0
the regulation term lambda/alpha is 66.38262164032714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.295773454458574
the lambda is 20.0
the regulation term lambda/alpha is 67.61932045798653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32013394920082383
the lambda is 20.0
the regulation term lambda/alpha is 62.47384899329675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3154145936856527
the lambda is 20.0
the regulation term lambda/alpha is 63.40860695853637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2912746381645871
the lambda is 20.0
the regulation term lambda/alpha is 68.66371932011066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28839350261549157
the lambda is 20.0
the regulation term lambda/alpha is 69.34968998474817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2848266447835882
the lambda is 20.0
the regulation term lambda/alpha is 70.21814976332722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2847673811984676
the lambda is 20.0
the regulation term lambda/alpha is 70.23276302162245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27511958680660265
the lambda is 20.0
the regulation term lambda/alpha is 72.69566021142343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2855545891176242
the lambda is 20.0
the regulation term lambda/alpha is 70.03914754723728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33077445452194837
the lambda is 20.0
the regulation term lambda/alpha is 60.4641613842429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3071247616920857
the lambda is 20.0
the regulation term lambda/alpha is 65.12011564880403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3836026809787408
the lambda is 20.0
the regulation term lambda/alpha is 52.13727899130193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2794329171644411
the lambda is 20.0
the regulation term lambda/alpha is 71.57352899919937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3014301122720949
the lambda is 20.0
the regulation term lambda/alpha is 66.35037173043416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32059050381000387
the lambda is 20.0
the regulation term lambda/alpha is 62.38487965898356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3033133759276143
the lambda is 20.0
the regulation term lambda/alpha is 65.93840426204282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30544568133008115
the lambda is 20.0
the regulation term lambda/alpha is 65.47809061470055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2517455042173525
the lambda is 20.0
the regulation term lambda/alpha is 79.44531149494675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3150530643358473
the lambda is 20.0
the regulation term lambda/alpha is 63.48136953424441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29419208332908997
the lambda is 20.0
the regulation term lambda/alpha is 67.98279468869168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2828771774027249
the lambda is 20.0
the regulation term lambda/alpha is 70.7020629364048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3049281076474819
the lambda is 20.0
the regulation term lambda/alpha is 65.58923070195087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31008680830023005
the lambda is 20.0
the regulation term lambda/alpha is 64.49806784632948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2924212121323834
the lambda is 20.0
the regulation term lambda/alpha is 68.3944911320103
1180
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28523678393990276
the lambda is 20.0
the regulation term lambda/alpha is 70.11718377884196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2644101782259139
the lambda is 20.0
the regulation term lambda/alpha is 75.64005339806496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2974914658458479
the lambda is 20.0
the regulation term lambda/alpha is 67.22881929783983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2702246064445456
the lambda is 20.0
the regulation term lambda/alpha is 74.01250486825788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29672174712096505
the lambda is 20.0
the regulation term lambda/alpha is 67.40321595587858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3019142325247605
the lambda is 20.0
the regulation term lambda/alpha is 66.24397873776873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3127340008291699
the lambda is 20.0
the regulation term lambda/alpha is 63.95211248848169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2897364961985931
the lambda is 20.0
the regulation term lambda/alpha is 69.02823863201365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3151546948092484
the lambda is 20.0
the regulation term lambda/alpha is 63.460898185588725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.301584369760874
the lambda is 20.0
the regulation term lambda/alpha is 66.31643415690934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2832781669931729
the lambda is 20.0
the regulation term lambda/alpha is 70.60198183392654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3145658456252242
the lambda is 20.0
the regulation term lambda/alpha is 63.57969333971536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2790755409738734
the lambda is 20.0
the regulation term lambda/alpha is 71.66518402224425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30567221637005026
the lambda is 20.0
the regulation term lambda/alpha is 65.4295645103308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26257538053896196
the lambda is 20.0
the regulation term lambda/alpha is 76.16860331287732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29039698907952777
the lambda is 20.0
the regulation term lambda/alpha is 68.87123748560225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29890963981355867
the lambda is 20.0
the regulation term lambda/alpha is 66.90985279857405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29993161320128475
the lambda is 20.0
the regulation term lambda/alpha is 66.68186719810011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3287640437602267
the lambda is 20.0
the regulation term lambda/alpha is 60.83390315817609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26812277650276767
the lambda is 20.0
the regulation term lambda/alpha is 74.59269317164315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.298781010103455
the lambda is 20.0
the regulation term lambda/alpha is 66.93865849464416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2995994470471516
the lambda is 20.0
the regulation term lambda/alpha is 66.75579743928019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29709137623708604
the lambda is 20.0
the regulation term lambda/alpha is 67.31935559125594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32643912954408255
the lambda is 20.0
the regulation term lambda/alpha is 61.26716496252386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29171740343494656
the lambda is 20.0
the regulation term lambda/alpha is 68.55950232828681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26357612163373983
the lambda is 20.0
the regulation term lambda/alpha is 75.87940772492132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3016491231952296
the lambda is 20.0
the regulation term lambda/alpha is 66.3021983559881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3050521664233443
the lambda is 20.0
the regulation term lambda/alpha is 65.56255683903082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3078198294040202
the lambda is 20.0
the regulation term lambda/alpha is 64.97307219850859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31820942565156374
the lambda is 20.0
the regulation term lambda/alpha is 62.85168944649618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3243539388349002
the lambda is 20.0
the regulation term lambda/alpha is 61.661036310646516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33080908821881966
the lambda is 20.0
the regulation term lambda/alpha is 60.45783115477963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29694387181196547
the lambda is 20.0
the regulation term lambda/alpha is 67.35279592725406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29728033068011217
the lambda is 20.0
the regulation term lambda/alpha is 67.27656671480548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23600435079493398
the lambda is 20.0
the regulation term lambda/alpha is 84.7442004040771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29338387379675357
the lambda is 20.0
the regulation term lambda/alpha is 68.17007268046137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2957488976754614
the lambda is 20.0
the regulation term lambda/alpha is 67.62493506213133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3167914545268949
the lambda is 20.0
the regulation term lambda/alpha is 63.13301610319178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28912410064650634
the lambda is 20.0
the regulation term lambda/alpha is 69.17444777269789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3038502961526768
the lambda is 20.0
the regulation term lambda/alpha is 65.82188746642039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3092950792408989
the lambda is 20.0
the regulation term lambda/alpha is 64.66316906523662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31215108698391514
the lambda is 20.0
the regulation term lambda/alpha is 64.07153725859229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2751315348455335
the lambda is 20.0
the regulation term lambda/alpha is 72.69250328294268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.304679985924473
the lambda is 20.0
the regulation term lambda/alpha is 65.64264449243409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28835636550721194
the lambda is 20.0
the regulation term lambda/alpha is 69.35862145723914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3080275458161845
the lambda is 20.0
the regulation term lambda/alpha is 64.92925802140762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3212337888601473
the lambda is 20.0
the regulation term lambda/alpha is 62.25995114326912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30377599945202166
the lambda is 20.0
the regulation term lambda/alpha is 65.83798600310028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28654361859575755
the lambda is 20.0
the regulation term lambda/alpha is 69.79740151957483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.273050398342273
the lambda is 20.0
the regulation term lambda/alpha is 73.2465512646119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3012560842941101
the lambda is 20.0
the regulation term lambda/alpha is 66.3887006526793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29926330600479634
the lambda is 20.0
the regulation term lambda/alpha is 66.83077944637643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2890744160642763
the lambda is 20.0
the regulation term lambda/alpha is 69.1863371110398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29714873842619005
the lambda is 20.0
the regulation term lambda/alpha is 67.30636012768359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2789617901542807
the lambda is 20.0
the regulation term lambda/alpha is 71.6944065670748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2895174001002563
the lambda is 20.0
the regulation term lambda/alpha is 69.08047665899959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3258365499770303
the lambda is 20.0
the regulation term lambda/alpha is 61.380468217607536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31175662553462413
the lambda is 20.0
the regulation term lambda/alpha is 64.15260610966156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3037817944179791
the lambda is 20.0
the regulation term lambda/alpha is 65.83673007238092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2857442204809922
the lambda is 20.0
the regulation term lambda/alpha is 69.99266675047382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2634375933486164
the lambda is 20.0
the regulation term lambda/alpha is 75.91930880393856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3413836100377677
the lambda is 20.0
the regulation term lambda/alpha is 58.58512070274075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3168885736803293
the lambda is 20.0
the regulation term lambda/alpha is 63.113667267080416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3155884067600712
the lambda is 20.0
the regulation term lambda/alpha is 63.373684113831125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29765445647517
the lambda is 20.0
the regulation term lambda/alpha is 67.19200591464478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.256768180820879
the lambda is 20.0
the regulation term lambda/alpha is 77.89127116942875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31410098515194074
the lambda is 20.0
the regulation term lambda/alpha is 63.673789467184754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30805669810657854
the lambda is 20.0
the regulation term lambda/alpha is 64.92311357917818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.312619224383314
the lambda is 20.0
the regulation term lambda/alpha is 63.97559215832888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31074686211804137
the lambda is 20.0
the regulation term lambda/alpha is 64.36106824596907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2920766050885714
the lambda is 20.0
the regulation term lambda/alpha is 68.47518648039289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31288539954001987
the lambda is 20.0
the regulation term lambda/alpha is 63.921167396760815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27047995527337143
the lambda is 20.0
the regulation term lambda/alpha is 73.94263275364045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3154022568150754
the lambda is 20.0
the regulation term lambda/alpha is 63.41108716836567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29589014675263714
the lambda is 20.0
the regulation term lambda/alpha is 67.59265294737885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.273765822856521
the lambda is 20.0
the regulation term lambda/alpha is 73.0551381151835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2786527851187412
the lambda is 20.0
the regulation term lambda/alpha is 71.773910285797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.270747385962604
the lambda is 20.0
the regulation term lambda/alpha is 73.8695959294042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2970866315913499
the lambda is 20.0
the regulation term lambda/alpha is 67.32043072039168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3202003331641551
the lambda is 20.0
the regulation term lambda/alpha is 62.46089690901954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31733325664889767
the lambda is 20.0
the regulation term lambda/alpha is 63.02522531424528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2775931804204811
the lambda is 20.0
the regulation term lambda/alpha is 72.0478794533253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29460374869023676
the lambda is 20.0
the regulation term lambda/alpha is 67.88779874294521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31358102925932685
the lambda is 20.0
the regulation term lambda/alpha is 63.77936843705012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2948401897177529
the lambda is 20.0
the regulation term lambda/alpha is 67.83335751868078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2922674334101486
the lambda is 20.0
the regulation term lambda/alpha is 68.43047741119119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.323547595000195
the lambda is 20.0
the regulation term lambda/alpha is 61.81470766298834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2774880925942405
the lambda is 20.0
the regulation term lambda/alpha is 72.07516478642268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30461313015035635
the lambda is 20.0
the regulation term lambda/alpha is 65.65705158581984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3520106288788427
the lambda is 20.0
the regulation term lambda/alpha is 56.81646620643301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3404271505707609
the lambda is 20.0
the regulation term lambda/alpha is 58.74972065673363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2912912982889655
the lambda is 20.0
the regulation term lambda/alpha is 68.6597921650227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28225133026092836
the lambda is 20.0
the regulation term lambda/alpha is 70.85883344291388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3108017901115481
the lambda is 20.0
the regulation term lambda/alpha is 64.34969371579845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29875808442455754
the lambda is 20.0
the regulation term lambda/alpha is 66.94379513954343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3516263079691175
the lambda is 20.0
the regulation term lambda/alpha is 56.878565530303135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34831267917867564
the lambda is 20.0
the regulation term lambda/alpha is 57.41967259750686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29704642239248524
the lambda is 20.0
the regulation term lambda/alpha is 67.3295434394229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2876301769850289
the lambda is 20.0
the regulation term lambda/alpha is 69.53373324608077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.303563086626954
the lambda is 20.0
the regulation term lambda/alpha is 65.88416339493155
1190
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30010312747133466
the lambda is 20.0
the regulation term lambda/alpha is 66.64375732608906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29225718914306975
the lambda is 20.0
the regulation term lambda/alpha is 68.43287605222716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3085747002396181
the lambda is 20.0
the regulation term lambda/alpha is 64.81412761470517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31756329574121567
the lambda is 20.0
the regulation term lambda/alpha is 62.97957058708109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30373236549724814
the lambda is 20.0
the regulation term lambda/alpha is 65.84744423682831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30140496436148434
the lambda is 20.0
the regulation term lambda/alpha is 66.35590771495515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29399345027132007
the lambda is 20.0
the regulation term lambda/alpha is 68.02872642755287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30816905883276
the lambda is 20.0
the regulation term lambda/alpha is 64.89944213008673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29964833378726385
the lambda is 20.0
the regulation term lambda/alpha is 66.74490642821013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2855835108806025
the lambda is 20.0
the regulation term lambda/alpha is 70.03205450598179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29867800026678853
the lambda is 20.0
the regulation term lambda/alpha is 66.96174469540901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27705315501142835
the lambda is 20.0
the regulation term lambda/alpha is 72.18831346343991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30465555074721856
the lambda is 20.0
the regulation term lambda/alpha is 65.64790942080873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3205724036706267
the lambda is 20.0
the regulation term lambda/alpha is 62.38840203022925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29701675137272693
the lambda is 20.0
the regulation term lambda/alpha is 67.33626944462118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3296284568272614
the lambda is 20.0
the regulation term lambda/alpha is 60.67437317913607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2807753901853028
the lambda is 20.0
the regulation term lambda/alpha is 71.23131406495648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28275950048752646
the lambda is 20.0
the regulation term lambda/alpha is 70.7314872374457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32857009049335756
the lambda is 20.0
the regulation term lambda/alpha is 60.86981310431944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2707132881284879
the lambda is 20.0
the regulation term lambda/alpha is 73.87890021308247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31985249151313755
the lambda is 20.0
the regulation term lambda/alpha is 62.52882353795429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3095470313520478
the lambda is 20.0
the regulation term lambda/alpha is 64.61053725065126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2975586008623277
the lambda is 20.0
the regulation term lambda/alpha is 67.2136511666603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28874351706234047
the lambda is 20.0
the regulation term lambda/alpha is 69.26562439731573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3357515828157495
the lambda is 20.0
the regulation term lambda/alpha is 59.5678502310305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32011001352694135
the lambda is 20.0
the regulation term lambda/alpha is 62.4785203675509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2769852534568632
the lambda is 20.0
the regulation term lambda/alpha is 72.20601006874446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33043829646822276
the lambda is 20.0
the regulation term lambda/alpha is 60.52567215653631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3437619619248527
the lambda is 20.0
the regulation term lambda/alpha is 58.17979362234398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30611464667013877
the lambda is 20.0
the regulation term lambda/alpha is 65.33499856199786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2869356778209685
the lambda is 20.0
the regulation term lambda/alpha is 69.70203270601594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3015015882464614
the lambda is 20.0
the regulation term lambda/alpha is 66.33464226944992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30164566708377183
the lambda is 20.0
the regulation term lambda/alpha is 66.30295801479448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2688693347138484
the lambda is 20.0
the regulation term lambda/alpha is 74.38557476733281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2902645250028928
the lambda is 20.0
the regulation term lambda/alpha is 68.90266731630632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30174261813780684
the lambda is 20.0
the regulation term lambda/alpha is 66.28165462150903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28090273716611647
the lambda is 20.0
the regulation term lambda/alpha is 71.19902141848006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31605956306773986
the lambda is 20.0
the regulation term lambda/alpha is 63.279211696288634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26968162865537615
the lambda is 20.0
the regulation term lambda/alpha is 74.16152186457546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2939211080475717
the lambda is 20.0
the regulation term lambda/alpha is 68.04547020407585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27654882063044844
the lambda is 20.0
the regulation term lambda/alpha is 72.31996127991431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30967131881880905
the lambda is 20.0
the regulation term lambda/alpha is 64.5846056273043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3061826701876239
the lambda is 20.0
the regulation term lambda/alpha is 65.32048331717898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3227832122518051
the lambda is 20.0
the regulation term lambda/alpha is 61.96109103839601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2719001862543584
the lambda is 20.0
the regulation term lambda/alpha is 73.55640419197914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2753587475727696
the lambda is 20.0
the regulation term lambda/alpha is 72.63252094329982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26625231118601844
the lambda is 20.0
the regulation term lambda/alpha is 75.11671884052456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28322006279056156
the lambda is 20.0
the regulation term lambda/alpha is 70.6164662310304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2910300309948552
the lambda is 20.0
the regulation term lambda/alpha is 68.72143033360554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35412418294646586
the lambda is 20.0
the regulation term lambda/alpha is 56.47736292277861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30290217072792397
the lambda is 20.0
the regulation term lambda/alpha is 66.02791902064186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3043832288438778
the lambda is 20.0
the regulation term lambda/alpha is 65.70664249789618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.324028092655408
the lambda is 20.0
the regulation term lambda/alpha is 61.72304332041132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30787422558988803
the lambda is 20.0
the regulation term lambda/alpha is 64.96159255189335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29806568164169417
the lambda is 20.0
the regulation term lambda/alpha is 67.09930472318538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2620692492054773
the lambda is 20.0
the regulation term lambda/alpha is 76.31570686234483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28277016114310355
the lambda is 20.0
the regulation term lambda/alpha is 70.72882060522099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3022141817406785
the lambda is 20.0
the regulation term lambda/alpha is 66.17823122927248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2934258607519008
the lambda is 20.0
the regulation term lambda/alpha is 68.16031807404501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3194605005179171
the lambda is 20.0
the regulation term lambda/alpha is 62.60554894134179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29327681083090584
the lambda is 20.0
the regulation term lambda/alpha is 68.19495869222122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32268231583164886
the lambda is 20.0
the regulation term lambda/alpha is 61.98046505416331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2721476940103903
the lambda is 20.0
the regulation term lambda/alpha is 73.4895074996903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2972846668836671
the lambda is 20.0
the regulation term lambda/alpha is 67.27558541667527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31987930058723757
the lambda is 20.0
the regulation term lambda/alpha is 62.5235829992244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3323226652745947
the lambda is 20.0
the regulation term lambda/alpha is 60.18247351102042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31898384049655354
the lambda is 20.0
the regulation term lambda/alpha is 62.69910089760829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3478568424224048
the lambda is 20.0
the regulation term lambda/alpha is 57.49491618656698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2810356624491721
the lambda is 20.0
the regulation term lambda/alpha is 71.16534544300826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27505500057708787
the lambda is 20.0
the regulation term lambda/alpha is 72.71273002867923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27048991567040687
the lambda is 20.0
the regulation term lambda/alpha is 73.93990992392517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29614233439106025
the lambda is 20.0
the regulation term lambda/alpha is 67.5350926814459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3134747319119702
the lambda is 20.0
the regulation term lambda/alpha is 63.80099562734897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28417997541053613
the lambda is 20.0
the regulation term lambda/alpha is 70.37793557096103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2904209703645832
the lambda is 20.0
the regulation term lambda/alpha is 68.86555049689689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32099625830720274
the lambda is 20.0
the regulation term lambda/alpha is 62.30602221182098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2956567158690948
the lambda is 20.0
the regulation term lambda/alpha is 67.64601961166076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30229729361266255
the lambda is 20.0
the regulation term lambda/alpha is 66.16003656859151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30580560439667537
the lambda is 20.0
the regulation term lambda/alpha is 65.40102507100238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27309368460211497
the lambda is 20.0
the regulation term lambda/alpha is 73.23494144194176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.293238973472183
the lambda is 20.0
the regulation term lambda/alpha is 68.20375805843292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2951132537205109
the lambda is 20.0
the regulation term lambda/alpha is 67.77059229925723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2929939941056864
the lambda is 20.0
the regulation term lambda/alpha is 68.2607848705109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2911157813046489
the lambda is 20.0
the regulation term lambda/alpha is 68.7011879272538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30329184160357003
the lambda is 20.0
the regulation term lambda/alpha is 65.94308601990625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29720380392539936
the lambda is 20.0
the regulation term lambda/alpha is 67.29388970075284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3047028976304996
the lambda is 20.0
the regulation term lambda/alpha is 65.63770858606392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25928684204614016
the lambda is 20.0
the regulation term lambda/alpha is 77.13465072956149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28164483755889536
the lambda is 20.0
the regulation term lambda/alpha is 71.01142053000619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2838908627231209
the lambda is 20.0
the regulation term lambda/alpha is 70.44960802245342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30233156936036587
the lambda is 20.0
the regulation term lambda/alpha is 66.15253591384261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3204188555941995
the lambda is 20.0
the regulation term lambda/alpha is 62.41829920686495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3136786420621922
the lambda is 20.0
the regulation term lambda/alpha is 63.759521108978326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3019538657805838
the lambda is 20.0
the regulation term lambda/alpha is 66.23528381826743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3018964300877464
the lambda is 20.0
the regulation term lambda/alpha is 66.24788505841883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33951257365900045
the lambda is 20.0
the regulation term lambda/alpha is 58.90798029791849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2959023585681
the lambda is 20.0
the regulation term lambda/alpha is 67.58986341569539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29399548768214623
the lambda is 20.0
the regulation term lambda/alpha is 68.02825498336573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3163105322856879
the lambda is 20.0
the regulation term lambda/alpha is 63.22900428094579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31669330197233847
the lambda is 20.0
the regulation term lambda/alpha is 63.15258287889807
1200
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2838871619963269
the lambda is 20.0
the regulation term lambda/alpha is 70.45052639702944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2684593243546851
the lambda is 20.0
the regulation term lambda/alpha is 74.49918175900737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31559661778099063
the lambda is 20.0
the regulation term lambda/alpha is 63.37203529183278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.298922231257409
the lambda is 20.0
the regulation term lambda/alpha is 66.90703436766978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3145925516009299
the lambda is 20.0
the regulation term lambda/alpha is 63.57429601629793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3261912307898436
the lambda is 20.0
the regulation term lambda/alpha is 61.313726771782754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30233754325272655
the lambda is 20.0
the regulation term lambda/alpha is 66.15122880482569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3179709075798478
the lambda is 20.0
the regulation term lambda/alpha is 62.89883609863794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28043205957142214
the lambda is 20.0
the regulation term lambda/alpha is 71.31852196416322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2882862127080925
the lambda is 20.0
the regulation term lambda/alpha is 69.37549948061938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28862332040093575
the lambda is 20.0
the regulation term lambda/alpha is 69.29446994171285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29238991022751454
the lambda is 20.0
the regulation term lambda/alpha is 68.40181312835861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32822720375299813
the lambda is 20.0
the regulation term lambda/alpha is 60.93340153197864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3145197880766273
the lambda is 20.0
the regulation term lambda/alpha is 63.589003802607635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2633900214951952
the lambda is 20.0
the regulation term lambda/alpha is 75.9330208732484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3560655688647698
the lambda is 20.0
the regulation term lambda/alpha is 56.169429871484716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29873742511604034
the lambda is 20.0
the regulation term lambda/alpha is 66.94842466500901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35047853974769905
the lambda is 20.0
the regulation term lambda/alpha is 57.06483488089602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29445986956785447
the lambda is 20.0
the regulation term lambda/alpha is 67.92097011165475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2918733938178254
the lambda is 20.0
the regulation term lambda/alpha is 68.52286101995006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2988316335197892
the lambda is 20.0
the regulation term lambda/alpha is 66.92731878626752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2896253114007885
the lambda is 20.0
the regulation term lambda/alpha is 69.05473801053132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29916448463902046
the lambda is 20.0
the regulation term lambda/alpha is 66.85285529173863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27805013542108237
the lambda is 20.0
the regulation term lambda/alpha is 71.92947404867027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27835445452416485
the lambda is 20.0
the regulation term lambda/alpha is 71.85083505916639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29483490641878246
the lambda is 20.0
the regulation term lambda/alpha is 67.8345730596501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3004565218560134
the lambda is 20.0
the regulation term lambda/alpha is 66.56537151017318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31905373175729124
the lambda is 20.0
the regulation term lambda/alpha is 62.68536616025005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29087798867409137
the lambda is 20.0
the regulation term lambda/alpha is 68.75735111881778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30375891506197505
the lambda is 20.0
the regulation term lambda/alpha is 65.8416889457202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3077460501917475
the lambda is 20.0
the regulation term lambda/alpha is 64.98864887961548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3021233944507751
the lambda is 20.0
the regulation term lambda/alpha is 66.19811761468408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3042527138487917
the lambda is 20.0
the regulation term lambda/alpha is 65.73482861336005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2802892069621359
the lambda is 20.0
the regulation term lambda/alpha is 71.3548702669161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29957368234061427
the lambda is 20.0
the regulation term lambda/alpha is 66.76153874311318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3304489551039677
the lambda is 20.0
the regulation term lambda/alpha is 60.52371990012039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2711926516417188
the lambda is 20.0
the regulation term lambda/alpha is 73.74831094768244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31806865325023154
the lambda is 20.0
the regulation term lambda/alpha is 62.879506658789055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27473139638255906
the lambda is 20.0
the regulation term lambda/alpha is 72.7983778459391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3251052915838302
the lambda is 20.0
the regulation term lambda/alpha is 61.5185311274544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28388569869923974
the lambda is 20.0
the regulation term lambda/alpha is 70.45088953631591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28426571519555355
the lambda is 20.0
the regulation term lambda/alpha is 70.3567082869684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3183321007148004
the lambda is 20.0
the regulation term lambda/alpha is 62.82746840513696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33408965249889516
the lambda is 20.0
the regulation term lambda/alpha is 59.86417074101431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30527075358596173
the lambda is 20.0
the regulation term lambda/alpha is 65.51561119125735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2722217083237453
the lambda is 20.0
the regulation term lambda/alpha is 73.46952645016313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29139800183511283
the lambda is 20.0
the regulation term lambda/alpha is 68.63465045761355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30357615701636087
the lambda is 20.0
the regulation term lambda/alpha is 65.88132677008005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3219084853124134
the lambda is 20.0
the regulation term lambda/alpha is 62.12945887583524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30192489810706863
the lambda is 20.0
the regulation term lambda/alpha is 66.24163865050838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26179000154267
the lambda is 20.0
the regulation term lambda/alpha is 76.39711173896814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2722369689678275
the lambda is 20.0
the regulation term lambda/alpha is 73.46540800769628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29535551880382027
the lambda is 20.0
the regulation term lambda/alpha is 67.715003535398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3540509020126701
the lambda is 20.0
the regulation term lambda/alpha is 56.48905252410366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31228941114760833
the lambda is 20.0
the regulation term lambda/alpha is 64.04315768025415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2775869976238547
the lambda is 20.0
the regulation term lambda/alpha is 72.04948420207013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.287588734070096
the lambda is 20.0
the regulation term lambda/alpha is 69.54375339030236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3099869423749644
the lambda is 20.0
the regulation term lambda/alpha is 64.51884665453983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28773636649539497
the lambda is 20.0
the regulation term lambda/alpha is 69.50807172412142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2871342981049438
the lambda is 20.0
the regulation term lambda/alpha is 69.65381750629548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31475591841359063
the lambda is 20.0
the regulation term lambda/alpha is 63.54129924165529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.273566130130185
the lambda is 20.0
the regulation term lambda/alpha is 73.10846554901507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3266367751783984
the lambda is 20.0
the regulation term lambda/alpha is 61.23009262835347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2868069965603684
the lambda is 20.0
the regulation term lambda/alpha is 69.73330581142329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32866612639531223
the lambda is 20.0
the regulation term lambda/alpha is 60.85202700793221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31296029853628676
the lambda is 20.0
the regulation term lambda/alpha is 63.905869509774455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3424785514698642
the lambda is 20.0
the regulation term lambda/alpha is 58.39781765650181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.302789620520634
the lambda is 20.0
the regulation term lambda/alpha is 66.05246231892242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2799357628779353
the lambda is 20.0
the regulation term lambda/alpha is 71.44496220985135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3039992056161997
the lambda is 20.0
the regulation term lambda/alpha is 65.78964559943648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30512318477678335
the lambda is 20.0
the regulation term lambda/alpha is 65.54729695362629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2738632746194533
the lambda is 20.0
the regulation term lambda/alpha is 73.02914210673555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27105827623419526
the lambda is 20.0
the regulation term lambda/alpha is 73.78487120134983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2970640724306678
the lambda is 20.0
the regulation term lambda/alpha is 67.32554305996673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2799136843849343
the lambda is 20.0
the regulation term lambda/alpha is 71.45059750810972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2806107329516341
the lambda is 20.0
the regulation term lambda/alpha is 71.27311129416846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2744057004398645
the lambda is 20.0
the regulation term lambda/alpha is 72.88478325319252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34170022008189266
the lambda is 20.0
the regulation term lambda/alpha is 58.53083733808177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31130188912616946
the lambda is 20.0
the regulation term lambda/alpha is 64.24631747703296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30996420617118103
the lambda is 20.0
the regulation term lambda/alpha is 64.52357918047733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29755069335334405
the lambda is 20.0
the regulation term lambda/alpha is 67.21543739187267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33282637370354384
the lambda is 20.0
the regulation term lambda/alpha is 60.09139172911358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3059040302059782
the lambda is 20.0
the regulation term lambda/alpha is 65.37998203728519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32332976391662066
the lambda is 20.0
the regulation term lambda/alpha is 61.8563529621651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26511583228510255
the lambda is 20.0
the regulation term lambda/alpha is 75.43872362361304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32108030398664855
the lambda is 20.0
the regulation term lambda/alpha is 62.28971304584182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3090236947851405
the lambda is 20.0
the regulation term lambda/alpha is 64.71995622829407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2964669346019066
the lambda is 20.0
the regulation term lambda/alpha is 67.4611488355551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3159570926338192
the lambda is 20.0
the regulation term lambda/alpha is 63.29973425593945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2856618805269314
the lambda is 20.0
the regulation term lambda/alpha is 70.01284162628922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3152204853391464
the lambda is 20.0
the regulation term lambda/alpha is 63.447653087907526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3403782226484399
the lambda is 20.0
the regulation term lambda/alpha is 58.75816567929208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3264953298919388
the lambda is 20.0
the regulation term lambda/alpha is 61.2566189128018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2904978301512405
the lambda is 20.0
the regulation term lambda/alpha is 68.8473300801851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27695396837332553
the lambda is 20.0
the regulation term lambda/alpha is 72.21416655435176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3505519463096657
the lambda is 20.0
the regulation term lambda/alpha is 57.052885344224215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27699396305531265
the lambda is 20.0
the regulation term lambda/alpha is 72.20373967502758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3085969781532001
the lambda is 20.0
the regulation term lambda/alpha is 64.8094486203011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3750215792078738
the lambda is 20.0
the regulation term lambda/alpha is 53.330264467032265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2759331710105015
the lambda is 20.0
the regulation term lambda/alpha is 72.48131830891342
1210
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3018580770116835
the lambda is 20.0
the regulation term lambda/alpha is 66.25630229276885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30030903450415314
the lambda is 20.0
the regulation term lambda/alpha is 66.59806300207532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3415553002897899
the lambda is 20.0
the regulation term lambda/alpha is 58.555671608758985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3152940014631485
the lambda is 20.0
the regulation term lambda/alpha is 63.43285919550739
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3314837892086097
the lambda is 20.0
the regulation term lambda/alpha is 60.334775488564176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2913789397133892
the lambda is 20.0
the regulation term lambda/alpha is 68.63914056270752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3283538864389864
the lambda is 20.0
the regulation term lambda/alpha is 60.9098927285465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25962706040384254
the lambda is 20.0
the regulation term lambda/alpha is 77.03357257479466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26192462030498664
the lambda is 20.0
the regulation term lambda/alpha is 76.35784668395004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2805508942192933
the lambda is 20.0
the regulation term lambda/alpha is 71.28831314423454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29084366266449185
the lambda is 20.0
the regulation term lambda/alpha is 68.76546601282276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26355658371138213
the lambda is 20.0
the regulation term lambda/alpha is 75.8850328015398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33599792513074606
the lambda is 20.0
the regulation term lambda/alpha is 59.52417709787181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.300311259022672
the lambda is 20.0
the regulation term lambda/alpha is 66.59756968515823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26999554138723664
the lambda is 20.0
the regulation term lambda/alpha is 74.07529730765195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3227188780395426
the lambda is 20.0
the regulation term lambda/alpha is 61.97344302104759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3058805312441833
the lambda is 20.0
the regulation term lambda/alpha is 65.38500478814088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30141557555768195
the lambda is 20.0
the regulation term lambda/alpha is 66.35357168585536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2657403015845443
the lambda is 20.0
the regulation term lambda/alpha is 75.26144841691267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3155087256230465
the lambda is 20.0
the regulation term lambda/alpha is 63.38968901891786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30802578114020357
the lambda is 20.0
the regulation term lambda/alpha is 64.92963000034284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28323693410357015
the lambda is 20.0
the regulation term lambda/alpha is 70.61225988516976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3115766819308509
the lambda is 20.0
the regulation term lambda/alpha is 64.18965590126753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27422191185122263
the lambda is 20.0
the regulation term lambda/alpha is 72.93363198069625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31630974276228696
the lambda is 20.0
the regulation term lambda/alpha is 63.22916210339558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2781923194856605
the lambda is 20.0
the regulation term lambda/alpha is 71.8927109022178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2996745748491716
the lambda is 20.0
the regulation term lambda/alpha is 66.73906189761392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33259315541555085
the lambda is 20.0
the regulation term lambda/alpha is 60.13352852980832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3015916248629081
the lambda is 20.0
the regulation term lambda/alpha is 66.3148388457114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.332517418419475
the lambda is 20.0
the regulation term lambda/alpha is 60.14722505384587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32473807800691856
the lambda is 20.0
the regulation term lambda/alpha is 61.58809623666584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3188225592981304
the lambda is 20.0
the regulation term lambda/alpha is 62.73081818309486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30160241369780366
the lambda is 20.0
the regulation term lambda/alpha is 66.31246665034779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29583597771569226
the lambda is 20.0
the regulation term lambda/alpha is 67.60502949786802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3042384847484198
the lambda is 20.0
the regulation term lambda/alpha is 65.73790300243691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.342136517654296
the lambda is 20.0
the regulation term lambda/alpha is 58.456197944378864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2815086878741843
the lambda is 20.0
the regulation term lambda/alpha is 71.04576470101225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33437241852477056
the lambda is 20.0
the regulation term lambda/alpha is 59.81354589065301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2843957303810989
the lambda is 20.0
the regulation term lambda/alpha is 70.324543808022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3246409478939835
the lambda is 20.0
the regulation term lambda/alpha is 61.60652292862115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32498664943569944
the lambda is 20.0
the regulation term lambda/alpha is 61.540989559809965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31162020181697037
the lambda is 20.0
the regulation term lambda/alpha is 64.18069137811216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.250672177712508
the lambda is 20.0
the regulation term lambda/alpha is 79.78547991447893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31934046617272144
the lambda is 20.0
the regulation term lambda/alpha is 62.6290812426591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.340505417619263
the lambda is 20.0
the regulation term lambda/alpha is 58.73621670937128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35542633975762516
the lambda is 20.0
the regulation term lambda/alpha is 56.27044977487752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3313019425626034
the lambda is 20.0
the regulation term lambda/alpha is 60.36789233803168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3320297948311629
the lambda is 20.0
the regulation term lambda/alpha is 60.23555810757886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28362680912084287
the lambda is 20.0
the regulation term lambda/alpha is 70.51519587303449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2942943577618224
the lambda is 20.0
the regulation term lambda/alpha is 67.95916901739024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27341220943779226
the lambda is 20.0
the regulation term lambda/alpha is 73.1496228391749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33246596796178973
the lambda is 20.0
the regulation term lambda/alpha is 60.15653308099973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3318755884578169
the lambda is 20.0
the regulation term lambda/alpha is 60.2635466288359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.272099305563173
the lambda is 20.0
the regulation term lambda/alpha is 73.50257641637612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2682320111941479
the lambda is 20.0
the regulation term lambda/alpha is 74.56231607466076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28740927515369125
the lambda is 20.0
the regulation term lambda/alpha is 69.5871766466307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2856309406287236
the lambda is 20.0
the regulation term lambda/alpha is 70.02042550424162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31442288472424657
the lambda is 20.0
the regulation term lambda/alpha is 63.608601573451914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28895171110526835
the lambda is 20.0
the regulation term lambda/alpha is 69.21571747576111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29691725662209256
the lambda is 20.0
the regulation term lambda/alpha is 67.3588333245831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28381972076522727
the lambda is 20.0
the regulation term lambda/alpha is 70.4672668483942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2785104227925597
the lambda is 20.0
the regulation term lambda/alpha is 71.81059796421482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30790208455608414
the lambda is 20.0
the regulation term lambda/alpha is 64.95571483004044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2767820002931312
the lambda is 20.0
the regulation term lambda/alpha is 72.25903410922177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3007617705592973
the lambda is 20.0
the regulation term lambda/alpha is 66.49781307912887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32431727954821593
the lambda is 20.0
the regulation term lambda/alpha is 61.668006181664516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2682522286391258
the lambda is 20.0
the regulation term lambda/alpha is 74.5566965145538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28180521466132974
the lambda is 20.0
the regulation term lambda/alpha is 70.97100748840212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29710012795601587
the lambda is 20.0
the regulation term lambda/alpha is 67.31737255583039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3260017016593945
the lambda is 20.0
the regulation term lambda/alpha is 61.349373019211825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3073968409897775
the lambda is 20.0
the regulation term lambda/alpha is 65.06247733581979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2904153258842816
the lambda is 20.0
the regulation term lambda/alpha is 68.86688896015484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3209075575765648
the lambda is 20.0
the regulation term lambda/alpha is 62.323243961707675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29914827276012446
the lambda is 20.0
the regulation term lambda/alpha is 66.85647827904135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.321107200774895
the lambda is 20.0
the regulation term lambda/alpha is 62.28449549476329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2919591763168427
the lambda is 20.0
the regulation term lambda/alpha is 68.50272785499097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3137995117908245
the lambda is 20.0
the regulation term lambda/alpha is 63.73496212872311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30874035895423363
the lambda is 20.0
the regulation term lambda/alpha is 64.77935073906134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31370242234653145
the lambda is 20.0
the regulation term lambda/alpha is 63.75468780380343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28277113072595184
the lambda is 20.0
the regulation term lambda/alpha is 70.72857808593989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30403183445335297
the lambda is 20.0
the regulation term lambda/alpha is 65.78258502422898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2995291170278891
the lambda is 20.0
the regulation term lambda/alpha is 66.77147183035899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3226901016220375
the lambda is 20.0
the regulation term lambda/alpha is 61.97896960417375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29153663943967706
the lambda is 20.0
the regulation term lambda/alpha is 68.60201187212448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33949915186419355
the lambda is 20.0
the regulation term lambda/alpha is 58.91030917214309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3097535231468027
the lambda is 20.0
the regulation term lambda/alpha is 64.56746576057932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32257084289437987
the lambda is 20.0
the regulation term lambda/alpha is 62.001884052950956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2967918272983052
the lambda is 20.0
the regulation term lambda/alpha is 67.38730032447295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3057775383989782
the lambda is 20.0
the regulation term lambda/alpha is 65.40702794822039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2682523285221693
the lambda is 20.0
the regulation term lambda/alpha is 74.55666875356548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32097881008874113
the lambda is 20.0
the regulation term lambda/alpha is 62.309409130374036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30584448152617083
the lambda is 20.0
the regulation term lambda/alpha is 65.39271168209265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27260867802036454
the lambda is 20.0
the regulation term lambda/alpha is 73.36523600509133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2812777031585093
the lambda is 20.0
the regulation term lambda/alpha is 71.10410734806568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2749639093025085
the lambda is 20.0
the regulation term lambda/alpha is 72.73681862733662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2950633126256792
the lambda is 20.0
the regulation term lambda/alpha is 67.78206284619408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32639335021381477
the lambda is 20.0
the regulation term lambda/alpha is 61.2757581822618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2991738716698484
the lambda is 20.0
the regulation term lambda/alpha is 66.85075768271264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32135162708113424
the lambda is 20.0
the regulation term lambda/alpha is 62.23712069442996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2848875345786275
the lambda is 20.0
the regulation term lambda/alpha is 70.20314184536602
1220
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3228482625284183
the lambda is 20.0
the regulation term lambda/alpha is 61.94860657873147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31678940078932827
the lambda is 20.0
the regulation term lambda/alpha is 63.1334253929172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3028183654465733
the lambda is 20.0
the regulation term lambda/alpha is 66.04619231236366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2733093391104334
the lambda is 20.0
the regulation term lambda/alpha is 73.17715547187649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31321153108082883
the lambda is 20.0
the regulation term lambda/alpha is 63.85460947425562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32847952149044213
the lambda is 20.0
the regulation term lambda/alpha is 60.886596245793505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33134441431211603
the lambda is 20.0
the regulation term lambda/alpha is 60.360154377495036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30877998028050974
the lambda is 20.0
the regulation term lambda/alpha is 64.77103852986548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30045836818365174
the lambda is 20.0
the regulation term lambda/alpha is 66.5649624635358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30932720420035126
the lambda is 20.0
the regulation term lambda/alpha is 64.65645351724706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29491652053392176
the lambda is 20.0
the regulation term lambda/alpha is 67.81580076894868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2973776558161484
the lambda is 20.0
the regulation term lambda/alpha is 67.2545485810301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2779904161948688
the lambda is 20.0
the regulation term lambda/alpha is 71.94492628112826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3180182335627684
the lambda is 20.0
the regulation term lambda/alpha is 62.88947578866583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3017999261088875
the lambda is 20.0
the regulation term lambda/alpha is 66.2690685775189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3249201546442038
the lambda is 20.0
the regulation term lambda/alpha is 61.55358390094493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3058573483659304
the lambda is 20.0
the regulation term lambda/alpha is 65.38996073447882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.289108339903701
the lambda is 20.0
the regulation term lambda/alpha is 69.17821881811432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29596126831803454
the lambda is 20.0
the regulation term lambda/alpha is 67.57640995952337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2874869944849531
the lambda is 20.0
the regulation term lambda/alpha is 69.56836442577506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.304408075260622
the lambda is 20.0
the regulation term lambda/alpha is 65.70127938582706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33828091128042503
the lambda is 20.0
the regulation term lambda/alpha is 59.122461046643515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25067064475528694
the lambda is 20.0
the regulation term lambda/alpha is 79.78596783649984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28911591534629333
the lambda is 20.0
the regulation term lambda/alpha is 69.17640620387388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3022957539883421
the lambda is 20.0
the regulation term lambda/alpha is 66.16037352867117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29902326225866155
the lambda is 20.0
the regulation term lambda/alpha is 66.88442848536504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30566489278225384
the lambda is 20.0
the regulation term lambda/alpha is 65.43113217207897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3000632911708124
the lambda is 20.0
the regulation term lambda/alpha is 66.65260492865457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30415220746496935
the lambda is 20.0
the regulation term lambda/alpha is 65.75655053334931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30300577853462524
the lambda is 20.0
the regulation term lambda/alpha is 66.00534186748042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2917159207470561
the lambda is 20.0
the regulation term lambda/alpha is 68.55985079176325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33059682973246507
the lambda is 20.0
the regulation term lambda/alpha is 60.496647884327764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3231224052838682
the lambda is 20.0
the regulation term lambda/alpha is 61.89604828680846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2512991368880191
the lambda is 20.0
the regulation term lambda/alpha is 79.58642535613706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27329839777309173
the lambda is 20.0
the regulation term lambda/alpha is 73.18008507538038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3397112186936653
the lambda is 20.0
the regulation term lambda/alpha is 58.8735340472668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30168700628162237
the lambda is 20.0
the regulation term lambda/alpha is 66.29387273421436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29263282217442166
the lambda is 20.0
the regulation term lambda/alpha is 68.34503338138586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2700190202302686
the lambda is 20.0
the regulation term lambda/alpha is 74.06885627147402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2988130101859488
the lambda is 20.0
the regulation term lambda/alpha is 66.93148998952277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2793145648890111
the lambda is 20.0
the regulation term lambda/alpha is 71.6038564188274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28434417841852294
the lambda is 20.0
the regulation term lambda/alpha is 70.33729373759932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28796010885068324
the lambda is 20.0
the regulation term lambda/alpha is 69.45406459187949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2968896799747417
the lambda is 20.0
the regulation term lambda/alpha is 67.3650899610304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27795779230125256
the lambda is 20.0
the regulation term lambda/alpha is 71.95337045389921
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2727030812066152
the lambda is 20.0
the regulation term lambda/alpha is 73.33983874148777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31646603734797696
the lambda is 20.0
the regulation term lambda/alpha is 63.19793481664693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32400632099666005
the lambda is 20.0
the regulation term lambda/alpha is 61.72719081059584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31723836802541494
the lambda is 20.0
the regulation term lambda/alpha is 63.044076681159005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3080610595769269
the lambda is 20.0
the regulation term lambda/alpha is 64.92219440998753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2952527302822266
the lambda is 20.0
the regulation term lambda/alpha is 67.73857766152534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2816942273208461
the lambda is 20.0
the regulation term lambda/alpha is 70.99897001872267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2960954473999394
the lambda is 20.0
the regulation term lambda/alpha is 67.54578692655743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30190691966794714
the lambda is 20.0
the regulation term lambda/alpha is 66.24558331421166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26260175473219527
the lambda is 20.0
the regulation term lambda/alpha is 76.160953381276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29766076084755166
the lambda is 20.0
the regulation term lambda/alpha is 67.19058280658999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32417597050353536
the lambda is 20.0
the regulation term lambda/alpha is 61.69488740616537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29849915621052503
the lambda is 20.0
the regulation term lambda/alpha is 67.00186444042888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32973879730071143
the lambda is 20.0
the regulation term lambda/alpha is 60.65406971737277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30593907992613406
the lambda is 20.0
the regulation term lambda/alpha is 65.3724918203611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29004538596795326
the lambda is 20.0
the regulation term lambda/alpha is 68.95472559666842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27503726197899553
the lambda is 20.0
the regulation term lambda/alpha is 72.71741965467716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26635388316754005
the lambda is 20.0
the regulation term lambda/alpha is 75.08807366408749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3093687358512321
the lambda is 20.0
the regulation term lambda/alpha is 64.64777361865522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3081975596791617
the lambda is 20.0
the regulation term lambda/alpha is 64.89344049583099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2895447299529583
the lambda is 20.0
the regulation term lambda/alpha is 69.07395621826498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2806791014600732
the lambda is 20.0
the regulation term lambda/alpha is 71.25575041376928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2998460882155548
the lambda is 20.0
the regulation term lambda/alpha is 66.70088684172629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2937202152990589
the lambda is 20.0
the regulation term lambda/alpha is 68.09201055377301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33224586116820953
the lambda is 20.0
the regulation term lambda/alpha is 60.19638568160942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29376583302949955
the lambda is 20.0
the regulation term lambda/alpha is 68.08143681566817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29352663946930624
the lambda is 20.0
the regulation term lambda/alpha is 68.13691607739534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2815001273712237
the lambda is 20.0
the regulation term lambda/alpha is 71.04792522393898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2833233379238595
the lambda is 20.0
the regulation term lambda/alpha is 70.59072558779049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3335081148269758
the lambda is 20.0
the regulation term lambda/alpha is 59.96855581872727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28934838788511
the lambda is 20.0
the regulation term lambda/alpha is 69.12082747784754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30693599815435907
the lambda is 20.0
the regulation term lambda/alpha is 65.16016407414662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31209310734597523
the lambda is 20.0
the regulation term lambda/alpha is 64.08344025947589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3254278437317498
the lambda is 20.0
the regulation term lambda/alpha is 61.45755621478413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27692599321852684
the lambda is 20.0
the regulation term lambda/alpha is 72.22146165317776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31747592592511914
the lambda is 20.0
the regulation term lambda/alpha is 62.99690265244635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.297390905006344
the lambda is 20.0
the regulation term lambda/alpha is 67.25155229469225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30760868889678505
the lambda is 20.0
the regulation term lambda/alpha is 65.0176692723748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26250758205029745
the lambda is 20.0
the regulation term lambda/alpha is 76.18827556823834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28369415428959655
the lambda is 20.0
the regulation term lambda/alpha is 70.49845651589948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24744568145089949
the lambda is 20.0
the regulation term lambda/alpha is 80.82581956059957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30026852947533067
the lambda is 20.0
the regulation term lambda/alpha is 66.60704681555099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32297747915051583
the lambda is 20.0
the regulation term lambda/alpha is 61.923822220061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.326093481687149
the lambda is 20.0
the regulation term lambda/alpha is 61.3321060467802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.276596039895361
the lambda is 20.0
the regulation term lambda/alpha is 72.30761513276255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3170180510812176
the lambda is 20.0
the regulation term lambda/alpha is 63.08789020621464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2801834482878234
the lambda is 20.0
the regulation term lambda/alpha is 71.38180403667046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2751033862092738
the lambda is 20.0
the regulation term lambda/alpha is 72.69994119514692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30499087825942406
the lambda is 20.0
the regulation term lambda/alpha is 65.57573168790995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2913555840466966
the lambda is 20.0
the regulation term lambda/alpha is 68.64464281829082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32240551861884525
the lambda is 20.0
the regulation term lambda/alpha is 62.033677604769636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26669313849151194
the lambda is 20.0
the regulation term lambda/alpha is 74.99255553826909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2844523515079818
the lambda is 20.0
the regulation term lambda/alpha is 70.31054548845519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30816468507229694
the lambda is 20.0
the regulation term lambda/alpha is 64.90036324346478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31903664247162716
the lambda is 20.0
the regulation term lambda/alpha is 62.68872391916128
1230
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30966646313618307
the lambda is 20.0
the regulation term lambda/alpha is 64.58561833738041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2651986132160865
the lambda is 20.0
the regulation term lambda/alpha is 75.41517565819169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29158087028456736
the lambda is 20.0
the regulation term lambda/alpha is 68.59160541115426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2947228802436191
the lambda is 20.0
the regulation term lambda/alpha is 67.86035744312733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3360485588298008
the lambda is 20.0
the regulation term lambda/alpha is 59.515208366447546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2818337219271442
the lambda is 20.0
the regulation term lambda/alpha is 70.96382882517561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31811961034625935
the lambda is 20.0
the regulation term lambda/alpha is 62.86943448167458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30599071413097634
the lambda is 20.0
the regulation term lambda/alpha is 65.36146058157567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2576847996738638
the lambda is 20.0
the regulation term lambda/alpha is 77.61420163437191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27020488161497375
the lambda is 20.0
the regulation term lambda/alpha is 74.01790774638498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32447560957053906
the lambda is 20.0
the regulation term lambda/alpha is 61.63791486969106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3196504317868488
the lambda is 20.0
the regulation term lambda/alpha is 62.568349706896434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2920985928067741
the lambda is 20.0
the regulation term lambda/alpha is 68.4700320115208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30056101593735524
the lambda is 20.0
the regulation term lambda/alpha is 66.54222916310783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3102530836042568
the lambda is 20.0
the regulation term lambda/alpha is 64.46350111224355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.268516276676987
the lambda is 20.0
the regulation term lambda/alpha is 74.48338047700214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3057907696596086
the lambda is 20.0
the regulation term lambda/alpha is 65.40419785156702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3055678287902563
the lambda is 20.0
the regulation term lambda/alpha is 65.45191645069458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32083388323568973
the lambda is 20.0
the regulation term lambda/alpha is 62.337555492253536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2961913442302622
the lambda is 20.0
the regulation term lambda/alpha is 67.52391786456728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.307056392733348
the lambda is 20.0
the regulation term lambda/alpha is 65.13461524759158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28933874061502624
the lambda is 20.0
the regulation term lambda/alpha is 69.12313213739529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3013832004405603
the lambda is 20.0
the regulation term lambda/alpha is 66.36069950403378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2926830848487029
the lambda is 20.0
the regulation term lambda/alpha is 68.33329644020469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3001324871000625
the lambda is 20.0
the regulation term lambda/alpha is 66.63723808523304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28919568899897063
the lambda is 20.0
the regulation term lambda/alpha is 69.15732412619467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30225544682324107
the lambda is 20.0
the regulation term lambda/alpha is 66.16919632120309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2961715664886231
the lambda is 20.0
the regulation term lambda/alpha is 67.52842697601852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3263489731876405
the lambda is 20.0
the regulation term lambda/alpha is 61.28409047728372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2925185130647556
the lambda is 20.0
the regulation term lambda/alpha is 68.37174095566576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29008866334073713
the lambda is 20.0
the regulation term lambda/alpha is 68.94443846813851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2979745996126047
the lambda is 20.0
the regulation term lambda/alpha is 67.11981499766054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2611302898906752
the lambda is 20.0
the regulation term lambda/alpha is 76.59011908719283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32522494649484485
the lambda is 20.0
the regulation term lambda/alpha is 61.495897579668046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.324319123168336
the lambda is 20.0
the regulation term lambda/alpha is 61.66765562454704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29167350952266163
the lambda is 20.0
the regulation term lambda/alpha is 68.56981983976195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28643385206635674
the lambda is 20.0
the regulation term lambda/alpha is 69.82414912105675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3259662380055874
the lambda is 20.0
the regulation term lambda/alpha is 61.3560475537874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28725032624707025
the lambda is 20.0
the regulation term lambda/alpha is 69.62568245369917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26597327539586335
the lambda is 20.0
the regulation term lambda/alpha is 75.19552470161841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3041970976483646
the lambda is 20.0
the regulation term lambda/alpha is 65.74684687859487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3359986610896388
the lambda is 20.0
the regulation term lambda/alpha is 59.52404671834194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.317286337648638
the lambda is 20.0
the regulation term lambda/alpha is 63.034545225669135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2963972803655822
the lambda is 20.0
the regulation term lambda/alpha is 67.47700240478459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3135985165801241
the lambda is 20.0
the regulation term lambda/alpha is 63.77581188235634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.262724427003938
the lambda is 20.0
the regulation term lambda/alpha is 76.12539202416919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3087780927641585
the lambda is 20.0
the regulation term lambda/alpha is 64.77143446596709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2957453162119823
the lambda is 20.0
the regulation term lambda/alpha is 67.62575399728237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2889592603932577
the lambda is 20.0
the regulation term lambda/alpha is 69.21390916069309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.279948090304904
the lambda is 20.0
the regulation term lambda/alpha is 71.4418161531915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31589668615161787
the lambda is 20.0
the regulation term lambda/alpha is 63.31183857497256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30770771008778264
the lambda is 20.0
the regulation term lambda/alpha is 64.99674640682359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2888717084905519
the lambda is 20.0
the regulation term lambda/alpha is 69.23488667168714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2983220087101327
the lambda is 20.0
the regulation term lambda/alpha is 67.04165102157509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.299875656837139
the lambda is 20.0
the regulation term lambda/alpha is 66.6943099381418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31853444086626587
the lambda is 20.0
the regulation term lambda/alpha is 62.787559001812426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2876369325733008
the lambda is 20.0
the regulation term lambda/alpha is 69.53210014121966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29315046177208054
the lambda is 20.0
the regulation term lambda/alpha is 68.22435100085109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3007115623850312
the lambda is 20.0
the regulation term lambda/alpha is 66.50891585735566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32371296977606157
the lambda is 20.0
the regulation term lambda/alpha is 61.78312847284314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32163234440136196
the lambda is 20.0
the regulation term lambda/alpha is 62.18280079145955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2961265210928881
the lambda is 20.0
the regulation term lambda/alpha is 67.53869908776748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2880794429348868
the lambda is 20.0
the regulation term lambda/alpha is 69.42529392671904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2717666128778257
the lambda is 20.0
the regulation term lambda/alpha is 73.59255718799835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2890249939769464
the lambda is 20.0
the regulation term lambda/alpha is 69.19816769062977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29396837196048486
the lambda is 20.0
the regulation term lambda/alpha is 68.0345299278944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3406263138714506
the lambda is 20.0
the regulation term lambda/alpha is 58.71536985116137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3047908823326906
the lambda is 20.0
the regulation term lambda/alpha is 65.61876079406225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29398754951970874
the lambda is 20.0
the regulation term lambda/alpha is 68.03009186162564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2614424872341809
the lambda is 20.0
the regulation term lambda/alpha is 76.49866022765258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29003228142254456
the lambda is 20.0
the regulation term lambda/alpha is 68.95784118203808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2987643127474968
the lambda is 20.0
the regulation term lambda/alpha is 66.94239956598554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3194324066479786
the lambda is 20.0
the regulation term lambda/alpha is 62.611055058168944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2732378595098158
the lambda is 20.0
the regulation term lambda/alpha is 73.1962987701619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29191850533246333
the lambda is 20.0
the regulation term lambda/alpha is 68.51227186581468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30668613211501
the lambda is 20.0
the regulation term lambda/alpha is 65.21325193960783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2871949406154956
the lambda is 20.0
the regulation term lambda/alpha is 69.63910978771922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3136381325972627
the lambda is 20.0
the regulation term lambda/alpha is 63.76775628135005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28072166577497265
the lambda is 20.0
the regulation term lambda/alpha is 71.24494628794366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2939267454943366
the lambda is 20.0
the regulation term lambda/alpha is 68.04416510774914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2967013005470195
the lambda is 20.0
the regulation term lambda/alpha is 67.40786091306842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30152536984739586
the lambda is 20.0
the regulation term lambda/alpha is 66.32941039131182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3067540730674817
the lambda is 20.0
the regulation term lambda/alpha is 65.19880828314307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3171833755771499
the lambda is 20.0
the regulation term lambda/alpha is 63.05500710309237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3159793492649095
the lambda is 20.0
the regulation term lambda/alpha is 63.295275613826526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2882323099641974
the lambda is 20.0
the regulation term lambda/alpha is 69.38847349377413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27134914818311073
the lambda is 20.0
the regulation term lambda/alpha is 73.7057777181732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25522601913062304
the lambda is 20.0
the regulation term lambda/alpha is 78.36191650101367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33318257544519453
the lambda is 20.0
the regulation term lambda/alpha is 60.027148698506345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3079186606176362
the lambda is 20.0
the regulation term lambda/alpha is 64.95221809513967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29590584917865387
the lambda is 20.0
the regulation term lambda/alpha is 67.58906610164692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32718263627496613
the lambda is 20.0
the regulation term lambda/alpha is 61.12793829068572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2746791302034356
the lambda is 20.0
the regulation term lambda/alpha is 72.8122299833533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2828473983071793
the lambda is 20.0
the regulation term lambda/alpha is 70.70950667992182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31481216332064405
the lambda is 20.0
the regulation term lambda/alpha is 63.5299468389012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25784892541883825
the lambda is 20.0
the regulation term lambda/alpha is 77.56479871891223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2821919380486717
the lambda is 20.0
the regulation term lambda/alpha is 70.87374691955392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2880478543418106
the lambda is 20.0
the regulation term lambda/alpha is 69.43290740943029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3190776094299396
the lambda is 20.0
the regulation term lambda/alpha is 62.68067519915223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2909695031178411
the lambda is 20.0
the regulation term lambda/alpha is 68.73572586024628
1240
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3442108279179175
the lambda is 20.0
the regulation term lambda/alpha is 58.10392462368823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2924395425566461
the lambda is 20.0
the regulation term lambda/alpha is 68.39020409193111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.326621880519516
the lambda is 20.0
the regulation term lambda/alpha is 61.232884852014614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27073987262580407
the lambda is 20.0
the regulation term lambda/alpha is 73.87164589399977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29951164967544147
the lambda is 20.0
the regulation term lambda/alpha is 66.77536590537468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2889273443611424
the lambda is 20.0
the regulation term lambda/alpha is 69.22155479683903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2837623457186183
the lambda is 20.0
the regulation term lambda/alpha is 70.48151490766223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2975855092803974
the lambda is 20.0
the regulation term lambda/alpha is 67.207573542014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32771465006594525
the lambda is 20.0
the regulation term lambda/alpha is 61.02870285467997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3021208611551787
the lambda is 20.0
the regulation term lambda/alpha is 66.19867268856808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2796485262574629
the lambda is 20.0
the regulation term lambda/alpha is 71.51834578805068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30951944747035215
the lambda is 20.0
the regulation term lambda/alpha is 64.61629523914078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32275303540626027
the lambda is 20.0
the regulation term lambda/alpha is 61.96688429227417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3006095075680945
the lambda is 20.0
the regulation term lambda/alpha is 66.53149516726303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2808842877213618
the lambda is 20.0
the regulation term lambda/alpha is 71.20369801475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28658376696694854
the lambda is 20.0
the regulation term lambda/alpha is 69.78762339426777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2921946653261772
the lambda is 20.0
the regulation term lambda/alpha is 68.44751931960832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3143749670062481
the lambda is 20.0
the regulation term lambda/alpha is 63.61829693520892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2820219262169842
the lambda is 20.0
the regulation term lambda/alpha is 70.91647187960928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29965759406496484
the lambda is 20.0
the regulation term lambda/alpha is 66.74284381948306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3086154681166593
the lambda is 20.0
the regulation term lambda/alpha is 64.80556571597322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2920682228543403
the lambda is 20.0
the regulation term lambda/alpha is 68.47715168922831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29094048380267584
the lambda is 20.0
the regulation term lambda/alpha is 68.74258177684399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2815550244440317
the lambda is 20.0
the regulation term lambda/alpha is 71.03407243217447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2823166691589424
the lambda is 20.0
the regulation term lambda/alpha is 70.84243399294334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3233856748794928
the lambda is 20.0
the regulation term lambda/alpha is 61.84565846168927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.277798518128232
the lambda is 20.0
the regulation term lambda/alpha is 71.9946245025252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30719132844330954
the lambda is 20.0
the regulation term lambda/alpha is 65.10600446096541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30128831215153223
the lambda is 20.0
the regulation term lambda/alpha is 66.3815992634359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3202282650947606
the lambda is 20.0
the regulation term lambda/alpha is 62.455448753350005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3147702082265873
the lambda is 20.0
the regulation term lambda/alpha is 63.53841461896865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27995357597709464
the lambda is 20.0
the regulation term lambda/alpha is 71.44041625543075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2904382497135195
the lambda is 20.0
the regulation term lambda/alpha is 68.86145340611115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3141505404654378
the lambda is 20.0
the regulation term lambda/alpha is 63.66374531894323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2746983086315057
the lambda is 20.0
the regulation term lambda/alpha is 72.80714650059612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3518438866797388
the lambda is 20.0
the regulation term lambda/alpha is 56.84339207577232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27323182351984837
the lambda is 20.0
the regulation term lambda/alpha is 73.19791575649731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2946929427187496
the lambda is 20.0
the regulation term lambda/alpha is 67.86725130057727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3180542628171425
the lambda is 20.0
the regulation term lambda/alpha is 62.88235165550512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29117002291363103
the lambda is 20.0
the regulation term lambda/alpha is 68.68838969021391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3358470735558702
the lambda is 20.0
the regulation term lambda/alpha is 59.55091342093496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3584715920180207
the lambda is 20.0
the regulation term lambda/alpha is 55.792426639471564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27592404108868646
the lambda is 20.0
the regulation term lambda/alpha is 72.48371660942612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2577300527245314
the lambda is 20.0
the regulation term lambda/alpha is 77.60057388952045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28411247986471855
the lambda is 20.0
the regulation term lambda/alpha is 70.39465499552533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26038898094241103
the lambda is 20.0
the regulation term lambda/alpha is 76.8081657204354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30325879734954764
the lambda is 20.0
the regulation term lambda/alpha is 65.95027143416137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32560429704381405
the lambda is 20.0
the regulation term lambda/alpha is 61.424250790242965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2884128937225432
the lambda is 20.0
the regulation term lambda/alpha is 69.34502733861909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3113402180107776
the lambda is 20.0
the regulation term lambda/alpha is 64.2384081561466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30696738419334824
the lambda is 20.0
the regulation term lambda/alpha is 65.1535017394639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31398989234522556
the lambda is 20.0
the regulation term lambda/alpha is 63.69631789933672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28380721241389184
the lambda is 20.0
the regulation term lambda/alpha is 70.47037258106354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2918941435854342
the lambda is 20.0
the regulation term lambda/alpha is 68.51798996147458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.36044117793328245
the lambda is 20.0
the regulation term lambda/alpha is 55.48755587437902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30766403594408503
the lambda is 20.0
the regulation term lambda/alpha is 65.0059729556262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2944970168201122
the lambda is 20.0
the regulation term lambda/alpha is 67.91240269919818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30407547155802184
the lambda is 20.0
the regulation term lambda/alpha is 65.77314473122085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2719362014596484
the lambda is 20.0
the regulation term lambda/alpha is 73.54666238863281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27539062613320053
the lambda is 20.0
the regulation term lambda/alpha is 72.62411317633749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3419383150896273
the lambda is 20.0
the regulation term lambda/alpha is 58.49008174108155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30539688926336594
the lambda is 20.0
the regulation term lambda/alpha is 65.48855179318001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29556024318913876
the lambda is 20.0
the regulation term lambda/alpha is 67.66809968822952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29414299136016614
the lambda is 20.0
the regulation term lambda/alpha is 67.99414090241169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31446790872995634
the lambda is 20.0
the regulation term lambda/alpha is 63.599494399203195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30397705587996804
the lambda is 20.0
the regulation term lambda/alpha is 65.79443945893547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3288903022690249
the lambda is 20.0
the regulation term lambda/alpha is 60.81054948114721
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3028227473142382
the lambda is 20.0
the regulation term lambda/alpha is 66.04523661905115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26597629595643274
the lambda is 20.0
the regulation term lambda/alpha is 75.19467074342604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3338844005280569
the lambda is 20.0
the regulation term lambda/alpha is 59.90097161882639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3099908257449604
the lambda is 20.0
the regulation term lambda/alpha is 64.51803840302891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3643355684364049
the lambda is 20.0
the regulation term lambda/alpha is 54.89444823032977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33396870222390385
the lambda is 20.0
the regulation term lambda/alpha is 59.88585117952558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3301011077255522
the lambda is 20.0
the regulation term lambda/alpha is 60.58749738164498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28509526712625083
the lambda is 20.0
the regulation term lambda/alpha is 70.15198884779541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2877760221609283
the lambda is 20.0
the regulation term lambda/alpha is 69.49849348051565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26869912555569003
the lambda is 20.0
the regulation term lambda/alpha is 74.43269477948056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3161334774636155
the lambda is 20.0
the regulation term lambda/alpha is 63.264416538428286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32095293221129034
the lambda is 20.0
the regulation term lambda/alpha is 62.31443302980501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32247636113706096
the lambda is 20.0
the regulation term lambda/alpha is 62.02004987118877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3162795773770972
the lambda is 20.0
the regulation term lambda/alpha is 63.23519262881202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3228580006844223
the lambda is 20.0
the regulation term lambda/alpha is 61.94673806318032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28730806796198255
the lambda is 20.0
the regulation term lambda/alpha is 69.61168943799538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32005522865737907
the lambda is 20.0
the regulation term lambda/alpha is 62.48921501423154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29840579178106436
the lambda is 20.0
the regulation term lambda/alpha is 67.02282780983583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25025236141014073
the lambda is 20.0
the regulation term lambda/alpha is 79.91932578498961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29592138546915825
the lambda is 20.0
the regulation term lambda/alpha is 67.58551758025766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30341273741544095
the lambda is 20.0
the regulation term lambda/alpha is 65.91681077849891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3259739901417481
the lambda is 20.0
the regulation term lambda/alpha is 61.354588417631426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3118477761667625
the lambda is 20.0
the regulation term lambda/alpha is 64.13385481160167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3098514708235795
the lambda is 20.0
the regulation term lambda/alpha is 64.5470552288823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28916201783583856
the lambda is 20.0
the regulation term lambda/alpha is 69.16537707713151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28564798216400084
the lambda is 20.0
the regulation term lambda/alpha is 70.01624814040268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26820631332665473
the lambda is 20.0
the regulation term lambda/alpha is 74.56946017389804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2889205663791442
the lambda is 20.0
the regulation term lambda/alpha is 69.22317871187623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.300035508560428
the lambda is 20.0
the regulation term lambda/alpha is 66.6587768093187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3099600298090777
the lambda is 20.0
the regulation term lambda/alpha is 64.52444856299425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29082408194058024
the lambda is 20.0
the regulation term lambda/alpha is 68.77009588252153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2903646169619417
the lambda is 20.0
the regulation term lambda/alpha is 68.8789157895964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30657486997846733
the lambda is 20.0
the regulation term lambda/alpha is 65.2369191297536
1250
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29952248718057534
the lambda is 20.0
the regulation term lambda/alpha is 66.77294979839844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32454306250285403
the lambda is 20.0
the regulation term lambda/alpha is 61.6251040640381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29173039419102215
the lambda is 20.0
the regulation term lambda/alpha is 68.55644937326689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3843702840975056
the lambda is 20.0
the regulation term lambda/alpha is 52.0331587207883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3499096459208021
the lambda is 20.0
the regulation term lambda/alpha is 57.157612638454566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30881998800866994
the lambda is 20.0
the regulation term lambda/alpha is 64.76264742112001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3176684922054209
the lambda is 20.0
the regulation term lambda/alpha is 62.9587147946261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30227041751178946
the lambda is 20.0
the regulation term lambda/alpha is 66.16591912842394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28707112761359455
the lambda is 20.0
the regulation term lambda/alpha is 69.66914494766098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30982947233135544
the lambda is 20.0
the regulation term lambda/alpha is 64.55163819473721
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3118030058261616
the lambda is 20.0
the regulation term lambda/alpha is 64.14306349294954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2863706106573213
the lambda is 20.0
the regulation term lambda/alpha is 69.83956892117165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3167473204928043
the lambda is 20.0
the regulation term lambda/alpha is 63.141812751196895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27454365411046067
the lambda is 20.0
the regulation term lambda/alpha is 72.84815984839024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27857200759638356
the lambda is 20.0
the regulation term lambda/alpha is 71.79472256587076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.313969518005474
the lambda is 20.0
the regulation term lambda/alpha is 63.70045132741613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33157751823605763
the lambda is 20.0
the regulation term lambda/alpha is 60.3177202917646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3320779368042978
the lambda is 20.0
the regulation term lambda/alpha is 60.22682564360342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3439510193130708
the lambda is 20.0
the regulation term lambda/alpha is 58.14781430199983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3259427807674501
the lambda is 20.0
the regulation term lambda/alpha is 61.36046318592763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28712898300891715
the lambda is 20.0
the regulation term lambda/alpha is 69.6551068805857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29031457175548686
the lambda is 20.0
the regulation term lambda/alpha is 68.89078932229658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2862934167500201
the lambda is 20.0
the regulation term lambda/alpha is 69.85839991376118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2949427939006582
the lambda is 20.0
the regulation term lambda/alpha is 67.80975976899556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3039425464034227
the lambda is 20.0
the regulation term lambda/alpha is 65.80190972491891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32660163247256074
the lambda is 20.0
the regulation term lambda/alpha is 61.23668105572096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3309201408768962
the lambda is 20.0
the regulation term lambda/alpha is 60.43754226322565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3001545949511781
the lambda is 20.0
the regulation term lambda/alpha is 66.63232992735999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31513906416790555
the lambda is 20.0
the regulation term lambda/alpha is 63.46404579453861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2916277598581533
the lambda is 20.0
the regulation term lambda/alpha is 68.58057686184583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3016393087109309
the lambda is 20.0
the regulation term lambda/alpha is 66.30435564075151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29676599125405495
the lambda is 20.0
the regulation term lambda/alpha is 67.39316697134083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3007108483544365
the lambda is 20.0
the regulation term lambda/alpha is 66.50907378115856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29029110781067696
the lambda is 20.0
the regulation term lambda/alpha is 68.89635769705929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2615419357796004
the lambda is 20.0
the regulation term lambda/alpha is 76.46957242395676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3300339470510938
the lambda is 20.0
the regulation term lambda/alpha is 60.599826710867795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30181104363401773
the lambda is 20.0
the regulation term lambda/alpha is 66.26662748713865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31471117690621253
the lambda is 20.0
the regulation term lambda/alpha is 63.55033271017326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2672625328145678
the lambda is 20.0
the regulation term lambda/alpha is 74.83278628462452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3090410379726481
the lambda is 20.0
the regulation term lambda/alpha is 64.71632418530162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28346881673756263
the lambda is 20.0
the regulation term lambda/alpha is 70.5544977757329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3018957063009318
the lambda is 20.0
the regulation term lambda/alpha is 66.24804388593674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2725312001337892
the lambda is 20.0
the regulation term lambda/alpha is 73.386093005798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3089791369311902
the lambda is 20.0
the regulation term lambda/alpha is 64.72928948744526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27966925554015004
the lambda is 20.0
the regulation term lambda/alpha is 71.5130447977638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2849989096103702
the lambda is 20.0
the regulation term lambda/alpha is 70.17570708373076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2855466809205888
the lambda is 20.0
the regulation term lambda/alpha is 70.04108727694175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2747359062363435
the lambda is 20.0
the regulation term lambda/alpha is 72.79718284363916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27726846663716104
the lambda is 20.0
the regulation term lambda/alpha is 72.1322559415759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2833575768400667
the lambda is 20.0
the regulation term lambda/alpha is 70.5821959060881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25969388495140017
the lambda is 20.0
the regulation term lambda/alpha is 77.01375026116943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2980451880146329
the lambda is 20.0
the regulation term lambda/alpha is 67.10391848036839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3182986442435855
the lambda is 20.0
the regulation term lambda/alpha is 62.834072220221366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.300747382033199
the lambda is 20.0
the regulation term lambda/alpha is 66.50099450505685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3112615687705623
the lambda is 20.0
the regulation term lambda/alpha is 64.25463984839848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27297140360537353
the lambda is 20.0
the regulation term lambda/alpha is 73.26774796129705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.311884015154069
the lambda is 20.0
the regulation term lambda/alpha is 64.12640285562603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3346030413358482
the lambda is 20.0
the regulation term lambda/alpha is 59.772319821580986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28846613001239446
the lambda is 20.0
the regulation term lambda/alpha is 69.33222974614269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2659135089921078
the lambda is 20.0
the regulation term lambda/alpha is 75.21242555824267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3453152841376676
the lambda is 20.0
the regulation term lambda/alpha is 57.91808506230659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2778993652370877
the lambda is 20.0
the regulation term lambda/alpha is 71.96849831930042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2922752030480106
the lambda is 20.0
the regulation term lambda/alpha is 68.42865830364234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30260871301978726
the lambda is 20.0
the regulation term lambda/alpha is 66.09195022977485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31257293881004783
the lambda is 20.0
the regulation term lambda/alpha is 63.9850656174497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29682283898062406
the lambda is 20.0
the regulation term lambda/alpha is 67.3802597828584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26940815144981
the lambda is 20.0
the regulation term lambda/alpha is 74.23680349822654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3029234937440353
the lambda is 20.0
the regulation term lambda/alpha is 66.02327126498687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31415961244850593
the lambda is 20.0
the regulation term lambda/alpha is 63.66190690179251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2969701679918738
the lambda is 20.0
the regulation term lambda/alpha is 67.34683195703103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31743944677110175
the lambda is 20.0
the regulation term lambda/alpha is 63.00414206058498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2928146130317992
the lambda is 20.0
the regulation term lambda/alpha is 68.30260208983502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.327110339329557
the lambda is 20.0
the regulation term lambda/alpha is 61.14144860413723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35451067695249805
the lambda is 20.0
the regulation term lambda/alpha is 56.41579027161391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29095744773648036
the lambda is 20.0
the regulation term lambda/alpha is 68.73857382098693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30534090638258027
the lambda is 20.0
the regulation term lambda/alpha is 65.50055882437441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27577158349910325
the lambda is 20.0
the regulation term lambda/alpha is 72.52378851450818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26619379981040625
the lambda is 20.0
the regulation term lambda/alpha is 75.13323005361053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3263784002345134
the lambda is 20.0
the regulation term lambda/alpha is 61.27856495904555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31543466658695585
the lambda is 20.0
the regulation term lambda/alpha is 63.40457190835301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2684507086114548
the lambda is 20.0
the regulation term lambda/alpha is 74.50157275966527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3184488335658302
the lambda is 20.0
the regulation term lambda/alpha is 62.80443792508215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32194677954028583
the lambda is 20.0
the regulation term lambda/alpha is 62.122068835595734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2758014693355077
the lambda is 20.0
the regulation term lambda/alpha is 72.51592983962804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28730166097142745
the lambda is 20.0
the regulation term lambda/alpha is 69.61324181828878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27628070115640047
the lambda is 20.0
the regulation term lambda/alpha is 72.39014493697172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2992167564479647
the lambda is 20.0
the regulation term lambda/alpha is 66.8411764014229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3210212991558358
the lambda is 20.0
the regulation term lambda/alpha is 62.30116211164932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2695261070929901
the lambda is 20.0
the regulation term lambda/alpha is 74.20431443808052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28379636225038796
the lambda is 20.0
the regulation term lambda/alpha is 70.47306681949078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32689765096838186
the lambda is 20.0
the regulation term lambda/alpha is 61.18122886705734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2870149342987341
the lambda is 20.0
the regulation term lambda/alpha is 69.68278514449487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3112590876292767
the lambda is 20.0
the regulation term lambda/alpha is 64.25515204176426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31619350530194307
the lambda is 20.0
the regulation term lambda/alpha is 63.252406088801145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29137009279718185
the lambda is 20.0
the regulation term lambda/alpha is 68.6412246637876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3147314912090332
the lambda is 20.0
the regulation term lambda/alpha is 63.54623086228358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27849831971304784
the lambda is 20.0
the regulation term lambda/alpha is 71.81371873484588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31077846398427417
the lambda is 20.0
the regulation term lambda/alpha is 64.35452361657862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30436124071631354
the lambda is 20.0
the regulation term lambda/alpha is 65.7113893770772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.303062110078527
the lambda is 20.0
the regulation term lambda/alpha is 65.99307315196137
1260
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3112417092899497
the lambda is 20.0
the regulation term lambda/alpha is 64.25873976089817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2949570086636888
the lambda is 20.0
the regulation term lambda/alpha is 67.80649183625293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30009961274766933
the lambda is 20.0
the regulation term lambda/alpha is 66.64453784822595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28849431142247084
the lambda is 20.0
the regulation term lambda/alpha is 69.32545706494717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2807002284612466
the lambda is 20.0
the regulation term lambda/alpha is 71.25038732471567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26553375452130407
the lambda is 20.0
the regulation term lambda/alpha is 75.31999099721003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3249571529198884
the lambda is 20.0
the regulation term lambda/alpha is 61.54657566479416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32688038900438365
the lambda is 20.0
the regulation term lambda/alpha is 61.184459737447845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30693977838433123
the lambda is 20.0
the regulation term lambda/alpha is 65.1593615701293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31428202190703397
the lambda is 20.0
the regulation term lambda/alpha is 63.63711127554121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27750945065566446
the lambda is 20.0
the regulation term lambda/alpha is 72.06961763913449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29809801116415535
the lambda is 20.0
the regulation term lambda/alpha is 67.0920276250568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29178826164600863
the lambda is 20.0
the regulation term lambda/alpha is 68.54285325659734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31158658760105673
the lambda is 20.0
the regulation term lambda/alpha is 64.18761524359071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.283271527020818
the lambda is 20.0
the regulation term lambda/alpha is 70.60363676625423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32161024197689175
the lambda is 20.0
the regulation term lambda/alpha is 62.18707425815448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3448785889771863
the lambda is 20.0
the regulation term lambda/alpha is 57.99142260270323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27770487355007967
the lambda is 20.0
the regulation term lambda/alpha is 72.0189017366788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2928280553981831
the lambda is 20.0
the regulation term lambda/alpha is 68.29946663684362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3299388207607205
the lambda is 20.0
the regulation term lambda/alpha is 60.61729854609766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28701089156390897
the lambda is 20.0
the regulation term lambda/alpha is 69.68376667178354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30737841391339277
the lambda is 20.0
the regulation term lambda/alpha is 65.06637777640175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28802882910841915
the lambda is 20.0
the regulation term lambda/alpha is 69.43749367696678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33881154475345543
the lambda is 20.0
the regulation term lambda/alpha is 59.02986574602554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29641704475115205
the lambda is 20.0
the regulation term lambda/alpha is 67.47250319829075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3012639890181886
the lambda is 20.0
the regulation term lambda/alpha is 66.38695871079537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2885158771829165
the lambda is 20.0
the regulation term lambda/alpha is 69.32027517958805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32376491305594207
the lambda is 20.0
the regulation term lambda/alpha is 61.773216285929905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2985489256198675
the lambda is 20.0
the regulation term lambda/alpha is 66.99069493710167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3129871048934688
the lambda is 20.0
the regulation term lambda/alpha is 63.90039617385318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30476273505735624
the lambda is 20.0
the regulation term lambda/alpha is 65.62482121128099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2843178277600919
the lambda is 20.0
the regulation term lambda/alpha is 70.34381261830704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2625551206987118
the lambda is 20.0
the regulation term lambda/alpha is 76.17448079769304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2863576285025256
the lambda is 20.0
the regulation term lambda/alpha is 69.84273513015074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31268316497735793
the lambda is 20.0
the regulation term lambda/alpha is 63.96250978669812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2882062047420766
the lambda is 20.0
the regulation term lambda/alpha is 69.39475858230927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29740752959317773
the lambda is 20.0
the regulation term lambda/alpha is 67.24779304464113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2948384259045559
the lambda is 20.0
the regulation term lambda/alpha is 67.83376331847035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2938388585844175
the lambda is 20.0
the regulation term lambda/alpha is 68.06451704975625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3183707295723439
the lambda is 20.0
the regulation term lambda/alpha is 62.81984536350213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29453294267771013
the lambda is 20.0
the regulation term lambda/alpha is 67.90411903732212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3133038143832393
the lambda is 20.0
the regulation term lambda/alpha is 63.835801167538975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31838803492672424
the lambda is 20.0
the regulation term lambda/alpha is 62.81643091456914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29025091714878454
the lambda is 20.0
the regulation term lambda/alpha is 68.90589768489127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2876946498280764
the lambda is 20.0
the regulation term lambda/alpha is 69.51815062237623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31648217959841435
the lambda is 20.0
the regulation term lambda/alpha is 63.194711390632136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3136814017497799
the lambda is 20.0
the regulation term lambda/alpha is 63.758960169254074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31901628609658317
the lambda is 20.0
the regulation term lambda/alpha is 62.69272407598945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.294052756989298
the lambda is 20.0
the regulation term lambda/alpha is 68.0150058947684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2807905129675245
the lambda is 20.0
the regulation term lambda/alpha is 71.2274776972723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29196625803134285
the lambda is 20.0
the regulation term lambda/alpha is 68.50106630421993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2834310427426586
the lambda is 20.0
the regulation term lambda/alpha is 70.5639008573913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3090406745638299
the lambda is 20.0
the regulation term lambda/alpha is 64.71640028687926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30127029155446877
the lambda is 20.0
the regulation term lambda/alpha is 66.385569904041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29602539836108777
the lambda is 20.0
the regulation term lambda/alpha is 67.5617704113492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.306382057104686
the lambda is 20.0
the regulation term lambda/alpha is 65.2779741379121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.306967442952728
the lambda is 20.0
the regulation term lambda/alpha is 65.15348926785026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29422747883497224
the lambda is 20.0
the regulation term lambda/alpha is 67.97461637231272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30689384874278175
the lambda is 20.0
the regulation term lambda/alpha is 65.1691133006797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2640173780709438
the lambda is 20.0
the regulation term lambda/alpha is 75.7525892656423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3026661655363238
the lambda is 20.0
the regulation term lambda/alpha is 66.07940456297797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34343975301674995
the lambda is 20.0
the regulation term lambda/alpha is 58.23437684287112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2966128469998573
the lambda is 20.0
the regulation term lambda/alpha is 67.42796275445757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2860531228372864
the lambda is 20.0
the regulation term lambda/alpha is 69.91708323833423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2862751105283529
the lambda is 20.0
the regulation term lambda/alpha is 69.86286709692558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35229897165515905
the lambda is 20.0
the regulation term lambda/alpha is 56.7699641757019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3196125328506741
the lambda is 20.0
the regulation term lambda/alpha is 62.57576892125248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2689965218020451
the lambda is 20.0
the regulation term lambda/alpha is 74.3504037376291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32814651841205594
the lambda is 20.0
the regulation term lambda/alpha is 60.948383962086886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29080384590082925
the lambda is 20.0
the regulation term lambda/alpha is 68.77488135703837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30252347687134135
the lambda is 20.0
the regulation term lambda/alpha is 66.11057167145312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26625518157546
the lambda is 20.0
the regulation term lambda/alpha is 75.11590903755521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29166353994719985
the lambda is 20.0
the regulation term lambda/alpha is 68.57216367743675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31621908259514736
the lambda is 20.0
the regulation term lambda/alpha is 63.2472899353953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30172112121692013
the lambda is 20.0
the regulation term lambda/alpha is 66.28637703364873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3352695043318917
the lambda is 20.0
the regulation term lambda/alpha is 59.653501859213236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26723798980353386
the lambda is 20.0
the regulation term lambda/alpha is 74.83965889244811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3218778912995554
the lambda is 20.0
the regulation term lambda/alpha is 62.135364188113854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2821609597274539
the lambda is 20.0
the regulation term lambda/alpha is 70.88152811543625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29276386303750657
the lambda is 20.0
the regulation term lambda/alpha is 68.31444220094117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28896349540776106
the lambda is 20.0
the regulation term lambda/alpha is 69.21289476990053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30987259290988234
the lambda is 20.0
the regulation term lambda/alpha is 64.54265545780757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2987424424972172
the lambda is 20.0
the regulation term lambda/alpha is 66.94730026580103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.330772968985306
the lambda is 20.0
the regulation term lambda/alpha is 60.464432935233184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33117568971814065
the lambda is 20.0
the regulation term lambda/alpha is 60.390906159270756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3160720050304771
the lambda is 20.0
the regulation term lambda/alpha is 63.276720752511785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2963153418012651
the lambda is 20.0
the regulation term lambda/alpha is 67.49566147477353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2913473297935197
the lambda is 20.0
the regulation term lambda/alpha is 68.6465876113372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3152222421781082
the lambda is 20.0
the regulation term lambda/alpha is 63.44729947292081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.290968305747501
the lambda is 20.0
the regulation term lambda/alpha is 68.73600871620627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28843035438783393
the lambda is 20.0
the regulation term lambda/alpha is 69.34082940905475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30466681020094083
the lambda is 20.0
the regulation term lambda/alpha is 65.64548329635625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2911033824744584
the lambda is 20.0
the regulation term lambda/alpha is 68.70411408481252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2589971150675052
the lambda is 20.0
the regulation term lambda/alpha is 77.22093736367366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3079708037916974
the lambda is 20.0
the regulation term lambda/alpha is 64.94122090069105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2964739753710728
the lambda is 20.0
the regulation term lambda/alpha is 67.45954674425504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3578535765108821
the lambda is 20.0
the regulation term lambda/alpha is 55.88878053141887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3139598932528054
the lambda is 20.0
the regulation term lambda/alpha is 63.702404128082975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32084300870248766
the lambda is 20.0
the regulation term lambda/alpha is 62.33578247779637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3075484359535808
the lambda is 20.0
the regulation term lambda/alpha is 65.03040712266429
1270
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3330502039522798
the lambda is 20.0
the regulation term lambda/alpha is 60.051006613001945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28714050605967717
the lambda is 20.0
the regulation term lambda/alpha is 69.65231159634213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28853960372252774
the lambda is 20.0
the regulation term lambda/alpha is 69.31457499065837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31918781567700943
the lambda is 20.0
the regulation term lambda/alpha is 62.65903338941445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3113353219052322
the lambda is 20.0
the regulation term lambda/alpha is 64.2394183789009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3101365800658551
the lambda is 20.0
the regulation term lambda/alpha is 64.48771697860715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32183055908650543
the lambda is 20.0
the regulation term lambda/alpha is 62.14450255056159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.307678712463876
the lambda is 20.0
the regulation term lambda/alpha is 65.00287211890931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2963274788810976
the lambda is 20.0
the regulation term lambda/alpha is 67.49289696493206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27834055931109597
the lambda is 20.0
the regulation term lambda/alpha is 71.85442196962168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28322578099786144
the lambda is 20.0
the regulation term lambda/alpha is 70.6150405148005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29664929239885107
the lambda is 20.0
the regulation term lambda/alpha is 67.41967876703913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30609121960882346
the lambda is 20.0
the regulation term lambda/alpha is 65.33999905505122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29443381010101044
the lambda is 20.0
the regulation term lambda/alpha is 67.92698159609681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30181210736135083
the lambda is 20.0
the regulation term lambda/alpha is 66.26639393248259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29381488118743354
the lambda is 20.0
the regulation term lambda/alpha is 68.07007160144957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3124471528321446
the lambda is 20.0
the regulation term lambda/alpha is 64.01082493059094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3042217620326532
the lambda is 20.0
the regulation term lambda/alpha is 65.7415165383643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2824745430076244
the lambda is 20.0
the regulation term lambda/alpha is 70.80284045086559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31618943243183323
the lambda is 20.0
the regulation term lambda/alpha is 63.25322084985167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2703595029961057
the lambda is 20.0
the regulation term lambda/alpha is 73.97557614347323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2852845458059118
the lambda is 20.0
the regulation term lambda/alpha is 70.10544487610149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2774871522481827
the lambda is 20.0
the regulation term lambda/alpha is 72.07540903411676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3208140292105355
the lambda is 20.0
the regulation term lambda/alpha is 62.34141333911218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2886963268096787
the lambda is 20.0
the regulation term lambda/alpha is 69.2769465445429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2794366926849997
the lambda is 20.0
the regulation term lambda/alpha is 71.57256195608277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3107138730473452
the lambda is 20.0
the regulation term lambda/alpha is 64.3679015804759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2938462760313959
the lambda is 20.0
the regulation term lambda/alpha is 68.06279892368997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3105736858022654
the lambda is 20.0
the regulation term lambda/alpha is 64.39695606643734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28667332868943646
the lambda is 20.0
the regulation term lambda/alpha is 69.76582052970376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28031949119079436
the lambda is 20.0
the regulation term lambda/alpha is 71.3471614657982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31114529969327465
the lambda is 20.0
the regulation term lambda/alpha is 64.27865058452078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32358384209336294
the lambda is 20.0
the regulation term lambda/alpha is 61.80778332630541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3453572221651638
the lambda is 20.0
the regulation term lambda/alpha is 57.911051851219696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32584223138830465
the lambda is 20.0
the regulation term lambda/alpha is 61.37939798284187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30748561339912234
the lambda is 20.0
the regulation term lambda/alpha is 65.04369352083998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3014795189234921
the lambda is 20.0
the regulation term lambda/alpha is 66.33949819017555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28952374672802866
the lambda is 20.0
the regulation term lambda/alpha is 69.07896235118668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31423510271436417
the lambda is 20.0
the regulation term lambda/alpha is 63.64661308440691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.316536721145015
the lambda is 20.0
the regulation term lambda/alpha is 63.18382248875762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3072285106538145
the lambda is 20.0
the regulation term lambda/alpha is 65.09812503220454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2718623267679089
the lambda is 20.0
the regulation term lambda/alpha is 73.5666476402748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31454580760420403
the lambda is 20.0
the regulation term lambda/alpha is 63.583743659893855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2947011244824308
the lambda is 20.0
the regulation term lambda/alpha is 67.865367107523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31956362921121545
the lambda is 20.0
the regulation term lambda/alpha is 62.58534505120734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2923126880195549
the lambda is 20.0
the regulation term lambda/alpha is 68.41988329518578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2973594532772576
the lambda is 20.0
the regulation term lambda/alpha is 67.25866549583687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2982839752764012
the lambda is 20.0
the regulation term lambda/alpha is 67.05019933258984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2752517219655538
the lambda is 20.0
the regulation term lambda/alpha is 72.66076250924557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2764334824304934
the lambda is 20.0
the regulation term lambda/alpha is 72.35013582346636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32410111236478933
the lambda is 20.0
the regulation term lambda/alpha is 61.709137170406144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2861294462060464
the lambda is 20.0
the regulation term lambda/alpha is 69.89843326225738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3197485892743135
the lambda is 20.0
the regulation term lambda/alpha is 62.54914226640083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3093463088286586
the lambda is 20.0
the regulation term lambda/alpha is 64.6524604600265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34078897166986943
the lambda is 20.0
the regulation term lambda/alpha is 58.687345139133456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30856500392239233
the lambda is 20.0
the regulation term lambda/alpha is 64.81616432766378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3065344384394172
the lambda is 20.0
the regulation term lambda/alpha is 65.24552380418018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3139884194099891
the lambda is 20.0
the regulation term lambda/alpha is 63.69661670192072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2929274797278118
the lambda is 20.0
the regulation term lambda/alpha is 68.27628469197904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27804779312293393
the lambda is 20.0
the regulation term lambda/alpha is 71.93007998864913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3229367998031093
the lambda is 20.0
the regulation term lambda/alpha is 61.931622571951415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2961411112204696
the lambda is 20.0
the regulation term lambda/alpha is 67.53537162596281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.312581310111841
the lambda is 20.0
the regulation term lambda/alpha is 63.98335202077194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2927065636962151
the lambda is 20.0
the regulation term lambda/alpha is 68.32781522711926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3072932358069018
the lambda is 20.0
the regulation term lambda/alpha is 65.08441341861388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34576111501014856
the lambda is 20.0
the regulation term lambda/alpha is 57.843404396162285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32365322422537807
the lambda is 20.0
the regulation term lambda/alpha is 61.794533479057414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3095966757973823
the lambda is 20.0
the regulation term lambda/alpha is 64.6001768219538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2884958295127046
the lambda is 20.0
the regulation term lambda/alpha is 69.32509226834162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3035772048589944
the lambda is 20.0
the regulation term lambda/alpha is 65.88109937071725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3042182187672247
the lambda is 20.0
the regulation term lambda/alpha is 65.74228223755125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2687414121409664
the lambda is 20.0
the regulation term lambda/alpha is 74.42098276059195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2852403696063654
the lambda is 20.0
the regulation term lambda/alpha is 70.11630235790328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2822931067497926
the lambda is 20.0
the regulation term lambda/alpha is 70.84834706122237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3440626089944158
the lambda is 20.0
the regulation term lambda/alpha is 58.128955245830284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2961993201881562
the lambda is 20.0
the regulation term lambda/alpha is 67.5220996027111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2903971652636157
the lambda is 20.0
the regulation term lambda/alpha is 68.87119570139217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2782018709487998
the lambda is 20.0
the regulation term lambda/alpha is 71.89024262054944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3134932855956523
the lambda is 20.0
the regulation term lambda/alpha is 63.79721965017222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33012140698773274
the lambda is 20.0
the regulation term lambda/alpha is 60.58377183865328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32818732623212593
the lambda is 20.0
the regulation term lambda/alpha is 60.940805452840856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3140796533943481
the lambda is 20.0
the regulation term lambda/alpha is 63.67811408301784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3162177792988569
the lambda is 20.0
the regulation term lambda/alpha is 63.24755061004344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30406196327931634
the lambda is 20.0
the regulation term lambda/alpha is 65.77606677369135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32464209248421466
the lambda is 20.0
the regulation term lambda/alpha is 61.60630572257809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28090545980189324
the lambda is 20.0
the regulation term lambda/alpha is 71.19833133220291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3032374838180573
the lambda is 20.0
the regulation term lambda/alpha is 65.95490685445739
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29320289777659886
the lambda is 20.0
the regulation term lambda/alpha is 68.21214985139291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3167604668630245
the lambda is 20.0
the regulation term lambda/alpha is 63.13919220433692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3167073434665629
the lambda is 20.0
the regulation term lambda/alpha is 63.14978295446928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3176359440214841
the lambda is 20.0
the regulation term lambda/alpha is 62.965166179830234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3174460836752348
the lambda is 20.0
the regulation term lambda/alpha is 63.002824821304536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3279923575874639
the lambda is 20.0
the regulation term lambda/alpha is 60.97703052323928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2691065417590393
the lambda is 20.0
the regulation term lambda/alpha is 74.32000674999644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3179826928215891
the lambda is 20.0
the regulation term lambda/alpha is 62.896504908905285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31358889454638345
the lambda is 20.0
the regulation term lambda/alpha is 63.77776875335669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29669647681441286
the lambda is 20.0
the regulation term lambda/alpha is 67.40895683945124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29138734299237057
the lambda is 20.0
the regulation term lambda/alpha is 68.6371610880973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30932009219066414
the lambda is 20.0
the regulation term lambda/alpha is 64.65794012395435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3196304655415072
the lambda is 20.0
the regulation term lambda/alpha is 62.572258142279
1280
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3060549873031961
the lambda is 20.0
the regulation term lambda/alpha is 65.34773432784097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28793581771123217
the lambda is 20.0
the regulation term lambda/alpha is 69.45992394755761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28220577529265806
the lambda is 20.0
the regulation term lambda/alpha is 70.87027180524298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30634661194761686
the lambda is 20.0
the regulation term lambda/alpha is 65.28552698150898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30431815086980335
the lambda is 20.0
the regulation term lambda/alpha is 65.72069376353635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31525471808876054
the lambda is 20.0
the regulation term lambda/alpha is 63.44076346025998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2856186212703496
the lambda is 20.0
the regulation term lambda/alpha is 70.0234456389634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2907032954096611
the lambda is 20.0
the regulation term lambda/alpha is 68.79866969452775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.303607034876048
the lambda is 20.0
the regulation term lambda/alpha is 65.87462641689213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3371759390307392
the lambda is 20.0
the regulation term lambda/alpha is 59.316213539711285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3000557429676299
the lambda is 20.0
the regulation term lambda/alpha is 66.65428164178682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2975934838381051
the lambda is 20.0
the regulation term lambda/alpha is 67.20577259305944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28077006702542295
the lambda is 20.0
the regulation term lambda/alpha is 71.23266454963326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3276987685420558
the lambda is 20.0
the regulation term lambda/alpha is 61.03166053684228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3164450580185081
the lambda is 20.0
the regulation term lambda/alpha is 63.202124644431166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29913093757698156
the lambda is 20.0
the regulation term lambda/alpha is 66.86035273383578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29996542684861105
the lambda is 20.0
the regulation term lambda/alpha is 66.67435047470907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31709826526816365
the lambda is 20.0
the regulation term lambda/alpha is 63.07193129261177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3353452269844141
the lambda is 20.0
the regulation term lambda/alpha is 59.64003179603789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28414408184696843
the lambda is 20.0
the regulation term lambda/alpha is 70.38682583145057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27673532096826753
the lambda is 20.0
the regulation term lambda/alpha is 72.2712226615024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2741886552543653
the lambda is 20.0
the regulation term lambda/alpha is 72.94247816871184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2862326862831102
the lambda is 20.0
the regulation term lambda/alpha is 69.87322188709845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2894777246635681
the lambda is 20.0
the regulation term lambda/alpha is 69.08994473838726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32286911234736493
the lambda is 20.0
the regulation term lambda/alpha is 61.9446061426979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2800126647881936
the lambda is 20.0
the regulation term lambda/alpha is 71.42534076138429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29722671493215785
the lambda is 20.0
the regulation term lambda/alpha is 67.28870251304635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3244020143708489
the lambda is 20.0
the regulation term lambda/alpha is 61.65189830521971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32036356932349697
the lambda is 20.0
the regulation term lambda/alpha is 62.42907095283479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30073460981483086
the lambda is 20.0
the regulation term lambda/alpha is 66.50381880660312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30718924471402653
the lambda is 20.0
the regulation term lambda/alpha is 65.1064460886927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28114900416552624
the lambda is 20.0
the regulation term lambda/alpha is 71.13665602110764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2978256447738562
the lambda is 20.0
the regulation term lambda/alpha is 67.15338437422446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3139413594988101
the lambda is 20.0
the regulation term lambda/alpha is 63.70616484533573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.311389739307728
the lambda is 20.0
the regulation term lambda/alpha is 64.22819211854372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3004263433385537
the lambda is 20.0
the regulation term lambda/alpha is 66.57205815490614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3031152796234395
the lambda is 20.0
the regulation term lambda/alpha is 65.98149728659679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3154968189476643
the lambda is 20.0
the regulation term lambda/alpha is 63.39208131070782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3228096512462418
the lambda is 20.0
the regulation term lambda/alpha is 61.95601625536233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3300904567701396
the lambda is 20.0
the regulation term lambda/alpha is 60.58945234495863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.284781812301794
the lambda is 20.0
the regulation term lambda/alpha is 70.22920402938249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2824737228402265
the lambda is 20.0
the regulation term lambda/alpha is 70.80304602815198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28111726764789546
the lambda is 20.0
the regulation term lambda/alpha is 71.1446869391544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.313503705225483
the lambda is 20.0
the regulation term lambda/alpha is 63.79509928157082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29987905537787674
the lambda is 20.0
the regulation term lambda/alpha is 66.69355408899116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3249445543664411
the lambda is 20.0
the regulation term lambda/alpha is 61.5489619113479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2668795904814309
the lambda is 20.0
the regulation term lambda/alpha is 74.94016295484226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28782621734237573
the lambda is 20.0
the regulation term lambda/alpha is 69.48637335635604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3213425740898385
the lambda is 20.0
the regulation term lambda/alpha is 62.23887406344281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27709899811172695
the lambda is 20.0
the regulation term lambda/alpha is 72.17637067000854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2995864126003673
the lambda is 20.0
the regulation term lambda/alpha is 66.75870185968334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2951453775215367
the lambda is 20.0
the regulation term lambda/alpha is 67.76321610708813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.302223672866926
the lambda is 20.0
the regulation term lambda/alpha is 66.17615294751026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2879448521977987
the lambda is 20.0
the regulation term lambda/alpha is 69.45774459013892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3144874616408178
the lambda is 20.0
the regulation term lambda/alpha is 63.59554017082686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2990640203617768
the lambda is 20.0
the regulation term lambda/alpha is 66.8753131045522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33164999796487066
the lambda is 20.0
the regulation term lambda/alpha is 60.30453828652958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2938036602248331
the lambda is 20.0
the regulation term lambda/alpha is 68.07267133668454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31914750049740614
the lambda is 20.0
the regulation term lambda/alpha is 62.666948570266335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29046695477571904
the lambda is 20.0
the regulation term lambda/alpha is 68.8546482523039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29951308038795393
the lambda is 20.0
the regulation term lambda/alpha is 66.77504693315683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2923395584480063
the lambda is 20.0
the regulation term lambda/alpha is 68.41359447273392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29147861216551746
the lambda is 20.0
the regulation term lambda/alpha is 68.61566909287639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2901296889062079
the lambda is 20.0
the regulation term lambda/alpha is 68.93468943285404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30013341248595377
the lambda is 20.0
the regulation term lambda/alpha is 66.63703262606924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.315664446780411
the lambda is 20.0
the regulation term lambda/alpha is 63.35841810501013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31326479891283393
the lambda is 20.0
the regulation term lambda/alpha is 63.843751578245495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33218858022905057
the lambda is 20.0
the regulation term lambda/alpha is 60.20676564561493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3308154449434362
the lambda is 20.0
the regulation term lambda/alpha is 60.456669438210966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27708376349679403
the lambda is 20.0
the regulation term lambda/alpha is 72.18033907003507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30785066655592536
the lambda is 20.0
the regulation term lambda/alpha is 64.96656389849564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3077925510792295
the lambda is 20.0
the regulation term lambda/alpha is 64.97883048135158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30704660654852567
the lambda is 20.0
the regulation term lambda/alpha is 65.13669121706837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32520929933852966
the lambda is 20.0
the regulation term lambda/alpha is 61.49885640010808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2991393609117874
the lambda is 20.0
the regulation term lambda/alpha is 66.85847004232171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3022166899326134
the lambda is 20.0
the regulation term lambda/alpha is 66.17768199519189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.295383009285447
the lambda is 20.0
the regulation term lambda/alpha is 67.70870148686431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3078116216118727
the lambda is 20.0
the regulation term lambda/alpha is 64.97480470447765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32469078982057065
the lambda is 20.0
the regulation term lambda/alpha is 61.59706596867845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2847501463195933
the lambda is 20.0
the regulation term lambda/alpha is 70.23701395240978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30232260077729683
the lambda is 20.0
the regulation term lambda/alpha is 66.15449836888912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3207803835244736
the lambda is 20.0
the regulation term lambda/alpha is 62.34795214176219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31513389767564914
the lambda is 20.0
the regulation term lambda/alpha is 63.465086261792614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2996215619561646
the lambda is 20.0
the regulation term lambda/alpha is 66.75087022917948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3224084431575575
the lambda is 20.0
the regulation term lambda/alpha is 62.03311490272051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.286175694019558
the lambda is 20.0
the regulation term lambda/alpha is 69.88713723057538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30019076442528625
the lambda is 20.0
the regulation term lambda/alpha is 66.62430151137362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2870931496510038
the lambda is 20.0
the regulation term lambda/alpha is 69.66380084064144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2867370770709216
the lambda is 20.0
the regulation term lambda/alpha is 69.7503099505098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2896754615438729
the lambda is 20.0
the regulation term lambda/alpha is 69.04278289022729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35289580760660333
the lambda is 20.0
the regulation term lambda/alpha is 56.67395182630037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3062953043042535
the lambda is 20.0
the regulation term lambda/alpha is 65.29646298505877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30841952573479064
the lambda is 20.0
the regulation term lambda/alpha is 64.84673741829809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3236180824802732
the lambda is 20.0
the regulation term lambda/alpha is 61.80124375843288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32816681696995104
the lambda is 20.0
the regulation term lambda/alpha is 60.944614037047266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27709923873814596
the lambda is 20.0
the regulation term lambda/alpha is 72.17630799375692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31813160454094214
the lambda is 20.0
the regulation term lambda/alpha is 62.86706417886277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2756850409148632
the lambda is 20.0
the regulation term lambda/alpha is 72.5465550601869
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30766915762253866
the lambda is 20.0
the regulation term lambda/alpha is 65.0048908202129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30546276055793803
the lambda is 20.0
the regulation term lambda/alpha is 65.47442956211529
1290
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28410052213716186
the lambda is 20.0
the regulation term lambda/alpha is 70.39761789083983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31987027270236107
the lambda is 20.0
the regulation term lambda/alpha is 62.5253476386972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31472918696673513
the lambda is 20.0
the regulation term lambda/alpha is 63.54669610643347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30238060438690867
the lambda is 20.0
the regulation term lambda/alpha is 66.14180840252955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3079084253532074
the lambda is 20.0
the regulation term lambda/alpha is 64.95437718879447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2967822183132148
the lambda is 20.0
the regulation term lambda/alpha is 67.3894821383558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3144143694361169
the lambda is 20.0
the regulation term lambda/alpha is 63.61032428596946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3079096018234982
the lambda is 20.0
the regulation term lambda/alpha is 64.95412900915159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29637897720810347
the lambda is 20.0
the regulation term lambda/alpha is 67.48116950939112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2951704699625506
the lambda is 20.0
the regulation term lambda/alpha is 67.75745555623324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32466846455417575
the lambda is 20.0
the regulation term lambda/alpha is 61.60130158456675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27987381918991366
the lambda is 20.0
the regulation term lambda/alpha is 71.46077492310427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2687314078615307
the lambda is 20.0
the regulation term lambda/alpha is 74.4237532901454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33990776378091747
the lambda is 20.0
the regulation term lambda/alpha is 58.839491565396266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32870284432020713
the lambda is 20.0
the regulation term lambda/alpha is 60.845229500104125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33446629481142237
the lambda is 20.0
the regulation term lambda/alpha is 59.796757730928704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32614941942894343
the lambda is 20.0
the regulation term lambda/alpha is 61.32158700456403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3202109921632149
the lambda is 20.0
the regulation term lambda/alpha is 62.45881774666183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3201275008795307
the lambda is 20.0
the regulation term lambda/alpha is 62.47510740267933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30505555485293656
the lambda is 20.0
the regulation term lambda/alpha is 65.56182859755414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30743348400436177
the lambda is 20.0
the regulation term lambda/alpha is 65.05472253541598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28586867437483177
the lambda is 20.0
the regulation term lambda/alpha is 69.9621952063763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31744090354626636
the lambda is 20.0
the regulation term lambda/alpha is 63.003852926864674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31632947945403495
the lambda is 20.0
the regulation term lambda/alpha is 63.225217056970976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33866825020486124
the lambda is 20.0
the regulation term lambda/alpha is 59.054841981502406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3147822743439448
the lambda is 20.0
the regulation term lambda/alpha is 63.53597908803191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.297158826390368
the lambda is 20.0
the regulation term lambda/alpha is 67.30407520766906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3157786626618282
the lambda is 20.0
the regulation term lambda/alpha is 63.33550161816437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30243595380004584
the lambda is 20.0
the regulation term lambda/alpha is 66.1297036569366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2911673983932171
the lambda is 20.0
the regulation term lambda/alpha is 68.68900883261081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31059861715698595
the lambda is 20.0
the regulation term lambda/alpha is 64.39178700493504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3120838060183897
the lambda is 20.0
the regulation term lambda/alpha is 64.08535019859855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28670902883381233
the lambda is 20.0
the regulation term lambda/alpha is 69.75713349994561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34016763812688444
the lambda is 20.0
the regulation term lambda/alpha is 58.7945405686707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29403228132409354
the lambda is 20.0
the regulation term lambda/alpha is 68.01974228794029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31556516581085603
the lambda is 20.0
the regulation term lambda/alpha is 63.3783515002655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31518944774955737
the lambda is 20.0
the regulation term lambda/alpha is 63.45390095639103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3029956641337974
the lambda is 20.0
the regulation term lambda/alpha is 66.00754521413997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2841253251095569
the lambda is 20.0
the regulation term lambda/alpha is 70.39147246831351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29065317180767253
the lambda is 20.0
the regulation term lambda/alpha is 68.81053413459446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3494896959302951
the lambda is 20.0
the regulation term lambda/alpha is 57.226293744548485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29910721271492835
the lambda is 20.0
the regulation term lambda/alpha is 66.86565602502372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3181017008388571
the lambda is 20.0
the regulation term lambda/alpha is 62.872974106264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3208835653881431
the lambda is 20.0
the regulation term lambda/alpha is 62.327903817099056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32207717624241594
the lambda is 20.0
the regulation term lambda/alpha is 62.09691799131621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3065162771931448
the lambda is 20.0
the regulation term lambda/alpha is 65.24938963485265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3202466126610782
the lambda is 20.0
the regulation term lambda/alpha is 62.45187055629001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2722569415817538
the lambda is 20.0
the regulation term lambda/alpha is 73.46001862727296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31266899859894765
the lambda is 20.0
the regulation term lambda/alpha is 63.9654077942453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3128080656758706
the lambda is 20.0
the regulation term lambda/alpha is 63.93697028491539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30564383198207884
the lambda is 20.0
the regulation term lambda/alpha is 65.43564079242627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3211693727491147
the lambda is 20.0
the regulation term lambda/alpha is 62.272438460759574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2733498871898081
the lambda is 20.0
the regulation term lambda/alpha is 73.16630054473899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2973893031359441
the lambda is 20.0
the regulation term lambda/alpha is 67.2519145413159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29484159066751353
the lambda is 20.0
the regulation term lambda/alpha is 67.83303520619506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29458079430768885
the lambda is 20.0
the regulation term lambda/alpha is 67.89308870934082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32870728414888317
the lambda is 20.0
the regulation term lambda/alpha is 60.84440766740445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31526144901766817
the lambda is 20.0
the regulation term lambda/alpha is 63.43940898044639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30299967818396784
the lambda is 20.0
the regulation term lambda/alpha is 66.00667076569268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3106904268698976
the lambda is 20.0
the regulation term lambda/alpha is 64.37275908850275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3124101373209356
the lambda is 20.0
the regulation term lambda/alpha is 64.018409170424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27972389785777513
the lambda is 20.0
the regulation term lambda/alpha is 71.49907517079197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32553861737458956
the lambda is 20.0
the regulation term lambda/alpha is 61.436643557979096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33072302732669
the lambda is 20.0
the regulation term lambda/alpha is 60.47356351828471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27767441804642407
the lambda is 20.0
the regulation term lambda/alpha is 72.02680081481695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29196903608235514
the lambda is 20.0
the regulation term lambda/alpha is 68.50041452463692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2659420467563311
the lambda is 20.0
the regulation term lambda/alpha is 75.20435464770624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29001257111922285
the lambda is 20.0
the regulation term lambda/alpha is 68.9625278063484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31725303988418346
the lambda is 20.0
the regulation term lambda/alpha is 63.04116111007544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29361267969599036
the lambda is 20.0
the regulation term lambda/alpha is 68.11694924316011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3118115353131386
the lambda is 20.0
the regulation term lambda/alpha is 64.14130888363344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3167460594118689
the lambda is 20.0
the regulation term lambda/alpha is 63.14206414165282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34244168269394376
the lambda is 20.0
the regulation term lambda/alpha is 58.40410502209493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2621940797969893
the lambda is 20.0
the regulation term lambda/alpha is 76.27937295718321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2729666649260401
the lambda is 20.0
the regulation term lambda/alpha is 73.26901988350471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33142352343109105
the lambda is 20.0
the regulation term lambda/alpha is 60.34574671389722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31219930888348846
the lambda is 20.0
the regulation term lambda/alpha is 64.06164085220291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2690415715368112
the lambda is 20.0
the regulation term lambda/alpha is 74.33795411525661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30311705312880965
the lambda is 20.0
the regulation term lambda/alpha is 65.98111123593233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30728261176962585
the lambda is 20.0
the regulation term lambda/alpha is 65.08666365734449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32144884999837436
the lambda is 20.0
the regulation term lambda/alpha is 62.218296939314435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3172341678564005
the lambda is 20.0
the regulation term lambda/alpha is 63.04491138247509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3164463401033851
the lambda is 20.0
the regulation term lambda/alpha is 63.201868580517846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.315218294166096
the lambda is 20.0
the regulation term lambda/alpha is 63.4480941307979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32516914619114984
the lambda is 20.0
the regulation term lambda/alpha is 61.506450517427176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31611820877014074
the lambda is 20.0
the regulation term lambda/alpha is 63.26747224656905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27515190485318897
the lambda is 20.0
the regulation term lambda/alpha is 72.68712172162236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2960820277980456
the lambda is 20.0
the regulation term lambda/alpha is 67.54884836725648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2993703272933804
the lambda is 20.0
the regulation term lambda/alpha is 66.8068882471447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28124728630612417
the lambda is 20.0
the regulation term lambda/alpha is 71.1117972467509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3229027856472565
the lambda is 20.0
the regulation term lambda/alpha is 61.93814636783059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.290262813727875
the lambda is 20.0
the regulation term lambda/alpha is 68.9030735392452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3061280569961332
the lambda is 20.0
the regulation term lambda/alpha is 65.3321364799066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26543979258041067
the lambda is 20.0
the regulation term lambda/alpha is 75.34665321116586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29208965514645435
the lambda is 20.0
the regulation term lambda/alpha is 68.47212712813112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28873149499084433
the lambda is 20.0
the regulation term lambda/alpha is 69.26850844807976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2883390556387672
the lambda is 20.0
the regulation term lambda/alpha is 69.3627852657467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2690819776965868
the lambda is 20.0
the regulation term lambda/alpha is 74.32679130429065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3043850486075112
the lambda is 20.0
the regulation term lambda/alpha is 65.7062496712477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3185857823865572
the lambda is 20.0
the regulation term lambda/alpha is 62.777440506534994
1300
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29828856667844955
the lambda is 20.0
the regulation term lambda/alpha is 67.0491672634563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3352181998213156
the lambda is 20.0
the regulation term lambda/alpha is 59.662631714688466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2883661411925943
the lambda is 20.0
the regulation term lambda/alpha is 69.35627018236644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3199015589561924
the lambda is 20.0
the regulation term lambda/alpha is 62.51923268288549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3386909180257015
the lambda is 20.0
the regulation term lambda/alpha is 59.05088957384533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.296849336862927
the lambda is 20.0
the regulation term lambda/alpha is 67.3742451688049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2946391996269607
the lambda is 20.0
the regulation term lambda/alpha is 67.87963049492997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3094042186998067
the lambda is 20.0
the regulation term lambda/alpha is 64.64035973408818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3076041816305369
the lambda is 20.0
the regulation term lambda/alpha is 65.01862196406024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31859814187192165
the lambda is 20.0
the regulation term lambda/alpha is 62.77500516007441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2786210927709256
the lambda is 20.0
the regulation term lambda/alpha is 71.78207436162572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30523933606919523
the lambda is 20.0
the regulation term lambda/alpha is 65.52235454825575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30390156333160895
the lambda is 20.0
the regulation term lambda/alpha is 65.81078353380023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30979188843175776
the lambda is 20.0
the regulation term lambda/alpha is 64.55946958858377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3003227338042322
the lambda is 20.0
the regulation term lambda/alpha is 66.59502511400673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32691467640243077
the lambda is 20.0
the regulation term lambda/alpha is 61.1780426014893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2966845799748981
the lambda is 20.0
the regulation term lambda/alpha is 67.4116598904202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33388733374637913
the lambda is 20.0
the regulation term lambda/alpha is 59.900445385544344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29327162081252955
the lambda is 20.0
the regulation term lambda/alpha is 68.19616553619679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2890332756301436
the lambda is 20.0
the regulation term lambda/alpha is 69.19618495966067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2902300030016141
the lambda is 20.0
the regulation term lambda/alpha is 68.91086308498839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2917915012639837
the lambda is 20.0
the regulation term lambda/alpha is 68.54209225890375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29728739593612313
the lambda is 20.0
the regulation term lambda/alpha is 67.27496783717434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34107250755995355
the lambda is 20.0
the regulation term lambda/alpha is 58.638557950861546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31648370412568155
the lambda is 20.0
the regulation term lambda/alpha is 63.19440697666263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3170003672524255
the lambda is 20.0
the regulation term lambda/alpha is 63.09140955686692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30650976185658985
the lambda is 20.0
the regulation term lambda/alpha is 65.25077661101581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30191639782738194
the lambda is 20.0
the regulation term lambda/alpha is 66.24350364512108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2853999267549903
the lambda is 20.0
the regulation term lambda/alpha is 70.07710277784888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30171824590210217
the lambda is 20.0
the regulation term lambda/alpha is 66.2870087296257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3269462610360595
the lambda is 20.0
the regulation term lambda/alpha is 61.17213249853976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27823119784632083
the lambda is 20.0
the regulation term lambda/alpha is 71.88266504551682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3055126878577377
the lambda is 20.0
the regulation term lambda/alpha is 65.46372964160827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2831254173663187
the lambda is 20.0
the regulation term lambda/alpha is 70.64007246697749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32699517861297966
the lambda is 20.0
the regulation term lambda/alpha is 61.16298131622093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3291193244840836
the lambda is 20.0
the regulation term lambda/alpha is 60.76823362271823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3296515497486718
the lambda is 20.0
the regulation term lambda/alpha is 60.67012278646381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31129225047252157
the lambda is 20.0
the regulation term lambda/alpha is 64.24830675881358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30100942933357183
the lambda is 20.0
the regulation term lambda/alpha is 66.44310128184208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2953756061678472
the lambda is 20.0
the regulation term lambda/alpha is 67.71039849727808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2817113815537571
the lambda is 20.0
the regulation term lambda/alpha is 70.9946466830398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28362470265300205
the lambda is 20.0
the regulation term lambda/alpha is 70.51571958620548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3058447328717612
the lambda is 20.0
the regulation term lambda/alpha is 65.39265794185141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3200943536600896
the lambda is 20.0
the regulation term lambda/alpha is 62.48157698288592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2837575478290674
the lambda is 20.0
the regulation term lambda/alpha is 70.48270663816065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29202672973928256
the lambda is 20.0
the regulation term lambda/alpha is 68.48688138190543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3101891848721743
the lambda is 20.0
the regulation term lambda/alpha is 64.47678054359565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2847265088891368
the lambda is 20.0
the regulation term lambda/alpha is 70.2428448901024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3091368469444698
the lambda is 20.0
the regulation term lambda/alpha is 64.69626703410285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29179560348945766
the lambda is 20.0
the regulation term lambda/alpha is 68.54112865591063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28412734767593995
the lambda is 20.0
the regulation term lambda/alpha is 70.3909713851653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2965609087116734
the lambda is 20.0
the regulation term lambda/alpha is 67.43977177195893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2876354392328681
the lambda is 20.0
the regulation term lambda/alpha is 69.53246113671031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2933231115098275
the lambda is 20.0
the regulation term lambda/alpha is 68.18419420499677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3032636731219476
the lambda is 20.0
the regulation term lambda/alpha is 65.94921110764774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2691796863269921
the lambda is 20.0
the regulation term lambda/alpha is 74.29981167191254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31577871498793403
the lambda is 20.0
the regulation term lambda/alpha is 63.3354911231563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3059318771239596
the lambda is 20.0
the regulation term lambda/alpha is 65.3740309379276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2673310591618923
the lambda is 20.0
the regulation term lambda/alpha is 74.81360401107845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2892182737318131
the lambda is 20.0
the regulation term lambda/alpha is 69.15192370778632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27916976021760975
the lambda is 20.0
the regulation term lambda/alpha is 71.64099716391281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2868315686531254
the lambda is 20.0
the regulation term lambda/alpha is 69.72733194576166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2863229123933138
the lambda is 20.0
the regulation term lambda/alpha is 69.8512034291079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3436111565803021
the lambda is 20.0
the regulation term lambda/alpha is 58.205327786922396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32408269250962873
the lambda is 20.0
the regulation term lambda/alpha is 61.712644526383606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28073243992444097
the lambda is 20.0
the regulation term lambda/alpha is 71.24221199866675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3012769974795874
the lambda is 20.0
the regulation term lambda/alpha is 66.38409227161483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3481461146166727
the lambda is 20.0
the regulation term lambda/alpha is 57.447144059100175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3182011546089093
the lambda is 20.0
the regulation term lambda/alpha is 62.85332315836927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3408978806741123
the lambda is 20.0
the regulation term lambda/alpha is 58.66859588698755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29765324382625785
the lambda is 20.0
the regulation term lambda/alpha is 67.19227965704324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3103421966891257
the lambda is 20.0
the regulation term lambda/alpha is 64.44499076622277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3060430456867252
the lambda is 20.0
the regulation term lambda/alpha is 65.35028415732275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33941163098257
the lambda is 20.0
the regulation term lambda/alpha is 58.92549981891184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2908844499248366
the lambda is 20.0
the regulation term lambda/alpha is 68.75582385090685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2837384208202667
the lambda is 20.0
the regulation term lambda/alpha is 70.48745792755696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3121926736054913
the lambda is 20.0
the regulation term lambda/alpha is 64.06300240496167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30068093309338145
the lambda is 20.0
the regulation term lambda/alpha is 66.51569088282916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29435146851031163
the lambda is 20.0
the regulation term lambda/alpha is 67.94598342321287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3024989726907806
the lambda is 20.0
the regulation term lambda/alpha is 66.11592701322768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24576713409944825
the lambda is 20.0
the regulation term lambda/alpha is 81.37784603822216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2940947475787323
the lambda is 20.0
the regulation term lambda/alpha is 68.0052947720387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3021629255006844
the lambda is 20.0
the regulation term lambda/alpha is 66.18945711774523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3244212558879572
the lambda is 20.0
the regulation term lambda/alpha is 61.64824171356774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31620221702048557
the lambda is 20.0
the regulation term lambda/alpha is 63.25066341550753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32110962448577857
the lambda is 20.0
the regulation term lambda/alpha is 62.28402537615551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2832027550460634
the lambda is 20.0
the regulation term lambda/alpha is 70.6207819085198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29774498650925
the lambda is 20.0
the regulation term lambda/alpha is 67.17157603383747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3072271761107454
the lambda is 20.0
the regulation term lambda/alpha is 65.09840780748722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3147026847993076
the lambda is 20.0
the regulation term lambda/alpha is 63.552047586611515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29414508827527797
the lambda is 20.0
the regulation term lambda/alpha is 67.99365618263475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3016662286902194
the lambda is 20.0
the regulation term lambda/alpha is 66.29843879719785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2943619476183539
the lambda is 20.0
the regulation term lambda/alpha is 67.94356458712659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3056009891029897
the lambda is 20.0
the regulation term lambda/alpha is 65.44481435974626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2912541318246648
the lambda is 20.0
the regulation term lambda/alpha is 68.66855372901632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26941609533607086
the lambda is 20.0
the regulation term lambda/alpha is 74.23461458400214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29964705981453676
the lambda is 20.0
the regulation term lambda/alpha is 66.74519019935913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2819518764810418
the lambda is 20.0
the regulation term lambda/alpha is 70.93409077326989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2794246954244483
the lambda is 20.0
the regulation term lambda/alpha is 71.57563496533419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31667881278718973
the lambda is 20.0
the regulation term lambda/alpha is 63.1554723348042
1310
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.297559943071451
the lambda is 20.0
the regulation term lambda/alpha is 67.21334798480432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28282312992683317
the lambda is 20.0
the regulation term lambda/alpha is 70.71557409457294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2845150669381342
the lambda is 20.0
the regulation term lambda/alpha is 70.29504699077627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3113636271072809
the lambda is 20.0
the regulation term lambda/alpha is 64.23357855189991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31767542175112407
the lambda is 20.0
the regulation term lambda/alpha is 62.95734145800101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2951329519106079
the lambda is 20.0
the regulation term lambda/alpha is 67.76606905642224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2909878198050414
the lambda is 20.0
the regulation term lambda/alpha is 68.73139918158697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3351360474407275
the lambda is 20.0
the regulation term lambda/alpha is 59.67725690128043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3007140890439391
the lambda is 20.0
the regulation term lambda/alpha is 66.50835703636648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3193023265251153
the lambda is 20.0
the regulation term lambda/alpha is 62.63656208726955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30387706033512296
the lambda is 20.0
the regulation term lambda/alpha is 65.81609015811696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3144387789153272
the lambda is 20.0
the regulation term lambda/alpha is 63.605386298061056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3266571899521262
the lambda is 20.0
the regulation term lambda/alpha is 61.22626599136279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33773759221244076
the lambda is 20.0
the regulation term lambda/alpha is 59.21757145535571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27772194405155515
the lambda is 20.0
the regulation term lambda/alpha is 72.01447501133465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28255112373572777
the lambda is 20.0
the regulation term lambda/alpha is 70.78365053223484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35121308473443624
the lambda is 20.0
the regulation term lambda/alpha is 56.945486570133504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3079176788689956
the lambda is 20.0
the regulation term lambda/alpha is 64.9524251853985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3423604881198865
the lambda is 20.0
the regulation term lambda/alpha is 58.41795620117376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26217895593494944
the lambda is 20.0
the regulation term lambda/alpha is 76.2837731528777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2702892424077315
the lambda is 20.0
the regulation term lambda/alpha is 73.99480579338037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.267012362276211
the lambda is 20.0
the regulation term lambda/alpha is 74.90289898754199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31006978692768133
the lambda is 20.0
the regulation term lambda/alpha is 64.50160848681678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3098274788414832
the lambda is 20.0
the regulation term lambda/alpha is 64.5520535324518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3173439822034504
the lambda is 20.0
the regulation term lambda/alpha is 63.02309519509945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25775425442130767
the lambda is 20.0
the regulation term lambda/alpha is 77.59328762546573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3193951594801271
the lambda is 20.0
the regulation term lambda/alpha is 62.61835662304209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31318918356801456
the lambda is 20.0
the regulation term lambda/alpha is 63.859165799244934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2882350749675551
the lambda is 20.0
the regulation term lambda/alpha is 69.38780785874613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3272867625148358
the lambda is 20.0
the regulation term lambda/alpha is 61.10849044526635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33690539508442807
the lambda is 20.0
the regulation term lambda/alpha is 59.36384602860998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2999434102828277
the lambda is 20.0
the regulation term lambda/alpha is 66.67924453196441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30085474698163656
the lambda is 20.0
the regulation term lambda/alpha is 66.47726253500248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28407567710337994
the lambda is 20.0
the regulation term lambda/alpha is 70.40377481075812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3361223939574067
the lambda is 20.0
the regulation term lambda/alpha is 59.50213481620744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2810274484162944
the lambda is 20.0
the regulation term lambda/alpha is 71.16742550490441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2833855193211651
the lambda is 20.0
the regulation term lambda/alpha is 70.57523633497199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28979490703635286
the lambda is 20.0
the regulation term lambda/alpha is 69.0143253535202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33800025276532364
the lambda is 20.0
the regulation term lambda/alpha is 59.17155338308627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31156621977009114
the lambda is 20.0
the regulation term lambda/alpha is 64.19181134193003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30495197037337635
the lambda is 20.0
the regulation term lambda/alpha is 65.58409829427384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3145250583653569
the lambda is 20.0
the regulation term lambda/alpha is 63.58793828365722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30040240507653077
the lambda is 20.0
the regulation term lambda/alpha is 66.57736310368348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2938630195648651
the lambda is 20.0
the regulation term lambda/alpha is 68.05892088638717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2981552876166251
the lambda is 20.0
the regulation term lambda/alpha is 67.07913906164382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3016737321825507
the lambda is 20.0
the regulation term lambda/alpha is 66.29678976457079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32620632187681214
the lambda is 20.0
the regulation term lambda/alpha is 61.310890251700144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2972164586757669
the lambda is 20.0
the regulation term lambda/alpha is 67.29102449140603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26448645469440357
the lambda is 20.0
the regulation term lambda/alpha is 75.61823921421104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31041094782709855
the lambda is 20.0
the regulation term lambda/alpha is 64.43071721536111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2812719964190059
the lambda is 20.0
the regulation term lambda/alpha is 71.10554998232513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.320893017643934
the lambda is 20.0
the regulation term lambda/alpha is 62.32606788033073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27486808121827555
the lambda is 20.0
the regulation term lambda/alpha is 72.76217708275045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3147940120129058
the lambda is 20.0
the regulation term lambda/alpha is 63.53361003315415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3154010557947763
the lambda is 20.0
the regulation term lambda/alpha is 63.41132863237309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2910929642201187
the lambda is 20.0
the regulation term lambda/alpha is 68.70657301382386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3203074359562205
the lambda is 20.0
the regulation term lambda/alpha is 62.440011547947925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2679651821565386
the lambda is 20.0
the regulation term lambda/alpha is 74.63656225425771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29986657085629737
the lambda is 20.0
the regulation term lambda/alpha is 66.69633078101405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31274774837722324
the lambda is 20.0
the regulation term lambda/alpha is 63.94930132599016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3018387714742545
the lambda is 20.0
the regulation term lambda/alpha is 66.26054003041128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30248924107093883
the lambda is 20.0
the regulation term lambda/alpha is 66.11805408083808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26728312332313553
the lambda is 20.0
the regulation term lambda/alpha is 74.82702144205615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27350015787189524
the lambda is 20.0
the regulation term lambda/alpha is 73.12610038553544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3069114217045328
the lambda is 20.0
the regulation term lambda/alpha is 65.16538188420448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3093325791840779
the lambda is 20.0
the regulation term lambda/alpha is 64.65533004235671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3091279846055913
the lambda is 20.0
the regulation term lambda/alpha is 64.6981218006435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35280400870931056
the lambda is 20.0
the regulation term lambda/alpha is 56.6886982751911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33735448076039926
the lambda is 20.0
the regulation term lambda/alpha is 59.28482098390947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3087722055519474
the lambda is 20.0
the regulation term lambda/alpha is 64.77266943198107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2833678068303823
the lambda is 20.0
the regulation term lambda/alpha is 70.57964778607175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2893972315423843
the lambda is 20.0
the regulation term lambda/alpha is 69.1091614574442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30883829155147163
the lambda is 20.0
the regulation term lambda/alpha is 64.75880921218851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28862015153907206
the lambda is 20.0
the regulation term lambda/alpha is 69.29523075000012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3175654579154962
the lambda is 20.0
the regulation term lambda/alpha is 62.979141784752855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2842403693409139
the lambda is 20.0
the regulation term lambda/alpha is 70.36298202952403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2972672543614787
the lambda is 20.0
the regulation term lambda/alpha is 67.27952610508483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33050574658502613
the lambda is 20.0
the regulation term lambda/alpha is 60.513319985057464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29975658335558697
the lambda is 20.0
the regulation term lambda/alpha is 66.72080318007545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34184591716905405
the lambda is 20.0
the regulation term lambda/alpha is 58.50589109159769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32436278417057973
the lambda is 20.0
the regulation term lambda/alpha is 61.65935482130454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2987812607329898
the lambda is 20.0
the regulation term lambda/alpha is 66.93860234385077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2691697875110567
the lambda is 20.0
the regulation term lambda/alpha is 74.3025440742619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29141424148231204
the lambda is 20.0
the regulation term lambda/alpha is 68.63082565308991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31042212693205357
the lambda is 20.0
the regulation term lambda/alpha is 64.42839689832317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30518374793725367
the lambda is 20.0
the regulation term lambda/alpha is 65.53428921159994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2728653309646118
the lambda is 20.0
the regulation term lambda/alpha is 73.29622978960937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3146763817204051
the lambda is 20.0
the regulation term lambda/alpha is 63.55735975688927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29044414673529056
the lambda is 20.0
the regulation term lambda/alpha is 68.86005528019095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3175009961947181
the lambda is 20.0
the regulation term lambda/alpha is 62.99192833944474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3097294591887654
the lambda is 20.0
the regulation term lambda/alpha is 64.57248223137519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30684469726728364
the lambda is 20.0
the regulation term lambda/alpha is 65.17955232114888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28870941917210075
the lambda is 20.0
the regulation term lambda/alpha is 69.27380498132597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3411133676143532
the lambda is 20.0
the regulation term lambda/alpha is 58.63153396735558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31174954879512073
the lambda is 20.0
the regulation term lambda/alpha is 64.1540623789125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2794966434017927
the lambda is 20.0
the regulation term lambda/alpha is 71.5572099778273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30662778927559936
the lambda is 20.0
the regulation term lambda/alpha is 65.22566022880545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3032174399222537
the lambda is 20.0
the regulation term lambda/alpha is 65.95926673982898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28714632429088105
the lambda is 20.0
the regulation term lambda/alpha is 69.65090028364727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3069665232986354
the lambda is 20.0
the regulation term lambda/alpha is 65.15368446396614
1320
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30695124318085626
the lambda is 20.0
the regulation term lambda/alpha is 65.15692783239832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29959653602555236
the lambda is 20.0
the regulation term lambda/alpha is 66.75644607017156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2929139031363112
the lambda is 20.0
the regulation term lambda/alpha is 68.27944930525454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3265813561349706
the lambda is 20.0
the regulation term lambda/alpha is 61.240483035211405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31507954658441695
the lambda is 20.0
the regulation term lambda/alpha is 63.47603396287593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2711110810263933
the lambda is 20.0
the regulation term lambda/alpha is 73.77049998945986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3044407676274926
the lambda is 20.0
the regulation term lambda/alpha is 65.69422405501086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31515873407574657
the lambda is 20.0
the regulation term lambda/alpha is 63.46008483202346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3014843683296122
the lambda is 20.0
the regulation term lambda/alpha is 66.33843111273366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28426688690956187
the lambda is 20.0
the regulation term lambda/alpha is 70.35641828505655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2923625562294111
the lambda is 20.0
the regulation term lambda/alpha is 68.40821293239206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3148793697671316
the lambda is 20.0
the regulation term lambda/alpha is 63.51638729076141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2991482853027782
the lambda is 20.0
the regulation term lambda/alpha is 66.85647547589089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30056498815528704
the lambda is 20.0
the regulation term lambda/alpha is 66.54134975184465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30834875173955223
the lambda is 20.0
the regulation term lambda/alpha is 64.86162141785826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27752957205848666
the lambda is 20.0
the regulation term lambda/alpha is 72.06439245971667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2869835524398625
the lambda is 20.0
the regulation term lambda/alpha is 69.69040500741242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30230759759379244
the lambda is 20.0
the regulation term lambda/alpha is 66.15778154167926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29228869457542445
the lambda is 20.0
the regulation term lambda/alpha is 68.42549975821608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27120090598870006
the lambda is 20.0
the regulation term lambda/alpha is 73.74606632336739
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3043014470515078
the lambda is 20.0
the regulation term lambda/alpha is 65.72430132616059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33325918232472773
the lambda is 20.0
the regulation term lambda/alpha is 60.01335015133057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3160257763032161
the lambda is 20.0
the regulation term lambda/alpha is 63.28597696667209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3210573662266796
the lambda is 20.0
the regulation term lambda/alpha is 62.29416329877691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33855481158485584
the lambda is 20.0
the regulation term lambda/alpha is 59.074629323314674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28705547949187904
the lambda is 20.0
the regulation term lambda/alpha is 69.67294278932519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28465714897137917
the lambda is 20.0
the regulation term lambda/alpha is 70.25996034974304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2804067247550635
the lambda is 20.0
the regulation term lambda/alpha is 71.3249656101154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29499341509645555
the lambda is 20.0
the regulation term lambda/alpha is 67.79812353933559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3427930391021783
the lambda is 20.0
the regulation term lambda/alpha is 58.344241914546245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.329172164897924
the lambda is 20.0
the regulation term lambda/alpha is 60.75847879240331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2966526404716362
the lambda is 20.0
the regulation term lambda/alpha is 67.41891785693463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2634064665676419
the lambda is 20.0
the regulation term lambda/alpha is 75.92828019984873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31016902378693106
the lambda is 20.0
the regulation term lambda/alpha is 64.48097155484776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28426212927545563
the lambda is 20.0
the regulation term lambda/alpha is 70.35759582529407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2794753446239926
the lambda is 20.0
the regulation term lambda/alpha is 71.56266334301543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3082255095362042
the lambda is 20.0
the regulation term lambda/alpha is 64.88755596541823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28278246594080925
the lambda is 20.0
the regulation term lambda/alpha is 70.72574296097379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3146324531966881
the lambda is 20.0
the regulation term lambda/alpha is 63.56623354265772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28753167118261
the lambda is 20.0
the regulation term lambda/alpha is 69.55755488687747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27850299799108813
the lambda is 20.0
the regulation term lambda/alpha is 71.81251241194892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3126908579642531
the lambda is 20.0
the regulation term lambda/alpha is 63.960936146992836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3043627180795999
the lambda is 20.0
the regulation term lambda/alpha is 65.71107041687479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3291163078669678
the lambda is 20.0
the regulation term lambda/alpha is 60.76879061272225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3082981602341541
the lambda is 20.0
the regulation term lambda/alpha is 64.87226516308075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32717531074728484
the lambda is 20.0
the regulation term lambda/alpha is 61.129306958764694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30054489182511557
the lambda is 20.0
the regulation term lambda/alpha is 66.54579912686663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3236355601646251
the lambda is 20.0
the regulation term lambda/alpha is 61.79790623078167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3013911533445485
the lambda is 20.0
the regulation term lambda/alpha is 66.35894842320114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2947985043027856
the lambda is 20.0
the regulation term lambda/alpha is 67.84294936401079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30498425294124404
the lambda is 20.0
the regulation term lambda/alpha is 65.57715622076084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2725600719665915
the lambda is 20.0
the regulation term lambda/alpha is 73.3783193396407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3360146827216155
the lambda is 20.0
the regulation term lambda/alpha is 59.521208531740804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30161834666411386
the lambda is 20.0
the regulation term lambda/alpha is 66.30896369932118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30932499658747126
the lambda is 20.0
the regulation term lambda/alpha is 64.65691496207413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30550945077628494
the lambda is 20.0
the regulation term lambda/alpha is 65.46442327456958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30844284502469127
the lambda is 20.0
the regulation term lambda/alpha is 64.84183479243609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31808002472932073
the lambda is 20.0
the regulation term lambda/alpha is 62.87725869305867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28190553900390225
the lambda is 20.0
the regulation term lambda/alpha is 70.94575037677124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2924422704328477
the lambda is 20.0
the regulation term lambda/alpha is 68.38956615402327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29772873198536637
the lambda is 20.0
the regulation term lambda/alpha is 67.17524327139182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2789226759567136
the lambda is 20.0
the regulation term lambda/alpha is 71.70446049751735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3016232543155216
the lambda is 20.0
the regulation term lambda/alpha is 66.30788479948707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30556978568842663
the lambda is 20.0
the regulation term lambda/alpha is 65.45149729035364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28491782281564204
the lambda is 20.0
the regulation term lambda/alpha is 70.19567888857951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31807147729590957
the lambda is 20.0
the regulation term lambda/alpha is 62.87894837358685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2780846237189445
the lambda is 20.0
the regulation term lambda/alpha is 71.92055329248865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30342236025066815
the lambda is 20.0
the regulation term lambda/alpha is 65.91472027136457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2798539544772389
the lambda is 20.0
the regulation term lambda/alpha is 71.46584738228755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3020595971843553
the lambda is 20.0
the regulation term lambda/alpha is 66.21209915668877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27606364630086616
the lambda is 20.0
the regulation term lambda/alpha is 72.44706163955804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2918387157056835
the lambda is 20.0
the regulation term lambda/alpha is 68.53100333737011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34598162321385995
the lambda is 20.0
the regulation term lambda/alpha is 57.80653843466564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3182879263860933
the lambda is 20.0
the regulation term lambda/alpha is 62.83618806118133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29061613193033803
the lambda is 20.0
the regulation term lambda/alpha is 68.81930423874091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28760274177082723
the lambda is 20.0
the regulation term lambda/alpha is 69.54036625957049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3018780085821659
the lambda is 20.0
the regulation term lambda/alpha is 66.25192770395645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28214521960123906
the lambda is 20.0
the regulation term lambda/alpha is 70.88548240606862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35943958199053033
the lambda is 20.0
the regulation term lambda/alpha is 55.64217465767839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2888543654504885
the lambda is 20.0
the regulation term lambda/alpha is 69.2390435879638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32010501461192803
the lambda is 20.0
the regulation term lambda/alpha is 62.47949606239859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30657114124338986
the lambda is 20.0
the regulation term lambda/alpha is 65.23771258731037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28002709428729283
the lambda is 20.0
the regulation term lambda/alpha is 71.4216602893471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3110759784106639
the lambda is 20.0
the regulation term lambda/alpha is 64.2929746687068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3045823602768942
the lambda is 20.0
the regulation term lambda/alpha is 65.6636844688514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3229152328028763
the lambda is 20.0
the regulation term lambda/alpha is 61.935758887562315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29169503954350406
the lambda is 20.0
the regulation term lambda/alpha is 68.56475869901502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2918858591548007
the lambda is 20.0
the regulation term lambda/alpha is 68.51993466868522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31444106805878075
the lambda is 20.0
the regulation term lambda/alpha is 63.604923248324724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2758446800634349
the lambda is 20.0
the regulation term lambda/alpha is 72.5045703089169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27297156466373995
the lambda is 20.0
the regulation term lambda/alpha is 73.26770473194526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2853391035122974
the lambda is 20.0
the regulation term lambda/alpha is 70.09204050134001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29463033491295254
the lambda is 20.0
the regulation term lambda/alpha is 67.88167282879724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30983737536771094
the lambda is 20.0
the regulation term lambda/alpha is 64.5499916730971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2831099438270996
the lambda is 20.0
the regulation term lambda/alpha is 70.64393334136778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31634271432216
the lambda is 20.0
the regulation term lambda/alpha is 63.222571895972976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29895203804374804
the lambda is 20.0
the regulation term lambda/alpha is 66.90036345252558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3075974415984398
the lambda is 20.0
the regulation term lambda/alpha is 65.02004664300642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3241246362180849
the lambda is 20.0
the regulation term lambda/alpha is 61.70465853309326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.313799644215123
the lambda is 20.0
the regulation term lambda/alpha is 63.73493523239672
1330
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3332459290675995
the lambda is 20.0
the regulation term lambda/alpha is 60.015736894247155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29243601171298106
the lambda is 20.0
the regulation term lambda/alpha is 68.39102982853397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3061012334767399
the lambda is 20.0
the regulation term lambda/alpha is 65.33786150691799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28774689201265674
the lambda is 20.0
the regulation term lambda/alpha is 69.50552918264114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28356829228720426
the lambda is 20.0
the regulation term lambda/alpha is 70.52974730948958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.290613643343858
the lambda is 20.0
the regulation term lambda/alpha is 68.81989355309011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32110606031702776
the lambda is 20.0
the regulation term lambda/alpha is 62.28471670778812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3180651931289489
the lambda is 20.0
the regulation term lambda/alpha is 62.880190703204896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.276782698756616
the lambda is 20.0
the regulation term lambda/alpha is 72.25885176293714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3050051502737247
the lambda is 20.0
the regulation term lambda/alpha is 65.57266322241162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26458308077239134
the lambda is 20.0
the regulation term lambda/alpha is 75.59062333696643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28450553040123483
the lambda is 20.0
the regulation term lambda/alpha is 70.29740325889003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30632724605144107
the lambda is 20.0
the regulation term lambda/alpha is 65.2896543085868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3430224958361109
the lambda is 20.0
the regulation term lambda/alpha is 58.30521392263319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3394037506917588
the lambda is 20.0
the regulation term lambda/alpha is 58.92686795368884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2861799916757795
the lambda is 20.0
the regulation term lambda/alpha is 69.88608771314279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2951469059458232
the lambda is 20.0
the regulation term lambda/alpha is 67.76286519388815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3121839517647948
the lambda is 20.0
the regulation term lambda/alpha is 64.06479220645004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30641197450982954
the lambda is 20.0
the regulation term lambda/alpha is 65.27160053713374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2711992952200058
the lambda is 20.0
the regulation term lambda/alpha is 73.74650433282041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3266976865994706
the lambda is 20.0
the regulation term lambda/alpha is 61.21867653296204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2754778945199429
the lambda is 20.0
the regulation term lambda/alpha is 72.60110665087184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29670767183459773
the lambda is 20.0
the regulation term lambda/alpha is 67.40641344504625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28145077442353245
the lambda is 20.0
the regulation term lambda/alpha is 71.06038361757578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2562424080067704
the lambda is 20.0
the regulation term lambda/alpha is 78.05109293022083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2922863113300195
the lambda is 20.0
the regulation term lambda/alpha is 68.42605768635558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3111223542936414
the lambda is 20.0
the regulation term lambda/alpha is 64.28339116103415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30177515174511316
the lambda is 20.0
the regulation term lambda/alpha is 66.27450896584256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2902490923648651
the lambda is 20.0
the regulation term lambda/alpha is 68.90633089339168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30678204871645787
the lambda is 20.0
the regulation term lambda/alpha is 65.19286276259575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27731056075332616
the lambda is 20.0
the regulation term lambda/alpha is 72.12130668831772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2733513844635064
the lambda is 20.0
the regulation term lambda/alpha is 73.16589977860562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30159333892577445
the lambda is 20.0
the regulation term lambda/alpha is 66.31446195475235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3198250548491855
the lambda is 20.0
the regulation term lambda/alpha is 62.534187665288016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3124570049373386
the lambda is 20.0
the regulation term lambda/alpha is 64.00880660048215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27428417085602336
the lambda is 20.0
the regulation term lambda/alpha is 72.91707697743286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30891236589214643
the lambda is 20.0
the regulation term lambda/alpha is 64.74328064608069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25824890879936513
the lambda is 20.0
the regulation term lambda/alpha is 77.4446641148757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28203155911213734
the lambda is 20.0
the regulation term lambda/alpha is 70.91404970054393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30480161181211807
the lambda is 20.0
the regulation term lambda/alpha is 65.61645091407242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30274278793266396
the lambda is 20.0
the regulation term lambda/alpha is 66.06268025928466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3040514513134254
the lambda is 20.0
the regulation term lambda/alpha is 65.77834084858024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30749876652963987
the lambda is 20.0
the regulation term lambda/alpha is 65.04091130418306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.36982557516901615
the lambda is 20.0
the regulation term lambda/alpha is 54.079548151475684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31694491279042164
the lambda is 20.0
the regulation term lambda/alpha is 63.10244838422413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3101970611389089
the lambda is 20.0
the regulation term lambda/alpha is 64.47514340261215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3127551166728212
the lambda is 20.0
the regulation term lambda/alpha is 63.94779472440211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3222273993246016
the lambda is 20.0
the regulation term lambda/alpha is 62.06796827929781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3173768296141174
the lambda is 20.0
the regulation term lambda/alpha is 63.016572521431385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2983934831271587
the lambda is 20.0
the regulation term lambda/alpha is 67.02559248412645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2994892406962731
the lambda is 20.0
the regulation term lambda/alpha is 66.78036230451094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2880683709926123
the lambda is 20.0
the regulation term lambda/alpha is 69.42796229619015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31631877287799715
the lambda is 20.0
the regulation term lambda/alpha is 63.227357067782755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28086413749950234
the lambda is 20.0
the regulation term lambda/alpha is 71.20880642882162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34267792816822473
the lambda is 20.0
the regulation term lambda/alpha is 58.36384066785229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2949277284294281
the lambda is 20.0
the regulation term lambda/alpha is 67.81322362093772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3222921409653485
the lambda is 20.0
the regulation term lambda/alpha is 62.055500143735486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33498912212534576
the lambda is 20.0
the regulation term lambda/alpha is 59.7034311834055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27234785190601685
the lambda is 20.0
the regulation term lambda/alpha is 73.43549750817091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2749918986407132
the lambda is 20.0
the regulation term lambda/alpha is 72.72941529863292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3320349468489059
the lambda is 20.0
the regulation term lambda/alpha is 60.234623462996794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2893419316497631
the lambda is 20.0
the regulation term lambda/alpha is 69.12236980642408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3349307755375258
the lambda is 20.0
the regulation term lambda/alpha is 59.71383181465565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3151388465898132
the lambda is 20.0
the regulation term lambda/alpha is 63.46408961137099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28432090475614313
the lambda is 20.0
the regulation term lambda/alpha is 70.34305133895671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27018237123321204
the lambda is 20.0
the regulation term lambda/alpha is 74.02407458603838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29360403825873016
the lambda is 20.0
the regulation term lambda/alpha is 68.11895408051429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3311892223821968
the lambda is 20.0
the regulation term lambda/alpha is 60.38843853716874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28315139246268783
the lambda is 20.0
the regulation term lambda/alpha is 70.63359224919049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29004854390045404
the lambda is 20.0
the regulation term lambda/alpha is 68.95397484520416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2996677388878477
the lambda is 20.0
the regulation term lambda/alpha is 66.74058433592383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32156922940467075
the lambda is 20.0
the regulation term lambda/alpha is 62.19500552657512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29492215030368213
the lambda is 20.0
the regulation term lambda/alpha is 67.81450623293621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32391163147324453
the lambda is 20.0
the regulation term lambda/alpha is 61.74523560340877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2607964033727684
the lambda is 20.0
the regulation term lambda/alpha is 76.68817415174654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30462217013342335
the lambda is 20.0
the regulation term lambda/alpha is 65.65510314380623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29556847331731445
the lambda is 20.0
the regulation term lambda/alpha is 67.6662154644908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2711407096060179
the lambda is 20.0
the regulation term lambda/alpha is 73.76243880552309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26541727558636163
the lambda is 20.0
the regulation term lambda/alpha is 75.3530453351835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2754736386460731
the lambda is 20.0
the regulation term lambda/alpha is 72.60222828688113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3084333658277384
the lambda is 20.0
the regulation term lambda/alpha is 64.84382760057841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29806064088323864
the lambda is 20.0
the regulation term lambda/alpha is 67.10043949692351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3057029039682212
the lambda is 20.0
the regulation term lambda/alpha is 65.42299644650764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3420007605994702
the lambda is 20.0
the regulation term lambda/alpha is 58.479402107010934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30146231845541993
the lambda is 20.0
the regulation term lambda/alpha is 66.34328330808478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3692614062356293
the lambda is 20.0
the regulation term lambda/alpha is 54.16217254840276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29369935054681445
the lambda is 20.0
the regulation term lambda/alpha is 68.09684789143613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30286305232052096
the lambda is 20.0
the regulation term lambda/alpha is 66.03644732086347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3135875987315962
the lambda is 20.0
the regulation term lambda/alpha is 63.77803229750251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.270464960795313
the lambda is 20.0
the regulation term lambda/alpha is 73.946732106034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30813909858557975
the lambda is 20.0
the regulation term lambda/alpha is 64.90575227812377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3390575079442132
the lambda is 20.0
the regulation term lambda/alpha is 58.987043588165285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3166060114363486
the lambda is 20.0
the regulation term lambda/alpha is 63.16999449652225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31962967407864357
the lambda is 20.0
the regulation term lambda/alpha is 62.57241308289506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28195954513721816
the lambda is 20.0
the regulation term lambda/alpha is 70.93216152787741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28335274628589074
the lambda is 20.0
the regulation term lambda/alpha is 70.58339918054247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2855617059447811
the lambda is 20.0
the regulation term lambda/alpha is 70.03740201729777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3146882243043023
the lambda is 20.0
the regulation term lambda/alpha is 63.55496791853284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30636062617625875
the lambda is 20.0
the regulation term lambda/alpha is 65.28254054583823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3026094422539913
the lambda is 20.0
the regulation term lambda/alpha is 66.09179096008928
1340
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31227629850397026
the lambda is 20.0
the regulation term lambda/alpha is 64.04584688564098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30523406347871807
the lambda is 20.0
the regulation term lambda/alpha is 65.52348637652779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2985682998169865
the lambda is 20.0
the regulation term lambda/alpha is 66.9863478884376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2866358603416341
the lambda is 20.0
the regulation term lambda/alpha is 69.77494014936758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2904120480721205
the lambda is 20.0
the regulation term lambda/alpha is 68.86766624445701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27990578460973287
the lambda is 20.0
the regulation term lambda/alpha is 71.45261405685348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.326278435627591
the lambda is 20.0
the regulation term lambda/alpha is 61.29733937681275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28583059486063794
the lambda is 20.0
the regulation term lambda/alpha is 69.97151585452696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2774958144699827
the lambda is 20.0
the regulation term lambda/alpha is 72.07315915088672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.316855677894133
the lambda is 20.0
the regulation term lambda/alpha is 63.12021969409792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2762153764425464
the lambda is 20.0
the regulation term lambda/alpha is 72.40726514789107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28073093973677676
the lambda is 20.0
the regulation term lambda/alpha is 71.24259270728301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.296964426640729
the lambda is 20.0
the regulation term lambda/alpha is 67.3481340046033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3114409005246268
the lambda is 20.0
the regulation term lambda/alpha is 64.21764118428152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32423837547966844
the lambda is 20.0
the regulation term lambda/alpha is 61.68301321647262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2995840991599026
the lambda is 20.0
the regulation term lambda/alpha is 66.75921738197803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28337681245365776
the lambda is 20.0
the regulation term lambda/alpha is 70.57740478773546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2970571390167441
the lambda is 20.0
the regulation term lambda/alpha is 67.3271144608737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3031982649080311
the lambda is 20.0
the regulation term lambda/alpha is 65.96343816831072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2813068331888337
the lambda is 20.0
the regulation term lambda/alpha is 71.096744338857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3099819975911308
the lambda is 20.0
the regulation term lambda/alpha is 64.51987584898458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33196669551521485
the lambda is 20.0
the regulation term lambda/alpha is 60.24700751670238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2819137435180928
the lambda is 20.0
the regulation term lambda/alpha is 70.94368564800541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31000108326314024
the lambda is 20.0
the regulation term lambda/alpha is 64.5159035880635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29141845811676553
the lambda is 20.0
the regulation term lambda/alpha is 68.62983260993853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3236618882631118
the lambda is 20.0
the regulation term lambda/alpha is 61.79287931404998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28963929630963453
the lambda is 20.0
the regulation term lambda/alpha is 69.05140377989076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3129531481670757
the lambda is 20.0
the regulation term lambda/alpha is 63.90732963428327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32546301822774526
the lambda is 20.0
the regulation term lambda/alpha is 61.450914174232985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30060806069080437
the lambda is 20.0
the regulation term lambda/alpha is 66.53181539456904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3061831558319323
the lambda is 20.0
the regulation term lambda/alpha is 65.3203797108233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35188048206697414
the lambda is 20.0
the regulation term lambda/alpha is 56.83748039254237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2730942797044366
the lambda is 20.0
the regulation term lambda/alpha is 73.23478185498986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31696075853662975
the lambda is 20.0
the regulation term lambda/alpha is 63.09929371805402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3114095457418037
the lambda is 20.0
the regulation term lambda/alpha is 64.22410704321321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2636616707570438
the lambda is 20.0
the regulation term lambda/alpha is 75.85478747280409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2950754832525424
the lambda is 20.0
the regulation term lambda/alpha is 67.77926712021296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2818680369200295
the lambda is 20.0
the regulation term lambda/alpha is 70.95518959347038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3100796893211749
the lambda is 20.0
the regulation term lambda/alpha is 64.49954862823783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2738442308895472
the lambda is 20.0
the regulation term lambda/alpha is 73.03422071384384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31595317387621574
the lambda is 20.0
the regulation term lambda/alpha is 63.300519360617685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3198810441118325
the lambda is 20.0
the regulation term lambda/alpha is 62.52324221190134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2618445668181337
the lambda is 20.0
the regulation term lambda/alpha is 76.38119149476631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3046461771609895
the lambda is 20.0
the regulation term lambda/alpha is 65.64992932581934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30839524223751125
the lambda is 20.0
the regulation term lambda/alpha is 64.85184354626638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28250380820328297
the lambda is 20.0
the regulation term lambda/alpha is 70.79550582768951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3046962562310798
the lambda is 20.0
the regulation term lambda/alpha is 65.6391392772221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3246265944839183
the lambda is 20.0
the regulation term lambda/alpha is 61.60924686960847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2747893122200532
the lambda is 20.0
the regulation term lambda/alpha is 72.78303453077484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29475281704811623
the lambda is 20.0
the regulation term lambda/alpha is 67.85346515190437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3233357865352599
the lambda is 20.0
the regulation term lambda/alpha is 61.85520079392447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3018303420313698
the lambda is 20.0
the regulation term lambda/alpha is 66.26239053832884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30974154854735075
the lambda is 20.0
the regulation term lambda/alpha is 64.56996193696811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32214114528076004
the lambda is 20.0
the regulation term lambda/alpha is 62.08458712273196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28407780372590985
the lambda is 20.0
the regulation term lambda/alpha is 70.40324776411197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2862694398823407
the lambda is 20.0
the regulation term lambda/alpha is 69.86425099451823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32585045161067383
the lambda is 20.0
the regulation term lambda/alpha is 61.37784956608255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30303079267905864
the lambda is 20.0
the regulation term lambda/alpha is 65.99989335467335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.270927891728616
the lambda is 20.0
the regulation term lambda/alpha is 73.820380295262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31303760820245197
the lambda is 20.0
the regulation term lambda/alpha is 63.890086928677675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30430115401605873
the lambda is 20.0
the regulation term lambda/alpha is 65.72436461724543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3039747095447972
the lambda is 20.0
the regulation term lambda/alpha is 65.79494731634104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3061690479797971
the lambda is 20.0
the regulation term lambda/alpha is 65.32338958482741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2825522489197841
the lambda is 20.0
the regulation term lambda/alpha is 70.78336865645672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2962626338110857
the lambda is 20.0
the regulation term lambda/alpha is 67.50766960626281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33976061774377686
the lambda is 20.0
the regulation term lambda/alpha is 58.86497420687694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3252070014089361
the lambda is 20.0
the regulation term lambda/alpha is 61.4992909542274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2856357263583552
the lambda is 20.0
the regulation term lambda/alpha is 70.01925233578181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32536434825386523
the lambda is 20.0
the regulation term lambda/alpha is 61.469549774995684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27847020381729737
the lambda is 20.0
the regulation term lambda/alpha is 71.82096944605922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3132444979121935
the lambda is 20.0
the regulation term lambda/alpha is 63.84788921529999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3160175819567747
the lambda is 20.0
the regulation term lambda/alpha is 63.28761797416583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29187801074399083
the lambda is 20.0
the regulation term lambda/alpha is 68.5217771253834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3143643617933877
the lambda is 20.0
the regulation term lambda/alpha is 63.62044312498999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2987483931867227
the lambda is 20.0
the regulation term lambda/alpha is 66.94596676039582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26606871073271504
the lambda is 20.0
the regulation term lambda/alpha is 75.16855305880526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2778542250195395
the lambda is 20.0
the regulation term lambda/alpha is 71.98019032675693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2926245605412206
the lambda is 20.0
the regulation term lambda/alpha is 68.3469629583013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33709763281858196
the lambda is 20.0
the regulation term lambda/alpha is 59.3299924202183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.270010799751662
the lambda is 20.0
the regulation term lambda/alpha is 74.07111129775058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2911786713395389
the lambda is 20.0
the regulation term lambda/alpha is 68.68634954611188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2871261714547206
the lambda is 20.0
the regulation term lambda/alpha is 69.65578894696463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.311118551239158
the lambda is 20.0
the regulation term lambda/alpha is 64.28417694908178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3017277280154125
the lambda is 20.0
the regulation term lambda/alpha is 66.2849255901943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30781371747140485
the lambda is 20.0
the regulation term lambda/alpha is 64.97436230033495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33817650157231244
the lambda is 20.0
the regulation term lambda/alpha is 59.14071470670587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30064980592299606
the lambda is 20.0
the regulation term lambda/alpha is 66.52257745053227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33353046160738925
the lambda is 20.0
the regulation term lambda/alpha is 59.964537882428026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3064543947132823
the lambda is 20.0
the regulation term lambda/alpha is 65.26256547474848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28583726982654833
the lambda is 20.0
the regulation term lambda/alpha is 69.96988185668157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29332016555980295
the lambda is 20.0
the regulation term lambda/alpha is 68.1848790103807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3111943763100562
the lambda is 20.0
the regulation term lambda/alpha is 64.26851358031338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29915724656945475
the lambda is 20.0
the regulation term lambda/alpha is 66.85447278763023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29494991834016876
the lambda is 20.0
the regulation term lambda/alpha is 67.80812184166736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3030802042234053
the lambda is 20.0
the regulation term lambda/alpha is 65.98913330960302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30544141615828563
the lambda is 20.0
the regulation term lambda/alpha is 65.47900494815548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30296778487588255
the lambda is 20.0
the regulation term lambda/alpha is 66.01361926382187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30618857415611594
the lambda is 20.0
the regulation term lambda/alpha is 65.31922379899986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29998483158141304
the lambda is 20.0
the regulation term lambda/alpha is 66.67003759679159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28845798851683124
the lambda is 20.0
the regulation term lambda/alpha is 69.33418659276624
1350
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29141211896351926
the lambda is 20.0
the regulation term lambda/alpha is 68.63132553009478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28863319085276645
the lambda is 20.0
the regulation term lambda/alpha is 69.29210026369462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31613381518311445
the lambda is 20.0
the regulation term lambda/alpha is 63.264348954304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2973432399385187
the lambda is 20.0
the regulation term lambda/alpha is 67.26233293259122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29592923398980425
the lambda is 20.0
the regulation term lambda/alpha is 67.58372510330989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29468505517852533
the lambda is 20.0
the regulation term lambda/alpha is 67.86906783543418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3170028504583867
the lambda is 20.0
the regulation term lambda/alpha is 63.09091533744874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3050648719742004
the lambda is 20.0
the regulation term lambda/alpha is 65.55982624473202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3075738399245545
the lambda is 20.0
the regulation term lambda/alpha is 65.0250359552875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3180289901503504
the lambda is 20.0
the regulation term lambda/alpha is 62.88734869907571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3028836772348938
the lambda is 20.0
the regulation term lambda/alpha is 66.03195055800087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2622178039774166
the lambda is 20.0
the regulation term lambda/alpha is 76.27247157375511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3138301772357377
the lambda is 20.0
the regulation term lambda/alpha is 63.72873436252351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30472684098399744
the lambda is 20.0
the regulation term lambda/alpha is 65.63255122331114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2882301299745947
the lambda is 20.0
the regulation term lambda/alpha is 69.38899830410807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3178809723115228
the lambda is 20.0
the regulation term lambda/alpha is 62.916631513257215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3346435197807304
the lambda is 20.0
the regulation term lambda/alpha is 59.76508976807519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33562881200614497
the lambda is 20.0
the regulation term lambda/alpha is 59.589639758441905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29322268919616595
the lambda is 20.0
the regulation term lambda/alpha is 68.2075457899508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3208075984708248
the lambda is 20.0
the regulation term lambda/alpha is 62.34266300216346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.329839144811758
the lambda is 20.0
the regulation term lambda/alpha is 60.63561682896725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2977342706002036
the lambda is 20.0
the regulation term lambda/alpha is 67.17399364098036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2787332777155069
the lambda is 20.0
the regulation term lambda/alpha is 71.75318341577172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3176918166488983
the lambda is 20.0
the regulation term lambda/alpha is 62.95409246283259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32403482573307796
the lambda is 20.0
the regulation term lambda/alpha is 61.721760785289476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29110188602022574
the lambda is 20.0
the regulation term lambda/alpha is 68.70446726892865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2996950062329674
the lambda is 20.0
the regulation term lambda/alpha is 66.73451203405449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31429467458718696
the lambda is 20.0
the regulation term lambda/alpha is 63.634549412169235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3453518984720869
the lambda is 20.0
the regulation term lambda/alpha is 57.911944565773105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2996692008251782
the lambda is 20.0
the regulation term lambda/alpha is 66.74025874173053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3127079876509387
the lambda is 20.0
the regulation term lambda/alpha is 63.957432460359996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3181519111866434
the lambda is 20.0
the regulation term lambda/alpha is 62.86305156993706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3259833523319927
the lambda is 20.0
the regulation term lambda/alpha is 61.352826323570376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31321446204955533
the lambda is 20.0
the regulation term lambda/alpha is 63.85401194161875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28642902362963946
the lambda is 20.0
the regulation term lambda/alpha is 69.82532617176584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27710877630744724
the lambda is 20.0
the regulation term lambda/alpha is 72.1738238193162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2870890292066731
the lambda is 20.0
the regulation term lambda/alpha is 69.66480069010981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31399889323069397
the lambda is 20.0
the regulation term lambda/alpha is 63.69449202263928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3501339368554045
the lambda is 20.0
the regulation term lambda/alpha is 57.120998266041944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2845151497363465
the lambda is 20.0
the regulation term lambda/alpha is 70.29502653385427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2946027509598371
the lambda is 20.0
the regulation term lambda/alpha is 67.88802865838336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3396034832504523
the lambda is 20.0
the regulation term lambda/alpha is 58.89221102379068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3330027423540277
the lambda is 20.0
the regulation term lambda/alpha is 60.05956545167802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33627981561540266
the lambda is 20.0
the regulation term lambda/alpha is 59.47428026091715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29934826475484216
the lambda is 20.0
the regulation term lambda/alpha is 66.81181204233617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3488158518813522
the lambda is 20.0
the regulation term lambda/alpha is 57.33684375904708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31404332500288373
the lambda is 20.0
the regulation term lambda/alpha is 63.68548033879194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32248266903091005
the lambda is 20.0
the regulation term lambda/alpha is 62.01883673346487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3586335381507287
the lambda is 20.0
the regulation term lambda/alpha is 55.76723276670872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2936466883289877
the lambda is 20.0
the regulation term lambda/alpha is 68.10906029218677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29298766593834924
the lambda is 20.0
the regulation term lambda/alpha is 68.26225921813521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3050202373878794
the lambda is 20.0
the regulation term lambda/alpha is 65.56941982366557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30241891621198363
the lambda is 20.0
the regulation term lambda/alpha is 66.1334292527548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30860854308601526
the lambda is 20.0
the regulation term lambda/alpha is 64.80701992240573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33994442488654675
the lambda is 20.0
the regulation term lambda/alpha is 58.83314605519656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31319758293582217
the lambda is 20.0
the regulation term lambda/alpha is 63.857453216994436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2957527775918363
the lambda is 20.0
the regulation term lambda/alpha is 67.62404790531394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29933269447076044
the lambda is 20.0
the regulation term lambda/alpha is 66.81528736899688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2865130541931124
the lambda is 20.0
the regulation term lambda/alpha is 69.80484730905077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.301501772362438
the lambda is 20.0
the regulation term lambda/alpha is 66.33460176133829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3065720182853818
the lambda is 20.0
the regulation term lambda/alpha is 65.23752595510005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3067857792590587
the lambda is 20.0
the regulation term lambda/alpha is 65.1920700115354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2868619898322761
the lambda is 20.0
the regulation term lambda/alpha is 69.71993749221951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2902765346262487
the lambda is 20.0
the regulation term lambda/alpha is 68.89981660333446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3086653384400411
the lambda is 20.0
the regulation term lambda/alpha is 64.79509523511024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28644193855560307
the lambda is 20.0
the regulation term lambda/alpha is 69.82217792845188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3596811701533893
the lambda is 20.0
the regulation term lambda/alpha is 55.60480130630919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2863970356704338
the lambda is 20.0
the regulation term lambda/alpha is 69.83312502931992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.310401494745921
the lambda is 20.0
the regulation term lambda/alpha is 64.43267941209817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30672150366820006
the lambda is 20.0
the regulation term lambda/alpha is 65.20573145610051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34892530868126925
the lambda is 20.0
the regulation term lambda/alpha is 57.318857366890754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3210100321039172
the lambda is 20.0
the regulation term lambda/alpha is 62.3033488047676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30691074998063284
the lambda is 20.0
the regulation term lambda/alpha is 65.16552450920038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30996036223335427
the lambda is 20.0
the regulation term lambda/alpha is 64.52437936223265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29864495468289304
the lambda is 20.0
the regulation term lambda/alpha is 66.96915412897695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35130504250659844
the lambda is 20.0
the regulation term lambda/alpha is 56.9305804929468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2971244492882523
the lambda is 20.0
the regulation term lambda/alpha is 67.31186224462195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29777012785345236
the lambda is 20.0
the regulation term lambda/alpha is 67.16590459954736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29921705535704585
the lambda is 20.0
the regulation term lambda/alpha is 66.8411096290439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31217690899742817
the lambda is 20.0
the regulation term lambda/alpha is 64.066237519716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27995886154254834
the lambda is 20.0
the regulation term lambda/alpha is 71.43906747513469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2995810811842495
the lambda is 20.0
the regulation term lambda/alpha is 66.75988991340719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3077636164061171
the lambda is 20.0
the regulation term lambda/alpha is 64.98493952452296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35691128659291604
the lambda is 20.0
the regulation term lambda/alpha is 56.036333820990905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2863648867608492
the lambda is 20.0
the regulation term lambda/alpha is 69.84096488303932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3155797114078805
the lambda is 20.0
the regulation term lambda/alpha is 63.37543028598058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3475867303540804
the lambda is 20.0
the regulation term lambda/alpha is 57.539595886259406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3572891801689751
the lambda is 20.0
the regulation term lambda/alpha is 55.97706594568934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.288814422732905
the lambda is 20.0
the regulation term lambda/alpha is 69.24861927167662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3089672741195628
the lambda is 20.0
the regulation term lambda/alpha is 64.73177477126748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3058541450153701
the lambda is 20.0
the regulation term lambda/alpha is 65.39064559349012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3022620756715555
the lambda is 20.0
the regulation term lambda/alpha is 66.16774517797076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3009746106538302
the lambda is 20.0
the regulation term lambda/alpha is 66.45078784736184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3190686753719218
the lambda is 20.0
the regulation term lambda/alpha is 62.682430284599505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2834370589567228
the lambda is 20.0
the regulation term lambda/alpha is 70.56240307324718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3283986874630384
the lambda is 20.0
the regulation term lambda/alpha is 60.90158323866937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28398570082974073
the lambda is 20.0
the regulation term lambda/alpha is 70.42608110748046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2853661795152949
the lambda is 20.0
the regulation term lambda/alpha is 70.08539005557962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30995030255862405
the lambda is 20.0
the regulation term lambda/alpha is 64.52647355044023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3128646843021018
the lambda is 20.0
the regulation term lambda/alpha is 63.92539971270143
1360
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3189240651284351
the lambda is 20.0
the regulation term lambda/alpha is 62.71085247814625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31602751983569044
the lambda is 20.0
the regulation term lambda/alpha is 63.28562781620548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3054892286521183
the lambda is 20.0
the regulation term lambda/alpha is 65.46875674878666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3175353441768938
the lambda is 20.0
the regulation term lambda/alpha is 62.98511446605555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2995333065858073
the lambda is 20.0
the regulation term lambda/alpha is 66.77053790100167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3044236628562827
the lambda is 20.0
the regulation term lambda/alpha is 65.69791524202876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32518311750969836
the lambda is 20.0
the regulation term lambda/alpha is 61.50380792570978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3034763789361542
the lambda is 20.0
the regulation term lambda/alpha is 65.90298747504045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3063846057488878
the lambda is 20.0
the regulation term lambda/alpha is 65.27743112652324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2802715338916118
the lambda is 20.0
the regulation term lambda/alpha is 71.35936968802017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28094254230274407
the lambda is 20.0
the regulation term lambda/alpha is 71.18893363771149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2595511911895369
the lambda is 20.0
the regulation term lambda/alpha is 77.05609020069967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3035236407114624
the lambda is 20.0
the regulation term lambda/alpha is 65.8927256971477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3182376378922568
the lambda is 20.0
the regulation term lambda/alpha is 62.84611755059357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2949852592788881
the lambda is 20.0
the regulation term lambda/alpha is 67.79999803682186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29513700337619103
the lambda is 20.0
the regulation term lambda/alpha is 67.76513880405352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3198472312557905
the lambda is 20.0
the regulation term lambda/alpha is 62.529851896718334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3249367278322942
the lambda is 20.0
the regulation term lambda/alpha is 61.55044440012446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30353596961768864
the lambda is 20.0
the regulation term lambda/alpha is 65.89004929198511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2677814975202392
the lambda is 20.0
the regulation term lambda/alpha is 74.68775918130183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3093444825812416
the lambda is 20.0
the regulation term lambda/alpha is 64.65284214256998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.273833359915024
the lambda is 20.0
the regulation term lambda/alpha is 73.03712011643286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31197444729404616
the lambda is 20.0
the regulation term lambda/alpha is 64.10781451324871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3092836251788345
the lambda is 20.0
the regulation term lambda/alpha is 64.66556381197215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2923244890552196
the lambda is 20.0
the regulation term lambda/alpha is 68.41712120882912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30886202274953395
the lambda is 20.0
the regulation term lambda/alpha is 64.75383351425707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2981469165474209
the lambda is 20.0
the regulation term lambda/alpha is 67.08102244223262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.313019121134324
the lambda is 20.0
the regulation term lambda/alpha is 63.893860309631116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3004805421404049
the lambda is 20.0
the regulation term lambda/alpha is 66.56005030320613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3128231688630509
the lambda is 20.0
the regulation term lambda/alpha is 63.93388339070144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2881100978429223
the lambda is 20.0
the regulation term lambda/alpha is 69.41790707698141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3042509743407155
the lambda is 20.0
the regulation term lambda/alpha is 65.73520444211626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3152255981692298
the lambda is 20.0
the regulation term lambda/alpha is 63.4466239929631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3279797653125316
the lambda is 20.0
the regulation term lambda/alpha is 60.979371641851195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2954693183568035
the lambda is 20.0
the regulation term lambda/alpha is 67.68892320605808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29995893134896384
the lambda is 20.0
the regulation term lambda/alpha is 66.67579428309324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26766929758939134
the lambda is 20.0
the regulation term lambda/alpha is 74.71906632594185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3492132259125543
the lambda is 20.0
the regulation term lambda/alpha is 57.27159945828671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3185437950056585
the lambda is 20.0
the regulation term lambda/alpha is 62.78571522526354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2845527684704054
the lambda is 20.0
the regulation term lambda/alpha is 70.28573331937228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2976349409954889
the lambda is 20.0
the regulation term lambda/alpha is 67.1964115943737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27683981183291123
the lambda is 20.0
the regulation term lambda/alpha is 72.24394449477214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28991826263757503
the lambda is 20.0
the regulation term lambda/alpha is 68.98496085775001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3074032513703999
the lambda is 20.0
the regulation term lambda/alpha is 65.06112056668316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.317703087776238
the lambda is 20.0
the regulation term lambda/alpha is 62.951859045469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3295745105953332
the lambda is 20.0
the regulation term lambda/alpha is 60.68430463227456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2974878708756799
the lambda is 20.0
the regulation term lambda/alpha is 67.22963171953317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3044735157368786
the lambda is 20.0
the regulation term lambda/alpha is 65.687158213405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2802401351609464
the lambda is 20.0
the regulation term lambda/alpha is 71.3673649511826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30967230290958897
the lambda is 20.0
the regulation term lambda/alpha is 64.58440038739643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3349427816619796
the lambda is 20.0
the regulation term lambda/alpha is 59.71169135444683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3032912288682025
the lambda is 20.0
the regulation term lambda/alpha is 65.94321924387452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32755016530720965
the lambda is 20.0
the regulation term lambda/alpha is 61.05934943199305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28708914130037494
the lambda is 20.0
the regulation term lambda/alpha is 69.66477348954989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3139655375147015
the lambda is 20.0
the regulation term lambda/alpha is 63.701258928978774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2987884012574959
the lambda is 20.0
the regulation term lambda/alpha is 66.9370026273677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3230746137506445
the lambda is 20.0
the regulation term lambda/alpha is 61.90520439788068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2892470309867974
the lambda is 20.0
the regulation term lambda/alpha is 69.14504854818335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31625430952852984
the lambda is 20.0
the regulation term lambda/alpha is 63.24024494659342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32871304448336786
the lambda is 20.0
the regulation term lambda/alpha is 60.84334143609551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2724032540213938
the lambda is 20.0
the regulation term lambda/alpha is 73.42056199677135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2982843876617045
the lambda is 20.0
the regulation term lambda/alpha is 67.05010663408488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3188244243759838
the lambda is 20.0
the regulation term lambda/alpha is 62.73045121666829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3243682946209948
the lambda is 20.0
the regulation term lambda/alpha is 61.65830733663048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29217191759060795
the lambda is 20.0
the regulation term lambda/alpha is 68.45284846308896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29968259120520463
the lambda is 20.0
the regulation term lambda/alpha is 66.73727666184386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2846742895245251
the lambda is 20.0
the regulation term lambda/alpha is 70.25572991998973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3145271349829245
the lambda is 20.0
the regulation term lambda/alpha is 63.58751845396674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2895089253994373
the lambda is 20.0
the regulation term lambda/alpha is 69.08249882937417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2854347386938664
the lambda is 20.0
the regulation term lambda/alpha is 70.0685560962863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3167370565339202
the lambda is 20.0
the regulation term lambda/alpha is 63.14385888049114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3324438767176527
the lambda is 20.0
the regulation term lambda/alpha is 60.160530545690165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3039677459626451
the lambda is 20.0
the regulation term lambda/alpha is 65.79645460955525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.286663530560593
the lambda is 20.0
the regulation term lambda/alpha is 69.76820511799471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28717432703761897
the lambda is 20.0
the regulation term lambda/alpha is 69.64410853265467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3404810406590394
the lambda is 20.0
the regulation term lambda/alpha is 58.74042196677897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2868985014138441
the lambda is 20.0
the regulation term lambda/alpha is 69.71106471954165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2956570081252451
the lambda is 20.0
the regulation term lambda/alpha is 67.64595274375392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3270262551483471
the lambda is 20.0
the regulation term lambda/alpha is 61.15716914205409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31440171309738585
the lambda is 20.0
the regulation term lambda/alpha is 63.61288493935466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28607055823006605
the lambda is 20.0
the regulation term lambda/alpha is 69.91282194064667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3421559385646607
the lambda is 20.0
the regulation term lambda/alpha is 58.452879946786005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35827564778220883
the lambda is 20.0
the regulation term lambda/alpha is 55.82294002900734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34489693551184547
the lambda is 20.0
the regulation term lambda/alpha is 57.988337792328984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3266407895674386
the lambda is 20.0
the regulation term lambda/alpha is 61.229340115438276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3071155583504478
the lambda is 20.0
the regulation term lambda/alpha is 65.12206710536663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3025326237945762
the lambda is 20.0
the regulation term lambda/alpha is 66.10857285123826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3368205768197711
the lambda is 20.0
the regulation term lambda/alpha is 59.378795051175786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2945861687110017
the lambda is 20.0
the regulation term lambda/alpha is 67.89185007399526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30744110320563894
the lambda is 20.0
the regulation term lambda/alpha is 65.05311030783852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2866017139369476
the lambda is 20.0
the regulation term lambda/alpha is 69.78325330043211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30611581342818833
the lambda is 20.0
the regulation term lambda/alpha is 65.33474953815738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.296696243950337
the lambda is 20.0
the regulation term lambda/alpha is 67.40900974583195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3291930292482132
the lambda is 20.0
the regulation term lambda/alpha is 60.75462790228131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2959280658434565
the lambda is 20.0
the regulation term lambda/alpha is 67.58399188328367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3058139024369642
the lambda is 20.0
the regulation term lambda/alpha is 65.39925046122615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28974611416924306
the lambda is 20.0
the regulation term lambda/alpha is 69.02594727575134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3012462661313774
the lambda is 20.0
the regulation term lambda/alpha is 66.39086438096378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32885758725879866
the lambda is 20.0
the regulation term lambda/alpha is 60.81659896221505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30482927634484996
the lambda is 20.0
the regulation term lambda/alpha is 65.61049594650555
1370
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2957129515304186
the lambda is 20.0
the regulation term lambda/alpha is 67.63315538427709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3119642732496042
the lambda is 20.0
the regulation term lambda/alpha is 64.10990525186806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30850426708412887
the lambda is 20.0
the regulation term lambda/alpha is 64.8289250227648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2923323809250458
the lambda is 20.0
the regulation term lambda/alpha is 68.41527420504269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3303749447263819
the lambda is 20.0
the regulation term lambda/alpha is 60.537278384001226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31524683224679495
the lambda is 20.0
the regulation term lambda/alpha is 63.44235041937788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2905540828345143
the lambda is 20.0
the regulation term lambda/alpha is 68.83400090230721
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29795323839647103
the lambda is 20.0
the regulation term lambda/alpha is 67.12462703085988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32240771530770684
the lambda is 20.0
the regulation term lambda/alpha is 62.03325494525447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2723886528693616
the lambda is 20.0
the regulation term lambda/alpha is 73.42449764084725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.289306074469353
the lambda is 20.0
the regulation term lambda/alpha is 69.13093697283793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29630482349475323
the lambda is 20.0
the regulation term lambda/alpha is 67.49805745350665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2646902323697912
the lambda is 20.0
the regulation term lambda/alpha is 75.56002282720644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3024108754084673
the lambda is 20.0
the regulation term lambda/alpha is 66.13518767466924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3019007759349437
the lambda is 20.0
the regulation term lambda/alpha is 66.24693142328915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2630668153679587
the lambda is 20.0
the regulation term lambda/alpha is 76.02631282864567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2966054618085504
the lambda is 20.0
the regulation term lambda/alpha is 67.42964164601048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2678028632331271
the lambda is 20.0
the regulation term lambda/alpha is 74.68180048018998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3366362363679174
the lambda is 20.0
the regulation term lambda/alpha is 59.4113106057351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3058349179950539
the lambda is 20.0
the regulation term lambda/alpha is 65.39475652784503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33983583077336144
the lambda is 20.0
the regulation term lambda/alpha is 58.85194611317522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2894296173815172
the lambda is 20.0
the regulation term lambda/alpha is 69.10142846105697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30534710088421435
the lambda is 20.0
the regulation term lambda/alpha is 65.49923003062626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3235264326534014
the lambda is 20.0
the regulation term lambda/alpha is 61.81875105526939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31961829540980535
the lambda is 20.0
the regulation term lambda/alpha is 62.57464071121641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28391951958939493
the lambda is 20.0
the regulation term lambda/alpha is 70.44249732784856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.314191726479027
the lambda is 20.0
the regulation term lambda/alpha is 63.65539991816126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29298308952813745
the lambda is 20.0
the regulation term lambda/alpha is 68.2633254779684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2945203054114252
the lambda is 20.0
the regulation term lambda/alpha is 67.90703266473031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29047586000811587
the lambda is 20.0
the regulation term lambda/alpha is 68.85253734834006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32737065429629675
the lambda is 20.0
the regulation term lambda/alpha is 61.09283082502072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29912930755545314
the lambda is 20.0
the regulation term lambda/alpha is 66.86071707063462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28722801536670967
the lambda is 20.0
the regulation term lambda/alpha is 69.63109073627656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29383952395305324
the lambda is 20.0
the regulation term lambda/alpha is 68.06436292483036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3126016047633949
the lambda is 20.0
the regulation term lambda/alpha is 63.979198107884976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3241724979842174
the lambda is 20.0
the regulation term lambda/alpha is 61.69554827866279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2858670595854829
the lambda is 20.0
the regulation term lambda/alpha is 69.96259040478706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31088665757239276
the lambda is 20.0
the regulation term lambda/alpha is 64.33212720086844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30335181317754467
the lambda is 20.0
the regulation term lambda/alpha is 65.93004930646144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2985570565170699
the lambda is 20.0
the regulation term lambda/alpha is 66.98887051378907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3231642180283732
the lambda is 20.0
the regulation term lambda/alpha is 61.888039839373675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2842162422354645
the lambda is 20.0
the regulation term lambda/alpha is 70.36895514025764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30444927794461163
the lambda is 20.0
the regulation term lambda/alpha is 65.69238769434229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2900250161649854
the lambda is 20.0
the regulation term lambda/alpha is 68.95956860708415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31078349917962417
the lambda is 20.0
the regulation term lambda/alpha is 64.3534809692086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30297564093547036
the lambda is 20.0
the regulation term lambda/alpha is 66.01190755219733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2902691607524706
the lambda is 20.0
the regulation term lambda/alpha is 68.9015669048465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2623277307811444
the lambda is 20.0
the regulation term lambda/alpha is 76.24051006900854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29740174368769917
the lambda is 20.0
the regulation term lambda/alpha is 67.24910134017892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29313733695298866
the lambda is 20.0
the regulation term lambda/alpha is 68.22740565186844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2974681778539405
the lambda is 20.0
the regulation term lambda/alpha is 67.23408246316747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27623493121693904
the lambda is 20.0
the regulation term lambda/alpha is 72.40213941043231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32464902009273167
the lambda is 20.0
the regulation term lambda/alpha is 61.604991120217356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3306456173721389
the lambda is 20.0
the regulation term lambda/alpha is 60.48772144313701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33091194723158174
the lambda is 20.0
the regulation term lambda/alpha is 60.43903874526302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3054918952615997
the lambda is 20.0
the regulation term lambda/alpha is 65.46818527828223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32804267769783857
the lambda is 20.0
the regulation term lambda/alpha is 60.96767695093039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28577700230774084
the lambda is 20.0
the regulation term lambda/alpha is 69.984637806729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33174675687801886
the lambda is 20.0
the regulation term lambda/alpha is 60.28694956422399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3025199940587508
the lambda is 20.0
the regulation term lambda/alpha is 66.1113327805894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30724834107184273
the lambda is 20.0
the regulation term lambda/alpha is 65.09392346995122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2757835262827856
the lambda is 20.0
the regulation term lambda/alpha is 72.52064787761184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27924748353892415
the lambda is 20.0
the regulation term lambda/alpha is 71.62105723044846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30887253825060557
the lambda is 20.0
the regulation term lambda/alpha is 64.75162898351579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3278894762750938
the lambda is 20.0
the regulation term lambda/alpha is 60.99616318036488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31023445420410073
the lambda is 20.0
the regulation term lambda/alpha is 64.46737210832863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29676406175228287
the lambda is 20.0
the regulation term lambda/alpha is 67.39360514850532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2947919231934723
the lambda is 20.0
the regulation term lambda/alpha is 67.84446393015311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3059285686775849
the lambda is 20.0
the regulation term lambda/alpha is 65.3747379215107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32009293882169026
the lambda is 20.0
the regulation term lambda/alpha is 62.48185315684556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3185059885534923
the lambda is 20.0
the regulation term lambda/alpha is 62.79316784852555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3089581945966077
the lambda is 20.0
the regulation term lambda/alpha is 64.73367707923418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31450266096839513
the lambda is 20.0
the regulation term lambda/alpha is 63.5924667168709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27445740764739573
the lambda is 20.0
the regulation term lambda/alpha is 72.8710519108839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2864454806146037
the lambda is 20.0
the regulation term lambda/alpha is 69.82131453806694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2821818594408718
the lambda is 20.0
the regulation term lambda/alpha is 70.8762782966592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3072574775368109
the lambda is 20.0
the regulation term lambda/alpha is 65.09198786741946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31993552805824255
the lambda is 20.0
the regulation term lambda/alpha is 62.512594713642144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26997035386570595
the lambda is 20.0
the regulation term lambda/alpha is 74.08220833739692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2898133485140166
the lambda is 20.0
the regulation term lambda/alpha is 69.00993381618761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29790284162861685
the lambda is 20.0
the regulation term lambda/alpha is 67.13598262662151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2992760044345695
the lambda is 20.0
the regulation term lambda/alpha is 66.8279437831528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3115698382333147
the lambda is 20.0
the regulation term lambda/alpha is 64.19106584066485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31443305450197107
the lambda is 20.0
the regulation term lambda/alpha is 63.606544266403226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2883295521786045
the lambda is 20.0
the regulation term lambda/alpha is 69.36507149156562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3141047770614136
the lambda is 20.0
the regulation term lambda/alpha is 63.67302078977809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31067751002450594
the lambda is 20.0
the regulation term lambda/alpha is 64.37543547462582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3112218807149209
the lambda is 20.0
the regulation term lambda/alpha is 64.26283381508124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3047354515674507
the lambda is 20.0
the regulation term lambda/alpha is 65.63069671456708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3074875517833239
the lambda is 20.0
the regulation term lambda/alpha is 65.04328348906081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2757797630213089
the lambda is 20.0
the regulation term lambda/alpha is 72.52163748670218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32157290920271403
the lambda is 20.0
the regulation term lambda/alpha is 62.19429382153689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2934500600472717
the lambda is 20.0
the regulation term lambda/alpha is 68.15469724824119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28686333679102594
the lambda is 20.0
the regulation term lambda/alpha is 69.71961012420904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3088515814884284
the lambda is 20.0
the regulation term lambda/alpha is 64.75602262943028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29883510421488535
the lambda is 20.0
the regulation term lambda/alpha is 66.92654148696823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29958386927357233
the lambda is 20.0
the regulation term lambda/alpha is 66.75926860980793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3265063672092138
the lambda is 20.0
the regulation term lambda/alpha is 61.254548176038185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3085091869974262
the lambda is 20.0
the regulation term lambda/alpha is 64.82789117125013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3434212881760351
the lambda is 20.0
the regulation term lambda/alpha is 58.23750794897768
1380
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30024263312789645
the lambda is 20.0
the regulation term lambda/alpha is 66.61279176658586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3087514845528374
the lambda is 20.0
the regulation term lambda/alpha is 64.77701646994785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3066307808282087
the lambda is 20.0
the regulation term lambda/alpha is 65.22502387392441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27243498466350635
the lambda is 20.0
the regulation term lambda/alpha is 73.41201066633448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2996561834090798
the lambda is 20.0
the regulation term lambda/alpha is 66.74315801685535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29643647491229486
the lambda is 20.0
the regulation term lambda/alpha is 67.4680806601728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3226308073044705
the lambda is 20.0
the regulation term lambda/alpha is 61.99036033507415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28150138300838445
the lambda is 20.0
the regulation term lambda/alpha is 71.04760831460747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2776804631292748
the lambda is 20.0
the regulation term lambda/alpha is 72.02523279676666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2998687413169321
the lambda is 20.0
the regulation term lambda/alpha is 66.69584803059531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29905256642183214
the lambda is 20.0
the regulation term lambda/alpha is 66.87787447972863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3029493674809372
the lambda is 20.0
the regulation term lambda/alpha is 66.01763247206146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2884067234045159
the lambda is 20.0
the regulation term lambda/alpha is 69.34651094089868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.319716112414943
the lambda is 20.0
the regulation term lambda/alpha is 62.555496027184994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3024280295663564
the lambda is 20.0
the regulation term lambda/alpha is 66.13143639059341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3398998280403738
the lambda is 20.0
the regulation term lambda/alpha is 58.840865308188306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30683386411545893
the lambda is 20.0
the regulation term lambda/alpha is 65.18185356644393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27841177587179244
the lambda is 20.0
the regulation term lambda/alpha is 71.83604191084908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2723993524750017
the lambda is 20.0
the regulation term lambda/alpha is 73.42161359152063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3056224546068441
the lambda is 20.0
the regulation term lambda/alpha is 65.44021781949303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3631997288577817
the lambda is 20.0
the regulation term lambda/alpha is 55.06612040404747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3030058615059752
the lambda is 20.0
the regulation term lambda/alpha is 66.00532379339997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27878073109856427
the lambda is 20.0
the regulation term lambda/alpha is 71.74096976210635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30309570419072684
the lambda is 20.0
the regulation term lambda/alpha is 65.9857587008714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3096973916693849
the lambda is 20.0
the regulation term lambda/alpha is 64.57916836881483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34082431577818173
the lambda is 20.0
the regulation term lambda/alpha is 58.68125915351819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3212955762352886
the lambda is 20.0
the regulation term lambda/alpha is 62.2479781214098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30615721132961254
the lambda is 20.0
the regulation term lambda/alpha is 65.32591511773263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34511692144701916
the lambda is 20.0
the regulation term lambda/alpha is 57.951374612821795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30153821873099307
the lambda is 20.0
the regulation term lambda/alpha is 66.32658402032384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2950283677241692
the lambda is 20.0
the regulation term lambda/alpha is 67.79009135385448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.284357532587764
the lambda is 20.0
the regulation term lambda/alpha is 70.33399051536365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29138007035094915
the lambda is 20.0
the regulation term lambda/alpha is 68.6388742233168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2868087641047814
the lambda is 20.0
the regulation term lambda/alpha is 69.73287605916147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3025605072209848
the lambda is 20.0
the regulation term lambda/alpha is 66.10248040532387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2858777338717465
the lambda is 20.0
the regulation term lambda/alpha is 69.95997809669436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3051565015177439
the lambda is 20.0
the regulation term lambda/alpha is 65.5401405525586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2719352365092909
the lambda is 20.0
the regulation term lambda/alpha is 73.546923365765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31418609841504924
the lambda is 20.0
the regulation term lambda/alpha is 63.656540187145396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26650096286257585
the lambda is 20.0
the regulation term lambda/alpha is 75.0466331722532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3155141889576814
the lambda is 20.0
the regulation term lambda/alpha is 63.388591384974184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30146965667289466
the lambda is 20.0
the regulation term lambda/alpha is 66.34166841441265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28447695810922985
the lambda is 20.0
the regulation term lambda/alpha is 70.30446378831375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3174729449406684
the lambda is 20.0
the regulation term lambda/alpha is 62.997494176197414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3109496894652569
the lambda is 20.0
the regulation term lambda/alpha is 64.31908658405219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31607262377962436
the lambda is 20.0
the regulation term lambda/alpha is 63.27659688092639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3182957221399611
the lambda is 20.0
the regulation term lambda/alpha is 62.834649066397425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2892277870292959
the lambda is 20.0
the regulation term lambda/alpha is 69.14964915862042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3204203029103692
the lambda is 20.0
the regulation term lambda/alpha is 62.41801726775901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32937720751990257
the lambda is 20.0
the regulation term lambda/alpha is 60.720655659792435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3052895543376523
the lambda is 20.0
the regulation term lambda/alpha is 65.51157652082608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30900654651323867
the lambda is 20.0
the regulation term lambda/alpha is 64.72354785254734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29756056878551557
the lambda is 20.0
the regulation term lambda/alpha is 67.21320664774031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3197700788253304
the lambda is 20.0
the regulation term lambda/alpha is 62.5449387680975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2965778205151504
the lambda is 20.0
the regulation term lambda/alpha is 67.43592614329809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28214642138637996
the lambda is 20.0
the regulation term lambda/alpha is 70.88518047376326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32943574227346734
the lambda is 20.0
the regulation term lambda/alpha is 60.709866701099585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2910825014648314
the lambda is 20.0
the regulation term lambda/alpha is 68.70904262314923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3374368372519412
the lambda is 20.0
the regulation term lambda/alpha is 59.27035163937172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30166403289312155
the lambda is 20.0
the regulation term lambda/alpha is 66.29892138014984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29615907652947393
the lambda is 20.0
the regulation term lambda/alpha is 67.53127486204053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.305431275009561
the lambda is 20.0
the regulation term lambda/alpha is 65.48117902914144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32605864148553176
the lambda is 20.0
the regulation term lambda/alpha is 61.3386595395217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2865210687341475
the lambda is 20.0
the regulation term lambda/alpha is 69.80289473426917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28942177797673185
the lambda is 20.0
the regulation term lambda/alpha is 69.1033001725527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3101522786778675
the lambda is 20.0
the regulation term lambda/alpha is 64.48445287991109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27656250890791034
the lambda is 20.0
the regulation term lambda/alpha is 72.31638185152417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33389260357501227
the lambda is 20.0
the regulation term lambda/alpha is 59.89949997651506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32303523740860035
the lambda is 20.0
the regulation term lambda/alpha is 61.912750325446474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.301492579540604
the lambda is 20.0
the regulation term lambda/alpha is 66.33662437223092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30751534224490235
the lambda is 20.0
the regulation term lambda/alpha is 65.0374054640571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3002169909603363
the lambda is 20.0
the regulation term lambda/alpha is 66.6184813058843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32451266391969336
the lambda is 20.0
the regulation term lambda/alpha is 61.63087676895521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3051486751317183
the lambda is 20.0
the regulation term lambda/alpha is 65.54182151165148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26996541213762343
the lambda is 20.0
the regulation term lambda/alpha is 74.08356441529764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3302763354581977
the lambda is 20.0
the regulation term lambda/alpha is 60.55535275409205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3054464442366932
the lambda is 20.0
the regulation term lambda/alpha is 65.47792707156813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29047145303944194
the lambda is 20.0
the regulation term lambda/alpha is 68.85358196381618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26528198071802117
the lambda is 20.0
the regulation term lambda/alpha is 75.39147568887763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34075077747261256
the lambda is 20.0
the regulation term lambda/alpha is 58.693923307651076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28794264469382563
the lambda is 20.0
the regulation term lambda/alpha is 69.45827708593266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28887039747310994
the lambda is 20.0
the regulation term lambda/alpha is 69.2352008892214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3127301358105541
the lambda is 20.0
the regulation term lambda/alpha is 63.95290286995436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26247955616407503
the lambda is 20.0
the regulation term lambda/alpha is 76.19641046443279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2943978366312507
the lambda is 20.0
the regulation term lambda/alpha is 67.935281824272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3716706088993005
the lambda is 20.0
the regulation term lambda/alpha is 53.81108842377889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27939020016022503
the lambda is 20.0
the regulation term lambda/alpha is 71.58447214157968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3064916177380672
the lambda is 20.0
the regulation term lambda/alpha is 65.25463941755278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32478083306102834
the lambda is 20.0
the regulation term lambda/alpha is 61.57998860801578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32091620159378365
the lambda is 20.0
the regulation term lambda/alpha is 62.32156525807332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32063975913675413
the lambda is 20.0
the regulation term lambda/alpha is 62.375296357024524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27828136253689717
the lambda is 20.0
the regulation term lambda/alpha is 71.86970703921364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3262254771817006
the lambda is 20.0
the regulation term lambda/alpha is 61.307290199350156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33193837664440023
the lambda is 20.0
the regulation term lambda/alpha is 60.25214740814874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3024338221403571
the lambda is 20.0
the regulation term lambda/alpha is 66.1301697622899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31188866984746305
the lambda is 20.0
the regulation term lambda/alpha is 64.12544581943774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31590479814237477
the lambda is 20.0
the regulation term lambda/alpha is 63.310212816033975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29693438308102954
the lambda is 20.0
the regulation term lambda/alpha is 67.35494822956309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3047411643917087
the lambda is 20.0
the regulation term lambda/alpha is 65.62946636999907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3013117062598076
the lambda is 20.0
the regulation term lambda/alpha is 66.37644533715824
1390
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2912472796488941
the lambda is 20.0
the regulation term lambda/alpha is 68.67016929432097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32744565008183113
the lambda is 20.0
the regulation term lambda/alpha is 61.07883856451246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28850280846882
the lambda is 20.0
the regulation term lambda/alpha is 69.32341527677539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29869724187621605
the lambda is 20.0
the regulation term lambda/alpha is 66.95743112448375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.322090034467528
the lambda is 20.0
the regulation term lambda/alpha is 62.09443900697999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3293954499677168
the lambda is 20.0
the regulation term lambda/alpha is 60.71729285258843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3330347264781792
the lambda is 20.0
the regulation term lambda/alpha is 60.05379742676901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3303912969346939
the lambda is 20.0
the regulation term lambda/alpha is 60.53428218465833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29236834462294037
the lambda is 20.0
the regulation term lambda/alpha is 68.40685856669424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31172137018414037
the lambda is 20.0
the regulation term lambda/alpha is 64.15986170016377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2779315514239298
the lambda is 20.0
the regulation term lambda/alpha is 71.96016392357679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29695358840950004
the lambda is 20.0
the regulation term lambda/alpha is 67.35059208114343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3114150774817605
the lambda is 20.0
the regulation term lambda/alpha is 64.22296621515184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30512550508803166
the lambda is 20.0
the regulation term lambda/alpha is 65.54679850256964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3212036613622546
the lambda is 20.0
the regulation term lambda/alpha is 62.265790854245374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3159739161230916
the lambda is 20.0
the regulation term lambda/alpha is 63.2963639701473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32277931251207953
the lambda is 20.0
the regulation term lambda/alpha is 61.96183963695483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29249684849379654
the lambda is 20.0
the regulation term lambda/alpha is 68.37680509376214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28309969671965485
the lambda is 20.0
the regulation term lambda/alpha is 70.64649037687032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3074222377412285
the lambda is 20.0
the regulation term lambda/alpha is 65.057102397501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.313949427158469
the lambda is 20.0
the regulation term lambda/alpha is 63.70452776747641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31120093464011706
the lambda is 20.0
the regulation term lambda/alpha is 64.26715916881372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.289580892880396
the lambda is 20.0
the regulation term lambda/alpha is 69.06533024698038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3169962541492125
the lambda is 20.0
the regulation term lambda/alpha is 63.0922281831944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3515174584040303
the lambda is 20.0
the regulation term lambda/alpha is 56.89617833152463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3306160141215205
the lambda is 20.0
the regulation term lambda/alpha is 60.493137494086554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.294194999179246
the lambda is 20.0
the regulation term lambda/alpha is 67.98212089191385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2960355814499627
the lambda is 20.0
the regulation term lambda/alpha is 67.55944640857467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35215508071309903
the lambda is 20.0
the regulation term lambda/alpha is 56.793160443691036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3089442638453441
the lambda is 20.0
the regulation term lambda/alpha is 64.7365960159464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2845625981677139
the lambda is 20.0
the regulation term lambda/alpha is 70.28330542657089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3137621909887166
the lambda is 20.0
the regulation term lambda/alpha is 63.74254315657565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2707893671850921
the lambda is 20.0
the regulation term lambda/alpha is 73.85814372219956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28578749994008107
the lambda is 20.0
the regulation term lambda/alpha is 69.98206710997944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27829164772935355
the lambda is 20.0
the regulation term lambda/alpha is 71.86705085540534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3232931187939264
the lambda is 20.0
the regulation term lambda/alpha is 61.86336435062945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30996467396389804
the lambda is 20.0
the regulation term lambda/alpha is 64.52348180273415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33984165402638605
the lambda is 20.0
the regulation term lambda/alpha is 58.85093767360006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3121076223814309
the lambda is 20.0
the regulation term lambda/alpha is 64.08045996248606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3276149628644117
the lambda is 20.0
the regulation term lambda/alpha is 61.047272765369065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32048970981251884
the lambda is 20.0
the regulation term lambda/alpha is 62.40449970047297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3165005398469445
the lambda is 20.0
the regulation term lambda/alpha is 63.19104545499903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2855194233449142
the lambda is 20.0
the regulation term lambda/alpha is 70.0477738631446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34478469315977545
the lambda is 20.0
the regulation term lambda/alpha is 58.00721550806164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3118954267995982
the lambda is 20.0
the regulation term lambda/alpha is 64.12405659557996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29586962813367834
the lambda is 20.0
the regulation term lambda/alpha is 67.5973405116246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33117918277731406
the lambda is 20.0
the regulation term lambda/alpha is 60.3902691958995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30718730453077436
the lambda is 20.0
the regulation term lambda/alpha is 65.10685729851306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3559678134774058
the lambda is 20.0
the regulation term lambda/alpha is 56.184855042433355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2768850061630642
the lambda is 20.0
the regulation term lambda/alpha is 72.23215253563251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3019180369332905
the lambda is 20.0
the regulation term lambda/alpha is 66.24314401070065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2834557813340796
the lambda is 20.0
the regulation term lambda/alpha is 70.55774239590512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2840288550508315
the lambda is 20.0
the regulation term lambda/alpha is 70.41538084720541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27718831012204487
the lambda is 20.0
the regulation term lambda/alpha is 72.15311493906104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3139635914014094
the lambda is 20.0
the regulation term lambda/alpha is 63.70165378325526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3010359907989632
the lambda is 20.0
the regulation term lambda/alpha is 66.43723877307524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2753300141605593
the lambda is 20.0
the regulation term lambda/alpha is 72.64010086578122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2904571689167727
the lambda is 20.0
the regulation term lambda/alpha is 68.8569680500149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3054452155087077
the lambda is 20.0
the regulation term lambda/alpha is 65.47819047252301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3031285042773938
the lambda is 20.0
the regulation term lambda/alpha is 65.97861869729658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2908349455960489
the lambda is 20.0
the regulation term lambda/alpha is 68.7675270900173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3173157679319493
the lambda is 20.0
the regulation term lambda/alpha is 63.02869892141366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26719337950802524
the lambda is 20.0
the regulation term lambda/alpha is 74.85215403474955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26236287737240305
the lambda is 20.0
the regulation term lambda/alpha is 76.23029675654763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32361212844209086
the lambda is 20.0
the regulation term lambda/alpha is 61.80238082015805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2980528559174104
the lambda is 20.0
the regulation term lambda/alpha is 67.1021921210577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28520113513892015
the lambda is 20.0
the regulation term lambda/alpha is 70.12594809714938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3246581989142561
the lambda is 20.0
the regulation term lambda/alpha is 61.60324940779365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3062893107325609
the lambda is 20.0
the regulation term lambda/alpha is 65.2977407280895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3071980067645479
the lambda is 20.0
the regulation term lambda/alpha is 65.10458909106468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.294552486419946
the lambda is 20.0
the regulation term lambda/alpha is 67.89961355643024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27985615619738885
the lambda is 20.0
the regulation term lambda/alpha is 71.46528513703143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34487298635689223
the lambda is 20.0
the regulation term lambda/alpha is 57.99236470003764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.282497360364204
the lambda is 20.0
the regulation term lambda/alpha is 70.79712169421833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30382986007566976
the lambda is 20.0
the regulation term lambda/alpha is 65.82631475069283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2814584797624655
the lambda is 20.0
the regulation term lambda/alpha is 71.0584382352908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.302626768018184
the lambda is 20.0
the regulation term lambda/alpha is 66.08800712169075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32145570265903883
the lambda is 20.0
the regulation term lambda/alpha is 62.216970595210036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2924201983340383
the lambda is 20.0
the regulation term lambda/alpha is 68.39472825045259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2938698123530611
the lambda is 20.0
the regulation term lambda/alpha is 68.05734770732967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3205547590670273
the lambda is 20.0
the regulation term lambda/alpha is 62.39183613498636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29147939820714674
the lambda is 20.0
the regulation term lambda/alpha is 68.61548405485085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.289352020013892
the lambda is 20.0
the regulation term lambda/alpha is 69.11995982969044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2926435439075067
the lambda is 20.0
the regulation term lambda/alpha is 68.34252938900039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30975691959774365
the lambda is 20.0
the regulation term lambda/alpha is 64.56675778533823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31126699355000215
the lambda is 20.0
the regulation term lambda/alpha is 64.25352001476246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29681736538508563
the lambda is 20.0
the regulation term lambda/alpha is 67.38150233916521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30451183947162935
the lambda is 20.0
the regulation term lambda/alpha is 65.67889128614112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32710051596960327
the lambda is 20.0
the regulation term lambda/alpha is 61.14328478117887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31946632059229246
the lambda is 20.0
the regulation term lambda/alpha is 62.60440838621073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2861542925138514
the lambda is 20.0
the regulation term lambda/alpha is 69.8923640959602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.279891967716251
the lambda is 20.0
the regulation term lambda/alpha is 71.45614132191034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3056311795681759
the lambda is 20.0
the regulation term lambda/alpha is 65.4383496744601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2974275565173658
the lambda is 20.0
the regulation term lambda/alpha is 67.2432649959664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31022229518408756
the lambda is 20.0
the regulation term lambda/alpha is 64.46989887729343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2740241832134181
the lambda is 20.0
the regulation term lambda/alpha is 72.98625896979104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2828062312915748
the lambda is 20.0
the regulation term lambda/alpha is 70.7197995909075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3002197635623004
the lambda is 20.0
the regulation term lambda/alpha is 66.61786606813338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2913637665673893
the lambda is 20.0
the regulation term lambda/alpha is 68.64271503496717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33028045912810194
the lambda is 20.0
the regulation term lambda/alpha is 60.55459669880996
1400
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31034284707978677
the lambda is 20.0
the regulation term lambda/alpha is 64.44485570778485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3016361087493792
the lambda is 20.0
the regulation term lambda/alpha is 66.30505904257447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2984002003166743
the lambda is 20.0
the regulation term lambda/alpha is 67.02408369289027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2947303833814208
the lambda is 20.0
the regulation term lambda/alpha is 67.85862987908276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29635809746978364
the lambda is 20.0
the regulation term lambda/alpha is 67.48592385615237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29225498668696165
the lambda is 20.0
the regulation term lambda/alpha is 68.43339176765622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3066202365811137
the lambda is 20.0
the regulation term lambda/alpha is 65.22726687254764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3424919470473698
the lambda is 20.0
the regulation term lambda/alpha is 58.39553359552076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2985914244400477
the lambda is 20.0
the regulation term lambda/alpha is 66.98116008356989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31563318456385697
the lambda is 20.0
the regulation term lambda/alpha is 63.36469350532983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29673953163285466
the lambda is 20.0
the regulation term lambda/alpha is 67.39917627404391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28470750504525455
the lambda is 20.0
the regulation term lambda/alpha is 70.24753350573242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30877739036033963
the lambda is 20.0
the regulation term lambda/alpha is 64.77158180739927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3185895951918977
the lambda is 20.0
the regulation term lambda/alpha is 62.776689200892754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2661859321184972
the lambda is 20.0
the regulation term lambda/alpha is 75.13545077617647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3330484922967478
the lambda is 20.0
the regulation term lambda/alpha is 60.05131523664098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29981226046649134
the lambda is 20.0
the regulation term lambda/alpha is 66.7084126875969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2622299178489658
the lambda is 20.0
the regulation term lambda/alpha is 76.26894812024926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2783911915194575
the lambda is 20.0
the regulation term lambda/alpha is 71.84135349556182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2736321760781382
the lambda is 20.0
the regulation term lambda/alpha is 73.09081953245445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31439466170678826
the lambda is 20.0
the regulation term lambda/alpha is 63.6143116789065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29180628918075413
the lambda is 20.0
the regulation term lambda/alpha is 68.53861873967823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27858699414856897
the lambda is 20.0
the regulation term lambda/alpha is 71.79086037783266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29508868627365203
the lambda is 20.0
the regulation term lambda/alpha is 67.77623450277892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2860485793092934
the lambda is 20.0
the regulation term lambda/alpha is 69.91819378475138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32314566614582974
the lambda is 20.0
the regulation term lambda/alpha is 61.891592848948704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25977102732188767
the lambda is 20.0
the regulation term lambda/alpha is 76.99088003073409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30253730984076393
the lambda is 20.0
the regulation term lambda/alpha is 66.10754888554641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3201377514558358
the lambda is 20.0
the regulation term lambda/alpha is 62.473106995502455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29704378288076866
the lambda is 20.0
the regulation term lambda/alpha is 67.33014172536264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3260184687817893
the lambda is 20.0
the regulation term lambda/alpha is 61.346217822360245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2677652584352472
the lambda is 20.0
the regulation term lambda/alpha is 74.69228874901461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2805948129720756
the lambda is 20.0
the regulation term lambda/alpha is 71.27715508408336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34425623415041146
the lambda is 20.0
the regulation term lambda/alpha is 58.09626091262491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30575905391195024
the lambda is 20.0
the regulation term lambda/alpha is 65.41098209232234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33674936774239994
the lambda is 20.0
the regulation term lambda/alpha is 59.39135130106381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.320173570478125
the lambda is 20.0
the regulation term lambda/alpha is 62.46611789390794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2862978360890457
the lambda is 20.0
the regulation term lambda/alpha is 69.85732156836669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3035798717555621
the lambda is 20.0
the regulation term lambda/alpha is 65.88052061667545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3419585280150959
the lambda is 20.0
the regulation term lambda/alpha is 58.48662443393455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3190826682481184
the lambda is 20.0
the regulation term lambda/alpha is 62.67968144370668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32669142054867495
the lambda is 20.0
the regulation term lambda/alpha is 61.21985072766895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28659823233820264
the lambda is 20.0
the regulation term lambda/alpha is 69.78410102822558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32086172204388735
the lambda is 20.0
the regulation term lambda/alpha is 62.33214692173349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31557321300676794
the lambda is 20.0
the regulation term lambda/alpha is 63.3767353364402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3450692287662602
the lambda is 20.0
the regulation term lambda/alpha is 57.95938418359353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29798325585424434
the lambda is 20.0
the regulation term lambda/alpha is 67.11786520576447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3211014696093409
the lambda is 20.0
the regulation term lambda/alpha is 62.28560717686045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3141122492163744
the lambda is 20.0
the regulation term lambda/alpha is 63.671506125261345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.286074337071495
the lambda is 20.0
the regulation term lambda/alpha is 69.91189844128398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29892792472390245
the lambda is 20.0
the regulation term lambda/alpha is 66.9057600372147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2959539175940928
the lambda is 20.0
the regulation term lambda/alpha is 67.57808838141631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29491408298285965
the lambda is 20.0
the regulation term lambda/alpha is 67.81636128635606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29637612101720007
the lambda is 20.0
the regulation term lambda/alpha is 67.48181982866058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28589162176604604
the lambda is 20.0
the regulation term lambda/alpha is 69.95657961731602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3552392980753814
the lambda is 20.0
the regulation term lambda/alpha is 56.3000774642788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3329551105468203
the lambda is 20.0
the regulation term lambda/alpha is 60.068157437660325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28872671307740166
the lambda is 20.0
the regulation term lambda/alpha is 69.2696556783037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30014103672630227
the lambda is 20.0
the regulation term lambda/alpha is 66.63533989934852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.307927179467983
the lambda is 20.0
the regulation term lambda/alpha is 64.95042118254949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27859924677983683
the lambda is 20.0
the regulation term lambda/alpha is 71.78770305795194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3330576398585197
the lambda is 20.0
the regulation term lambda/alpha is 60.04966590316272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3250085529867582
the lambda is 20.0
the regulation term lambda/alpha is 61.53684208062937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28840943084928894
the lambda is 20.0
the regulation term lambda/alpha is 69.34585995022884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2730405938893264
the lambda is 20.0
the regulation term lambda/alpha is 73.24918143163266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29370202649118404
the lambda is 20.0
the regulation term lambda/alpha is 68.09622745521074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27544439439450125
the lambda is 20.0
the regulation term lambda/alpha is 72.60993654986237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31053594623189185
the lambda is 20.0
the regulation term lambda/alpha is 64.40478225688261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2952287380461222
the lambda is 20.0
the regulation term lambda/alpha is 67.74408254549898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.299639057085938
the lambda is 20.0
the regulation term lambda/alpha is 66.7469728229184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28027369592826046
the lambda is 20.0
the regulation term lambda/alpha is 71.35881922047815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2871889395122336
the lambda is 20.0
the regulation term lambda/alpha is 69.64056496732891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3318831891161144
the lambda is 20.0
the regulation term lambda/alpha is 60.262166496787195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3336506604693354
the lambda is 20.0
the regulation term lambda/alpha is 59.94293543991988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.297650162677761
the lambda is 20.0
the regulation term lambda/alpha is 67.1929752030816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30303944643157776
the lambda is 20.0
the regulation term lambda/alpha is 65.9980086272885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30296975500057743
the lambda is 20.0
the regulation term lambda/alpha is 66.01318999634759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2738217774738569
the lambda is 20.0
the regulation term lambda/alpha is 73.04020952792733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3080139065208394
the lambda is 20.0
the regulation term lambda/alpha is 64.93213318161287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3141088675907334
the lambda is 20.0
the regulation term lambda/alpha is 63.67219159842026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31187675278308385
the lambda is 20.0
the regulation term lambda/alpha is 64.12789610487697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3086728268487981
the lambda is 20.0
the regulation term lambda/alpha is 64.79352330484505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3053465983884162
the lambda is 20.0
the regulation term lambda/alpha is 65.49933781989932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30336708376747024
the lambda is 20.0
the regulation term lambda/alpha is 65.92673058534567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2968486576601159
the lambda is 20.0
the regulation term lambda/alpha is 67.37439932404709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27587180321972243
the lambda is 20.0
the regulation term lambda/alpha is 72.49744180658683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29342001231139125
the lambda is 20.0
the regulation term lambda/alpha is 68.16167664383795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34349716817031134
the lambda is 20.0
the regulation term lambda/alpha is 58.224643034272944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3416933445617787
the lambda is 20.0
the regulation term lambda/alpha is 58.53201508987533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2984560234537326
the lambda is 20.0
the regulation term lambda/alpha is 67.01154752569586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33505808738380594
the lambda is 20.0
the regulation term lambda/alpha is 59.691142381202056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29731178073885606
the lambda is 20.0
the regulation term lambda/alpha is 67.2694501048615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2927448518546951
the lambda is 20.0
the regulation term lambda/alpha is 68.31887861832347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3096829925360099
the lambda is 20.0
the regulation term lambda/alpha is 64.58217106538197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29281210112399947
the lambda is 20.0
the regulation term lambda/alpha is 68.30318802818344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3029982915572908
the lambda is 20.0
the regulation term lambda/alpha is 66.00697283541749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31644337447680504
the lambda is 20.0
the regulation term lambda/alpha is 63.20246089230722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31228348972618447
the lambda is 20.0
the regulation term lambda/alpha is 64.04437204649001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2947718733433224
the lambda is 20.0
the regulation term lambda/alpha is 67.84907858798961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3145760945806706
the lambda is 20.0
the regulation term lambda/alpha is 63.57762189990936
1410
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.282921131554973
the lambda is 20.0
the regulation term lambda/alpha is 70.69107878254721
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2872373756890815
the lambda is 20.0
the regulation term lambda/alpha is 69.6288216393151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30929802059959355
the lambda is 20.0
the regulation term lambda/alpha is 64.66255413218859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3128598740602964
the lambda is 20.0
the regulation term lambda/alpha is 63.92638257006224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3326040146592145
the lambda is 20.0
the regulation term lambda/alpha is 60.13156522025738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2935451970543821
the lambda is 20.0
the regulation term lambda/alpha is 68.13260854101048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29945410294343455
the lambda is 20.0
the regulation term lambda/alpha is 66.78819826949542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3529584086268473
the lambda is 20.0
the regulation term lambda/alpha is 56.66390008332196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2940751724014064
the lambda is 20.0
the regulation term lambda/alpha is 68.00982155916387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2947460105213899
the lambda is 20.0
the regulation term lambda/alpha is 67.85503208210037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33367583787714533
the lambda is 20.0
the regulation term lambda/alpha is 59.93841246414646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32763141208462637
the lambda is 20.0
the regulation term lambda/alpha is 61.04420779663841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2813212686626044
the lambda is 20.0
the regulation term lambda/alpha is 71.09309614264004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2841422246213314
the lambda is 20.0
the regulation term lambda/alpha is 70.38728589759391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2936640090574639
the lambda is 20.0
the regulation term lambda/alpha is 68.10504312118962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30855098366454986
the lambda is 20.0
the regulation term lambda/alpha is 64.81910951139142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30628607567618876
the lambda is 20.0
the regulation term lambda/alpha is 65.29843041622422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30248273362941847
the lambda is 20.0
the regulation term lambda/alpha is 66.11947650705464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3265987431821695
the lambda is 20.0
the regulation term lambda/alpha is 61.237222792509165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31783967449985256
the lambda is 20.0
the regulation term lambda/alpha is 62.92480644989232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3222003237337172
the lambda is 20.0
the regulation term lambda/alpha is 62.073184062127204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3036208172023673
the lambda is 20.0
the regulation term lambda/alpha is 65.87163615553322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28697172939137666
the lambda is 20.0
the regulation term lambda/alpha is 69.69327620674328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3349600611711644
the lambda is 20.0
the regulation term lambda/alpha is 59.708611020882316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2997818321488695
the lambda is 20.0
the regulation term lambda/alpha is 66.71518369421447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2987578625610416
the lambda is 20.0
the regulation term lambda/alpha is 66.94384485333383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3373512200352636
the lambda is 20.0
the regulation term lambda/alpha is 59.28539401134931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30495264748269085
the lambda is 20.0
the regulation term lambda/alpha is 65.58395267296443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29655021922733393
the lambda is 20.0
the regulation term lambda/alpha is 67.44220271396293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3124534180122405
the lambda is 20.0
the regulation term lambda/alpha is 64.00954141335875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3093856763177461
the lambda is 20.0
the regulation term lambda/alpha is 64.64423381856743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3070927837608789
the lambda is 20.0
the regulation term lambda/alpha is 65.12689668270816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.307680939531689
the lambda is 20.0
the regulation term lambda/alpha is 65.00240161266193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31098139826028826
the lambda is 20.0
the regulation term lambda/alpha is 64.31252837592622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3042893161194757
the lambda is 20.0
the regulation term lambda/alpha is 65.72692152013393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30071362880545444
the lambda is 20.0
the regulation term lambda/alpha is 66.50845882658324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.319048436031952
the lambda is 20.0
the regulation term lambda/alpha is 62.68640664327546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3070656355919694
the lambda is 20.0
the regulation term lambda/alpha is 65.13265465685686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2944082620519616
the lambda is 20.0
the regulation term lambda/alpha is 67.93287613806878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2947936579148647
the lambda is 20.0
the regulation term lambda/alpha is 67.84406469753812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3391059637983483
the lambda is 20.0
the regulation term lambda/alpha is 58.978614755041995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3327906369529626
the lambda is 20.0
the regulation term lambda/alpha is 60.0978446482761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3028897703790846
the lambda is 20.0
the regulation term lambda/alpha is 66.03062221272381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3061751552347732
the lambda is 20.0
the regulation term lambda/alpha is 65.32208658362278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32426043695723483
the lambda is 20.0
the regulation term lambda/alpha is 61.67881653301326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2758499313581085
the lambda is 20.0
the regulation term lambda/alpha is 72.50319005530581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3019855629387052
the lambda is 20.0
the regulation term lambda/alpha is 66.22833159762492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3492668312469717
the lambda is 20.0
the regulation term lambda/alpha is 57.262809435968755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.275001971782746
the lambda is 20.0
the regulation term lambda/alpha is 72.72675126780611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29803158912961275
the lambda is 20.0
the regulation term lambda/alpha is 67.10698036543394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3133083569431737
the lambda is 20.0
the regulation term lambda/alpha is 63.83487563221143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2802760531982508
the lambda is 20.0
the regulation term lambda/alpha is 71.35821905502992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3202631283633325
the lambda is 20.0
the regulation term lambda/alpha is 62.448649965444595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3044631691267074
the lambda is 20.0
the regulation term lambda/alpha is 65.68939046836456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.282514311414621
the lambda is 20.0
the regulation term lambda/alpha is 70.79287381886925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29005671371483416
the lambda is 20.0
the regulation term lambda/alpha is 68.95203266924814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3125510801764018
the lambda is 20.0
the regulation term lambda/alpha is 63.98954048954855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32617387249277946
the lambda is 20.0
the regulation term lambda/alpha is 61.31698976116716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3201873561059723
the lambda is 20.0
the regulation term lambda/alpha is 62.463428422765716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3283517798735049
the lambda is 20.0
the regulation term lambda/alpha is 60.910283500533644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2869633216015481
the lambda is 20.0
the regulation term lambda/alpha is 69.69531816254285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2848998956109526
the lambda is 20.0
the regulation term lambda/alpha is 70.20009592180114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29575906819373204
the lambda is 20.0
the regulation term lambda/alpha is 67.62260958605447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2868793735701585
the lambda is 20.0
the regulation term lambda/alpha is 69.71571274401451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30455792388983643
the lambda is 20.0
the regulation term lambda/alpha is 65.66895303382199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31641678265948386
the lambda is 20.0
the regulation term lambda/alpha is 63.207772457263324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33736410094526204
the lambda is 20.0
the regulation term lambda/alpha is 59.28313043374179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3061708894690896
the lambda is 20.0
the regulation term lambda/alpha is 65.32299669207826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3257060405914195
the lambda is 20.0
the regulation term lambda/alpha is 61.4050631780849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3377251083734859
the lambda is 20.0
the regulation term lambda/alpha is 59.219760403133115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2851257000792757
the lambda is 20.0
the regulation term lambda/alpha is 70.14450116015233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3070114027254543
the lambda is 20.0
the regulation term lambda/alpha is 65.14416019226833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3023813512033578
the lambda is 20.0
the regulation term lambda/alpha is 66.14164504658748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3267155692132486
the lambda is 20.0
the regulation term lambda/alpha is 61.21532575922611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28893129254412825
the lambda is 20.0
the regulation term lambda/alpha is 69.22060889941652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3215528745291773
the lambda is 20.0
the regulation term lambda/alpha is 62.1981688992341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30114298183312577
the lambda is 20.0
the regulation term lambda/alpha is 66.41363474006751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2936638574055802
the lambda is 20.0
the regulation term lambda/alpha is 68.10507829153087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.295084296258074
the lambda is 20.0
the regulation term lambda/alpha is 67.77724282050055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32364020738113247
the lambda is 20.0
the regulation term lambda/alpha is 61.79701886189669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2675797072770371
the lambda is 20.0
the regulation term lambda/alpha is 74.74408356121384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.332628581499099
the lambda is 20.0
the regulation term lambda/alpha is 60.12712410299646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29707734314145645
the lambda is 20.0
the regulation term lambda/alpha is 67.32253556770499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3061999228792375
the lambda is 20.0
the regulation term lambda/alpha is 65.31680286506088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30509091643568576
the lambda is 20.0
the regulation term lambda/alpha is 65.55422964949555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26580501359991643
the lambda is 20.0
the regulation term lambda/alpha is 75.24312551193462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3168546668993844
the lambda is 20.0
the regulation term lambda/alpha is 63.120421093090286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3281479106258503
the lambda is 20.0
the regulation term lambda/alpha is 60.94812537997148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27600861244082525
the lambda is 20.0
the regulation term lambda/alpha is 72.46150699115555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2741643939287411
the lambda is 20.0
the regulation term lambda/alpha is 72.94893298652873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3350091520094315
the lambda is 20.0
the regulation term lambda/alpha is 59.699861571056246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2728500599577463
the lambda is 20.0
the regulation term lambda/alpha is 73.30033206918559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3047018727547764
the lambda is 20.0
the regulation term lambda/alpha is 65.63792936086077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3307230046198774
the lambda is 20.0
the regulation term lambda/alpha is 60.47356767028459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2915180013276022
the lambda is 20.0
the regulation term lambda/alpha is 68.60639792025877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31408250156001855
the lambda is 20.0
the regulation term lambda/alpha is 63.67753663659027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32041499246174
the lambda is 20.0
the regulation term lambda/alpha is 62.41905176265481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3183700322922582
the lambda is 20.0
the regulation term lambda/alpha is 62.819982948773095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31349534559434306
the lambda is 20.0
the regulation term lambda/alpha is 63.79680043441415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2911102493380338
the lambda is 20.0
the regulation term lambda/alpha is 68.70249345558506
1420
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3014387116650354
the lambda is 20.0
the regulation term lambda/alpha is 66.34847889817281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2896029428144624
the lambda is 20.0
the regulation term lambda/alpha is 69.0600717162368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3094725689275706
the lambda is 20.0
the regulation term lambda/alpha is 64.6260832399683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2979190691044025
the lambda is 20.0
the regulation term lambda/alpha is 67.13232576928876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30229291914029344
the lambda is 20.0
the regulation term lambda/alpha is 66.16099396862832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28380021195912725
the lambda is 20.0
the regulation term lambda/alpha is 70.47211086255422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2894146728923125
the lambda is 20.0
the regulation term lambda/alpha is 69.10499664763627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3405322271481147
the lambda is 20.0
the regulation term lambda/alpha is 58.731592505930394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2998322027817801
the lambda is 20.0
the regulation term lambda/alpha is 66.70397580528112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2814666572292636
the lambda is 20.0
the regulation term lambda/alpha is 71.056373770444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2985904531912281
the lambda is 20.0
the regulation term lambda/alpha is 66.98137795849513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29817469099357197
the lambda is 20.0
the regulation term lambda/alpha is 67.07477396339839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2897380113327779
the lambda is 20.0
the regulation term lambda/alpha is 69.02787766092952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32985853445414764
the lambda is 20.0
the regulation term lambda/alpha is 60.632052564885576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3010003067195458
the lambda is 20.0
the regulation term lambda/alpha is 66.44511501655981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3033840590354047
the lambda is 20.0
the regulation term lambda/alpha is 65.92304178271283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31714979443815133
the lambda is 20.0
the regulation term lambda/alpha is 63.061683629438015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3290661002769811
the lambda is 20.0
the regulation term lambda/alpha is 60.77806247184267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.289646955246121
the lambda is 20.0
the regulation term lambda/alpha is 69.04957790081187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30484753741816895
the lambda is 20.0
the regulation term lambda/alpha is 65.60656572588734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31325475469638253
the lambda is 20.0
the regulation term lambda/alpha is 63.84579866755638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3161599314563686
the lambda is 20.0
the regulation term lambda/alpha is 63.25912302634745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.298672008473992
the lambda is 20.0
the regulation term lambda/alpha is 66.96308804492998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30579363191893355
the lambda is 20.0
the regulation term lambda/alpha is 65.40358566165968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31708981243062423
the lambda is 20.0
the regulation term lambda/alpha is 63.0736126357758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2822425583937526
the lambda is 20.0
the regulation term lambda/alpha is 70.86103567732788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30531355945504945
the lambda is 20.0
the regulation term lambda/alpha is 65.50642570771427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27888323130468956
the lambda is 20.0
the regulation term lambda/alpha is 71.71460222414488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2654437518839735
the lambda is 20.0
the regulation term lambda/alpha is 75.34552935622338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30769196343967625
the lambda is 20.0
the regulation term lambda/alpha is 65.00007272344976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2932963336114184
the lambda is 20.0
the regulation term lambda/alpha is 68.19041940871155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26544589099368343
the lambda is 20.0
the regulation term lambda/alpha is 75.34492218030198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29361767494516905
the lambda is 20.0
the regulation term lambda/alpha is 68.11579038535352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.307072156261713
the lambda is 20.0
the regulation term lambda/alpha is 65.1312715665249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31506138101440145
the lambda is 20.0
the regulation term lambda/alpha is 63.479693815872025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2918244348962843
the lambda is 20.0
the regulation term lambda/alpha is 68.53435699141536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31229705151168025
the lambda is 20.0
the regulation term lambda/alpha is 64.04159086097545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3325158336528448
the lambda is 20.0
the regulation term lambda/alpha is 60.147511714827154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3048775000139923
the lambda is 20.0
the regulation term lambda/alpha is 65.60011807720184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30646828903741186
the lambda is 20.0
the regulation term lambda/alpha is 65.25960667192722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2889879458976489
the lambda is 20.0
the regulation term lambda/alpha is 69.20703885373618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3200055499936277
the lambda is 20.0
the regulation term lambda/alpha is 62.49891603566958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2744395310847694
the lambda is 20.0
the regulation term lambda/alpha is 72.87579861744614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3074980769572832
the lambda is 20.0
the regulation term lambda/alpha is 65.04105716010167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3078276748658813
the lambda is 20.0
the regulation term lambda/alpha is 64.97141625980797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3149877877630503
the lambda is 20.0
the regulation term lambda/alpha is 63.49452511170055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30487041286203137
the lambda is 20.0
the regulation term lambda/alpha is 65.60164304645387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2903331419447342
the lambda is 20.0
the regulation term lambda/alpha is 68.88638295316304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2990898214462207
the lambda is 20.0
the regulation term lambda/alpha is 66.86954408308475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2897611232885904
the lambda is 20.0
the regulation term lambda/alpha is 69.02237185242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3103657728565333
the lambda is 20.0
the regulation term lambda/alpha is 64.44009536207786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3003983768393955
the lambda is 20.0
the regulation term lambda/alpha is 66.57825588282978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32613239632594443
the lambda is 20.0
the regulation term lambda/alpha is 61.324787801858015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35473815555926574
the lambda is 20.0
the regulation term lambda/alpha is 56.37961320644748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3338179129398125
the lambda is 20.0
the regulation term lambda/alpha is 59.91290228815854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30107206352946636
the lambda is 20.0
the regulation term lambda/alpha is 66.42927864359149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29911380262951665
the lambda is 20.0
the regulation term lambda/alpha is 66.86418287681651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.277240084448854
the lambda is 20.0
the regulation term lambda/alpha is 72.13964041224224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29232581523081236
the lambda is 20.0
the regulation term lambda/alpha is 68.41681082530653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3125617247993098
the lambda is 20.0
the regulation term lambda/alpha is 63.98736125749765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.294226948085067
the lambda is 20.0
the regulation term lambda/alpha is 67.97473899031706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3101445654744396
the lambda is 20.0
the regulation term lambda/alpha is 64.4860565891434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29574804025958945
the lambda is 20.0
the regulation term lambda/alpha is 67.62513111649102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32856307135468954
the lambda is 20.0
the regulation term lambda/alpha is 60.87111347461703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3090185467812491
the lambda is 20.0
the regulation term lambda/alpha is 64.72103441143221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3276969999081594
the lambda is 20.0
the regulation term lambda/alpha is 61.03198993462013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31150457721242164
the lambda is 20.0
the regulation term lambda/alpha is 64.20451403627874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31645891066779835
the lambda is 20.0
the regulation term lambda/alpha is 63.19935803923351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3338592588113646
the lambda is 20.0
the regulation term lambda/alpha is 59.90548254137321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3005388045027498
the lambda is 20.0
the regulation term lambda/alpha is 66.54714699185213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26129341049507354
the lambda is 20.0
the regulation term lambda/alpha is 76.54230530385719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3298304401990655
the lambda is 20.0
the regulation term lambda/alpha is 60.637217074110026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30375783437364856
the lambda is 20.0
the regulation term lambda/alpha is 65.84192319266492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29411721439333494
the lambda is 20.0
the regulation term lambda/alpha is 68.00010003240811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2990551081131234
the lambda is 20.0
the regulation term lambda/alpha is 66.8773060797698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32708473234079455
the lambda is 20.0
the regulation term lambda/alpha is 61.146235279370046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30736119318534344
the lambda is 20.0
the regulation term lambda/alpha is 65.07002329321287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31731865462829506
the lambda is 20.0
the regulation term lambda/alpha is 63.0281255396972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30806759083102536
the lambda is 20.0
the regulation term lambda/alpha is 64.92081801285606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3054230534984225
the lambda is 20.0
the regulation term lambda/alpha is 65.4829416801155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.330979491390159
the lambda is 20.0
the regulation term lambda/alpha is 60.426704736288265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2916852980116477
the lambda is 20.0
the regulation term lambda/alpha is 68.56704858398913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3078545766420988
the lambda is 20.0
the regulation term lambda/alpha is 64.96573875285056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28529457027285315
the lambda is 20.0
the regulation term lambda/alpha is 70.10298156348429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27086465686104766
the lambda is 20.0
the regulation term lambda/alpha is 73.83761407550455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3020000855660958
the lambda is 20.0
the regulation term lambda/alpha is 66.2251467992475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3053109590039228
the lambda is 20.0
the regulation term lambda/alpha is 65.50698365119291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2949696399106362
the lambda is 20.0
the regulation term lambda/alpha is 67.80358821355034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32373949379749356
the lambda is 20.0
the regulation term lambda/alpha is 61.77806657259573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28851407774707893
the lambda is 20.0
the regulation term lambda/alpha is 69.3207075237856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2945207280837806
the lambda is 20.0
the regulation term lambda/alpha is 67.90693521004306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2960381459524547
the lambda is 20.0
the regulation term lambda/alpha is 67.55886115842688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3204727090714629
the lambda is 20.0
the regulation term lambda/alpha is 62.40781019372279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2941110417323076
the lambda is 20.0
the regulation term lambda/alpha is 68.00152718578819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27491036957204207
the lambda is 20.0
the regulation term lambda/alpha is 72.75098437041265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.338062367176663
the lambda is 20.0
the regulation term lambda/alpha is 59.160681406305414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3275260468910025
the lambda is 20.0
the regulation term lambda/alpha is 61.063845730278075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26802044645357664
the lambda is 20.0
the regulation term lambda/alpha is 74.62117261812772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29548630498705963
the lambda is 20.0
the regulation term lambda/alpha is 67.68503197085857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2929332533417554
the lambda is 20.0
the regulation term lambda/alpha is 68.27493898982739
1430
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28299598794496256
the lambda is 20.0
the regulation term lambda/alpha is 70.67238000522335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3117110217022485
the lambda is 20.0
the regulation term lambda/alpha is 64.161991740877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29753528149035946
the lambda is 20.0
the regulation term lambda/alpha is 67.21891904657373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29918480745843956
the lambda is 20.0
the regulation term lambda/alpha is 66.84831415705574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3111999030327374
the lambda is 20.0
the regulation term lambda/alpha is 64.26737221025436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3147665246908535
the lambda is 20.0
the regulation term lambda/alpha is 63.53915817332516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3124916007302158
the lambda is 20.0
the regulation term lambda/alpha is 64.0017202166872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3178274666151911
the lambda is 20.0
the regulation term lambda/alpha is 62.927223417776396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3107227635430573
the lambda is 20.0
the regulation term lambda/alpha is 64.36605986618864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3106604798912347
the lambda is 20.0
the regulation term lambda/alpha is 64.37896447917095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31367815254826603
the lambda is 20.0
the regulation term lambda/alpha is 63.75962060960741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3189593724575385
the lambda is 20.0
the regulation term lambda/alpha is 62.70391067646868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28018177021857926
the lambda is 20.0
the regulation term lambda/alpha is 71.38223155773954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2883705286331692
the lambda is 20.0
the regulation term lambda/alpha is 69.35521495485979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.312240250960907
the lambda is 20.0
the regulation term lambda/alpha is 64.05324085684273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2998743155421996
the lambda is 20.0
the regulation term lambda/alpha is 66.69460825225464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28739184287627073
the lambda is 20.0
the regulation term lambda/alpha is 69.59139758399647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.305338102830557
the lambda is 20.0
the regulation term lambda/alpha is 65.50116023711169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2712163093941414
the lambda is 20.0
the regulation term lambda/alpha is 73.7418780038603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2668065444486627
the lambda is 20.0
the regulation term lambda/alpha is 74.96067999879321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3086536915191649
the lambda is 20.0
the regulation term lambda/alpha is 64.79754025154163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29879213627311335
the lambda is 20.0
the regulation term lambda/alpha is 66.93616588931523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2968145702247375
the lambda is 20.0
the regulation term lambda/alpha is 67.38213688383527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33374574865261253
the lambda is 20.0
the regulation term lambda/alpha is 59.92585697568688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3357889202417297
the lambda is 20.0
the regulation term lambda/alpha is 59.56122669444329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28322830940865
the lambda is 20.0
the regulation term lambda/alpha is 70.61441012643768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28837172184751997
the lambda is 20.0
the regulation term lambda/alpha is 69.35492797929487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3084208707184935
the lambda is 20.0
the regulation term lambda/alpha is 64.84645463002632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2941201306770905
the lambda is 20.0
the regulation term lambda/alpha is 67.99942579230546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3158640516934254
the lambda is 20.0
the regulation term lambda/alpha is 63.318379830737456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.295039153832156
the lambda is 20.0
the regulation term lambda/alpha is 67.78761306839208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2969045170710691
the lambda is 20.0
the regulation term lambda/alpha is 67.36172355105215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2791150642381656
the lambda is 20.0
the regulation term lambda/alpha is 71.6550360855272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.291678701927009
the lambda is 20.0
the regulation term lambda/alpha is 68.56859917391188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2663607424331503
the lambda is 20.0
the regulation term lambda/alpha is 75.08614001186562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28930331087168937
the lambda is 20.0
the regulation term lambda/alpha is 69.13159735275315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28918383379156454
the lambda is 20.0
the regulation term lambda/alpha is 69.16015925847165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2575476080292931
the lambda is 20.0
the regulation term lambda/alpha is 77.65554552432585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3162165729810999
the lambda is 20.0
the regulation term lambda/alpha is 63.24779188975459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31370514655685133
the lambda is 20.0
the regulation term lambda/alpha is 63.75413415914581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31578036494751754
the lambda is 20.0
the regulation term lambda/alpha is 63.33516019377578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.313627059225716
the lambda is 20.0
the regulation term lambda/alpha is 63.77000775818291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2902303349455338
the lambda is 20.0
the regulation term lambda/alpha is 68.91078426985693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35833551091692883
the lambda is 20.0
the regulation term lambda/alpha is 55.81361431029509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30100162268394304
the lambda is 20.0
the regulation term lambda/alpha is 66.44482452176129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2871383503432815
the lambda is 20.0
the regulation term lambda/alpha is 69.65283451719169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3115966625271374
the lambda is 20.0
the regulation term lambda/alpha is 64.18553985076194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29053130556738793
the lambda is 20.0
the regulation term lambda/alpha is 68.83939739623362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2902946037845657
the lambda is 20.0
the regulation term lambda/alpha is 68.89552798867203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3022709552522785
the lambda is 20.0
the regulation term lambda/alpha is 66.1658014191532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28881229577777906
the lambda is 20.0
the regulation term lambda/alpha is 69.24912925240761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28872843783828994
the lambda is 20.0
the regulation term lambda/alpha is 69.26924188604357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3054958854682441
the lambda is 20.0
the regulation term lambda/alpha is 65.46733017155144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2841968807896357
the lambda is 20.0
the regulation term lambda/alpha is 70.37374915738124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29479408651075095
the lambda is 20.0
the regulation term lambda/alpha is 67.8439660602575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2775932946923618
the lambda is 20.0
the regulation term lambda/alpha is 72.04784979465974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27432349621950725
the lambda is 20.0
the regulation term lambda/alpha is 72.90662402463866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2984586260599537
the lambda is 20.0
the regulation term lambda/alpha is 67.01096317444832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2767673820165866
the lambda is 20.0
the regulation term lambda/alpha is 72.26285068087034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3105060455066215
the lambda is 20.0
the regulation term lambda/alpha is 64.41098422856152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28390012043265356
the lambda is 20.0
the regulation term lambda/alpha is 70.44731072857849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28655142163725156
the lambda is 20.0
the regulation term lambda/alpha is 69.79550087634257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32265403814642724
the lambda is 20.0
the regulation term lambda/alpha is 61.98589707692912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3030482086026629
the lambda is 20.0
the regulation term lambda/alpha is 65.99610039676129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27889299046540883
the lambda is 20.0
the regulation term lambda/alpha is 71.71209275150501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2772882382744181
the lambda is 20.0
the regulation term lambda/alpha is 72.12711265526889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3258731696054935
the lambda is 20.0
the regulation term lambda/alpha is 61.37357065698987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3414730605980853
the lambda is 20.0
the regulation term lambda/alpha is 58.56977404006711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3028333163509226
the lambda is 20.0
the regulation term lambda/alpha is 66.04293160671939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29498483189240676
the lambda is 20.0
the regulation term lambda/alpha is 67.80009626832214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28886549459445987
the lambda is 20.0
the regulation term lambda/alpha is 69.2363760098039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34307124536700256
the lambda is 20.0
the regulation term lambda/alpha is 58.296928903513546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3214894172872942
the lambda is 20.0
the regulation term lambda/alpha is 62.21044589510485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2935925648847746
the lambda is 20.0
the regulation term lambda/alpha is 68.1216161173882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3059184605786452
the lambda is 20.0
the regulation term lambda/alpha is 65.37689802102813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30822291184883027
the lambda is 20.0
the regulation term lambda/alpha is 64.88810283451322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3140329141977249
the lambda is 20.0
the regulation term lambda/alpha is 63.68759163699439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2962693557517687
the lambda is 20.0
the regulation term lambda/alpha is 67.50613795088931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30334031871885553
the lambda is 20.0
the regulation term lambda/alpha is 65.9325475903405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3048962655414859
the lambda is 20.0
the regulation term lambda/alpha is 65.59608057015932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3306341032004455
the lambda is 20.0
the regulation term lambda/alpha is 60.48982789859123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31926670088406206
the lambda is 20.0
the regulation term lambda/alpha is 62.643551440282415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2804447816943964
the lambda is 20.0
the regulation term lambda/alpha is 71.31528666414698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29932773153145337
the lambda is 20.0
the regulation term lambda/alpha is 66.81639518555066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2963820606246667
the lambda is 20.0
the regulation term lambda/alpha is 67.4804674677246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2696286621893255
the lambda is 20.0
the regulation term lambda/alpha is 74.17609032216528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2859789342751483
the lambda is 20.0
the regulation term lambda/alpha is 69.93522110533303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29681985021500795
the lambda is 20.0
the regulation term lambda/alpha is 67.38093825434034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29596608267601915
the lambda is 20.0
the regulation term lambda/alpha is 67.57531072198265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3107702262503987
the lambda is 20.0
the regulation term lambda/alpha is 64.3562294924781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29244078200845486
the lambda is 20.0
the regulation term lambda/alpha is 68.3899142337192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3228269300386889
the lambda is 20.0
the regulation term lambda/alpha is 61.95270015919402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30403044228194553
the lambda is 20.0
the regulation term lambda/alpha is 65.78288624615034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26880892898014846
the lambda is 20.0
the regulation term lambda/alpha is 74.40229041453084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3049678554254045
the lambda is 20.0
the regulation term lambda/alpha is 65.58068217419729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30080769794644713
the lambda is 20.0
the regulation term lambda/alpha is 66.48766017803376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30400737262725097
the lambda is 20.0
the regulation term lambda/alpha is 65.78787819242255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3334815781118302
the lambda is 20.0
the regulation term lambda/alpha is 59.97332780191285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26997706654441717
the lambda is 20.0
the regulation term lambda/alpha is 74.08036636589486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2905717474304112
the lambda is 20.0
the regulation term lambda/alpha is 68.82981630824169
1440
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3084632553168657
the lambda is 20.0
the regulation term lambda/alpha is 64.83754435987913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30762876258835664
the lambda is 20.0
the regulation term lambda/alpha is 65.01342667610812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3088358689156781
the lambda is 20.0
the regulation term lambda/alpha is 64.75931720696805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2937328648927458
the lambda is 20.0
the regulation term lambda/alpha is 68.08907817415269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2929528212246684
the lambda is 20.0
the regulation term lambda/alpha is 68.27037854215372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29789177004531564
the lambda is 20.0
the regulation term lambda/alpha is 67.13847783360238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3049883755232919
the lambda is 20.0
the regulation term lambda/alpha is 65.57626980269156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3058082306935742
the lambda is 20.0
the regulation term lambda/alpha is 65.40046340361711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3232064935115677
the lambda is 20.0
the regulation term lambda/alpha is 61.87994486962308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3227994726954749
the lambda is 20.0
the regulation term lambda/alpha is 61.9579698597208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3141525312466022
the lambda is 20.0
the regulation term lambda/alpha is 63.66334188248345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30998238490495145
the lambda is 20.0
the regulation term lambda/alpha is 64.51979523330822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29200520781763545
the lambda is 20.0
the regulation term lambda/alpha is 68.49192913193008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29565235535249845
the lambda is 20.0
the regulation term lambda/alpha is 67.64701730907751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2959708673618574
the lambda is 20.0
the regulation term lambda/alpha is 67.57421829476132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2989119265383171
the lambda is 20.0
the regulation term lambda/alpha is 66.9093409273391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29625845083380176
the lambda is 20.0
the regulation term lambda/alpha is 67.50862277079756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2926431841811992
the lambda is 20.0
the regulation term lambda/alpha is 68.34261339781067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3117764650740555
the lambda is 20.0
the regulation term lambda/alpha is 64.1485238318083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3145519219637923
the lambda is 20.0
the regulation term lambda/alpha is 63.582507699006136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30492459329167204
the lambda is 20.0
the regulation term lambda/alpha is 65.5899866393172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26447676109863466
the lambda is 20.0
the regulation term lambda/alpha is 75.6210107720623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3159433332309944
the lambda is 20.0
the regulation term lambda/alpha is 63.30249097352366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29380979622897224
the lambda is 20.0
the regulation term lambda/alpha is 68.07124968839899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3073044019477027
the lambda is 20.0
the regulation term lambda/alpha is 65.08204852660593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30547322121838366
the lambda is 20.0
the regulation term lambda/alpha is 65.47218744814933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27333562438058084
the lambda is 20.0
the regulation term lambda/alpha is 73.1701184041523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2908440518962782
the lambda is 20.0
the regulation term lambda/alpha is 68.76537398513643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3194049160105933
the lambda is 20.0
the regulation term lambda/alpha is 62.61644388509251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29831859150925977
the lambda is 20.0
the regulation term lambda/alpha is 67.04241897501451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28680481857301177
the lambda is 20.0
the regulation term lambda/alpha is 69.7338353640966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31202515009684173
the lambda is 20.0
the regulation term lambda/alpha is 64.09739725721691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3063456214210337
the lambda is 20.0
the regulation term lambda/alpha is 65.28573807331328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3071157645366011
the lambda is 20.0
the regulation term lambda/alpha is 65.12202338482192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3160960087866889
the lambda is 20.0
the regulation term lambda/alpha is 63.271915633381504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28048908705642345
the lambda is 20.0
the regulation term lambda/alpha is 71.30402187795913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29961560104652
the lambda is 20.0
the regulation term lambda/alpha is 66.75219825049993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29305257633159454
the lambda is 20.0
the regulation term lambda/alpha is 68.24713930298167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2951516293660466
the lambda is 20.0
the regulation term lambda/alpha is 67.76178075980069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2904080755878623
the lambda is 20.0
the regulation term lambda/alpha is 68.86860828341203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29972018761488806
the lambda is 20.0
the regulation term lambda/alpha is 66.72890524711035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2981462950057289
the lambda is 20.0
the regulation term lambda/alpha is 67.08116228516506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3263080548527533
the lambda is 20.0
the regulation term lambda/alpha is 61.29177537166531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2893279570076102
the lambda is 20.0
the regulation term lambda/alpha is 69.12570844121343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3202044521687505
the lambda is 20.0
the regulation term lambda/alpha is 62.460093432616695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28050633452007717
the lambda is 20.0
the regulation term lambda/alpha is 71.29963761502329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29041578917377997
the lambda is 20.0
the regulation term lambda/alpha is 68.86677909937029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31550486631037167
the lambda is 20.0
the regulation term lambda/alpha is 63.390464413076266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2787277472313378
the lambda is 20.0
the regulation term lambda/alpha is 71.75460713425294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31823267944640726
the lambda is 20.0
the regulation term lambda/alpha is 62.84709676828821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32722961008686274
the lambda is 20.0
the regulation term lambda/alpha is 61.11916337488842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29810959768431217
the lambda is 20.0
the regulation term lambda/alpha is 67.08941998297993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3032983528652136
the lambda is 20.0
the regulation term lambda/alpha is 65.94167034229837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28531881203450615
the lambda is 20.0
the regulation term lambda/alpha is 70.09702534994861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31988973538129645
the lambda is 20.0
the regulation term lambda/alpha is 62.521543481727406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30483700034443756
the lambda is 20.0
the regulation term lambda/alpha is 65.60883349922041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29460862543891125
the lambda is 20.0
the regulation term lambda/alpha is 67.88667497499021
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3022031118685706
the lambda is 20.0
the regulation term lambda/alpha is 66.18065537557432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3258583913849155
the lambda is 20.0
the regulation term lambda/alpha is 61.37635405060135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29058807654601226
the lambda is 20.0
the regulation term lambda/alpha is 68.82594853073114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28313980926784904
the lambda is 20.0
the regulation term lambda/alpha is 70.63648185578909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30607300834678075
the lambda is 20.0
the regulation term lambda/alpha is 65.3438867674996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2991768653749412
the lambda is 20.0
the regulation term lambda/alpha is 66.85008874244052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31322006482501996
the lambda is 20.0
the regulation term lambda/alpha is 63.85286974246997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2997818843277074
the lambda is 20.0
the regulation term lambda/alpha is 66.71517208203596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3156091604409254
the lambda is 20.0
the regulation term lambda/alpha is 63.36951681649154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31534212295011005
the lambda is 20.0
the regulation term lambda/alpha is 63.423179285071846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27871164089255845
the lambda is 20.0
the regulation term lambda/alpha is 71.75875372823008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27644333074553074
the lambda is 20.0
the regulation term lambda/alpha is 72.34755834428225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28700354126879957
the lambda is 20.0
the regulation term lambda/alpha is 69.68555130568426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31032176744229706
the lambda is 20.0
the regulation term lambda/alpha is 64.44923333880827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29248152976372316
the lambda is 20.0
the regulation term lambda/alpha is 68.38038633125552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3100519096825246
the lambda is 20.0
the regulation term lambda/alpha is 64.50532757717524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28519469122518326
the lambda is 20.0
the regulation term lambda/alpha is 70.1275325781168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3032355154580374
the lambda is 20.0
the regulation term lambda/alpha is 65.95533498043588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3106430978211248
the lambda is 20.0
the regulation term lambda/alpha is 64.38256681150033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3661723660077887
the lambda is 20.0
the regulation term lambda/alpha is 54.61908613708602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30244545572400183
the lambda is 20.0
the regulation term lambda/alpha is 66.12762606111399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31597385196737326
the lambda is 20.0
the regulation term lambda/alpha is 63.29637682191865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31904879378589557
the lambda is 20.0
the regulation term lambda/alpha is 62.68633635211742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3180919083001124
the lambda is 20.0
the regulation term lambda/alpha is 62.87490966645545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29722987904735776
the lambda is 20.0
the regulation term lambda/alpha is 67.28798620145922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.295280104541691
the lambda is 20.0
the regulation term lambda/alpha is 67.73229788387647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31153155395132354
the lambda is 20.0
the regulation term lambda/alpha is 64.19895431563565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2665866696025778
the lambda is 20.0
the regulation term lambda/alpha is 75.02250592580495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.336792568099374
the lambda is 20.0
the regulation term lambda/alpha is 59.383733176970814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32931487836101897
the lambda is 20.0
the regulation term lambda/alpha is 60.732148208847526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31672658024738776
the lambda is 20.0
the regulation term lambda/alpha is 63.145947474248814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3221586837162609
the lambda is 20.0
the regulation term lambda/alpha is 62.081207215307806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34186818190883117
the lambda is 20.0
the regulation term lambda/alpha is 58.502080797134745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2760970623168954
the lambda is 20.0
the regulation term lambda/alpha is 72.43829337468516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2906479860941266
the lambda is 20.0
the regulation term lambda/alpha is 68.81176184555767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33512071743600624
the lambda is 20.0
the regulation term lambda/alpha is 59.67998682092565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2701429222911648
the lambda is 20.0
the regulation term lambda/alpha is 74.03488431373243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29817598262872125
the lambda is 20.0
the regulation term lambda/alpha is 67.07448340969611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30733428165526006
the lambda is 20.0
the regulation term lambda/alpha is 65.0757211082433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30909873533316745
the lambda is 20.0
the regulation term lambda/alpha is 64.70424402882999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28364744829504585
the lambda is 20.0
the regulation term lambda/alpha is 70.51006494229519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2977698941671929
the lambda is 20.0
the regulation term lambda/alpha is 67.16595731054775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32909360340627297
the lambda is 20.0
the regulation term lambda/alpha is 60.77298310568978
1450
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31860280404400226
the lambda is 20.0
the regulation term lambda/alpha is 62.774086562144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3272941267090196
the lambda is 20.0
the regulation term lambda/alpha is 61.107115489979364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3027452868335759
the lambda is 20.0
the regulation term lambda/alpha is 66.06213496890649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2687393724026259
the lambda is 20.0
the regulation term lambda/alpha is 74.42154761765224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28066519163154013
the lambda is 20.0
the regulation term lambda/alpha is 71.25928186440798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3652748969079272
the lambda is 20.0
the regulation term lambda/alpha is 54.75328353878446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32994066598499966
the lambda is 20.0
the regulation term lambda/alpha is 60.61695953814094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31250629422451526
the lambda is 20.0
the regulation term lambda/alpha is 63.99871096878232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31075313721043474
the lambda is 20.0
the regulation term lambda/alpha is 64.35976859167305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28794150849849537
the lambda is 20.0
the regulation term lambda/alpha is 69.45855116302035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3049689400747717
the lambda is 20.0
the regulation term lambda/alpha is 65.58044893062367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29934108229410034
the lambda is 20.0
the regulation term lambda/alpha is 66.81341514075957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2750818098214031
the lambda is 20.0
the regulation term lambda/alpha is 72.70564350650812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30948748851709423
the lambda is 20.0
the regulation term lambda/alpha is 64.62296778402828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29410432392346836
the lambda is 20.0
the regulation term lambda/alpha is 68.0030804484343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2983044475146124
the lambda is 20.0
the regulation term lambda/alpha is 67.04559776642387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2835783364928753
the lambda is 20.0
the regulation term lambda/alpha is 70.52724918041292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30965746569531327
the lambda is 20.0
the regulation term lambda/alpha is 64.58749494410367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2785043671921529
the lambda is 20.0
the regulation term lambda/alpha is 71.81215936266122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3007932529031777
the lambda is 20.0
the regulation term lambda/alpha is 66.49085312574414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30676807184397265
the lambda is 20.0
the regulation term lambda/alpha is 65.19583305974663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31279896797919193
the lambda is 20.0
the regulation term lambda/alpha is 63.93882987916521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29513937712202193
the lambda is 20.0
the regulation term lambda/alpha is 67.76459378285952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3492622178070273
the lambda is 20.0
the regulation term lambda/alpha is 57.2635658262077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3110332418423478
the lambda is 20.0
the regulation term lambda/alpha is 64.30180864763426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3195465140231029
the lambda is 20.0
the regulation term lambda/alpha is 62.58869717650563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33253972390686354
the lambda is 20.0
the regulation term lambda/alpha is 60.14319060901585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28374792571933144
the lambda is 20.0
the regulation term lambda/alpha is 70.48509676078814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3059380001859195
the lambda is 20.0
the regulation term lambda/alpha is 65.37272253804998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2977112671824316
the lambda is 20.0
the regulation term lambda/alpha is 67.17918401033977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2811632205263949
the lambda is 20.0
the regulation term lambda/alpha is 71.1330591624179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34108305056427246
the lambda is 20.0
the regulation term lambda/alpha is 58.636745411162764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30109381696323545
the lambda is 20.0
the regulation term lambda/alpha is 66.42447925937338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27905745377687974
the lambda is 20.0
the regulation term lambda/alpha is 71.6698290237787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30287233945249303
the lambda is 20.0
the regulation term lambda/alpha is 66.03442241095475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27089764128748256
the lambda is 20.0
the regulation term lambda/alpha is 73.82862362679474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30821830076473933
the lambda is 20.0
the regulation term lambda/alpha is 64.88907358964985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3056562444859105
the lambda is 20.0
the regulation term lambda/alpha is 65.43298349306886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2924371206792332
the lambda is 20.0
the regulation term lambda/alpha is 68.39077047929729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31882443855941944
the lambda is 20.0
the regulation term lambda/alpha is 62.73044842599979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3436191237235049
the lambda is 20.0
the regulation term lambda/alpha is 58.20397823985232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3141068271209578
the lambda is 20.0
the regulation term lambda/alpha is 63.67260521942843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3414069540632295
the lambda is 20.0
the regulation term lambda/alpha is 58.58111488934682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2967737501382792
the lambda is 20.0
the regulation term lambda/alpha is 67.3914050372756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30844187434166653
the lambda is 20.0
the regulation term lambda/alpha is 64.84203885314757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28554082278502907
the lambda is 20.0
the regulation term lambda/alpha is 70.04252423499216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2869244178910092
the lambda is 20.0
the regulation term lambda/alpha is 69.7047680605461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29442025293057933
the lambda is 20.0
the regulation term lambda/alpha is 67.93010943005933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2884587376491956
the lambda is 20.0
the regulation term lambda/alpha is 69.3340065306764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2680862891452573
the lambda is 20.0
the regulation term lambda/alpha is 74.60284546354922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32466243403114153
the lambda is 20.0
the regulation term lambda/alpha is 61.602445813246156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2856696363378182
the lambda is 20.0
the regulation term lambda/alpha is 70.01094080698527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2999524305689742
the lambda is 20.0
the regulation term lambda/alpha is 66.67723932779064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28896978169955045
the lambda is 20.0
the regulation term lambda/alpha is 69.21138910225059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3103182438503276
the lambda is 20.0
the regulation term lambda/alpha is 64.44996514496383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29193586758962875
the lambda is 20.0
the regulation term lambda/alpha is 68.50819724595743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29702332730706227
the lambda is 20.0
the regulation term lambda/alpha is 67.33477865637143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2984891089885005
the lambda is 20.0
the regulation term lambda/alpha is 67.00411974083286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30856421352628594
the lambda is 20.0
the regulation term lambda/alpha is 64.81633035613264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34727387460839115
the lambda is 20.0
the regulation term lambda/alpha is 57.59143276341566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2862699979620098
the lambda is 20.0
the regulation term lambda/alpha is 69.86411479506194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3052950574245491
the lambda is 20.0
the regulation term lambda/alpha is 65.51039564386927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3099161253498098
the lambda is 20.0
the regulation term lambda/alpha is 64.53358945884317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3448109442726858
the lambda is 20.0
the regulation term lambda/alpha is 58.002799308433374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.305741923546812
the lambda is 20.0
the regulation term lambda/alpha is 65.41464699373427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3126090792307575
the lambda is 20.0
the regulation term lambda/alpha is 63.97766836847587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26596684329085557
the lambda is 20.0
the regulation term lambda/alpha is 75.19734321969011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30139667810327575
the lambda is 20.0
the regulation term lambda/alpha is 66.35773202897364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30295510664743447
the lambda is 20.0
the regulation term lambda/alpha is 66.01638183730998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2842917693998538
the lambda is 20.0
the regulation term lambda/alpha is 70.35026037588229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32032058237524014
the lambda is 20.0
the regulation term lambda/alpha is 62.43744891975428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30997967752762984
the lambda is 20.0
the regulation term lambda/alpha is 64.52035875228405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3516464677675184
the lambda is 20.0
the regulation term lambda/alpha is 56.8753046972804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28415938281002534
the lambda is 20.0
the regulation term lambda/alpha is 70.38303575346302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3155630089882457
the lambda is 20.0
the regulation term lambda/alpha is 63.37878468114422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.286582282720473
the lambda is 20.0
the regulation term lambda/alpha is 69.78798483333887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31798562953216664
the lambda is 20.0
the regulation term lambda/alpha is 62.8959240372743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30936215710860415
the lambda is 20.0
the regulation term lambda/alpha is 64.64914838623534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30532168123360354
the lambda is 20.0
the regulation term lambda/alpha is 65.50468318919636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27890761101153305
the lambda is 20.0
the regulation term lambda/alpha is 71.70833354982551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3223754984964277
the lambda is 20.0
the regulation term lambda/alpha is 62.039454280119934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28843823734950996
the lambda is 20.0
the regulation term lambda/alpha is 69.33893433749337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3080259881184355
the lambda is 20.0
the regulation term lambda/alpha is 64.92958637084229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2773031334057201
the lambda is 20.0
the regulation term lambda/alpha is 72.123238401126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27976961616093093
the lambda is 20.0
the regulation term lambda/alpha is 71.48739121297385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34331665396826594
the lambda is 20.0
the regulation term lambda/alpha is 58.255257264183506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3299815087622231
the lambda is 20.0
the regulation term lambda/alpha is 60.609456799627914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3045230921557064
the lambda is 20.0
the regulation term lambda/alpha is 65.67646433122961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34720467196144483
the lambda is 20.0
the regulation term lambda/alpha is 57.60291152482214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29490614432188983
the lambda is 20.0
the regulation term lambda/alpha is 67.81818685395044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29905375222060976
the lambda is 20.0
the regulation term lambda/alpha is 66.87760929762936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30613469945531363
the lambda is 20.0
the regulation term lambda/alpha is 65.33071891420592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33687139483924855
the lambda is 20.0
the regulation term lambda/alpha is 59.369837589041325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31874439711854713
the lambda is 20.0
the regulation term lambda/alpha is 62.746200971060894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27756354087170826
the lambda is 20.0
the regulation term lambda/alpha is 72.05557306694014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32896419277273453
the lambda is 20.0
the regulation term lambda/alpha is 60.79689048046951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32470228081228303
the lambda is 20.0
the regulation term lambda/alpha is 61.59488609062899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3322620102282011
the lambda is 20.0
the regulation term lambda/alpha is 60.1934599332129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29094881344375606
the lambda is 20.0
the regulation term lambda/alpha is 68.74061372952202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34693104778944167
the lambda is 20.0
the regulation term lambda/alpha is 57.64834288379499
1460
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.36177077019760945
the lambda is 20.0
the regulation term lambda/alpha is 55.28362611792941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3099942575441822
the lambda is 20.0
the regulation term lambda/alpha is 64.51732415446271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3227743774367536
the lambda is 20.0
the regulation term lambda/alpha is 61.96278700566597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29264315166898325
the lambda is 20.0
the regulation term lambda/alpha is 68.34262099057268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3116968101821608
the lambda is 20.0
the regulation term lambda/alpha is 64.16491714596523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2861778405616231
the lambda is 20.0
the regulation term lambda/alpha is 69.88661302618702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33749182233687797
the lambda is 20.0
the regulation term lambda/alpha is 59.26069515259655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3187937280490158
the lambda is 20.0
the regulation term lambda/alpha is 62.736491468630526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2772265079621518
the lambda is 20.0
the regulation term lambda/alpha is 72.14317327378552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27946088589002427
the lambda is 20.0
the regulation term lambda/alpha is 71.56636584867395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2997726686922369
the lambda is 20.0
the regulation term lambda/alpha is 66.71722304521731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27463017519124067
the lambda is 20.0
the regulation term lambda/alpha is 72.82520934224675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3256755680500957
the lambda is 20.0
the regulation term lambda/alpha is 61.41080867608584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33764808037476596
the lambda is 20.0
the regulation term lambda/alpha is 59.23327026708218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3420014135497833
the lambda is 20.0
the regulation term lambda/alpha is 58.47929045792879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2994435553969282
the lambda is 20.0
the regulation term lambda/alpha is 66.79055080510565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2942978027721938
the lambda is 20.0
the regulation term lambda/alpha is 67.95837349652705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2893481769775196
the lambda is 20.0
the regulation term lambda/alpha is 69.12087786042581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.279631264575195
the lambda is 20.0
the regulation term lambda/alpha is 71.52276062686776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30118469632528033
the lambda is 20.0
the regulation term lambda/alpha is 66.40443636086988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2896943058243058
the lambda is 20.0
the regulation term lambda/alpha is 69.03829173684079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3126399120059583
the lambda is 20.0
the regulation term lambda/alpha is 63.971358844352665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33339355554086403
the lambda is 20.0
the regulation term lambda/alpha is 59.98916196071643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28500606698868874
the lambda is 20.0
the regulation term lambda/alpha is 70.17394475603832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3132495022014929
the lambda is 20.0
the regulation term lambda/alpha is 63.846869219077995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3290049245609964
the lambda is 20.0
the regulation term lambda/alpha is 60.7893636445921
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31355016557951465
the lambda is 20.0
the regulation term lambda/alpha is 63.78564643088382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3107097132464912
the lambda is 20.0
the regulation term lambda/alpha is 64.36876334192252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3060072247349638
the lambda is 20.0
the regulation term lambda/alpha is 65.35793400734973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3138318025834117
the lambda is 20.0
the regulation term lambda/alpha is 63.728404308815406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3176740550283244
the lambda is 20.0
the regulation term lambda/alpha is 62.957612318125136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27232822017990205
the lambda is 20.0
the regulation term lambda/alpha is 73.44079136120322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30846261653207646
the lambda is 20.0
the regulation term lambda/alpha is 64.83767862975459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28977981756750726
the lambda is 20.0
the regulation term lambda/alpha is 69.01791908037484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28608771624062074
the lambda is 20.0
the regulation term lambda/alpha is 69.90862894364375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2953803609197859
the lambda is 20.0
the regulation term lambda/alpha is 67.70930855972256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2741368080003382
the lambda is 20.0
the regulation term lambda/alpha is 72.95627371562351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.281309852041136
the lambda is 20.0
the regulation term lambda/alpha is 71.0959813703055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3119590945842112
the lambda is 20.0
the regulation term lambda/alpha is 64.1109695059752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28291963154811606
the lambda is 20.0
the regulation term lambda/alpha is 70.69145357839406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3185436482899327
the lambda is 20.0
the regulation term lambda/alpha is 62.78574414328413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2923332243132281
the lambda is 20.0
the regulation term lambda/alpha is 68.41507682537814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33068164010832135
the lambda is 20.0
the regulation term lambda/alpha is 60.48113222569176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.334422135595065
the lambda is 20.0
the regulation term lambda/alpha is 59.80465367345479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3442582334194627
the lambda is 20.0
the regulation term lambda/alpha is 58.095923520385135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28689579862558773
the lambda is 20.0
the regulation term lambda/alpha is 69.71172145361712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30854546944691713
the lambda is 20.0
the regulation term lambda/alpha is 64.82026793603866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3346013100720802
the lambda is 20.0
the regulation term lambda/alpha is 59.772629090100025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3070013481509459
the lambda is 20.0
the regulation term lambda/alpha is 65.14629372300487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3030281168882929
the lambda is 20.0
the regulation term lambda/alpha is 66.00047614516484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2730758363904015
the lambda is 20.0
the regulation term lambda/alpha is 73.23972807102237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3239054989741622
the lambda is 20.0
the regulation term lambda/alpha is 61.74640462524346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31168377612110265
the lambda is 20.0
the regulation term lambda/alpha is 64.16760040865628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31566683620453495
the lambda is 20.0
the regulation term lambda/alpha is 63.35793851667423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28988884582066454
the lambda is 20.0
the regulation term lambda/alpha is 68.99196118905763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.301710275522316
the lambda is 20.0
the regulation term lambda/alpha is 66.28875985538218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3442469120828008
the lambda is 20.0
the regulation term lambda/alpha is 58.09783413595139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31385302408938864
the lambda is 20.0
the regulation term lambda/alpha is 63.72409524498891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29021521472614464
the lambda is 20.0
the regulation term lambda/alpha is 68.91437452330875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30897479931027566
the lambda is 20.0
the regulation term lambda/alpha is 64.73019820595722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3264578517468814
the lambda is 20.0
the regulation term lambda/alpha is 61.26365131970227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31268351179114984
the lambda is 20.0
the regulation term lambda/alpha is 63.96243884250144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32431487948567567
the lambda is 20.0
the regulation term lambda/alpha is 61.66846255009203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30120164871371635
the lambda is 20.0
the regulation term lambda/alpha is 66.40069895171601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32104966239481136
the lambda is 20.0
the regulation term lambda/alpha is 62.2956580948058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32261662988966217
the lambda is 20.0
the regulation term lambda/alpha is 61.99308450664859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.289455801877969
the lambda is 20.0
the regulation term lambda/alpha is 69.09517746834369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2882060415189639
the lambda is 20.0
the regulation term lambda/alpha is 69.39479788345798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27410066865127714
the lambda is 20.0
the regulation term lambda/alpha is 72.96589278096536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3090598890541695
the lambda is 20.0
the regulation term lambda/alpha is 64.71237681863842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34933519264071594
the lambda is 20.0
the regulation term lambda/alpha is 57.251603678446415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31014615473439083
the lambda is 20.0
the regulation term lambda/alpha is 64.4857261478157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29114163057900583
the lambda is 20.0
the regulation term lambda/alpha is 68.69508822982527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31652556821254696
the lambda is 20.0
the regulation term lambda/alpha is 63.186048801498394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3085487057815549
the lambda is 20.0
the regulation term lambda/alpha is 64.81958804312575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3022192063489306
the lambda is 20.0
the regulation term lambda/alpha is 66.1771309693295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30397476182741756
the lambda is 20.0
the regulation term lambda/alpha is 65.79493599983492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29017182416052195
the lambda is 20.0
the regulation term lambda/alpha is 68.92467956825496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3190067646684284
the lambda is 20.0
the regulation term lambda/alpha is 62.69459527225934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3223886692916843
the lambda is 20.0
the regulation term lambda/alpha is 62.036919734002204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3730602002170279
the lambda is 20.0
the regulation term lambda/alpha is 53.610650475084164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2620227090068139
the lambda is 20.0
the regulation term lambda/alpha is 76.32926197812839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2770336714008654
the lambda is 20.0
the regulation term lambda/alpha is 72.19339042386717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3239329718092257
the lambda is 20.0
the regulation term lambda/alpha is 61.741167897470554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3094642584267648
the lambda is 20.0
the regulation term lambda/alpha is 64.62781873963333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33593629768367267
the lambda is 20.0
the regulation term lambda/alpha is 59.53509679633541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29218619020639774
the lambda is 20.0
the regulation term lambda/alpha is 68.4495047006574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35183236442465626
the lambda is 20.0
the regulation term lambda/alpha is 56.84525365568788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31120051647996044
the lambda is 20.0
the regulation term lambda/alpha is 64.26724552460017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3080868260675714
the lambda is 20.0
the regulation term lambda/alpha is 64.91676471623452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29047405425684025
the lambda is 20.0
the regulation term lambda/alpha is 68.85296537471739
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3399850945472639
the lambda is 20.0
the regulation term lambda/alpha is 58.82610832287428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2927411168375873
the lambda is 20.0
the regulation term lambda/alpha is 68.31975028330577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.304406479316726
the lambda is 20.0
the regulation term lambda/alpha is 65.70162384484132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28695459250245875
the lambda is 20.0
the regulation term lambda/alpha is 69.69743827964221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2776710072025846
the lambda is 20.0
the regulation term lambda/alpha is 72.02768557470712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29644619337400646
the lambda is 20.0
the regulation term lambda/alpha is 67.4658688390285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3222113754837892
the lambda is 20.0
the regulation term lambda/alpha is 62.071054971199246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.301454737765298
the lambda is 20.0
the regulation term lambda/alpha is 66.34495164435363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32022988221301907
the lambda is 20.0
the regulation term lambda/alpha is 62.45513336165132
1470
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3162805228969224
the lambda is 20.0
the regulation term lambda/alpha is 63.23500358736322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30956153937945186
the lambda is 20.0
the regulation term lambda/alpha is 64.60750918893888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3061491537719514
the lambda is 20.0
the regulation term lambda/alpha is 65.32763443435115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3042648711032313
the lambda is 20.0
the regulation term lambda/alpha is 65.7322021023399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3028911066645607
the lambda is 20.0
the regulation term lambda/alpha is 66.03033090089755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3396062490806985
the lambda is 20.0
the regulation term lambda/alpha is 58.89173139227932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3081284302961597
the lambda is 20.0
the regulation term lambda/alpha is 64.90799950130166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31472157743096374
the lambda is 20.0
the regulation term lambda/alpha is 63.54823257832435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31486533835995567
the lambda is 20.0
the regulation term lambda/alpha is 63.519217784257656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2708964405336712
the lambda is 20.0
the regulation term lambda/alpha is 73.82895087362395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30054116885838644
the lambda is 20.0
the regulation term lambda/alpha is 66.54662346583174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3140447474208499
the lambda is 20.0
the regulation term lambda/alpha is 63.68519188508538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2985293509870098
the lambda is 20.0
the regulation term lambda/alpha is 66.9950875311764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3513592774472636
the lambda is 20.0
the regulation term lambda/alpha is 56.921792830706885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3037166976196816
the lambda is 20.0
the regulation term lambda/alpha is 65.85084111853568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31244408864045503
the lambda is 20.0
the regulation term lambda/alpha is 64.01145269550929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28980618033033073
the lambda is 20.0
the regulation term lambda/alpha is 69.01164073589919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29345006264005047
the lambda is 20.0
the regulation term lambda/alpha is 68.15469664606019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28313204379358337
the lambda is 20.0
the regulation term lambda/alpha is 70.63841920549602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2961328436922711
the lambda is 20.0
the regulation term lambda/alpha is 67.53725709932792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2981385284603345
the lambda is 20.0
the regulation term lambda/alpha is 67.0829097577064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33682538109379423
the lambda is 20.0
the regulation term lambda/alpha is 59.377948107867475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2905781310567093
the lambda is 20.0
the regulation term lambda/alpha is 68.82830420606152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29153264595979833
the lambda is 20.0
the regulation term lambda/alpha is 68.60295159794198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2781726452351856
the lambda is 20.0
the regulation term lambda/alpha is 71.89779564087142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3096372776930903
the lambda is 20.0
the regulation term lambda/alpha is 64.59170597612547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28311894834811524
the lambda is 20.0
the regulation term lambda/alpha is 70.641686530315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33635790113939584
the lambda is 20.0
the regulation term lambda/alpha is 59.460473300169205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2850744561373976
the lambda is 20.0
the regulation term lambda/alpha is 70.15711007920183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.311359319604787
the lambda is 20.0
the regulation term lambda/alpha is 64.23446719175226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.294974792322342
the lambda is 20.0
the regulation term lambda/alpha is 67.80240386827508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2661153111192432
the lambda is 20.0
the regulation term lambda/alpha is 75.15539002954337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30360367430536733
the lambda is 20.0
the regulation term lambda/alpha is 65.8753555791417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2838503428669787
the lambda is 20.0
the regulation term lambda/alpha is 70.45966475852607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3448561507821104
the lambda is 20.0
the regulation term lambda/alpha is 57.99519583641282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29086421010488206
the lambda is 20.0
the regulation term lambda/alpha is 68.76060823292163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3022077011982863
the lambda is 20.0
the regulation term lambda/alpha is 66.17965035536099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3017075458663693
the lambda is 20.0
the regulation term lambda/alpha is 66.289359593473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3098383831310012
the lambda is 20.0
the regulation term lambda/alpha is 64.5497817213431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2653083674459873
the lambda is 20.0
the regulation term lambda/alpha is 75.38397749204684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2680110087725296
the lambda is 20.0
the regulation term lambda/alpha is 74.62380031178013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2939992474486063
the lambda is 20.0
the regulation term lambda/alpha is 68.02738501395716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30359710692219
the lambda is 20.0
the regulation term lambda/alpha is 65.8767805884457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3094663827303073
the lambda is 20.0
the regulation term lambda/alpha is 64.62737510791126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2936190148135106
the lambda is 20.0
the regulation term lambda/alpha is 68.11547955333484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31475601387044183
the lambda is 20.0
the regulation term lambda/alpha is 63.541279971325004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32846536199543097
the lambda is 20.0
the regulation term lambda/alpha is 60.88922094707266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2923142724551019
the lambda is 20.0
the regulation term lambda/alpha is 68.41951243784003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31347155761241136
the lambda is 20.0
the regulation term lambda/alpha is 63.8016416938496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2814652734747853
the lambda is 20.0
the regulation term lambda/alpha is 71.05672310155049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30530754669846405
the lambda is 20.0
the regulation term lambda/alpha is 65.50771579764758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2792771362569762
the lambda is 20.0
the regulation term lambda/alpha is 71.61345274464948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29176561083867314
the lambda is 20.0
the regulation term lambda/alpha is 68.5481744833138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3041170425497645
the lambda is 20.0
the regulation term lambda/alpha is 65.76415393335702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27629848870730517
the lambda is 20.0
the regulation term lambda/alpha is 72.3854846024397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2970030442957511
the lambda is 20.0
the regulation term lambda/alpha is 67.33937710107882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3410359252922271
the lambda is 20.0
the regulation term lambda/alpha is 58.64484799618218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3049791113318551
the lambda is 20.0
the regulation term lambda/alpha is 65.5782617788453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2796846151077202
the lambda is 20.0
the regulation term lambda/alpha is 71.50911748326601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2935828973681196
the lambda is 20.0
the regulation term lambda/alpha is 68.12385932318895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2939567560740629
the lambda is 20.0
the regulation term lambda/alpha is 68.03721835520925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3299234100263566
the lambda is 20.0
the regulation term lambda/alpha is 60.620129982295765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32208710816459696
the lambda is 20.0
the regulation term lambda/alpha is 62.09500316224812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2888051832659988
the lambda is 20.0
the regulation term lambda/alpha is 69.25083467625774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.285991314995228
the lambda is 20.0
the regulation term lambda/alpha is 69.93219357145064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34815186823049
the lambda is 20.0
the regulation term lambda/alpha is 57.44619467835005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3435053400279053
the lambda is 20.0
the regulation term lambda/alpha is 58.22325789280383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2956537897281908
the lambda is 20.0
the regulation term lambda/alpha is 67.64668911698035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2971475926801834
the lambda is 20.0
the regulation term lambda/alpha is 67.30661964852521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29037011257498213
the lambda is 20.0
the regulation term lambda/alpha is 68.87761217103709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30271971872698433
the lambda is 20.0
the regulation term lambda/alpha is 66.0677146639315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2965547651790992
the lambda is 20.0
the regulation term lambda/alpha is 67.44116887793506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32793236210709903
the lambda is 20.0
the regulation term lambda/alpha is 60.98818631833666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3207392420929257
the lambda is 20.0
the regulation term lambda/alpha is 62.35594955420369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30362883501410115
the lambda is 20.0
the regulation term lambda/alpha is 65.86989670816726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2947914519253437
the lambda is 20.0
the regulation term lambda/alpha is 67.84457238965337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3341970769653766
the lambda is 20.0
the regulation term lambda/alpha is 59.844927973657995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2850615673486291
the lambda is 20.0
the regulation term lambda/alpha is 70.16028216648401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32319501827124986
the lambda is 20.0
the regulation term lambda/alpha is 61.882141955586945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2930681883539141
the lambda is 20.0
the regulation term lambda/alpha is 68.2435037126843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3143964384994638
the lambda is 20.0
the regulation term lambda/alpha is 63.613952166427325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28608927883363094
the lambda is 20.0
the regulation term lambda/alpha is 69.90824710921994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3288510972505792
the lambda is 20.0
the regulation term lambda/alpha is 60.81779920217303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.304691935397359
the lambda is 20.0
the regulation term lambda/alpha is 65.64007010529284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31330805966605024
the lambda is 20.0
the regulation term lambda/alpha is 63.8349362008678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33153774626149674
the lambda is 20.0
the regulation term lambda/alpha is 60.324956134030124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3061635225472596
the lambda is 20.0
the regulation term lambda/alpha is 65.32456849725718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2957511649747801
the lambda is 20.0
the regulation term lambda/alpha is 67.62441663317026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30621612794556885
the lambda is 20.0
the regulation term lambda/alpha is 65.31334627663726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2908850140391642
the lambda is 20.0
the regulation term lambda/alpha is 68.75569051249659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3121646476067605
the lambda is 20.0
the regulation term lambda/alpha is 64.06875395190286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30710332857138783
the lambda is 20.0
the regulation term lambda/alpha is 65.12466046212485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3115637518767214
the lambda is 20.0
the regulation term lambda/alpha is 64.19231980462713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25604431889281415
the lambda is 20.0
the regulation term lambda/alpha is 78.11147728832228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30417362631387096
the lambda is 20.0
the regulation term lambda/alpha is 65.75192018575069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.324215612866212
the lambda is 20.0
the regulation term lambda/alpha is 61.68734387339029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.300926649807781
the lambda is 20.0
the regulation term lambda/alpha is 66.46137858768952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2904198610336989
the lambda is 20.0
the regulation term lambda/alpha is 68.86581354599333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.289550754947547
the lambda is 20.0
the regulation term lambda/alpha is 69.07251892202132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28695258585944045
the lambda is 20.0
the regulation term lambda/alpha is 69.69792566984118
1480
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3533825717355183
the lambda is 20.0
the regulation term lambda/alpha is 56.59588672349291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31284633920298444
the lambda is 20.0
the regulation term lambda/alpha is 63.92914825518664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3011660464505712
the lambda is 20.0
the regulation term lambda/alpha is 66.40854849247587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27146180285898114
the lambda is 20.0
the regulation term lambda/alpha is 73.67519035593229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33456650199833693
the lambda is 20.0
the regulation term lambda/alpha is 59.77884779421048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3182471734209359
the lambda is 20.0
the regulation term lambda/alpha is 62.84423451436788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28771450887408084
the lambda is 20.0
the regulation term lambda/alpha is 69.51335224026906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33441874804631677
the lambda is 20.0
the regulation term lambda/alpha is 59.805259474358216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2691866271489747
the lambda is 20.0
the regulation term lambda/alpha is 74.29789589410582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2819997809052007
the lambda is 20.0
the regulation term lambda/alpha is 70.92204091719971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2891781401648403
the lambda is 20.0
the regulation term lambda/alpha is 69.16152095244611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32162951912840243
the lambda is 20.0
the regulation term lambda/alpha is 62.18334702050625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.283332644023177
the lambda is 20.0
the regulation term lambda/alpha is 70.58840702578547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.325051160642261
the lambda is 20.0
the regulation term lambda/alpha is 61.52877584095522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29511083373411545
the lambda is 20.0
the regulation term lambda/alpha is 67.77114803592504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2960291520714682
the lambda is 20.0
the regulation term lambda/alpha is 67.56091371423969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32022070297483674
the lambda is 20.0
the regulation term lambda/alpha is 62.45692365984101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33142808868831386
the lambda is 20.0
the regulation term lambda/alpha is 60.34491548122426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32167721815722367
the lambda is 20.0
the regulation term lambda/alpha is 62.174126332517446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2873831467030594
the lambda is 20.0
the regulation term lambda/alpha is 69.59350340980549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.326981994749985
the lambda is 20.0
the regulation term lambda/alpha is 61.16544739808159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2837913663040683
the lambda is 20.0
the regulation term lambda/alpha is 70.47430744799684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31806278678204286
the lambda is 20.0
the regulation term lambda/alpha is 62.880666431767416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3327959641944733
the lambda is 20.0
the regulation term lambda/alpha is 60.096882630201485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28587528500326626
the lambda is 20.0
the regulation term lambda/alpha is 69.9605773887431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2901284147369127
the lambda is 20.0
the regulation term lambda/alpha is 68.9349921762607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2854210621675575
the lambda is 20.0
the regulation term lambda/alpha is 70.07191357258324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28430908589488874
the lambda is 20.0
the regulation term lambda/alpha is 70.345975532397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2819039346509153
the lambda is 20.0
the regulation term lambda/alpha is 70.94615413852317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2808098560446476
the lambda is 20.0
the regulation term lambda/alpha is 71.22257132178467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28996091027779614
the lambda is 20.0
the regulation term lambda/alpha is 68.97481450461396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31462514502376626
the lambda is 20.0
the regulation term lambda/alpha is 63.567710071263484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3221023197574043
the lambda is 20.0
the regulation term lambda/alpha is 62.092070665815974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3053758827888326
the lambda is 20.0
the regulation term lambda/alpha is 65.49305667936456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2901332953550328
the lambda is 20.0
the regulation term lambda/alpha is 68.93383255281414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31219314349625765
the lambda is 20.0
the regulation term lambda/alpha is 64.0629059819174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28655694858323544
the lambda is 20.0
the regulation term lambda/alpha is 69.79415470077373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26801692838590774
the lambda is 20.0
the regulation term lambda/alpha is 74.62215211720782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2830883993930675
the lambda is 20.0
the regulation term lambda/alpha is 70.64930969576768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.294664731610739
the lambda is 20.0
the regulation term lambda/alpha is 67.8737488897063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2964982810957768
the lambda is 20.0
the regulation term lambda/alpha is 67.45401668463457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27107491666406036
the lambda is 20.0
the regulation term lambda/alpha is 73.78034178199431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2794051758431666
the lambda is 20.0
the regulation term lambda/alpha is 71.58063532518895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30605802960586315
the lambda is 20.0
the regulation term lambda/alpha is 65.34708475303097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2983113070812941
the lambda is 20.0
the regulation term lambda/alpha is 67.04405607578835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31743502786842664
the lambda is 20.0
the regulation term lambda/alpha is 63.005019119344894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3073526016437465
the lambda is 20.0
the regulation term lambda/alpha is 65.07184221977751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.300908061631318
the lambda is 20.0
the regulation term lambda/alpha is 66.46548414679772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2988441373579933
the lambda is 20.0
the regulation term lambda/alpha is 66.92451850257136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2827453079851033
the lambda is 20.0
the regulation term lambda/alpha is 70.73503762988605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3091631558342304
the lambda is 20.0
the regulation term lambda/alpha is 64.69076156902656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29370724255219466
the lambda is 20.0
the regulation term lambda/alpha is 68.0950181078555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2944817484444432
the lambda is 20.0
the regulation term lambda/alpha is 67.91592384128074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.327681983499383
the lambda is 20.0
the regulation term lambda/alpha is 61.034786796685935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26804067959275657
the lambda is 20.0
the regulation term lambda/alpha is 74.61553981428001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29621617358469493
the lambda is 20.0
the regulation term lambda/alpha is 67.51825789242918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2839266599028425
the lambda is 20.0
the regulation term lambda/alpha is 70.44072580871358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34385905637964653
the lambda is 20.0
the regulation term lambda/alpha is 58.16336556777635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30968359334292755
the lambda is 20.0
the regulation term lambda/alpha is 64.58204577164356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3045665494500102
the lambda is 20.0
the regulation term lambda/alpha is 65.66709323829629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2993177710384091
the lambda is 20.0
the regulation term lambda/alpha is 66.81861865606889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2831221803262761
the lambda is 20.0
the regulation term lambda/alpha is 70.64088012091305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2944498763707281
the lambda is 20.0
the regulation term lambda/alpha is 67.92327524980493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34879597827090925
the lambda is 20.0
the regulation term lambda/alpha is 57.34011068346102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3016069837489715
the lambda is 20.0
the regulation term lambda/alpha is 66.311461861394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31712104180252854
the lambda is 20.0
the regulation term lambda/alpha is 63.067401287278855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3183180634174937
the lambda is 20.0
the regulation term lambda/alpha is 62.83023899202595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2730795686056405
the lambda is 20.0
the regulation term lambda/alpha is 73.23872709379583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3176095839701716
the lambda is 20.0
the regulation term lambda/alpha is 62.970391982498576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2730840379961531
the lambda is 20.0
the regulation term lambda/alpha is 73.23752844273432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2981964499868118
the lambda is 20.0
the regulation term lambda/alpha is 67.06987960750214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3007391640566889
the lambda is 20.0
the regulation term lambda/alpha is 66.50281170639295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30518062970941345
the lambda is 20.0
the regulation term lambda/alpha is 65.53495881781087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28788307538688584
the lambda is 20.0
the regulation term lambda/alpha is 69.47264952315108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26735819255255217
the lambda is 20.0
the regulation term lambda/alpha is 74.80601140011366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2891712635667424
the lambda is 20.0
the regulation term lambda/alpha is 69.16316563863506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30778621037164006
the lambda is 20.0
the regulation term lambda/alpha is 64.98016911105526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2919063569897599
the lambda is 20.0
the regulation term lambda/alpha is 68.51512315883411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29775247410320504
the lambda is 20.0
the regulation term lambda/alpha is 67.16988686739755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27746273442844566
the lambda is 20.0
the regulation term lambda/alpha is 72.08175195562258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3005452068382845
the lambda is 20.0
the regulation term lambda/alpha is 66.54572937761564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29497972997637284
the lambda is 20.0
the regulation term lambda/alpha is 67.80126892651896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3160503174098432
the lambda is 20.0
the regulation term lambda/alpha is 63.28106285071275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30057797881943255
the lambda is 20.0
the regulation term lambda/alpha is 66.53847390468576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2968896604765563
the lambda is 20.0
the regulation term lambda/alpha is 67.36509438522292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3179199465104037
the lambda is 20.0
the regulation term lambda/alpha is 62.908918485696574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2860971877665436
the lambda is 20.0
the regulation term lambda/alpha is 69.90631455042501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3115296892800526
the lambda is 20.0
the regulation term lambda/alpha is 64.19933858060253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30182558628946066
the lambda is 20.0
the regulation term lambda/alpha is 66.26343460762583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2868891061358114
the lambda is 20.0
the regulation term lambda/alpha is 69.7133476742478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31967787337715425
the lambda is 20.0
the regulation term lambda/alpha is 62.56297875331555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29568731312006047
the lambda is 20.0
the regulation term lambda/alpha is 67.63901970957824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31185013617176743
the lambda is 20.0
the regulation term lambda/alpha is 64.1333694623881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3063025515485802
the lambda is 20.0
the regulation term lambda/alpha is 65.29491804389347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2784350855410383
the lambda is 20.0
the regulation term lambda/alpha is 71.83002803377744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31317348360308095
the lambda is 20.0
the regulation term lambda/alpha is 63.86236717712726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3173428751325061
the lambda is 20.0
the regulation term lambda/alpha is 63.02331505520339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.311873133986981
the lambda is 20.0
the regulation term lambda/alpha is 64.12864020802411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3263066715723151
the lambda is 20.0
the regulation term lambda/alpha is 61.29203519998414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31224576023647593
the lambda is 20.0
the regulation term lambda/alpha is 64.05211069912757
1490
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27472371534217205
the lambda is 20.0
the regulation term lambda/alpha is 72.80041322639268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3184572207545555
the lambda is 20.0
the regulation term lambda/alpha is 62.802783848366865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3070160147493971
the lambda is 20.0
the regulation term lambda/alpha is 65.1431815904622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3163026404223285
the lambda is 20.0
the regulation term lambda/alpha is 63.23058186708756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31657367900751376
the lambda is 20.0
the regulation term lambda/alpha is 63.17644619951271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32666889774179764
the lambda is 20.0
the regulation term lambda/alpha is 61.22407164641734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3040001710311608
the lambda is 20.0
the regulation term lambda/alpha is 65.78943667090881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33491046666809493
the lambda is 20.0
the regulation term lambda/alpha is 59.717452843361045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3280921044464925
the lambda is 20.0
the regulation term lambda/alpha is 60.95849223114035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2943331464913252
the lambda is 20.0
the regulation term lambda/alpha is 67.9502130100371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29762203782378777
the lambda is 20.0
the regulation term lambda/alpha is 67.19932484247468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2934716257765429
the lambda is 20.0
the regulation term lambda/alpha is 68.1496889080123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28922907058503344
the lambda is 20.0
the regulation term lambda/alpha is 69.14934228272878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2844395597326672
the lambda is 20.0
the regulation term lambda/alpha is 70.31370748427948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29811292149888136
the lambda is 20.0
the regulation term lambda/alpha is 67.08867196846765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29535021604594125
the lambda is 20.0
the regulation term lambda/alpha is 67.71621929976524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2723482539416991
the lambda is 20.0
the regulation term lambda/alpha is 73.43538910398651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3042223770929332
the lambda is 20.0
the regulation term lambda/alpha is 65.74138362573652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2798700955066107
the lambda is 20.0
the regulation term lambda/alpha is 71.46172571169751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3042458613032898
the lambda is 20.0
the regulation term lambda/alpha is 65.73630916235487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2993551610275883
the lambda is 20.0
the regulation term lambda/alpha is 66.81027289239492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30676261234398505
the lambda is 20.0
the regulation term lambda/alpha is 65.19699335971625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29587444217967324
the lambda is 20.0
the regulation term lambda/alpha is 67.59624066432465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2972714666360733
the lambda is 20.0
the regulation term lambda/alpha is 67.27857276825182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32844634577226145
the lambda is 20.0
the regulation term lambda/alpha is 60.892746280902834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2979510528861141
the lambda is 20.0
the regulation term lambda/alpha is 67.12511939887187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30104130779520116
the lambda is 20.0
the regulation term lambda/alpha is 66.43606535753568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3063278058228165
the lambda is 20.0
the regulation term lambda/alpha is 65.28953500084229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3028148308705041
the lambda is 20.0
the regulation term lambda/alpha is 66.04696322999058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31707306358939225
the lambda is 20.0
the regulation term lambda/alpha is 63.076944391277216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30181050056579006
the lambda is 20.0
the regulation term lambda/alpha is 66.26674672520318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2690883075294768
the lambda is 20.0
the regulation term lambda/alpha is 74.32504289622148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2862287491520174
the lambda is 20.0
the regulation term lambda/alpha is 69.87418300660605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3115035207359317
the lambda is 20.0
the regulation term lambda/alpha is 64.20473178842315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3142469920696178
the lambda is 20.0
the regulation term lambda/alpha is 63.64420505119498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27941390086268914
the lambda is 20.0
the regulation term lambda/alpha is 71.57840013775296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2857443026330664
the lambda is 20.0
the regulation term lambda/alpha is 69.99264662743829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28471673084530696
the lambda is 20.0
the regulation term lambda/alpha is 70.2452572443537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29264260917990226
the lambda is 20.0
the regulation term lambda/alpha is 68.34274768137057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3047338806958546
the lambda is 20.0
the regulation term lambda/alpha is 65.63103503401177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29591910461977156
the lambda is 20.0
the regulation term lambda/alpha is 67.58603850771357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35123550850579743
the lambda is 20.0
the regulation term lambda/alpha is 56.94185102492245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3062627806401137
the lambda is 20.0
the regulation term lambda/alpha is 65.30339716173934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32427908110606296
the lambda is 20.0
the regulation term lambda/alpha is 61.67527036213149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29815278444877563
the lambda is 20.0
the regulation term lambda/alpha is 67.07970223043856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3086346943539849
the lambda is 20.0
the regulation term lambda/alpha is 64.80152868705434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33128049373073365
the lambda is 20.0
the regulation term lambda/alpha is 60.37180087112552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29028965824120867
the lambda is 20.0
the regulation term lambda/alpha is 68.89670173293435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3066618514069422
the lambda is 20.0
the regulation term lambda/alpha is 65.21841535959383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3109975091595581
the lambda is 20.0
the regulation term lambda/alpha is 64.3091967329518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3201655082967396
the lambda is 20.0
the regulation term lambda/alpha is 62.467690871508125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2815406471803564
the lambda is 20.0
the regulation term lambda/alpha is 71.03769988561508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31660926908600107
the lambda is 20.0
the regulation term lambda/alpha is 63.16934452909958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3458874836353927
the lambda is 20.0
the regulation term lambda/alpha is 57.82227153695571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28795860156613345
the lambda is 20.0
the regulation term lambda/alpha is 69.45442814079905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2838312977504884
the lambda is 20.0
the regulation term lambda/alpha is 70.46439261107028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.291656971757211
the lambda is 20.0
the regulation term lambda/alpha is 68.57370794019263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3185019927191637
the lambda is 20.0
the regulation term lambda/alpha is 62.79395563353609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30214348976164107
the lambda is 20.0
the regulation term lambda/alpha is 66.19371483323326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3121759640556019
the lambda is 20.0
the regulation term lambda/alpha is 64.06643144517618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2828572016950024
the lambda is 20.0
the regulation term lambda/alpha is 70.7070559991097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2999595936309357
the lambda is 20.0
the regulation term lambda/alpha is 66.67564706934361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30945693721942014
the lambda is 20.0
the regulation term lambda/alpha is 64.62934772025815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2810528019216125
the lambda is 20.0
the regulation term lambda/alpha is 71.16100555929746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28640419519460586
the lambda is 20.0
the regulation term lambda/alpha is 69.83137934278653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28788926186178404
the lambda is 20.0
the regulation term lambda/alpha is 69.47115661994376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29008521782965563
the lambda is 20.0
the regulation term lambda/alpha is 68.94525736138833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3238295067955408
the lambda is 20.0
the regulation term lambda/alpha is 61.76089448398408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2946814075842528
the lambda is 20.0
the regulation term lambda/alpha is 67.86990792516073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29137546016596816
the lambda is 20.0
the regulation term lambda/alpha is 68.6399602375847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31571013201125037
the lambda is 20.0
the regulation term lambda/alpha is 63.34924974560936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28088218373893453
the lambda is 20.0
the regulation term lambda/alpha is 71.20423137477799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3208034070654376
the lambda is 20.0
the regulation term lambda/alpha is 62.34347753021336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31331929059674424
the lambda is 20.0
the regulation term lambda/alpha is 63.83264803743247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31501441550647197
the lambda is 20.0
the regulation term lambda/alpha is 63.48915800518056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33786295299621716
the lambda is 20.0
the regulation term lambda/alpha is 59.19559934771519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.285432146194272
the lambda is 20.0
the regulation term lambda/alpha is 70.06919250919803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29457458106405454
the lambda is 20.0
the regulation term lambda/alpha is 67.89452072801572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27536644570628527
the lambda is 20.0
the regulation term lambda/alpha is 72.6304904314037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2729997529121423
the lambda is 20.0
the regulation term lambda/alpha is 73.26013956663348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29362795856655827
the lambda is 20.0
the regulation term lambda/alpha is 68.11340479168467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2965300235810283
the lambda is 20.0
the regulation term lambda/alpha is 67.44679597185848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31819483927524517
the lambda is 20.0
the regulation term lambda/alpha is 62.85457063211381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3258187012908467
the lambda is 20.0
the regulation term lambda/alpha is 61.38383070328033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29482557984162083
the lambda is 20.0
the regulation term lambda/alpha is 67.83671895343655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.300559059883023
the lambda is 20.0
the regulation term lambda/alpha is 66.54266222347103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3333459741719749
the lambda is 20.0
the regulation term lambda/alpha is 59.997724735328276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27727560207307667
the lambda is 20.0
the regulation term lambda/alpha is 72.13039968344907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28756301818669855
the lambda is 20.0
the regulation term lambda/alpha is 69.54997247599871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3373307634153535
the lambda is 20.0
the regulation term lambda/alpha is 59.2889892327256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28104445014480617
the lambda is 20.0
the regulation term lambda/alpha is 71.1631202455524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2748385338536436
the lambda is 20.0
the regulation term lambda/alpha is 72.76999960511489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28243788413561777
the lambda is 20.0
the regulation term lambda/alpha is 70.81203026714586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30574781570921156
the lambda is 20.0
the regulation term lambda/alpha is 65.4133863674809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3047176497598806
the lambda is 20.0
the regulation term lambda/alpha is 65.63453090347778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27784198270622257
the lambda is 20.0
the regulation term lambda/alpha is 71.98336192823345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32052969172738366
the lambda is 20.0
the regulation term lambda/alpha is 62.39671554986664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2685398801032126
the lambda is 20.0
the regulation term lambda/alpha is 74.47683372880427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29727011072265563
the lambda is 20.0
the regulation term lambda/alpha is 67.27887964040697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2910051475732182
the lambda is 20.0
the regulation term lambda/alpha is 68.72730660191469
1500
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3069838691536065
the lambda is 20.0
the regulation term lambda/alpha is 65.1500030120232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29098404780917636
the lambda is 20.0
the regulation term lambda/alpha is 68.73229013954656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2764706780401756
the lambda is 20.0
the regulation term lambda/alpha is 72.34040203385938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32458720269635044
the lambda is 20.0
the regulation term lambda/alpha is 61.616723745913944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2918149206757306
the lambda is 20.0
the regulation term lambda/alpha is 68.53659145902384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28045373807622914
the lambda is 20.0
the regulation term lambda/alpha is 71.31300918714754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31574146452555985
the lambda is 20.0
the regulation term lambda/alpha is 63.34296330085263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32302019222133105
the lambda is 20.0
the regulation term lambda/alpha is 61.91563401180861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27884976425291275
the lambda is 20.0
the regulation term lambda/alpha is 71.72320928290362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30556651889835973
the lambda is 20.0
the regulation term lambda/alpha is 65.45219702768738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30841495084224135
the lambda is 20.0
the regulation term lambda/alpha is 64.84769932645155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2972415717090571
the lambda is 20.0
the regulation term lambda/alpha is 67.28533927810136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.307646072946926
the lambda is 20.0
the regulation term lambda/alpha is 65.00976855781393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30537841573801744
the lambda is 20.0
the regulation term lambda/alpha is 65.49251344979763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2986221173102034
the lambda is 20.0
the regulation term lambda/alpha is 66.97427565026723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2907613397016207
the lambda is 20.0
the regulation term lambda/alpha is 68.78493550939062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2947834950445875
the lambda is 20.0
the regulation term lambda/alpha is 67.84640366983538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2915981555722135
the lambda is 20.0
the regulation term lambda/alpha is 68.58753945392172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29513119912013275
the lambda is 20.0
the regulation term lambda/alpha is 67.76647152054916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27667271449709285
the lambda is 20.0
the regulation term lambda/alpha is 72.28757644697251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3274963137059218
the lambda is 20.0
the regulation term lambda/alpha is 61.069389678563454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3136264557063612
the lambda is 20.0
the regulation term lambda/alpha is 63.77013047242859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28986280566207984
the lambda is 20.0
the regulation term lambda/alpha is 68.99815916125462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3216435414219436
the lambda is 20.0
the regulation term lambda/alpha is 62.18063609044547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30691355587514063
the lambda is 20.0
the regulation term lambda/alpha is 65.16492874670043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2686615006205365
the lambda is 20.0
the regulation term lambda/alpha is 74.4431187714106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32399895550983693
the lambda is 20.0
the regulation term lambda/alpha is 61.728594058361956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29158348436181863
the lambda is 20.0
the regulation term lambda/alpha is 68.5909904800455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2835111724106757
the lambda is 20.0
the regulation term lambda/alpha is 70.5439571567547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3092146479353057
the lambda is 20.0
the regulation term lambda/alpha is 64.67998891237659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3248924646698626
the lambda is 20.0
the regulation term lambda/alpha is 61.55882999725116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30532179358046074
the lambda is 20.0
the regulation term lambda/alpha is 65.50465908595368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30472223683807065
the lambda is 20.0
the regulation term lambda/alpha is 65.63354288656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28347073232876807
the lambda is 20.0
the regulation term lambda/alpha is 70.55402099432294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3209383744610652
the lambda is 20.0
the regulation term lambda/alpha is 62.31725960968345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3002721803694053
the lambda is 20.0
the regulation term lambda/alpha is 66.60623696605961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.314967825989686
the lambda is 20.0
the regulation term lambda/alpha is 63.498549215801255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32958431082418826
the lambda is 20.0
the regulation term lambda/alpha is 60.68250017722687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34074084744800914
the lambda is 20.0
the regulation term lambda/alpha is 58.69563379263367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30587823645266543
the lambda is 20.0
the regulation term lambda/alpha is 65.38549532632406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2890091214405686
the lambda is 20.0
the regulation term lambda/alpha is 69.20196809121393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32339743932351595
the lambda is 20.0
the regulation term lambda/alpha is 61.84340866098408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28945036380602396
the lambda is 20.0
the regulation term lambda/alpha is 69.09647559953686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2947886769419646
the lambda is 20.0
the regulation term lambda/alpha is 67.84521104227292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30691215179444425
the lambda is 20.0
the regulation term lambda/alpha is 65.1652268672473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32346360729869766
the lambda is 20.0
the regulation term lambda/alpha is 61.830757923661245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2924075761949983
the lambda is 20.0
the regulation term lambda/alpha is 68.39768059450884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30227869896259163
the lambda is 20.0
the regulation term lambda/alpha is 66.16410639796716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.301406181834881
the lambda is 20.0
the regulation term lambda/alpha is 66.35563968278719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30539125712757303
the lambda is 20.0
the regulation term lambda/alpha is 65.48975955668983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29450862254384746
the lambda is 20.0
the regulation term lambda/alpha is 67.9097264699689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2867236076398927
the lambda is 20.0
the regulation term lambda/alpha is 69.75358661474006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3052671228352312
the lambda is 20.0
the regulation term lambda/alpha is 65.51639041324164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32235137532881974
the lambda is 20.0
the regulation term lambda/alpha is 62.04409700314967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.25049028250349004
the lambda is 20.0
the regulation term lambda/alpha is 79.84341667913343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29188693114981074
the lambda is 20.0
the regulation term lambda/alpha is 68.51968301977527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3220847336523689
the lambda is 20.0
the regulation term lambda/alpha is 62.09546094657909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3278378251523317
the lambda is 20.0
the regulation term lambda/alpha is 61.005773176743375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29241123079430725
the lambda is 20.0
the regulation term lambda/alpha is 68.39682575006407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3208627702606726
the lambda is 20.0
the regulation term lambda/alpha is 62.33194329074629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27931031642170634
the lambda is 20.0
the regulation term lambda/alpha is 71.60494555383247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3160223292709927
the lambda is 20.0
the regulation term lambda/alpha is 63.28666726220404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2894821390242985
the lambda is 20.0
the regulation term lambda/alpha is 69.08889117446118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31134045606550803
the lambda is 20.0
the regulation term lambda/alpha is 64.23835903867203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31103400521769303
the lambda is 20.0
the regulation term lambda/alpha is 64.30165083075717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2893840786399305
the lambda is 20.0
the regulation term lambda/alpha is 69.11230256342206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33296516511618957
the lambda is 20.0
the regulation term lambda/alpha is 60.06634355585191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2862584929999544
the lambda is 20.0
the regulation term lambda/alpha is 69.86692269075554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32546649776645453
the lambda is 20.0
the regulation term lambda/alpha is 61.4502572069689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28696741018249705
the lambda is 20.0
the regulation term lambda/alpha is 69.69432517539532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2956168706193647
the lambda is 20.0
the regulation term lambda/alpha is 67.65513740165369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29600362297563354
the lambda is 20.0
the regulation term lambda/alpha is 67.56674056535573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.307996357189198
the lambda is 20.0
the regulation term lambda/alpha is 64.93583295114841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29339131872988927
the lambda is 20.0
the regulation term lambda/alpha is 68.16834283502779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31974156598116477
the lambda is 20.0
the regulation term lambda/alpha is 62.55051619149871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30570958218525107
the lambda is 20.0
the regulation term lambda/alpha is 65.42156728303199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3399577985651325
the lambda is 20.0
the regulation term lambda/alpha is 58.83083160443576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3244133081408038
the lambda is 20.0
the regulation term lambda/alpha is 61.64975202348813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27820583645325997
the lambda is 20.0
the regulation term lambda/alpha is 71.88921790776342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33709478350036687
the lambda is 20.0
the regulation term lambda/alpha is 59.33049391130146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3168513001857264
the lambda is 20.0
the regulation term lambda/alpha is 63.12109178115018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.335249743141115
the lambda is 20.0
the regulation term lambda/alpha is 59.65701811613768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29111471010556245
the lambda is 20.0
the regulation term lambda/alpha is 68.701440723307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3193618323651647
the lambda is 20.0
the regulation term lambda/alpha is 62.62489118340103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3214430427536446
the lambda is 20.0
the regulation term lambda/alpha is 62.21942098565838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28269580253714327
the lambda is 20.0
the regulation term lambda/alpha is 70.74742468937865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2854779657473573
the lambda is 20.0
the regulation term lambda/alpha is 70.05794632045134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3203915739827113
the lambda is 20.0
the regulation term lambda/alpha is 62.423614177441586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34426663170219757
the lambda is 20.0
the regulation term lambda/alpha is 58.094506287500685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29523603281459126
the lambda is 20.0
the regulation term lambda/alpha is 67.74240870713784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3185695564271704
the lambda is 20.0
the regulation term lambda/alpha is 62.78063800039314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30118865714292337
the lambda is 20.0
the regulation term lambda/alpha is 66.40356310134673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2928340673931471
the lambda is 20.0
the regulation term lambda/alpha is 68.29806442277365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28468949785003456
the lambda is 20.0
the regulation term lambda/alpha is 70.25197680644816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30143169121625907
the lambda is 20.0
the regulation term lambda/alpha is 66.35002417728933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2833055667631655
the lambda is 20.0
the regulation term lambda/alpha is 70.59515359512639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.297178806525082
the lambda is 20.0
the regulation term lambda/alpha is 67.2995501727072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2922847788540959
the lambda is 20.0
the regulation term lambda/alpha is 68.42641645045668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2905256626553933
the lambda is 20.0
the regulation term lambda/alpha is 68.84073447144316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28162090983804733
the lambda is 20.0
the regulation term lambda/alpha is 71.01745396498245
1510
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30975363302380327
the lambda is 20.0
the regulation term lambda/alpha is 64.56744285695943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30534248494667615
the lambda is 20.0
the regulation term lambda/alpha is 65.50022019861639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3299147817811164
the lambda is 20.0
the regulation term lambda/alpha is 60.62171537760651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30132319206127445
the lambda is 20.0
the regulation term lambda/alpha is 66.37391520773807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3164624076960253
the lambda is 20.0
the regulation term lambda/alpha is 63.1986596626377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2882029336723022
the lambda is 20.0
the regulation term lambda/alpha is 69.3955462047474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29077834318347245
the lambda is 20.0
the regulation term lambda/alpha is 68.78091325866245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28952205559296185
the lambda is 20.0
the regulation term lambda/alpha is 69.07936585017184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3108684516766051
the lambda is 20.0
the regulation term lambda/alpha is 64.33589478808194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3045605936019541
the lambda is 20.0
the regulation term lambda/alpha is 65.66837739402041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33929284781361846
the lambda is 20.0
the regulation term lambda/alpha is 58.946129070738536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2901730195217706
the lambda is 20.0
the regulation term lambda/alpha is 68.92439563458268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3022390552320708
the lambda is 20.0
the regulation term lambda/alpha is 66.1727849322558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31822508193464055
the lambda is 20.0
the regulation term lambda/alpha is 62.84859722059165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3133945224632044
the lambda is 20.0
the regulation term lambda/alpha is 63.8173247024386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3083781008479442
the lambda is 20.0
the regulation term lambda/alpha is 64.8554483765423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30945619401305563
the lambda is 20.0
the regulation term lambda/alpha is 64.62950293751827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3318973476687002
the lambda is 20.0
the regulation term lambda/alpha is 60.25959574694761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30246796978294865
the lambda is 20.0
the regulation term lambda/alpha is 66.12270388283434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28387384965852863
the lambda is 20.0
the regulation term lambda/alpha is 70.45383019273514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27717003834054343
the lambda is 20.0
the regulation term lambda/alpha is 72.15787146310205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3022829320327319
the lambda is 20.0
the regulation term lambda/alpha is 66.16317985771805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3016304583213938
the lambda is 20.0
the regulation term lambda/alpha is 66.30630113186237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30125050044446255
the lambda is 20.0
the regulation term lambda/alpha is 66.38993120506741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3275010901723382
the lambda is 20.0
the regulation term lambda/alpha is 61.06849900705846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3248874148927325
the lambda is 20.0
the regulation term lambda/alpha is 61.559786816006294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27895142205336937
the lambda is 20.0
the regulation term lambda/alpha is 71.69707131363386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29074019409993557
the lambda is 20.0
the regulation term lambda/alpha is 68.78993825368858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3039750730035462
the lambda is 20.0
the regulation term lambda/alpha is 65.79486864624153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28391210576462295
the lambda is 20.0
the regulation term lambda/alpha is 70.44433679971709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29128999352983154
the lambda is 20.0
the regulation term lambda/alpha is 68.66009970902678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3140605947889924
the lambda is 20.0
the regulation term lambda/alpha is 63.6819783565569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27547981518058934
the lambda is 20.0
the regulation term lambda/alpha is 72.60060047190429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3557898727606148
the lambda is 20.0
the regulation term lambda/alpha is 56.21295469940638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28051077018579457
the lambda is 20.0
the regulation term lambda/alpha is 71.29851016684003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3004864935435452
the lambda is 20.0
the regulation term lambda/alpha is 66.55873202201579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3177560945581544
the lambda is 20.0
the regulation term lambda/alpha is 62.94135767186578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.281765803740966
the lambda is 20.0
the regulation term lambda/alpha is 70.98093428820225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28398814875628037
the lambda is 20.0
the regulation term lambda/alpha is 70.42547404738383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31141768678264314
the lambda is 20.0
the regulation term lambda/alpha is 64.22242810492386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2942185618282886
the lambda is 20.0
the regulation term lambda/alpha is 67.97667650782812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3159067982973635
the lambda is 20.0
the regulation term lambda/alpha is 63.309811969206095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3448855262640203
the lambda is 20.0
the regulation term lambda/alpha is 57.99025611961864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3064363689572067
the lambda is 20.0
the regulation term lambda/alpha is 65.26640446778353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3075868619309383
the lambda is 20.0
the regulation term lambda/alpha is 65.02228305346328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2944087827165794
the lambda is 20.0
the regulation term lambda/alpha is 67.93275599815765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3053362777255455
the lambda is 20.0
the regulation term lambda/alpha is 65.50155176116084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28790474794498283
the lambda is 20.0
the regulation term lambda/alpha is 69.4674198420024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31044312728419327
the lambda is 20.0
the regulation term lambda/alpha is 64.42403855083937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3034879579481923
the lambda is 20.0
the regulation term lambda/alpha is 65.90047307054652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3274096021155102
the lambda is 20.0
the regulation term lambda/alpha is 61.08556337618955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32583658359769685
the lambda is 20.0
the regulation term lambda/alpha is 61.380461884211115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3099390466690435
the lambda is 20.0
the regulation term lambda/alpha is 64.52881692365865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30699544841251225
the lambda is 20.0
the regulation term lambda/alpha is 65.1475456832371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2924162765514851
the lambda is 20.0
the regulation term lambda/alpha is 68.39564553609465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31675018181458475
the lambda is 20.0
the regulation term lambda/alpha is 63.14124236780186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29192618029669704
the lambda is 20.0
the regulation term lambda/alpha is 68.51047062539286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30238450469144157
the lambda is 20.0
the regulation term lambda/alpha is 66.14095527285153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3000757972333663
the lambda is 20.0
the regulation term lambda/alpha is 66.6498270916737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30722078035382006
the lambda is 20.0
the regulation term lambda/alpha is 65.09976303349792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31313167693394783
the lambda is 20.0
the regulation term lambda/alpha is 63.870893535369824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32988621284445363
the lambda is 20.0
the regulation term lambda/alpha is 60.62696536344883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3031908069710417
the lambda is 20.0
the regulation term lambda/alpha is 65.96506074773644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3209363526404205
the lambda is 20.0
the regulation term lambda/alpha is 62.31765219320029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2887965489853047
the lambda is 20.0
the regulation term lambda/alpha is 69.25290509969942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3205022770194019
the lambda is 20.0
the regulation term lambda/alpha is 62.40205275917363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2963310815185997
the lambda is 20.0
the regulation term lambda/alpha is 67.49207642177308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28672604702056337
the lambda is 20.0
the regulation term lambda/alpha is 69.75299317179106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3274395213407211
the lambda is 20.0
the regulation term lambda/alpha is 61.07998178750317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2876393710534187
the lambda is 20.0
the regulation term lambda/alpha is 69.5315106786467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29756343377482397
the lambda is 20.0
the regulation term lambda/alpha is 67.21255950801623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30908766911378177
the lambda is 20.0
the regulation term lambda/alpha is 64.70656062515899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.25493039262637074
the lambda is 20.0
the regulation term lambda/alpha is 78.45278781377887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30148437997460065
the lambda is 20.0
the regulation term lambda/alpha is 66.33842855037781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2984973899682831
the lambda is 20.0
the regulation term lambda/alpha is 67.00226089790971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3221831377003812
the lambda is 20.0
the regulation term lambda/alpha is 62.07649519696243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2555225897205547
the lambda is 20.0
the regulation term lambda/alpha is 78.2709662651449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2853254578728599
the lambda is 20.0
the regulation term lambda/alpha is 70.09539264075039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2952476996498125
the lambda is 20.0
the regulation term lambda/alpha is 67.73973183778098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3001957193171289
the lambda is 20.0
the regulation term lambda/alpha is 66.62320184143552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28600350040504796
the lambda is 20.0
the regulation term lambda/alpha is 69.9292140539375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3020581419973497
the lambda is 20.0
the regulation term lambda/alpha is 66.21241813827844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31001709465763305
the lambda is 20.0
the regulation term lambda/alpha is 64.51257154734313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2952909177821887
the lambda is 20.0
the regulation term lambda/alpha is 67.72981759890197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2844426351600698
the lambda is 20.0
the regulation term lambda/alpha is 70.31294724416057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3243310585751246
the lambda is 20.0
the regulation term lambda/alpha is 61.665386250288485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2841665081521149
the lambda is 20.0
the regulation term lambda/alpha is 70.38127093180861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3096439929587615
the lambda is 20.0
the regulation term lambda/alpha is 64.59030517237778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2880852678155821
the lambda is 20.0
the regulation term lambda/alpha is 69.42389019629775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3360754914073742
the lambda is 20.0
the regulation term lambda/alpha is 59.51043890837307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30090954569878803
the lambda is 20.0
the regulation term lambda/alpha is 66.46515634309621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3026660647220595
the lambda is 20.0
the regulation term lambda/alpha is 66.0794265731976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3011358735920989
the lambda is 20.0
the regulation term lambda/alpha is 66.41520241819755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3246579471287437
the lambda is 20.0
the regulation term lambda/alpha is 61.603297183632364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.287155151299009
the lambda is 20.0
the regulation term lambda/alpha is 69.6487592492269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3046650074904954
the lambda is 20.0
the regulation term lambda/alpha is 65.64587172231762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.283815195799885
the lambda is 20.0
the regulation term lambda/alpha is 70.4683903327776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30974631173031586
the lambda is 20.0
the regulation term lambda/alpha is 64.56896900006747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2849912375193566
the lambda is 20.0
the regulation term lambda/alpha is 70.17759624501296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29793950381392337
the lambda is 20.0
the regulation term lambda/alpha is 67.127721379609
1520
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30176826327625245
the lambda is 20.0
the regulation term lambda/alpha is 66.27602181509421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2999404538941374
the lambda is 20.0
the regulation term lambda/alpha is 66.67990176163067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3351215471167922
the lambda is 20.0
the regulation term lambda/alpha is 59.679839067554376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28142875555825914
the lambda is 20.0
the regulation term lambda/alpha is 71.06594335154838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29956903405108526
the lambda is 20.0
the regulation term lambda/alpha is 66.76257465445984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31419693730790677
the lambda is 20.0
the regulation term lambda/alpha is 63.654344219149394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2910744311056444
the lambda is 20.0
the regulation term lambda/alpha is 68.71094765703097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2881161288408066
the lambda is 20.0
the regulation term lambda/alpha is 69.41645398495076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3170417641390309
the lambda is 20.0
the regulation term lambda/alpha is 63.08317156357195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.292686633822753
the lambda is 20.0
the regulation term lambda/alpha is 68.33246786428835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33196893134030564
the lambda is 20.0
the regulation term lambda/alpha is 60.2466017505046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31802230096264544
the lambda is 20.0
the regulation term lambda/alpha is 62.888671453104095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32764966059563355
the lambda is 20.0
the regulation term lambda/alpha is 61.040807927717815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3303622766274798
the lambda is 20.0
the regulation term lambda/alpha is 60.539599751433556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31917407604012793
the lambda is 20.0
the regulation term lambda/alpha is 62.66173070235665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3089093915062946
the lambda is 20.0
the regulation term lambda/alpha is 64.74390403760988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30394968654224785
the lambda is 20.0
the regulation term lambda/alpha is 65.80036395997426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30126768804076137
the lambda is 20.0
the regulation term lambda/alpha is 66.38614359895779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2883647216333847
the lambda is 20.0
the regulation term lambda/alpha is 69.35661160877784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30593420165545665
the lambda is 20.0
the regulation term lambda/alpha is 65.37353421675951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29292090107344243
the lambda is 20.0
the regulation term lambda/alpha is 68.27781809596956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.304611686114066
the lambda is 20.0
the regulation term lambda/alpha is 65.65736283837359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3392140616814118
the lambda is 20.0
the regulation term lambda/alpha is 58.959819946332004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31881336545731304
the lambda is 20.0
the regulation term lambda/alpha is 62.732627194946964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3003676840344369
the lambda is 20.0
the regulation term lambda/alpha is 66.58505912276173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3287180871616188
the lambda is 20.0
the regulation term lambda/alpha is 60.84240807280776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35421693631932055
the lambda is 20.0
the regulation term lambda/alpha is 56.46257405933391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2949598521690524
the lambda is 20.0
the regulation term lambda/alpha is 67.80583816043297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2991705216086546
the lambda is 20.0
the regulation term lambda/alpha is 66.85150626625584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30288330170383404
the lambda is 20.0
the regulation term lambda/alpha is 66.03203242797598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3143585858096608
the lambda is 20.0
the regulation term lambda/alpha is 63.62161207872874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3115669804471619
the lambda is 20.0
the regulation term lambda/alpha is 64.19165462044771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3172490822092951
the lambda is 20.0
the regulation term lambda/alpha is 63.0419475470874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33745809532828447
the lambda is 20.0
the regulation term lambda/alpha is 59.266617920496735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.304817626975144
the lambda is 20.0
the regulation term lambda/alpha is 65.61300341607502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3044064996401948
the lambda is 20.0
the regulation term lambda/alpha is 65.7016194583223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3181165831241188
the lambda is 20.0
the regulation term lambda/alpha is 62.8700327521016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2885312534830447
the lambda is 20.0
the regulation term lambda/alpha is 69.31658098929405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2767350388751244
the lambda is 20.0
the regulation term lambda/alpha is 72.27129633203015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33158402788986274
the lambda is 20.0
the regulation term lambda/alpha is 60.316536134976616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34314100333897435
the lambda is 20.0
the regulation term lambda/alpha is 58.28507757856864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3098432313359473
the lambda is 20.0
the regulation term lambda/alpha is 64.54877169259512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2672512033111452
the lambda is 20.0
the regulation term lambda/alpha is 74.83595864941775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2951205640192956
the lambda is 20.0
the regulation term lambda/alpha is 67.76891358438974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35374672881367986
the lambda is 20.0
the regulation term lambda/alpha is 56.53762528651989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3010891536655672
the lambda is 20.0
the regulation term lambda/alpha is 66.42550804807425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2799747483493824
the lambda is 20.0
the regulation term lambda/alpha is 71.43501375717592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3167262184837334
the lambda is 20.0
the regulation term lambda/alpha is 63.14601959934419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3317040433368443
the lambda is 20.0
the regulation term lambda/alpha is 60.29471271681205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2981902845732072
the lambda is 20.0
the regulation term lambda/alpha is 67.07126635136868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3457749942646058
the lambda is 20.0
the regulation term lambda/alpha is 57.84108258764055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3312041355148958
the lambda is 20.0
the regulation term lambda/alpha is 60.38571942620114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2612267400270609
the lambda is 20.0
the regulation term lambda/alpha is 76.56184048358972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2893593785843913
the lambda is 20.0
the regulation term lambda/alpha is 69.11820207053363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2981984484407061
the lambda is 20.0
the regulation term lambda/alpha is 67.06943012138713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29821651729920834
the lambda is 20.0
the regulation term lambda/alpha is 67.0653664026714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3086961652722358
the lambda is 20.0
the regulation term lambda/alpha is 64.78862470598628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32500095502232756
the lambda is 20.0
the regulation term lambda/alpha is 61.53828070636285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2984258731993867
the lambda is 20.0
the regulation term lambda/alpha is 67.01831776709736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3107046894953526
the lambda is 20.0
the regulation term lambda/alpha is 64.3698041136233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2962036892250215
the lambda is 20.0
the regulation term lambda/alpha is 67.52110364434489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29608020071064817
the lambda is 20.0
the regulation term lambda/alpha is 67.54926520583355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29179386622938225
the lambda is 20.0
the regulation term lambda/alpha is 68.54153673085708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26850219037137046
the lambda is 20.0
the regulation term lambda/alpha is 74.48728806397304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30120359144355974
the lambda is 20.0
the regulation term lambda/alpha is 66.40027067455352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3005766022625207
the lambda is 20.0
the regulation term lambda/alpha is 66.53877863231747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3026622384093151
the lambda is 20.0
the regulation term lambda/alpha is 66.08026196169325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32424191322314916
the lambda is 20.0
the regulation term lambda/alpha is 61.682340204536224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3018528037064843
the lambda is 20.0
the regulation term lambda/alpha is 66.25745977647968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2985314408037316
the lambda is 20.0
the regulation term lambda/alpha is 66.99461854387701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32178171920440257
the lambda is 20.0
the regulation term lambda/alpha is 62.15393481472319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3105600323053418
the lambda is 20.0
the regulation term lambda/alpha is 64.3997872216089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3115592301330425
the lambda is 20.0
the regulation term lambda/alpha is 64.19325144518932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3035216312084221
the lambda is 20.0
the regulation term lambda/alpha is 65.89316194820529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3002307626601978
the lambda is 20.0
the regulation term lambda/alpha is 66.61542549067853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32821435645573543
the lambda is 20.0
the regulation term lambda/alpha is 60.93578664861754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31937669740554353
the lambda is 20.0
the regulation term lambda/alpha is 62.621976376078756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28854899727700123
the lambda is 20.0
the regulation term lambda/alpha is 69.31231849265586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.270454899342465
the lambda is 20.0
the regulation term lambda/alpha is 73.94948306954088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31082430059851823
the lambda is 20.0
the regulation term lambda/alpha is 64.34503338860033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31606998943459363
the lambda is 20.0
the regulation term lambda/alpha is 63.277124271675675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3020334050369172
the lambda is 20.0
the regulation term lambda/alpha is 66.21784102839692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33468983131688657
the lambda is 20.0
the regulation term lambda/alpha is 59.75681998257027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32092544838649667
the lambda is 20.0
the regulation term lambda/alpha is 62.31976959307264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29344021382495367
the lambda is 20.0
the regulation term lambda/alpha is 68.15698414100335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3116020708207608
the lambda is 20.0
the regulation term lambda/alpha is 64.1844258201492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31854527368988445
the lambda is 20.0
the regulation term lambda/alpha is 62.78542377455186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2706525145261768
the lambda is 20.0
the regulation term lambda/alpha is 73.89548933256134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2994227060244461
the lambda is 20.0
the regulation term lambda/alpha is 66.79520155818483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30803156917639996
the lambda is 20.0
the regulation term lambda/alpha is 64.92840994666567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.309143214414346
the lambda is 20.0
the regulation term lambda/alpha is 64.69493447523617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32297748704165924
the lambda is 20.0
the regulation term lambda/alpha is 61.923820707107986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28712043923762054
the lambda is 20.0
the regulation term lambda/alpha is 69.65717959022773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2921716899205782
the lambda is 20.0
the regulation term lambda/alpha is 68.452901803856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2991900271185185
the lambda is 20.0
the regulation term lambda/alpha is 66.8471479234078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3194468188095078
the lambda is 20.0
the regulation term lambda/alpha is 62.60823029803399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26393466805454774
the lambda is 20.0
the regulation term lambda/alpha is 75.77632808686796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3126114828585349
the lambda is 20.0
the regulation term lambda/alpha is 63.977176452761775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3114257878867592
the lambda is 20.0
the regulation term lambda/alpha is 64.22075748997514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3211607962930055
the lambda is 20.0
the regulation term lambda/alpha is 62.27410141850983
1530
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2954759847166625
the lambda is 20.0
the regulation term lambda/alpha is 67.68739604735856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31917634573834663
the lambda is 20.0
the regulation term lambda/alpha is 62.661285107874306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30146184838399426
the lambda is 20.0
the regulation term lambda/alpha is 66.34338675759899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31177363722489976
the lambda is 20.0
the regulation term lambda/alpha is 64.14910567173094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3188464096321519
the lambda is 20.0
the regulation term lambda/alpha is 62.72612579540628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28545860104652615
the lambda is 20.0
the regulation term lambda/alpha is 70.06269885257461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3117171097717931
the lambda is 20.0
the regulation term lambda/alpha is 64.1607386089327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32678565581035346
the lambda is 20.0
the regulation term lambda/alpha is 61.2021967439317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27663874124189797
the lambda is 20.0
the regulation term lambda/alpha is 72.29645388861726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28059089766462547
the lambda is 20.0
the regulation term lambda/alpha is 71.27814967078824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34225260280304676
the lambda is 20.0
the regulation term lambda/alpha is 58.436370786372756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3010122435302596
the lambda is 20.0
the regulation term lambda/alpha is 66.4424800979548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2764510112209478
the lambda is 20.0
the regulation term lambda/alpha is 72.34554835473331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3224395809805078
the lambda is 20.0
the regulation term lambda/alpha is 62.02712439701702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3051635177189516
the lambda is 20.0
the regulation term lambda/alpha is 65.53863367907407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2924507807510131
the lambda is 20.0
the regulation term lambda/alpha is 68.38757601754399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.306354772519305
the lambda is 20.0
the regulation term lambda/alpha is 65.28378792838848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30991256582796817
the lambda is 20.0
the regulation term lambda/alpha is 64.53433066377167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2974190292073354
the lambda is 20.0
the regulation term lambda/alpha is 67.24519292966185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28594339603015073
the lambda is 20.0
the regulation term lambda/alpha is 69.94391294804073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2910256361468506
the lambda is 20.0
the regulation term lambda/alpha is 68.72246811242451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30816910809190723
the lambda is 20.0
the regulation term lambda/alpha is 64.8994317562657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3141168572506695
the lambda is 20.0
the regulation term lambda/alpha is 63.67057207642864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3186411567982315
the lambda is 20.0
the regulation term lambda/alpha is 62.7665308554736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33848223405692024
the lambda is 20.0
the regulation term lambda/alpha is 59.087296134534306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30969729011307273
the lambda is 20.0
the regulation term lambda/alpha is 64.57918954569429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2849919408896882
the lambda is 20.0
the regulation term lambda/alpha is 70.17742304418846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3089266338910821
the lambda is 20.0
the regulation term lambda/alpha is 64.74029043106519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3152613730774646
the lambda is 20.0
the regulation term lambda/alpha is 63.439424261740086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3076044730150838
the lambda is 20.0
the regulation term lambda/alpha is 65.018560373858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2698857452031485
the lambda is 20.0
the regulation term lambda/alpha is 74.1054329673677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30210848156839465
the lambda is 20.0
the regulation term lambda/alpha is 66.20138533075968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3083298776162582
the lambda is 20.0
the regulation term lambda/alpha is 64.86559186097314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29473557202584444
the lambda is 20.0
the regulation term lambda/alpha is 67.85743526826909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30276851527048954
the lambda is 20.0
the regulation term lambda/alpha is 66.05706667396461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32814917205841726
the lambda is 20.0
the regulation term lambda/alpha is 60.94789109033495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3111056835009654
the lambda is 20.0
the regulation term lambda/alpha is 64.28683582676476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30413725222633414
the lambda is 20.0
the regulation term lambda/alpha is 65.75978395805429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3034328758473576
the lambda is 20.0
the regulation term lambda/alpha is 65.91243596841178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29403717163440213
the lambda is 20.0
the regulation term lambda/alpha is 68.0186110104047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33565297954752465
the lambda is 20.0
the regulation term lambda/alpha is 59.585349210845386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29632916471221615
the lambda is 20.0
the regulation term lambda/alpha is 67.49251299453854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29822762781370016
the lambda is 20.0
the regulation term lambda/alpha is 67.06286787250241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3144221828599478
the lambda is 20.0
the regulation term lambda/alpha is 63.60874356281836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30907785387706266
the lambda is 20.0
the regulation term lambda/alpha is 64.7086154802767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2917918747290812
the lambda is 20.0
the regulation term lambda/alpha is 68.54200453172083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2908252109595805
the lambda is 20.0
the regulation term lambda/alpha is 68.76982890860738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.287727445493244
the lambda is 20.0
the regulation term lambda/alpha is 69.51022682495406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32041192105376176
the lambda is 20.0
the regulation term lambda/alpha is 62.419650099860704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2843923199993265
the lambda is 20.0
the regulation term lambda/alpha is 70.3253871273576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.282812542400804
the lambda is 20.0
the regulation term lambda/alpha is 70.71822144173456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3002008411880345
the lambda is 20.0
the regulation term lambda/alpha is 66.62206515095258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2662317266729382
the lambda is 20.0
the regulation term lambda/alpha is 75.12252671737245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31087761612105064
the lambda is 20.0
the regulation term lambda/alpha is 64.33399821302132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3089248768244361
the lambda is 20.0
the regulation term lambda/alpha is 64.74065865328846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27835388237308045
the lambda is 20.0
the regulation term lambda/alpha is 71.8509827471844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30381051889479854
the lambda is 20.0
the regulation term lambda/alpha is 65.83050538459291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.36093044145356346
the lambda is 20.0
the regulation term lambda/alpha is 55.412339063046744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30079909661831766
the lambda is 20.0
the regulation term lambda/alpha is 66.48956138780527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2964680385369262
the lambda is 20.0
the regulation term lambda/alpha is 67.46089763571234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29171148388416934
the lambda is 20.0
the regulation term lambda/alpha is 68.56089357092796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31172470722332174
the lambda is 20.0
the regulation term lambda/alpha is 64.15917486345367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28478779599749077
the lambda is 20.0
the regulation term lambda/alpha is 70.2277284388135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3042143081702616
the lambda is 20.0
the regulation term lambda/alpha is 65.74312733774003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30553556234924567
the lambda is 20.0
the regulation term lambda/alpha is 65.45882857701123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30077588177563186
the lambda is 20.0
the regulation term lambda/alpha is 66.49469326439974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3065155926917114
the lambda is 20.0
the regulation term lambda/alpha is 65.24953534783363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2820450066833105
the lambda is 20.0
the regulation term lambda/alpha is 70.91066860281865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27445347832269845
the lambda is 20.0
the regulation term lambda/alpha is 72.87209519889664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3055852175142489
the lambda is 20.0
the regulation term lambda/alpha is 65.44819203850211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3026004098334382
the lambda is 20.0
the regulation term lambda/alpha is 66.09376375599984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30461891493811555
the lambda is 20.0
the regulation term lambda/alpha is 65.65580474233872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3061065388034969
the lambda is 20.0
the regulation term lambda/alpha is 65.3367290949602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30685456017381324
the lambda is 20.0
the regulation term lambda/alpha is 65.17745732268504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3275985384152756
the lambda is 20.0
the regulation term lambda/alpha is 61.05033342562501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3041305066481389
the lambda is 20.0
the regulation term lambda/alpha is 65.76124250218287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2935105837389923
the lambda is 20.0
the regulation term lambda/alpha is 68.1406433295272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3190227674983291
the lambda is 20.0
the regulation term lambda/alpha is 62.691450384038035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3178302264629761
the lambda is 20.0
the regulation term lambda/alpha is 62.92667699536687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3001623945789575
the lambda is 20.0
the regulation term lambda/alpha is 66.6305985066994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30019537495928605
the lambda is 20.0
the regulation term lambda/alpha is 66.62327826573777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3145745762227802
the lambda is 20.0
the regulation term lambda/alpha is 63.577928770175305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30720781270274594
the lambda is 20.0
the regulation term lambda/alpha is 65.10251098122946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34359392071486605
the lambda is 20.0
the regulation term lambda/alpha is 58.20824756849277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.304424658698244
the lambda is 20.0
the regulation term lambda/alpha is 65.6977003292781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32587370092371276
the lambda is 20.0
the regulation term lambda/alpha is 61.37347059093306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.309337248816469
the lambda is 20.0
the regulation term lambda/alpha is 64.65435403114378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3046171072881868
the lambda is 20.0
the regulation term lambda/alpha is 65.65619435509494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30822903643926447
the lambda is 20.0
the regulation term lambda/alpha is 64.8868134911778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.293908029968315
the lambda is 20.0
the regulation term lambda/alpha is 68.04849803578391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2822765909384329
the lambda is 20.0
the regulation term lambda/alpha is 70.85249234982501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.296672681483836
the lambda is 20.0
the regulation term lambda/alpha is 67.41436353346772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31974046876894024
the lambda is 20.0
the regulation term lambda/alpha is 62.55073083805652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2970618972984833
the lambda is 20.0
the regulation term lambda/alpha is 67.32603602778549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30062199221259334
the lambda is 20.0
the regulation term lambda/alpha is 66.52873215561833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31546445768990056
the lambda is 20.0
the regulation term lambda/alpha is 63.39858425401402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3421711402051778
the lambda is 20.0
the regulation term lambda/alpha is 58.45028306012979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30983314797208744
the lambda is 20.0
the regulation term lambda/alpha is 64.55087239988208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3016139804368289
the lambda is 20.0
the regulation term lambda/alpha is 66.30992360179694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30881292175031116
the lambda is 20.0
the regulation term lambda/alpha is 64.76412932024547
1540
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3053670663000633
the lambda is 20.0
the regulation term lambda/alpha is 65.49494758006213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3256580312862676
the lambda is 20.0
the regulation term lambda/alpha is 61.41411566300089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2936806512400505
the lambda is 20.0
the regulation term lambda/alpha is 68.1011837707084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.278199200251645
the lambda is 20.0
the regulation term lambda/alpha is 71.89093276295908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3078946871130898
the lambda is 20.0
the regulation term lambda/alpha is 64.9572754487121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3019652961412251
the lambda is 20.0
the regulation term lambda/alpha is 66.23277659909061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3102287726279565
the lambda is 20.0
the regulation term lambda/alpha is 64.4685527734241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33348551647361935
the lambda is 20.0
the regulation term lambda/alpha is 59.972619535283826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3247029491325885
the lambda is 20.0
the regulation term lambda/alpha is 61.59475931286735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3037247936882489
the lambda is 20.0
the regulation term lambda/alpha is 65.84908580274985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29465903160595974
the lambda is 20.0
the regulation term lambda/alpha is 67.87506186725513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3176989027261419
the lambda is 20.0
the regulation term lambda/alpha is 62.952688310793775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2924332103362729
the lambda is 20.0
the regulation term lambda/alpha is 68.39168498339068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33477810255560747
the lambda is 20.0
the regulation term lambda/alpha is 59.74106384893543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3115960401089834
the lambda is 20.0
the regulation term lambda/alpha is 64.1856680624209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3248069753694012
the lambda is 20.0
the regulation term lambda/alpha is 61.5750323011201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3144091069691474
the lambda is 20.0
the regulation term lambda/alpha is 63.611388972783715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.322911413762905
the lambda is 20.0
the regulation term lambda/alpha is 61.936491395391904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30364661883235106
the lambda is 20.0
the regulation term lambda/alpha is 65.86603887409782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32152924227773105
the lambda is 20.0
the regulation term lambda/alpha is 62.20274043604522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2812322927289113
the lambda is 20.0
the regulation term lambda/alpha is 71.11558849068102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30744580919419295
the lambda is 20.0
the regulation term lambda/alpha is 65.05211455774743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29624110144725263
the lambda is 20.0
the regulation term lambda/alpha is 67.51257641931605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31444475187852317
the lambda is 20.0
the regulation term lambda/alpha is 63.60417809652754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2819623348712141
the lambda is 20.0
the regulation term lambda/alpha is 70.93145972540968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32376586211725683
the lambda is 20.0
the regulation term lambda/alpha is 61.77303520887168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3275079417135239
the lambda is 20.0
the regulation term lambda/alpha is 61.06722144006603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2994051513249069
the lambda is 20.0
the regulation term lambda/alpha is 66.79911788924602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2992154928932012
the lambda is 20.0
the regulation term lambda/alpha is 66.84145866450368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30146064366002906
the lambda is 20.0
the regulation term lambda/alpha is 66.34365188497014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32919642454862813
the lambda is 20.0
the regulation term lambda/alpha is 60.75400128486404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29492246146231665
the lambda is 20.0
the regulation term lambda/alpha is 67.81443468508239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3054007048921224
the lambda is 20.0
the regulation term lambda/alpha is 65.48773358943183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3333473170569664
the lambda is 20.0
the regulation term lambda/alpha is 59.99748303533566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2988531009800321
the lambda is 20.0
the regulation term lambda/alpha is 66.92251120839566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34300601827629085
the lambda is 20.0
the regulation term lambda/alpha is 58.308014828736994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3274014301882159
the lambda is 20.0
the regulation term lambda/alpha is 61.087088069537266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27534298889594344
the lambda is 20.0
the regulation term lambda/alpha is 72.63667791286424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3000979127701553
the lambda is 20.0
the regulation term lambda/alpha is 66.64491537239708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2914837897113003
the lambda is 20.0
the regulation term lambda/alpha is 68.61445029176055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2736817325336916
the lambda is 20.0
the regulation term lambda/alpha is 73.07758473626988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28606583358873533
the lambda is 20.0
the regulation term lambda/alpha is 69.91397661544282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3158661239665053
the lambda is 20.0
the regulation term lambda/alpha is 63.31796442381651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29020386633737844
the lambda is 20.0
the regulation term lambda/alpha is 68.91706941198663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3078014452403192
the lambda is 20.0
the regulation term lambda/alpha is 64.97695286773195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30764762193436546
the lambda is 20.0
the regulation term lambda/alpha is 65.00944123750408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3012310444817817
the lambda is 20.0
the regulation term lambda/alpha is 66.39421920940022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2680177291335474
the lambda is 20.0
the regulation term lambda/alpha is 74.62192917109016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.331624398887339
the lambda is 20.0
the regulation term lambda/alpha is 60.30919337390037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32448843475680506
the lambda is 20.0
the regulation term lambda/alpha is 61.635478672728155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3192228715250822
the lambda is 20.0
the regulation term lambda/alpha is 62.65215241141813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33121251628228626
the lambda is 20.0
the regulation term lambda/alpha is 60.384191468641156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3115460434725376
the lambda is 20.0
the regulation term lambda/alpha is 64.19596852226748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3141026876527373
the lambda is 20.0
the regulation term lambda/alpha is 63.67344434222547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2996943105649389
the lambda is 20.0
the regulation term lambda/alpha is 66.73466694212176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2851159802150633
the lambda is 20.0
the regulation term lambda/alpha is 70.14689245027226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34496211108584124
the lambda is 20.0
the regulation term lambda/alpha is 57.97738173924599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29710828718651544
the lambda is 20.0
the regulation term lambda/alpha is 67.31552387646668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33000521645164255
the lambda is 20.0
the regulation term lambda/alpha is 60.60510259519097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2866882227271725
the lambda is 20.0
the regulation term lambda/alpha is 69.76219605307277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3136004369749367
the lambda is 20.0
the regulation term lambda/alpha is 63.775421338454386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35009020605567115
the lambda is 20.0
the regulation term lambda/alpha is 57.128133418332794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33363513915218596
the lambda is 20.0
the regulation term lambda/alpha is 59.94572409495842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33433522523165676
the lambda is 20.0
the regulation term lambda/alpha is 59.82019987915496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.311409973182788
the lambda is 20.0
the regulation term lambda/alpha is 64.224018889275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3027807687509065
the lambda is 20.0
the regulation term lambda/alpha is 66.05439335697612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31656001574252873
the lambda is 20.0
the regulation term lambda/alpha is 63.17917300164283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2939031627670667
the lambda is 20.0
the regulation term lambda/alpha is 68.04962495708502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2838674843394146
the lambda is 20.0
the regulation term lambda/alpha is 70.45541001831124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32868165243406416
the lambda is 20.0
the regulation term lambda/alpha is 60.84915252156382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2900752550134736
the lambda is 20.0
the regulation term lambda/alpha is 68.94762532940298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31943011264588234
the lambda is 20.0
the regulation term lambda/alpha is 62.611504702350466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27789691299311214
the lambda is 20.0
the regulation term lambda/alpha is 71.96913339046596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29633487694475497
the lambda is 20.0
the regulation term lambda/alpha is 67.49121199030701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2896486247610753
the lambda is 20.0
the regulation term lambda/alpha is 69.04917990374564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2728285313161302
the lambda is 20.0
the regulation term lambda/alpha is 73.30611612912918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2793871797145389
the lambda is 20.0
the regulation term lambda/alpha is 71.58524603897288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28702964835677974
the lambda is 20.0
the regulation term lambda/alpha is 69.67921298199784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3016912628276838
the lambda is 20.0
the regulation term lambda/alpha is 66.29293739747229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30500551828424893
the lambda is 20.0
the regulation term lambda/alpha is 65.57258410439992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29383478997825196
the lambda is 20.0
the regulation term lambda/alpha is 68.06545951036053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3118005443915059
the lambda is 20.0
the regulation term lambda/alpha is 64.1435698549885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31507989664210223
the lambda is 20.0
the regulation term lambda/alpha is 63.47596344021245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3046764501982195
the lambda is 20.0
the regulation term lambda/alpha is 65.64340626585415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33448325692587716
the lambda is 20.0
the regulation term lambda/alpha is 59.793725353589465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3016469716235122
the lambda is 20.0
the regulation term lambda/alpha is 66.30267127283528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3044234487313581
the lambda is 20.0
the regulation term lambda/alpha is 65.69796145253325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34299358109292294
the lambda is 20.0
the regulation term lambda/alpha is 58.31012911749404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3023815953227567
the lambda is 20.0
the regulation term lambda/alpha is 66.14159164896381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31072819562901216
the lambda is 20.0
the regulation term lambda/alpha is 64.36493463206219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29433260467562855
the lambda is 20.0
the regulation term lambda/alpha is 67.95033809469103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3280503677991786
the lambda is 20.0
the regulation term lambda/alpha is 60.96624775693995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2816194006187955
the lambda is 20.0
the regulation term lambda/alpha is 71.01783455278466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.314678314464637
the lambda is 20.0
the regulation term lambda/alpha is 63.556969389600454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3183807403743865
the lambda is 20.0
the regulation term lambda/alpha is 62.81787012770256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2876142558188972
the lambda is 20.0
the regulation term lambda/alpha is 69.53758235333595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32630965104530957
the lambda is 20.0
the regulation term lambda/alpha is 61.29147555376139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3384245025049316
the lambda is 20.0
the regulation term lambda/alpha is 59.09737578681542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.302065656264409
the lambda is 20.0
the regulation term lambda/alpha is 66.21077102023567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2902579472658608
the lambda is 20.0
the regulation term lambda/alpha is 68.90422876752817
1550
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3241482630074008
the lambda is 20.0
the regulation term lambda/alpha is 61.700160952407664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3200898097164282
the lambda is 20.0
the regulation term lambda/alpha is 62.48246396134343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3255343023127175
the lambda is 20.0
the regulation term lambda/alpha is 61.43745792044806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.334132485164265
the lambda is 20.0
the regulation term lambda/alpha is 59.856496713175524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.304021370025321
the lambda is 20.0
the regulation term lambda/alpha is 65.78484926350494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2999255587326564
the lambda is 20.0
the regulation term lambda/alpha is 66.68321327635611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32237254846076907
the lambda is 20.0
the regulation term lambda/alpha is 62.04002200402584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30349056882778397
the lambda is 20.0
the regulation term lambda/alpha is 65.89990613958426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3076424926988105
the lambda is 20.0
the regulation term lambda/alpha is 65.01052512138006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2955474188987442
the lambda is 20.0
the regulation term lambda/alpha is 67.67103591878123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27974505362455687
the lambda is 20.0
the regulation term lambda/alpha is 71.4936680411937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29445417715765193
the lambda is 20.0
the regulation term lambda/alpha is 67.92228316493511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30837017940622813
the lambda is 20.0
the regulation term lambda/alpha is 64.85711438930421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2992114117500355
the lambda is 20.0
the regulation term lambda/alpha is 66.84237035955105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3244325288418977
the lambda is 20.0
the regulation term lambda/alpha is 61.646099641711295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31318740092562997
the lambda is 20.0
the regulation term lambda/alpha is 63.85952928147718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2827311419955446
the lambda is 20.0
the regulation term lambda/alpha is 70.73858174532174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2857619511491701
the lambda is 20.0
the regulation term lambda/alpha is 69.98832391636294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3124091364951365
the lambda is 20.0
the regulation term lambda/alpha is 64.01861425813759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3522489084427619
the lambda is 20.0
the regulation term lambda/alpha is 56.77803258047531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30513670462741727
the lambda is 20.0
the regulation term lambda/alpha is 65.54439271545752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3116462772596136
the lambda is 20.0
the regulation term lambda/alpha is 64.17532137994773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30127315944507194
the lambda is 20.0
the regulation term lambda/alpha is 66.38493796406844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31821693009184004
the lambda is 20.0
the regulation term lambda/alpha is 62.85020722884805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29417791420318445
the lambda is 20.0
the regulation term lambda/alpha is 67.98606909078255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3117980238603187
the lambda is 20.0
the regulation term lambda/alpha is 64.14408838254771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30588023894469635
the lambda is 20.0
the regulation term lambda/alpha is 65.38506727012212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3099970976020487
the lambda is 20.0
the regulation term lambda/alpha is 64.51673307494808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2827045293771131
the lambda is 20.0
the regulation term lambda/alpha is 70.74524077865425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3151460882287975
the lambda is 20.0
the regulation term lambda/alpha is 63.462631290793325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.318296746243403
the lambda is 20.0
the regulation term lambda/alpha is 62.83444689913955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26905530220720497
the lambda is 20.0
the regulation term lambda/alpha is 74.33416043441356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3110000612692683
the lambda is 20.0
the regulation term lambda/alpha is 64.30866900274889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2955773089001105
the lambda is 20.0
the regulation term lambda/alpha is 67.66419274342518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2896633709907254
the lambda is 20.0
the regulation term lambda/alpha is 69.04566473694864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30271311533318346
the lambda is 20.0
the regulation term lambda/alpha is 66.06915586722052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2872558219260666
the lambda is 20.0
the regulation term lambda/alpha is 69.62435039923253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3135791306727996
the lambda is 20.0
the regulation term lambda/alpha is 63.779754593645976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28566544010205314
the lambda is 20.0
the regulation term lambda/alpha is 70.01196922125077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3112917064769281
the lambda is 20.0
the regulation term lambda/alpha is 64.24841903548219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32526804703738244
the lambda is 20.0
the regulation term lambda/alpha is 61.4877488956099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2985585390611083
the lambda is 20.0
the regulation term lambda/alpha is 66.98853786897197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29920604339629137
the lambda is 20.0
the regulation term lambda/alpha is 66.84356964511733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2988560078967997
the lambda is 20.0
the regulation term lambda/alpha is 66.92186026558434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34180477155897127
the lambda is 20.0
the regulation term lambda/alpha is 58.51293388556285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2952444848345163
the lambda is 20.0
the regulation term lambda/alpha is 67.74046943234161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2772270809673835
the lambda is 20.0
the regulation term lambda/alpha is 72.14302415986933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2901665277661967
the lambda is 20.0
the regulation term lambda/alpha is 68.92593764679539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31327329494938033
the lambda is 20.0
the regulation term lambda/alpha is 63.84202012249931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29062837751587123
the lambda is 20.0
the regulation term lambda/alpha is 68.81640454710174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2964477475714429
the lambda is 20.0
the regulation term lambda/alpha is 67.46551513325319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2869661072404942
the lambda is 20.0
the regulation term lambda/alpha is 69.69464161577396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33021115784579647
the lambda is 20.0
the regulation term lambda/alpha is 60.56730526755759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32342042287623857
the lambda is 20.0
the regulation term lambda/alpha is 61.839013820266025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3012830026160454
the lambda is 20.0
the regulation term lambda/alpha is 66.38276911189699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28210730347357826
the lambda is 20.0
the regulation term lambda/alpha is 70.89500964257442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28794718232860345
the lambda is 20.0
the regulation term lambda/alpha is 69.4571825230647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3074767098136248
the lambda is 20.0
the regulation term lambda/alpha is 65.04557698735258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29279136882443657
the lambda is 20.0
the regulation term lambda/alpha is 68.30802451691255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2785532649124918
the lambda is 20.0
the regulation term lambda/alpha is 71.79955333240501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2980141779750137
the lambda is 20.0
the regulation term lambda/alpha is 67.1109010178598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31716290169090894
the lambda is 20.0
the regulation term lambda/alpha is 63.05907750677284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2839487296380319
the lambda is 20.0
the regulation term lambda/alpha is 70.43525084790946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30255073732426524
the lambda is 20.0
the regulation term lambda/alpha is 66.10461497095798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2855915625719805
the lambda is 20.0
the regulation term lambda/alpha is 70.03008009019595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3120689895912021
the lambda is 20.0
the regulation term lambda/alpha is 64.08839284607933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30689155983184774
the lambda is 20.0
the regulation term lambda/alpha is 65.16959935606707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3295801496448976
the lambda is 20.0
the regulation term lambda/alpha is 60.68326633612119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3351549500459026
the lambda is 20.0
the regulation term lambda/alpha is 59.67389112785239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29134967519112503
the lambda is 20.0
the regulation term lambda/alpha is 68.64603499859756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29530857184916826
the lambda is 20.0
the regulation term lambda/alpha is 67.72576859101535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3049613237148885
the lambda is 20.0
the regulation term lambda/alpha is 65.58208679176055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3008723602232769
the lambda is 20.0
the regulation term lambda/alpha is 66.47337091768094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3081466533488197
the lambda is 20.0
the regulation term lambda/alpha is 64.90416099817301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27864329390553055
the lambda is 20.0
the regulation term lambda/alpha is 71.77635506555802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3050607744120769
the lambda is 20.0
the regulation term lambda/alpha is 65.5607068412668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3166602030811643
the lambda is 20.0
the regulation term lambda/alpha is 63.15918389932229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2860371744919066
the lambda is 20.0
the regulation term lambda/alpha is 69.92098154908147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29899109833947396
the lambda is 20.0
the regulation term lambda/alpha is 66.89162356697334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33594656641413556
the lambda is 20.0
the regulation term lambda/alpha is 59.53327701330084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27987916538286234
the lambda is 20.0
the regulation term lambda/alpha is 71.4594098944124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30706056510428065
the lambda is 20.0
the regulation term lambda/alpha is 65.13373019165718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31640424634924025
the lambda is 20.0
the regulation term lambda/alpha is 63.21027682392236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32481973571915124
the lambda is 20.0
the regulation term lambda/alpha is 61.572613362670154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31660702913574934
the lambda is 20.0
the regulation term lambda/alpha is 63.16979144333761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3287722705362545
the lambda is 20.0
the regulation term lambda/alpha is 60.83238092853257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.286778983496341
the lambda is 20.0
the regulation term lambda/alpha is 69.74011748059348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2828976734812114
the lambda is 20.0
the regulation term lambda/alpha is 70.69694053644558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31411173486897087
the lambda is 20.0
the regulation term lambda/alpha is 63.67161038521161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3355278242723264
the lambda is 20.0
the regulation term lambda/alpha is 59.607575149318414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30362124026836707
the lambda is 20.0
the regulation term lambda/alpha is 65.8715443699599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3098944738708786
the lambda is 20.0
the regulation term lambda/alpha is 64.53809824415666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29751390566229613
the lambda is 20.0
the regulation term lambda/alpha is 67.22374860253329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31123356083295545
the lambda is 20.0
the regulation term lambda/alpha is 64.26042212952206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28959264088069225
the lambda is 20.0
the regulation term lambda/alpha is 69.06252845092045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30403227804344146
the lambda is 20.0
the regulation term lambda/alpha is 65.78248904592398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3141079395944142
the lambda is 20.0
the regulation term lambda/alpha is 63.67237971069631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27232916330525303
the lambda is 20.0
the regulation term lambda/alpha is 73.44053702240495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3124123214036778
the lambda is 20.0
the regulation term lambda/alpha is 64.01796161604449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2760997761415167
the lambda is 20.0
the regulation term lambda/alpha is 72.43758136822564
1560
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3005788575945076
the lambda is 20.0
the regulation term lambda/alpha is 66.53827937219978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3478372911175475
the lambda is 20.0
the regulation term lambda/alpha is 57.49814787179111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29562628760511617
the lambda is 20.0
the regulation term lambda/alpha is 67.6529822906516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30157601421929475
the lambda is 20.0
the regulation term lambda/alpha is 66.31827153686285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33418738139012427
the lambda is 20.0
the regulation term lambda/alpha is 59.84666421815719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3244533731739477
the lambda is 20.0
the regulation term lambda/alpha is 61.642139221272615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.290134856098076
the lambda is 20.0
the regulation term lambda/alpha is 68.93346173215149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3239142152367496
the lambda is 20.0
the regulation term lambda/alpha is 61.744743080762774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2992222205233214
the lambda is 20.0
the regulation term lambda/alpha is 66.83995581952844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32008858571819754
the lambda is 20.0
the regulation term lambda/alpha is 62.48270289027982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32043090396034846
the lambda is 20.0
the regulation term lambda/alpha is 62.41595224683724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2626017236628168
the lambda is 20.0
the regulation term lambda/alpha is 76.1609623921593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2861630953369679
the lambda is 20.0
the regulation term lambda/alpha is 69.89021409783551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.301354157730862
the lambda is 20.0
the regulation term lambda/alpha is 66.36709495099088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32633885998907136
the lambda is 20.0
the regulation term lambda/alpha is 61.2859896632285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2658224523473496
the lambda is 20.0
the regulation term lambda/alpha is 75.23818933799484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3105928520347499
the lambda is 20.0
the regulation term lambda/alpha is 64.39298222408013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28751022388065617
the lambda is 20.0
the regulation term lambda/alpha is 69.56274364803765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33590245196302027
the lambda is 20.0
the regulation term lambda/alpha is 59.54109558629186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31449014078004967
the lambda is 20.0
the regulation term lambda/alpha is 63.594998400880684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3157660152933108
the lambda is 20.0
the regulation term lambda/alpha is 63.33803839346761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3152836817199301
the lambda is 20.0
the regulation term lambda/alpha is 63.434935455258405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3054830285711264
the lambda is 20.0
the regulation term lambda/alpha is 65.47008550212585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2848771555067881
the lambda is 20.0
the regulation term lambda/alpha is 70.20569959153302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3185804931647674
the lambda is 20.0
the regulation term lambda/alpha is 62.77848276685338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3047332666762893
the lambda is 20.0
the regulation term lambda/alpha is 65.63116727667777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31906281185052415
the lambda is 20.0
the regulation term lambda/alpha is 62.683582220072964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3187370289608858
the lambda is 20.0
the regulation term lambda/alpha is 62.74765145801219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30034119835210876
the lambda is 20.0
the regulation term lambda/alpha is 66.590930946985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.329823377801724
the lambda is 20.0
the regulation term lambda/alpha is 60.638515478496984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.297001030412436
the lambda is 20.0
the regulation term lambda/alpha is 67.33983371110406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30507146995828277
the lambda is 20.0
the regulation term lambda/alpha is 65.55840833865885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29127817876048906
the lambda is 20.0
the regulation term lambda/alpha is 68.66288468675683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32985247807252444
the lambda is 20.0
the regulation term lambda/alpha is 60.633165822700335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30344973040985096
the lambda is 20.0
the regulation term lambda/alpha is 65.90877498222596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.326909026670005
the lambda is 20.0
the regulation term lambda/alpha is 61.17909989738153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2864680542812682
the lambda is 20.0
the regulation term lambda/alpha is 69.81581262238417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3201083278454627
the lambda is 20.0
the regulation term lambda/alpha is 62.47884937768727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3027658203911935
the lambda is 20.0
the regulation term lambda/alpha is 66.05765463934692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27827916785340084
the lambda is 20.0
the regulation term lambda/alpha is 71.8702738486559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30572916169269687
the lambda is 20.0
the regulation term lambda/alpha is 65.4173775549189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2892077809027714
the lambda is 20.0
the regulation term lambda/alpha is 69.15443262822791
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27215643749519747
the lambda is 20.0
the regulation term lambda/alpha is 73.4871465252514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3050120343863192
the lambda is 20.0
the regulation term lambda/alpha is 65.5711832493422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33568619369345637
the lambda is 20.0
the regulation term lambda/alpha is 59.57945359606806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29319280564381195
the lambda is 20.0
the regulation term lambda/alpha is 68.21449781512439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29321546524938
the lambda is 20.0
the regulation term lambda/alpha is 68.2092262186443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31802702167106933
the lambda is 20.0
the regulation term lambda/alpha is 62.88773795041135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2857781118028379
the lambda is 20.0
the regulation term lambda/alpha is 69.98436610078194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29762561218939015
the lambda is 20.0
the regulation term lambda/alpha is 67.19851780522592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2913412620380223
the lambda is 20.0
the regulation term lambda/alpha is 68.64801731170454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3203158283378334
the lambda is 20.0
the regulation term lambda/alpha is 62.43837559880504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3312559065873549
the lambda is 20.0
the regulation term lambda/alpha is 60.376281908578854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27215816958001593
the lambda is 20.0
the regulation term lambda/alpha is 73.48667883408841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30192736960432565
the lambda is 20.0
the regulation term lambda/alpha is 66.24109641404786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3221924886006939
the lambda is 20.0
the regulation term lambda/alpha is 62.07469356862259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2868449276177947
the lambda is 20.0
the regulation term lambda/alpha is 69.72408459894022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3071574944794628
the lambda is 20.0
the regulation term lambda/alpha is 65.11317600729174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28427904335908993
the lambda is 20.0
the regulation term lambda/alpha is 70.35340967690256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3389469661614502
the lambda is 20.0
the regulation term lambda/alpha is 59.0062812082331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2912329982443129
the lambda is 20.0
the regulation term lambda/alpha is 68.67353672341129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2901406373783756
the lambda is 20.0
the regulation term lambda/alpha is 68.93208817873307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30654697369763717
the lambda is 20.0
the regulation term lambda/alpha is 65.24285579712496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30763642326746204
the lambda is 20.0
the regulation term lambda/alpha is 65.01180772932017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33799837705239066
the lambda is 20.0
the regulation term lambda/alpha is 59.1718817540356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3029985328937877
the lambda is 20.0
the regulation term lambda/alpha is 66.00692026126328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28103877382138115
the lambda is 20.0
the regulation term lambda/alpha is 71.16455757350882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.307967953789712
the lambda is 20.0
the regulation term lambda/alpha is 64.94182188078078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3189815920084999
the lambda is 20.0
the regulation term lambda/alpha is 62.6995428609782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3292332062063327
the lambda is 20.0
the regulation term lambda/alpha is 60.7472138987884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3058779084242385
the lambda is 20.0
the regulation term lambda/alpha is 65.38556544678907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.312677293491782
the lambda is 20.0
the regulation term lambda/alpha is 63.96371088112176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3134273916808523
the lambda is 20.0
the regulation term lambda/alpha is 63.8106321618661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2977298166019619
the lambda is 20.0
the regulation term lambda/alpha is 67.1749985549422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30766585252640866
the lambda is 20.0
the regulation term lambda/alpha is 65.00558913434597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3196053258084467
the lambda is 20.0
the regulation term lambda/alpha is 62.57717999351133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28566882727008774
the lambda is 20.0
the regulation term lambda/alpha is 70.01113909110863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30477595033692356
the lambda is 20.0
the regulation term lambda/alpha is 65.62197567718323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31717527943074547
the lambda is 20.0
the regulation term lambda/alpha is 63.05661663133162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3107587773184924
the lambda is 20.0
the regulation term lambda/alpha is 64.35860049578672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28653252730923634
the lambda is 20.0
the regulation term lambda/alpha is 69.80010328256823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2792437006476009
the lambda is 20.0
the regulation term lambda/alpha is 71.62202747498873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2949560319671969
the lambda is 20.0
the regulation term lambda/alpha is 67.80671636586253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2860970412366516
the lambda is 20.0
the regulation term lambda/alpha is 69.90635035423715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32042075231749806
the lambda is 20.0
the regulation term lambda/alpha is 62.41792972317357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2824836930320288
the lambda is 20.0
the regulation term lambda/alpha is 70.80054705222345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33704182346915523
the lambda is 20.0
the regulation term lambda/alpha is 59.33981662614142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30570589903097933
the lambda is 20.0
the regulation term lambda/alpha is 65.42235548412907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33428968672450715
the lambda is 20.0
the regulation term lambda/alpha is 59.82834886701809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2883660461998383
the lambda is 20.0
the regulation term lambda/alpha is 69.35629302951969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3112397450403452
the lambda is 20.0
the regulation term lambda/alpha is 64.25914530102013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29624287630995344
the lambda is 20.0
the regulation term lambda/alpha is 67.51217193514678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3134552292764864
the lambda is 20.0
the regulation term lambda/alpha is 63.80496521357695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28930656218114065
the lambda is 20.0
the regulation term lambda/alpha is 69.13082043219468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.23387236170049266
the lambda is 20.0
the regulation term lambda/alpha is 85.51673166756184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34377294899805905
the lambda is 20.0
the regulation term lambda/alpha is 58.177934180949535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2968716817356987
the lambda is 20.0
the regulation term lambda/alpha is 67.36917405886412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2937670201877461
the lambda is 20.0
the regulation term lambda/alpha is 68.08116168798672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27448446115621844
the lambda is 20.0
the regulation term lambda/alpha is 72.86386965496499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3181169685534806
the lambda is 20.0
the regulation term lambda/alpha is 62.86995657899864
1570
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3014924473759689
the lambda is 20.0
the regulation term lambda/alpha is 66.33665345208293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28779465284822403
the lambda is 20.0
the regulation term lambda/alpha is 69.49399442298714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3043156492248263
the lambda is 20.0
the regulation term lambda/alpha is 65.7212340244262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29869393089293905
the lambda is 20.0
the regulation term lambda/alpha is 66.95817333887713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32258540795984664
the lambda is 20.0
the regulation term lambda/alpha is 61.99908460363301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2906344220062477
the lambda is 20.0
the regulation term lambda/alpha is 68.8149733329594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3195625303932761
the lambda is 20.0
the regulation term lambda/alpha is 62.58556025134297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2945190139865495
the lambda is 20.0
the regulation term lambda/alpha is 67.90733042761507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32887805616914234
the lambda is 20.0
the regulation term lambda/alpha is 60.81281382213588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30993143090546005
the lambda is 20.0
the regulation term lambda/alpha is 64.53040255249459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29159616453427323
the lambda is 20.0
the regulation term lambda/alpha is 68.58800777418753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2690855594669023
the lambda is 20.0
the regulation term lambda/alpha is 74.32580194798604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3251489009093465
the lambda is 20.0
the regulation term lambda/alpha is 61.51028019490714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31423969542238145
the lambda is 20.0
the regulation term lambda/alpha is 63.64568286994183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2938098910524763
the lambda is 20.0
the regulation term lambda/alpha is 68.0712277192461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28392023987597276
the lambda is 20.0
the regulation term lambda/alpha is 70.44231861996442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30749250551590473
the lambda is 20.0
the regulation term lambda/alpha is 65.04223563577396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29603692801905535
the lambda is 20.0
the regulation term lambda/alpha is 67.55913910413446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2951913060480333
the lambda is 20.0
the regulation term lambda/alpha is 67.75267289459269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2967768999849632
the lambda is 20.0
the regulation term lambda/alpha is 67.39068977745013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31081310764824943
the lambda is 20.0
the regulation term lambda/alpha is 64.34735057130929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.340045263750989
the lambda is 20.0
the regulation term lambda/alpha is 58.81569935538275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30937914027041497
the lambda is 20.0
the regulation term lambda/alpha is 64.64559951430101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2869089508045857
the lambda is 20.0
the regulation term lambda/alpha is 69.70852580204806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31634722836760637
the lambda is 20.0
the regulation term lambda/alpha is 63.2216697557385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29089369915247193
the lambda is 20.0
the regulation term lambda/alpha is 68.75363769744975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2716822212296433
the lambda is 20.0
the regulation term lambda/alpha is 73.61541697310665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.301232912131411
the lambda is 20.0
the regulation term lambda/alpha is 66.39380756401253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31885846948307783
the lambda is 20.0
the regulation term lambda/alpha is 62.72375337065156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.287374664197611
the lambda is 20.0
the regulation term lambda/alpha is 69.59555761758857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3306042410668621
the lambda is 20.0
the regulation term lambda/alpha is 60.49529169819439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33461376707698764
the lambda is 20.0
the regulation term lambda/alpha is 59.770403874023565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2962168942538497
the lambda is 20.0
the regulation term lambda/alpha is 67.51809362655916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3138898104121393
the lambda is 20.0
the regulation term lambda/alpha is 63.71662709834344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2831369752913338
the lambda is 20.0
the regulation term lambda/alpha is 70.63718887093782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2836401992798354
the lambda is 20.0
the regulation term lambda/alpha is 70.51186697365236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33643512792906116
the lambda is 20.0
the regulation term lambda/alpha is 59.446824483253984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.295174198381772
the lambda is 20.0
the regulation term lambda/alpha is 67.75659969484335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2988531213854735
the lambda is 20.0
the regulation term lambda/alpha is 66.92250663898253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29640007817136343
the lambda is 20.0
the regulation term lambda/alpha is 67.47636546990726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3262745390808373
the lambda is 20.0
the regulation term lambda/alpha is 61.29807142274387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3008827954744235
the lambda is 20.0
the regulation term lambda/alpha is 66.47106548071173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30370633325033136
the lambda is 20.0
the regulation term lambda/alpha is 65.8530883632081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31000511608581544
the lambda is 20.0
the regulation term lambda/alpha is 64.51506430772456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.273353010915948
the lambda is 20.0
the regulation term lambda/alpha is 73.16546444095947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31486155700762103
the lambda is 20.0
the regulation term lambda/alpha is 63.51998062283581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2887799690763003
the lambda is 20.0
the regulation term lambda/alpha is 69.25688116101874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2904257508988723
the lambda is 20.0
the regulation term lambda/alpha is 68.86441693995688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2871806982738795
the lambda is 20.0
the regulation term lambda/alpha is 69.64256344598178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3144971051885442
the lambda is 20.0
the regulation term lambda/alpha is 63.59359011590838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31865870844208277
the lambda is 20.0
the regulation term lambda/alpha is 62.76307369028034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31215154439883896
the lambda is 20.0
the regulation term lambda/alpha is 64.07144337061428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30647641847923324
the lambda is 20.0
the regulation term lambda/alpha is 65.25787562789336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30142888107993276
the lambda is 20.0
the regulation term lambda/alpha is 66.35064273982562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3012998198337143
the lambda is 20.0
the regulation term lambda/alpha is 66.37906392057549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3045823926207829
the lambda is 20.0
the regulation term lambda/alpha is 65.66367749596343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31467642402704116
the lambda is 20.0
the regulation term lambda/alpha is 63.557351211927255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3114681042027308
the lambda is 20.0
the regulation term lambda/alpha is 64.21203240439105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31822209463886314
the lambda is 20.0
the regulation term lambda/alpha is 62.84918720900621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28320783178609504
the lambda is 20.0
the regulation term lambda/alpha is 70.61951597124569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2883939163744479
the lambda is 20.0
the regulation term lambda/alpha is 69.34959048869877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.295026402492401
the lambda is 20.0
the regulation term lambda/alpha is 67.79054291764665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31855345703757176
the lambda is 20.0
the regulation term lambda/alpha is 62.783810874295746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31157414240956127
the lambda is 20.0
the regulation term lambda/alpha is 64.19017908652441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27498868163835966
the lambda is 20.0
the regulation term lambda/alpha is 72.73026613619756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31730893200672666
the lambda is 20.0
the regulation term lambda/alpha is 63.03005677626503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3272069609125588
the lambda is 20.0
the regulation term lambda/alpha is 61.12339402628022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3172563454816124
the lambda is 20.0
the regulation term lambda/alpha is 63.04050426363864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3439363408301126
the lambda is 20.0
the regulation term lambda/alpha is 58.150295928975424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3092539145459461
the lambda is 20.0
the regulation term lambda/alpha is 64.67177636009708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30587902566124064
the lambda is 20.0
the regulation term lambda/alpha is 65.38532662304833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30188007975623643
the lambda is 20.0
the regulation term lambda/alpha is 66.25147315500146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3385596225832801
the lambda is 20.0
the regulation term lambda/alpha is 59.07378986128309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33472505910421074
the lambda is 20.0
the regulation term lambda/alpha is 59.75053093880656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28876418799213965
the lambda is 20.0
the regulation term lambda/alpha is 69.2606660786635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3078274681155981
the lambda is 20.0
the regulation term lambda/alpha is 64.97145989743002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.301976529575311
the lambda is 20.0
the regulation term lambda/alpha is 66.23031276015816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3052236421952198
the lambda is 20.0
the regulation term lambda/alpha is 65.52572355193928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3038342875035125
the lambda is 20.0
the regulation term lambda/alpha is 65.82535553946916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28048291571665657
the lambda is 20.0
the regulation term lambda/alpha is 71.30559074836476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2872146815199389
the lambda is 20.0
the regulation term lambda/alpha is 69.63432333667653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30868207001931924
the lambda is 20.0
the regulation term lambda/alpha is 64.79158312871323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2907096278838522
the lambda is 20.0
the regulation term lambda/alpha is 68.79717106579848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3093382384365584
the lambda is 20.0
the regulation term lambda/alpha is 64.65414719202832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31913903244013575
the lambda is 20.0
the regulation term lambda/alpha is 62.66861137943573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33732421729908724
the lambda is 20.0
the regulation term lambda/alpha is 59.290139795291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2854017535650441
the lambda is 20.0
the regulation term lambda/alpha is 70.07665422574892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3069559775421181
the lambda is 20.0
the regulation term lambda/alpha is 65.15592287905766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3100082157974134
the lambda is 20.0
the regulation term lambda/alpha is 64.51441923419783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32735900963437664
the lambda is 20.0
the regulation term lambda/alpha is 61.09500399068827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27608949118993203
the lambda is 20.0
the regulation term lambda/alpha is 72.44027983028616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2732503806739575
the lambda is 20.0
the regulation term lambda/alpha is 73.19294469296278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2967378229363014
the lambda is 20.0
the regulation term lambda/alpha is 67.39956437670993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32918006235617947
the lambda is 20.0
the regulation term lambda/alpha is 60.75702111739561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33235821776259916
the lambda is 20.0
the regulation term lambda/alpha is 60.17603576838844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3222237390821637
the lambda is 20.0
the regulation term lambda/alpha is 62.06867332918699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3042664468722918
the lambda is 20.0
the regulation term lambda/alpha is 65.7318616810696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2840696463189755
the lambda is 20.0
the regulation term lambda/alpha is 70.40526947938127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31209466129473223
the lambda is 20.0
the regulation term lambda/alpha is 64.08312118198215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26976393325211506
the lambda is 20.0
the regulation term lambda/alpha is 74.13889528852795
1580
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3235462801179115
the lambda is 20.0
the regulation term lambda/alpha is 61.81495887608816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2917848214271121
the lambda is 20.0
the regulation term lambda/alpha is 68.54366139465553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2743990729780101
the lambda is 20.0
the regulation term lambda/alpha is 72.88654361307835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30927012417492866
the lambda is 20.0
the regulation term lambda/alpha is 64.66838674882041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31583467129537857
the lambda is 20.0
the regulation term lambda/alpha is 63.324269998512506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29533143088414177
the lambda is 20.0
the regulation term lambda/alpha is 67.72052652887454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30509284246032037
the lambda is 20.0
the regulation term lambda/alpha is 65.55381581133341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31070624384763984
the lambda is 20.0
the regulation term lambda/alpha is 64.36948209449999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3472210043121308
the lambda is 20.0
the regulation term lambda/alpha is 57.600202037377905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30372702168674814
the lambda is 20.0
the regulation term lambda/alpha is 65.84860276484453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33156183579586707
the lambda is 20.0
the regulation term lambda/alpha is 60.320573240864235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3477019379842758
the lambda is 20.0
the regulation term lambda/alpha is 57.52053070496393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2990115501963561
the lambda is 20.0
the regulation term lambda/alpha is 66.88704829919219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30299489639494237
the lambda is 20.0
the regulation term lambda/alpha is 66.00771246632074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30507066918642123
the lambda is 20.0
the regulation term lambda/alpha is 65.55858042117607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30053625886353924
the lambda is 20.0
the regulation term lambda/alpha is 66.54771066768735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3192389137758594
the lambda is 20.0
the regulation term lambda/alpha is 62.64900404354272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30409697769013616
the lambda is 20.0
the regulation term lambda/alpha is 65.76849316923918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27160708154926494
the lambda is 20.0
the regulation term lambda/alpha is 73.63578256472057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30536117541433094
the lambda is 20.0
the regulation term lambda/alpha is 65.4962110781205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3175491052154746
the lambda is 20.0
the regulation term lambda/alpha is 62.982384996578396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3103641851774638
the lambda is 20.0
the regulation term lambda/alpha is 64.44042500768624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3273637639591219
the lambda is 20.0
the regulation term lambda/alpha is 61.09411670406322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.308011379672836
the lambda is 20.0
the regulation term lambda/alpha is 64.93266586852613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2970260380041673
the lambda is 20.0
the regulation term lambda/alpha is 67.33416415068432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30293560867870944
the lambda is 20.0
the regulation term lambda/alpha is 66.02063087674782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29750370331489806
the lambda is 20.0
the regulation term lambda/alpha is 67.22605391849743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2710940437166766
the lambda is 20.0
the regulation term lambda/alpha is 73.77513620661553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26979639168605796
the lambda is 20.0
the regulation term lambda/alpha is 74.12997584961224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3034301214663766
the lambda is 20.0
the regulation term lambda/alpha is 65.91303428725753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29698938838018696
the lambda is 20.0
the regulation term lambda/alpha is 67.34247344352005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29922885384666575
the lambda is 20.0
the regulation term lambda/alpha is 66.83847410734202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3177240891572194
the lambda is 20.0
the regulation term lambda/alpha is 62.9476979635101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28688314645689
the lambda is 20.0
the regulation term lambda/alpha is 69.71479589166248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3347644867987624
the lambda is 20.0
the regulation term lambda/alpha is 59.7434936759664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29879784031866435
the lambda is 20.0
the regulation term lambda/alpha is 66.93488807907794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30049682937335015
the lambda is 20.0
the regulation term lambda/alpha is 66.556442680968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2875358240222324
the lambda is 20.0
the regulation term lambda/alpha is 69.55655027685731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3346000667470879
the lambda is 20.0
the regulation term lambda/alpha is 59.772851196462184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32192696835288115
the lambda is 20.0
the regulation term lambda/alpha is 62.12589178945998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3263760130124024
the lambda is 20.0
the regulation term lambda/alpha is 61.27901317073812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3055698649189318
the lambda is 20.0
the regulation term lambda/alpha is 65.45148031958594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3154880645089183
the lambda is 20.0
the regulation term lambda/alpha is 63.39384036962398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3306752981597757
the lambda is 20.0
the regulation term lambda/alpha is 60.48229217997529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3155019027362924
the lambda is 20.0
the regulation term lambda/alpha is 63.39105985270936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3264667456518345
the lambda is 20.0
the regulation term lambda/alpha is 61.26198231941611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2956623019802888
the lambda is 20.0
the regulation term lambda/alpha is 67.64474153804484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31527290359847787
the lambda is 20.0
the regulation term lambda/alpha is 63.437104082599504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29568652292185116
the lambda is 20.0
the regulation term lambda/alpha is 67.63920046936303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2691303079035075
the lambda is 20.0
the regulation term lambda/alpha is 74.31344375814666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3255224616874746
the lambda is 20.0
the regulation term lambda/alpha is 61.43969265998444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2872259092838527
the lambda is 20.0
the regulation term lambda/alpha is 69.63160130597717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3401325002248349
the lambda is 20.0
the regulation term lambda/alpha is 58.80061442755271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27633663397242525
the lambda is 20.0
the regulation term lambda/alpha is 72.37549257401658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3235085730552627
the lambda is 20.0
the regulation term lambda/alpha is 61.822163818154955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2731356892411625
the lambda is 20.0
the regulation term lambda/alpha is 73.22367888123618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2955965770485482
the lambda is 20.0
the regulation term lambda/alpha is 67.65978212499815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.302132891657471
the lambda is 20.0
the regulation term lambda/alpha is 66.19603675151683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28883874529387144
the lambda is 20.0
the regulation term lambda/alpha is 69.24278797725535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3044178960113093
the lambda is 20.0
the regulation term lambda/alpha is 65.69915981305182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.327872442517176
the lambda is 20.0
the regulation term lambda/alpha is 60.99933207699294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3032139875358372
the lambda is 20.0
the regulation term lambda/alpha is 65.9600177502899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3045520925114773
the lambda is 20.0
the regulation term lambda/alpha is 65.67021042302076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31154573711164407
the lambda is 20.0
the regulation term lambda/alpha is 64.19603164986621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3139649108562198
the lambda is 20.0
the regulation term lambda/alpha is 63.701386073550744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29776799952247135
the lambda is 20.0
the regulation term lambda/alpha is 67.16638467556578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30759871778876063
the lambda is 20.0
the regulation term lambda/alpha is 65.01977688260305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30729883397278773
the lambda is 20.0
the regulation term lambda/alpha is 65.08322775403391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27103157250759286
the lambda is 20.0
the regulation term lambda/alpha is 73.79214094859634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29588494192910814
the lambda is 20.0
the regulation term lambda/alpha is 67.59384194952325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2763698510218978
the lambda is 20.0
the regulation term lambda/alpha is 72.3667937224286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28210630618797605
the lambda is 20.0
the regulation term lambda/alpha is 70.89526026643796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.292261161834138
the lambda is 20.0
the regulation term lambda/alpha is 68.43194584763289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28856184800519924
the lambda is 20.0
the regulation term lambda/alpha is 69.30923175831492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2874128052720607
the lambda is 20.0
the regulation term lambda/alpha is 69.58632194925447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3168822687982288
the lambda is 20.0
the regulation term lambda/alpha is 63.11492301494084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2778395001721718
the lambda is 20.0
the regulation term lambda/alpha is 71.98400510944766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2943982169331283
the lambda is 20.0
the regulation term lambda/alpha is 67.93519406587623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2797206591669977
the lambda is 20.0
the regulation term lambda/alpha is 71.49990300880738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2983557962641974
the lambda is 20.0
the regulation term lambda/alpha is 67.03405883319853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29242362599781335
the lambda is 20.0
the regulation term lambda/alpha is 68.39392655691081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2868272570023637
the lambda is 20.0
the regulation term lambda/alpha is 69.72838010243629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28397753433512307
the lambda is 20.0
the regulation term lambda/alpha is 70.42810638815504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26805406869407533
the lambda is 20.0
the regulation term lambda/alpha is 74.61181282357477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29543504965585843
the lambda is 20.0
the regulation term lambda/alpha is 67.69677471680248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.285537100810698
the lambda is 20.0
the regulation term lambda/alpha is 70.04343723885943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3040710177413482
the lambda is 20.0
the regulation term lambda/alpha is 65.77410812961001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29101245759288286
the lambda is 20.0
the regulation term lambda/alpha is 68.72558022234004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3295176746726012
the lambda is 20.0
the regulation term lambda/alpha is 60.69477159266615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30253923038260877
the lambda is 20.0
the regulation term lambda/alpha is 66.1071292298418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32400580418980884
the lambda is 20.0
the regulation term lambda/alpha is 61.72728926881697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3018942883449792
the lambda is 20.0
the regulation term lambda/alpha is 66.24835504388773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3220683552122011
the lambda is 20.0
the regulation term lambda/alpha is 62.09861874452895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30870758960696976
the lambda is 20.0
the regulation term lambda/alpha is 64.78622707482815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3117789566375008
the lambda is 20.0
the regulation term lambda/alpha is 64.14801119260143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30254629868380084
the lambda is 20.0
the regulation term lambda/alpha is 66.10558478820636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31769847750503105
the lambda is 20.0
the regulation term lambda/alpha is 62.95277256934063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3219630777073151
the lambda is 20.0
the regulation term lambda/alpha is 62.118924140057054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35834224058879555
the lambda is 20.0
the regulation term lambda/alpha is 55.812566129903665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3432934899395677
the lambda is 20.0
the regulation term lambda/alpha is 58.2591880886548
1590
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3147108886560933
the lambda is 20.0
the regulation term lambda/alpha is 63.55039091721864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30382967575145803
the lambda is 20.0
the regulation term lambda/alpha is 65.82635468551338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32427946170847305
the lambda is 20.0
the regulation term lambda/alpha is 61.67519797470239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2797451581419279
the lambda is 20.0
the regulation term lambda/alpha is 71.49364132998883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3063925866672626
the lambda is 20.0
the regulation term lambda/alpha is 65.27573077908598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2975664012893389
the lambda is 20.0
the regulation term lambda/alpha is 67.2118892231821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3294334750767154
the lambda is 20.0
the regulation term lambda/alpha is 60.71028451295846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.346250622222315
the lambda is 20.0
the regulation term lambda/alpha is 57.76162905249228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2913809588743245
the lambda is 20.0
the regulation term lambda/alpha is 68.63866491916583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3181266547250984
the lambda is 20.0
the regulation term lambda/alpha is 62.86804234396054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3154975325152166
the lambda is 20.0
the regulation term lambda/alpha is 63.39193793547463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3325797568483468
the lambda is 20.0
the regulation term lambda/alpha is 60.13595111598993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32934482657497244
the lambda is 20.0
the regulation term lambda/alpha is 60.726625670700116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.304567438923326
the lambda is 20.0
the regulation term lambda/alpha is 65.66690146097642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2937617533890234
the lambda is 20.0
the regulation term lambda/alpha is 68.08238230221332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28934699210194437
the lambda is 20.0
the regulation term lambda/alpha is 69.12116091033525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3298448989136711
the lambda is 20.0
the regulation term lambda/alpha is 60.63455904841662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3330716387500885
the lambda is 20.0
the regulation term lambda/alpha is 60.047142035430014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3334756038848485
the lambda is 20.0
the regulation term lambda/alpha is 59.97440222615548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3086422809321541
the lambda is 20.0
the regulation term lambda/alpha is 64.79993583379591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3197429012742636
the lambda is 20.0
the regulation term lambda/alpha is 62.55025497139886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3385391927862114
the lambda is 20.0
the regulation term lambda/alpha is 59.077354782464035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27534216811269
the lambda is 20.0
the regulation term lambda/alpha is 72.63689443970146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3300967415157875
the lambda is 20.0
the regulation term lambda/alpha is 60.588298776173964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32130021724941527
the lambda is 20.0
the regulation term lambda/alpha is 62.247078981819136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30325238513251657
the lambda is 20.0
the regulation term lambda/alpha is 65.95166594076518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28334791656991115
the lambda is 20.0
the regulation term lambda/alpha is 70.58460228722151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31219600070287645
the lambda is 20.0
the regulation term lambda/alpha is 64.06231968049592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28903432563430076
the lambda is 20.0
the regulation term lambda/alpha is 69.19593358369795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3147663751453505
the lambda is 20.0
the regulation term lambda/alpha is 63.53918836077884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3038907631056475
the lambda is 20.0
the regulation term lambda/alpha is 65.81312243783799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28212916341564137
the lambda is 20.0
the regulation term lambda/alpha is 70.88951655286832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3300136363042838
the lambda is 20.0
the regulation term lambda/alpha is 60.60355633777302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30125781231379506
the lambda is 20.0
the regulation term lambda/alpha is 66.38831984601838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28780262408164464
the lambda is 20.0
the regulation term lambda/alpha is 69.49206965648216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30245666152705686
the lambda is 20.0
the regulation term lambda/alpha is 66.12517607984924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3178388571018138
the lambda is 20.0
the regulation term lambda/alpha is 62.92496827596309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30725269799015203
the lambda is 20.0
the regulation term lambda/alpha is 65.0930004222161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3006688040165608
the lambda is 20.0
the regulation term lambda/alpha is 66.51837414731726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2924668551565766
the lambda is 20.0
the regulation term lambda/alpha is 68.38381733647286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.312502756061782
the lambda is 20.0
the regulation term lambda/alpha is 63.99943556352503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31678863005738733
the lambda is 20.0
the regulation term lambda/alpha is 63.13357899359245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.298167622233446
the lambda is 20.0
the regulation term lambda/alpha is 67.07636412762916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3102062329465005
the lambda is 20.0
the regulation term lambda/alpha is 64.47323707853828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3144330925441777
the lambda is 20.0
the regulation term lambda/alpha is 63.6065365708605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31735074109340095
the lambda is 20.0
the regulation term lambda/alpha is 63.02175293837965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3332168746847105
the lambda is 20.0
the regulation term lambda/alpha is 60.02096988312486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3048451949988075
the lambda is 20.0
the regulation term lambda/alpha is 65.60706984434586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3131191022145939
the lambda is 20.0
the regulation term lambda/alpha is 63.87345856112332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2788595847379425
the lambda is 20.0
the regulation term lambda/alpha is 71.72068343569738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34359604292686236
the lambda is 20.0
the regulation term lambda/alpha is 58.20788804677005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2718370000382902
the lambda is 20.0
the regulation term lambda/alpha is 73.57350175724002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.337028158476676
the lambda is 20.0
the regulation term lambda/alpha is 59.34222259171884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30111937378290965
the lambda is 20.0
the regulation term lambda/alpha is 66.41884163328159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.306817691607731
the lambda is 20.0
the regulation term lambda/alpha is 65.18528933321801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3008623645741467
the lambda is 20.0
the regulation term lambda/alpha is 66.47557938431031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2939578414830347
the lambda is 20.0
the regulation term lambda/alpha is 68.03696713480687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3116319557564713
the lambda is 20.0
the regulation term lambda/alpha is 64.17827065087398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28736117900626434
the lambda is 20.0
the regulation term lambda/alpha is 69.59882357513577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30576813575942985
the lambda is 20.0
the regulation term lambda/alpha is 65.40903927195168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2888203698810567
the lambda is 20.0
the regulation term lambda/alpha is 69.2471933618688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3037386845589479
the lambda is 20.0
the regulation term lambda/alpha is 65.84607432879861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3430554475987804
the lambda is 20.0
the regulation term lambda/alpha is 58.29961348811154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.315823485567212
the lambda is 20.0
the regulation term lambda/alpha is 63.32651279584367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31187216442540666
the lambda is 20.0
the regulation term lambda/alpha is 64.12883957389401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3215265427785945
the lambda is 20.0
the regulation term lambda/alpha is 62.20326268295724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32228049149923294
the lambda is 20.0
the regulation term lambda/alpha is 62.05774326258778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30191104952067727
the lambda is 20.0
the regulation term lambda/alpha is 66.24467713835774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29858211035662247
the lambda is 20.0
the regulation term lambda/alpha is 66.9832495192437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32025823567290435
the lambda is 20.0
the regulation term lambda/alpha is 62.449604014015094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3301327088096424
the lambda is 20.0
the regulation term lambda/alpha is 60.58169780302559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30965437144265245
the lambda is 20.0
the regulation term lambda/alpha is 64.58814034118673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34533084216818977
the lambda is 20.0
the regulation term lambda/alpha is 57.91547570564001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2942965392615319
the lambda is 20.0
the regulation term lambda/alpha is 67.95866526390459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31987370422224676
the lambda is 20.0
the regulation term lambda/alpha is 62.524676883424256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3391005642689521
the lambda is 20.0
the regulation term lambda/alpha is 58.97955387693583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3311062573837915
the lambda is 20.0
the regulation term lambda/alpha is 60.403570014134836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3253832688628701
the lambda is 20.0
the regulation term lambda/alpha is 61.46597540154661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28526188852888823
the lambda is 20.0
the regulation term lambda/alpha is 70.11101308745145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28968989827869096
the lambda is 20.0
the regulation term lambda/alpha is 69.03934213390954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30043791100007633
the lambda is 20.0
the regulation term lambda/alpha is 66.56949495296857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3262750786348595
the lambda is 20.0
the regulation term lambda/alpha is 61.29797005545242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3323472562458469
the lambda is 20.0
the regulation term lambda/alpha is 60.17802050156064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3031208317229909
the lambda is 20.0
the regulation term lambda/alpha is 65.98028873936694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31551219898118155
the lambda is 20.0
the regulation term lambda/alpha is 63.388991185069465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31811020763395603
the lambda is 20.0
the regulation term lambda/alpha is 62.87129277855069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.300632850987637
the lambda is 20.0
the regulation term lambda/alpha is 66.52632915629857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31682064268660237
the lambda is 20.0
the regulation term lambda/alpha is 63.12719976325506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2937791867016529
the lambda is 20.0
the regulation term lambda/alpha is 68.07834218804267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3306544520602247
the lambda is 20.0
the regulation term lambda/alpha is 60.48610528418726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31130437036363395
the lambda is 20.0
the regulation term lambda/alpha is 64.24580540465283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30181450094520634
the lambda is 20.0
the regulation term lambda/alpha is 66.26586839719457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3149652745146248
the lambda is 20.0
the regulation term lambda/alpha is 63.49906360572882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3140434594549041
the lambda is 20.0
the regulation term lambda/alpha is 63.68545307300678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2939520941753818
the lambda is 20.0
the regulation term lambda/alpha is 68.03829738347541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30707658980937175
the lambda is 20.0
the regulation term lambda/alpha is 65.1303312063472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2959454832637725
the lambda is 20.0
the regulation term lambda/alpha is 67.58001433045779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34053777953863906
the lambda is 20.0
the regulation term lambda/alpha is 58.73063490076203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2670001360897904
the lambda is 20.0
the regulation term lambda/alpha is 74.90632886147343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2818409758773157
the lambda is 20.0
the regulation term lambda/alpha is 70.96200237649589
1600
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30037631187404673
the lambda is 20.0
the regulation term lambda/alpha is 66.58314657111299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3097467541931656
the lambda is 20.0
the regulation term lambda/alpha is 64.56887676546084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3097420474481275
the lambda is 20.0
the regulation term lambda/alpha is 64.5698579342845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30653512474171446
the lambda is 20.0
the regulation term lambda/alpha is 65.24537772580528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.291850525991696
the lambda is 20.0
the regulation term lambda/alpha is 68.52823010012001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31243922975826255
the lambda is 20.0
the regulation term lambda/alpha is 64.01244816623766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28730250929227547
the lambda is 20.0
the regulation term lambda/alpha is 69.61303627060848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2876016101901886
the lambda is 20.0
the regulation term lambda/alpha is 69.54063986906806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32781621059870913
the lambda is 20.0
the regulation term lambda/alpha is 61.00979559086745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.316906868885821
the lambda is 20.0
the regulation term lambda/alpha is 63.11002368082416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.306455293085037
the lambda is 20.0
the regulation term lambda/alpha is 65.26237415795029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2741559882669426
the lambda is 20.0
the regulation term lambda/alpha is 72.95116961124418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3311198181434667
the lambda is 20.0
the regulation term lambda/alpha is 60.401096231982265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.312614589996282
the lambda is 20.0
the regulation term lambda/alpha is 63.97654057105225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30565891480519364
the lambda is 20.0
the regulation term lambda/alpha is 65.43241185275636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3175390751396303
the lambda is 20.0
the regulation term lambda/alpha is 62.984374415040016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2878766601642473
the lambda is 20.0
the regulation term lambda/alpha is 69.47419769490536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2926189647870684
the lambda is 20.0
the regulation term lambda/alpha is 68.34826995766835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3010159247287999
the lambda is 20.0
the regulation term lambda/alpha is 66.44166755635598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2882211078593334
the lambda is 20.0
the regulation term lambda/alpha is 69.39117037105075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3004180579612509
the lambda is 20.0
the regulation term lambda/alpha is 66.57389417842413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2830205557524768
the lambda is 20.0
the regulation term lambda/alpha is 70.66624523729483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27445110802971057
the lambda is 20.0
the regulation term lambda/alpha is 72.872724557683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32106681826025574
the lambda is 20.0
the regulation term lambda/alpha is 62.292329392282646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2960852532399908
the lambda is 20.0
the regulation term lambda/alpha is 67.54811251538108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3133719020765356
the lambda is 20.0
the regulation term lambda/alpha is 63.82193128187782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2955181396576063
the lambda is 20.0
the regulation term lambda/alpha is 67.67774060561031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2846424826891469
the lambda is 20.0
the regulation term lambda/alpha is 70.2635805135302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34179759184144015
the lambda is 20.0
the regulation term lambda/alpha is 58.51416299409738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2950675468866483
the lambda is 20.0
the regulation term lambda/alpha is 67.78109016401963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33408771720048863
the lambda is 20.0
the regulation term lambda/alpha is 59.864517521300684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32093282911472204
the lambda is 20.0
the regulation term lambda/alpha is 62.318336379512964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32263559368143296
the lambda is 20.0
the regulation term lambda/alpha is 61.98944069310527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3149921211278095
the lambda is 20.0
the regulation term lambda/alpha is 63.49365161386024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30561187988798644
the lambda is 20.0
the regulation term lambda/alpha is 65.44248216833209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31699729888710504
the lambda is 20.0
the regulation term lambda/alpha is 63.09202024816865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30820966479972933
the lambda is 20.0
the regulation term lambda/alpha is 64.89089176679694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29160284736643727
the lambda is 20.0
the regulation term lambda/alpha is 68.5864359028956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3229592505597543
the lambda is 20.0
the regulation term lambda/alpha is 61.927317348352524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2944207724140377
the lambda is 20.0
the regulation term lambda/alpha is 67.92998957245592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29116480239273157
the lambda is 20.0
the regulation term lambda/alpha is 68.68962125794113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31274215295030333
the lambda is 20.0
the regulation term lambda/alpha is 63.95044547505601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3361141793116584
the lambda is 20.0
the regulation term lambda/alpha is 59.50358905107424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3381305676991279
the lambda is 20.0
the regulation term lambda/alpha is 59.148748769132894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30997733655068865
the lambda is 20.0
the regulation term lambda/alpha is 64.5208460158813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32055980495672826
the lambda is 20.0
the regulation term lambda/alpha is 62.390854033305146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29146792620604955
the lambda is 20.0
the regulation term lambda/alpha is 68.61818471875789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3187327458926906
the lambda is 20.0
the regulation term lambda/alpha is 62.74849464865935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3144030692697431
the lambda is 20.0
the regulation term lambda/alpha is 63.612610546244184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.326682518020122
the lambda is 20.0
the regulation term lambda/alpha is 61.22151904917086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28908489053035363
the lambda is 20.0
the regulation term lambda/alpha is 69.1838302697457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33981603311578146
the lambda is 20.0
the regulation term lambda/alpha is 58.85537482331105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3191729835820595
the lambda is 20.0
the regulation term lambda/alpha is 62.66194517951108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3105519090764199
the lambda is 20.0
the regulation term lambda/alpha is 64.40147175227459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.320653839666988
the lambda is 20.0
the regulation term lambda/alpha is 62.372557337129685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2899555517217253
the lambda is 20.0
the regulation term lambda/alpha is 68.97608920140387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30120713223588264
the lambda is 20.0
the regulation term lambda/alpha is 66.39949011677955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29874721263846615
the lambda is 20.0
the regulation term lambda/alpha is 66.94623130828447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3132369525558884
the lambda is 20.0
the regulation term lambda/alpha is 63.84942720457465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2968509436625505
the lambda is 20.0
the regulation term lambda/alpha is 67.37388048439314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3136590850805349
the lambda is 20.0
the regulation term lambda/alpha is 63.763496583766454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28541816251827246
the lambda is 20.0
the regulation term lambda/alpha is 70.07262545430899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31647385745695433
the lambda is 20.0
the regulation term lambda/alpha is 63.196373187697915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3182753107343326
the lambda is 20.0
the regulation term lambda/alpha is 62.83867873337555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32164118276723874
the lambda is 20.0
the regulation term lambda/alpha is 62.18109207263222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30586657358777425
the lambda is 20.0
the regulation term lambda/alpha is 65.38798851212363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29887644062812646
the lambda is 20.0
the regulation term lambda/alpha is 66.91728514287537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3672883693348167
the lambda is 20.0
the regulation term lambda/alpha is 54.453126398261155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3017932542340859
the lambda is 20.0
the regulation term lambda/alpha is 66.27053361665601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.310180208802015
the lambda is 20.0
the regulation term lambda/alpha is 64.47864638831875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3418750797494073
the lambda is 20.0
the regulation term lambda/alpha is 58.50090043023873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3050333669152277
the lambda is 20.0
the regulation term lambda/alpha is 65.56659752425783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32222595379963537
the lambda is 20.0
the regulation term lambda/alpha is 62.06824671992835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27745089450769744
the lambda is 20.0
the regulation term lambda/alpha is 72.08482796744103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3221870783852319
the lambda is 20.0
the regulation term lambda/alpha is 62.07573593651836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29564703129780984
the lambda is 20.0
the regulation term lambda/alpha is 67.64823550639238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3013807534803906
the lambda is 20.0
the regulation term lambda/alpha is 66.36123829752553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2922517284866416
the lambda is 20.0
the regulation term lambda/alpha is 68.43415470479988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3051716184058544
the lambda is 20.0
the regulation term lambda/alpha is 65.53689397616775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.322944184708944
the lambda is 20.0
the regulation term lambda/alpha is 61.930206354466975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30860247082390485
the lambda is 20.0
the regulation term lambda/alpha is 64.8082951073079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.324612389286234
the lambda is 20.0
the regulation term lambda/alpha is 61.61194292052904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.300688317952992
the lambda is 20.0
the regulation term lambda/alpha is 66.51405726752142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29762124819842956
the lambda is 20.0
the regulation term lambda/alpha is 67.19950313045402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2769616037687457
the lambda is 20.0
the regulation term lambda/alpha is 72.21217572346013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29832524282274375
the lambda is 20.0
the regulation term lambda/alpha is 67.04092423008073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31229096231234404
the lambda is 20.0
the regulation term lambda/alpha is 64.04283957470598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32964837862303425
the lambda is 20.0
the regulation term lambda/alpha is 60.670706416156165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3435284492386547
the lambda is 20.0
the regulation term lambda/alpha is 58.21934120543734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34004773546854045
the lambda is 20.0
the regulation term lambda/alpha is 58.815271839533544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34719994025885303
the lambda is 20.0
the regulation term lambda/alpha is 57.60369654755444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2912380526186923
the lambda is 20.0
the regulation term lambda/alpha is 68.6723449088066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.334576628985634
the lambda is 20.0
the regulation term lambda/alpha is 59.77703840413419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34579325103221514
the lambda is 20.0
the regulation term lambda/alpha is 57.83802876516158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32741464572063567
the lambda is 20.0
the regulation term lambda/alpha is 61.08462239366306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3080375161875395
the lambda is 20.0
the regulation term lambda/alpha is 64.92715643059397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2982499507054451
the lambda is 20.0
the regulation term lambda/alpha is 67.05784846801943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3363018979776113
the lambda is 20.0
the regulation term lambda/alpha is 59.470375041806825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31838420521255534
the lambda is 20.0
the regulation term lambda/alpha is 62.817186507879285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3187038047960115
the lambda is 20.0
the regulation term lambda/alpha is 62.754192761523925
1610
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3167766986255069
the lambda is 20.0
the regulation term lambda/alpha is 63.13595692732432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3222949935782188
the lambda is 20.0
the regulation term lambda/alpha is 62.05495089437726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30573862192266205
the lambda is 20.0
the regulation term lambda/alpha is 65.4153533964024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31816609798993384
the lambda is 20.0
the regulation term lambda/alpha is 62.860248550531495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35196870260950386
the lambda is 20.0
the regulation term lambda/alpha is 56.82323414473944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2947393873039288
the lambda is 20.0
the regulation term lambda/alpha is 67.85655688215311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29561259399885387
the lambda is 20.0
the regulation term lambda/alpha is 67.6561161669504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3301089146660157
the lambda is 20.0
the regulation term lambda/alpha is 60.58606451217712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28146704638790077
the lambda is 20.0
the regulation term lambda/alpha is 71.05627552732129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29619843496194387
the lambda is 20.0
the regulation term lambda/alpha is 67.52230140098357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2970038186702815
the lambda is 20.0
the regulation term lambda/alpha is 67.33920152792035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3007446059914512
the lambda is 20.0
the regulation term lambda/alpha is 66.50160834661324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3099746899460836
the lambda is 20.0
the regulation term lambda/alpha is 64.52139690333672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2956167762794878
the lambda is 20.0
the regulation term lambda/alpha is 67.6551589923679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3156347810466809
the lambda is 20.0
the regulation term lambda/alpha is 63.36437300628822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29946842522236494
the lambda is 20.0
the regulation term lambda/alpha is 66.78500407897546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3050312401191561
the lambda is 20.0
the regulation term lambda/alpha is 65.56705467999699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2866845161141663
the lambda is 20.0
the regulation term lambda/alpha is 69.76309802527112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3260661359280479
the lambda is 20.0
the regulation term lambda/alpha is 61.3372497057264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30919497885803554
the lambda is 20.0
the regulation term lambda/alpha is 64.68410345428941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31937111116072003
the lambda is 20.0
the regulation term lambda/alpha is 62.623071721522166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2944358366226803
the lambda is 20.0
the regulation term lambda/alpha is 67.92651407318333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3147282758371695
the lambda is 20.0
the regulation term lambda/alpha is 63.54688007234333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29495835431491574
the lambda is 20.0
the regulation term lambda/alpha is 67.80618249126371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28321050520408314
the lambda is 20.0
the regulation term lambda/alpha is 70.61884934525251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28561732735976203
the lambda is 20.0
the regulation term lambda/alpha is 70.02376286088592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3162041517761846
the lambda is 20.0
the regulation term lambda/alpha is 63.25027640420226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31393624319397306
the lambda is 20.0
the regulation term lambda/alpha is 63.70720308213193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31427745306811466
the lambda is 20.0
the regulation term lambda/alpha is 63.63803640621116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3014763604018918
the lambda is 20.0
the regulation term lambda/alpha is 66.34019321892576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.318159350823849
the lambda is 20.0
the regulation term lambda/alpha is 62.86158162006412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30196339053071686
the lambda is 20.0
the regulation term lambda/alpha is 66.23319457649792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3378686959074698
the lambda is 20.0
the regulation term lambda/alpha is 59.194593172601245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3073173471991689
the lambda is 20.0
the regulation term lambda/alpha is 65.07930704945929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3044328297792836
the lambda is 20.0
the regulation term lambda/alpha is 65.69593698058179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28645707252351793
the lambda is 20.0
the regulation term lambda/alpha is 69.81848911535607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3042528130664043
the lambda is 20.0
the regulation term lambda/alpha is 65.73480717706603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2840944435146837
the lambda is 20.0
the regulation term lambda/alpha is 70.39912415240983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32750947244332723
the lambda is 20.0
the regulation term lambda/alpha is 61.06693602109732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3137824666867732
the lambda is 20.0
the regulation term lambda/alpha is 63.73842430133161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2941498247620163
the lambda is 20.0
the regulation term lambda/alpha is 67.99256132884364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3063654993461357
the lambda is 20.0
the regulation term lambda/alpha is 65.28150213612578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29743965305439357
the lambda is 20.0
the regulation term lambda/alpha is 67.24053028781118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3323602492680961
the lambda is 20.0
the regulation term lambda/alpha is 60.17566795079377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3176932400448802
the lambda is 20.0
the regulation term lambda/alpha is 62.953810402684745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33274521705007776
the lambda is 20.0
the regulation term lambda/alpha is 60.10604803671761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27344802838555327
the lambda is 20.0
the regulation term lambda/alpha is 73.14004097261443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2907359687041888
the lambda is 20.0
the regulation term lambda/alpha is 68.79093800859958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3165559572813192
the lambda is 20.0
the regulation term lambda/alpha is 63.179983001318966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2954698928919557
the lambda is 20.0
the regulation term lambda/alpha is 67.68879158633393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30790366944087283
the lambda is 20.0
the regulation term lambda/alpha is 64.95538048090923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3141798591588093
the lambda is 20.0
the regulation term lambda/alpha is 63.657804333951745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2927041140225689
the lambda is 20.0
the regulation term lambda/alpha is 68.32838707028868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31309230863273513
the lambda is 20.0
the regulation term lambda/alpha is 63.87892467668532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31254399552908707
the lambda is 20.0
the regulation term lambda/alpha is 63.99099098398353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3049284562498651
the lambda is 20.0
the regulation term lambda/alpha is 65.58915571858456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3291669145122277
the lambda is 20.0
the regulation term lambda/alpha is 60.75944792214848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2947415806145643
the lambda is 20.0
the regulation term lambda/alpha is 67.85605192961948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2945544509195484
the lambda is 20.0
the regulation term lambda/alpha is 67.89916070717463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28718992735830645
the lambda is 20.0
the regulation term lambda/alpha is 69.64032542494927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29563814534875726
the lambda is 20.0
the regulation term lambda/alpha is 67.65026879872514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3263229325887882
the lambda is 20.0
the regulation term lambda/alpha is 61.28898095311846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31477124728380035
the lambda is 20.0
the regulation term lambda/alpha is 63.5382048792018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3107580187442903
the lambda is 20.0
the regulation term lambda/alpha is 64.35875759800476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2691637243570034
the lambda is 20.0
the regulation term lambda/alpha is 74.3042178056399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30906382448184516
the lambda is 20.0
the regulation term lambda/alpha is 64.71155281123762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32366612323994937
the lambda is 20.0
the regulation term lambda/alpha is 61.79207079133528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3012138336540411
the lambda is 20.0
the regulation term lambda/alpha is 66.3980128581046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3058881040333468
the lambda is 20.0
the regulation term lambda/alpha is 65.38338606923946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30115262645241
the lambda is 20.0
the regulation term lambda/alpha is 66.4115077978924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32301126415124926
the lambda is 20.0
the regulation term lambda/alpha is 61.91734536735861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27958990930404964
the lambda is 20.0
the regulation term lambda/alpha is 71.53333984686233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3001093600187815
the lambda is 20.0
the regulation term lambda/alpha is 66.64237329601568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29729914956555115
the lambda is 20.0
the regulation term lambda/alpha is 67.27230814224116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3599633950825703
the lambda is 20.0
the regulation term lambda/alpha is 55.561205037007426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32069451591158593
the lambda is 20.0
the regulation term lambda/alpha is 62.36464612794911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2764846579189303
the lambda is 20.0
the regulation term lambda/alpha is 72.33674429003695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3151032356227353
the lambda is 20.0
the regulation term lambda/alpha is 63.471261919840984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.315066869954986
the lambda is 20.0
the regulation term lambda/alpha is 63.47858790375968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28805654694008775
the lambda is 20.0
the regulation term lambda/alpha is 69.4308121528644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2991999014249489
the lambda is 20.0
the regulation term lambda/alpha is 66.8449418089691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28795973711368006
the lambda is 20.0
the regulation term lambda/alpha is 69.45415425248999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3003112726773858
the lambda is 20.0
the regulation term lambda/alpha is 66.59756665706426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28340583972078126
the lambda is 20.0
the regulation term lambda/alpha is 70.57017604049555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30642037971769137
the lambda is 20.0
the regulation term lambda/alpha is 65.26981011650149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31422807256577184
the lambda is 20.0
the regulation term lambda/alpha is 63.648037034672484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29438048048400833
the lambda is 20.0
the regulation term lambda/alpha is 67.93928716712745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3144158625601472
the lambda is 20.0
the regulation term lambda/alpha is 63.61002220800496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3003750958070135
the lambda is 20.0
the regulation term lambda/alpha is 66.58341613264004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3529182599595669
the lambda is 20.0
the regulation term lambda/alpha is 56.67034627874273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30515606829111713
the lambda is 20.0
the regulation term lambda/alpha is 65.5402335991566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32580895000029514
the lambda is 20.0
the regulation term lambda/alpha is 61.38566788905548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31790193068571837
the lambda is 20.0
the regulation term lambda/alpha is 62.91248359788113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3153861110785698
the lambda is 20.0
the regulation term lambda/alpha is 63.4143334074009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3336651183714927
the lambda is 20.0
the regulation term lambda/alpha is 59.94033807793058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3138725989056177
the lambda is 20.0
the regulation term lambda/alpha is 63.72012106101066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2752543372518269
the lambda is 20.0
the regulation term lambda/alpha is 72.66007213431205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.290937064995006
the lambda is 20.0
the regulation term lambda/alpha is 68.7433895723919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.323029779169116
the lambda is 20.0
the regulation term lambda/alpha is 61.91379646620563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30407874926061934
the lambda is 20.0
the regulation term lambda/alpha is 65.77243575432637
1620
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2906861438087226
the lambda is 20.0
the regulation term lambda/alpha is 68.8027290807518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3100279833494703
the lambda is 20.0
the regulation term lambda/alpha is 64.51030575990157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33793808086352844
the lambda is 20.0
the regulation term lambda/alpha is 59.18243942468478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2851226495146325
the lambda is 20.0
the regulation term lambda/alpha is 70.14525164537515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29644563422475173
the lambda is 20.0
the regulation term lambda/alpha is 67.46599609167089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27318559358632793
the lambda is 20.0
the regulation term lambda/alpha is 73.21030270097279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28868348822732065
the lambda is 20.0
the regulation term lambda/alpha is 69.28002748896819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3246572692528134
the lambda is 20.0
the regulation term lambda/alpha is 61.6034258097139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3093427298825504
the lambda is 20.0
the regulation term lambda/alpha is 64.65320845779532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28645193117525325
the lambda is 20.0
the regulation term lambda/alpha is 69.81974224416683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.327984026349163
the lambda is 20.0
the regulation term lambda/alpha is 60.97857942236655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31245851947086584
the lambda is 20.0
the regulation term lambda/alpha is 64.00849634015127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32345724917362595
the lambda is 20.0
the regulation term lambda/alpha is 61.83197331670982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30390403320825565
the lambda is 20.0
the regulation term lambda/alpha is 65.81024867904482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28617544825652186
the lambda is 20.0
the regulation term lambda/alpha is 69.88719724856483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33591048920303274
the lambda is 20.0
the regulation term lambda/alpha is 59.53967096249709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29207446218042954
the lambda is 20.0
the regulation term lambda/alpha is 68.47568887294557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3194716755775075
the lambda is 20.0
the regulation term lambda/alpha is 62.603359010923555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29136307685592366
the lambda is 20.0
the regulation term lambda/alpha is 68.64287752524598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31686151362950327
the lambda is 20.0
the regulation term lambda/alpha is 63.11905718971413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3241910791497284
the lambda is 20.0
the regulation term lambda/alpha is 61.6920121690423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30426233691739907
the lambda is 20.0
the regulation term lambda/alpha is 65.73274958257349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29232071910450047
the lambda is 20.0
the regulation term lambda/alpha is 68.4180035587908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3048134342851883
the lambda is 20.0
the regulation term lambda/alpha is 65.61390591888309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28588310382871335
the lambda is 20.0
the regulation term lambda/alpha is 69.95866398590309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34632802813586183
the lambda is 20.0
the regulation term lambda/alpha is 57.74871906166992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31155278488364274
the lambda is 20.0
the regulation term lambda/alpha is 64.1945794433181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2981426364796747
the lambda is 20.0
the regulation term lambda/alpha is 67.08198544210386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.314903960597929
the lambda is 20.0
the regulation term lambda/alpha is 63.51142730000815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3170249530891675
the lambda is 20.0
the regulation term lambda/alpha is 63.08651670827543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28462938208552957
the lambda is 20.0
the regulation term lambda/alpha is 70.26681452721598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3276925921822905
the lambda is 20.0
the regulation term lambda/alpha is 61.03281086340303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3180711466306637
the lambda is 20.0
the regulation term lambda/alpha is 62.879013742241455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2881977045652558
the lambda is 20.0
the regulation term lambda/alpha is 69.3968053290704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2935585087001137
the lambda is 20.0
the regulation term lambda/alpha is 68.12951901329868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2956497143003932
the lambda is 20.0
the regulation term lambda/alpha is 67.64762160290509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3388450018445004
the lambda is 20.0
the regulation term lambda/alpha is 59.02403721799094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3281659321564247
the lambda is 20.0
the regulation term lambda/alpha is 60.944778358244484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.25036896414705456
the lambda is 20.0
the regulation term lambda/alpha is 79.88210546836378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30429311322488617
the lambda is 20.0
the regulation term lambda/alpha is 65.72610135024354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3035508308919246
the lambda is 20.0
the regulation term lambda/alpha is 65.88682343986318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31355609058600886
the lambda is 20.0
the regulation term lambda/alpha is 63.784441127014155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2881464899838809
the lambda is 20.0
the regulation term lambda/alpha is 69.40913977858558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3464774393715818
the lambda is 20.0
the regulation term lambda/alpha is 57.72381611996064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.284799394553802
the lambda is 20.0
the regulation term lambda/alpha is 70.22486838967546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28462463713445985
the lambda is 20.0
the regulation term lambda/alpha is 70.26798593879903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29675213094302405
the lambda is 20.0
the regulation term lambda/alpha is 67.39631468338122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2927861847670313
the lambda is 20.0
the regulation term lambda/alpha is 68.30923397534592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3210599562576488
the lambda is 20.0
the regulation term lambda/alpha is 62.293660763941894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3191489342045091
the lambda is 20.0
the regulation term lambda/alpha is 62.6666670526435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30857504334859154
the lambda is 20.0
the regulation term lambda/alpha is 64.81405554695611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29256870549725394
the lambda is 20.0
the regulation term lambda/alpha is 68.36001125276783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3290927540203632
the lambda is 20.0
the regulation term lambda/alpha is 60.77313996029966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32536262187468484
the lambda is 20.0
the regulation term lambda/alpha is 61.46987593339197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3457385639210812
the lambda is 20.0
the regulation term lambda/alpha is 57.84717728093887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3184859934264744
the lambda is 20.0
the regulation term lambda/alpha is 62.79711011723722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2918475000138794
the lambda is 20.0
the regulation term lambda/alpha is 68.52894062498004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3054278253109517
the lambda is 20.0
the regulation term lambda/alpha is 65.48191861575901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2911197507524424
the lambda is 20.0
the regulation term lambda/alpha is 68.70025117947861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2790944732212521
the lambda is 20.0
the regulation term lambda/alpha is 71.66032264689457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3248189266100784
the lambda is 20.0
the regulation term lambda/alpha is 61.57276673723066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31963773183355615
the lambda is 20.0
the regulation term lambda/alpha is 62.57083569349857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35625818898894124
the lambda is 20.0
the regulation term lambda/alpha is 56.139060429066596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.294628464470196
the lambda is 20.0
the regulation term lambda/alpha is 67.88210377420324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3283182977077233
the lambda is 20.0
the regulation term lambda/alpha is 60.916495180553326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3029263215133329
the lambda is 20.0
the regulation term lambda/alpha is 66.02265494819251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.328760913265981
the lambda is 20.0
the regulation term lambda/alpha is 60.83448242467676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3001259173737662
the lambda is 20.0
the regulation term lambda/alpha is 66.63869676770602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28057029651526794
the lambda is 20.0
the regulation term lambda/alpha is 71.28338333887618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.25635045042849647
the lambda is 20.0
the regulation term lambda/alpha is 78.01819722403248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3228765317622659
the lambda is 20.0
the regulation term lambda/alpha is 61.94318271086363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30271619253784576
the lambda is 20.0
the regulation term lambda/alpha is 66.06848425361187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3173051544821829
the lambda is 20.0
the regulation term lambda/alpha is 63.03080715041781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.318874256506345
the lambda is 20.0
the regulation term lambda/alpha is 62.72064800440244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2929458879480351
the lambda is 20.0
the regulation term lambda/alpha is 68.27199432663737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32273259567861656
the lambda is 20.0
the regulation term lambda/alpha is 61.9708088609568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3105384293413993
the lambda is 20.0
the regulation term lambda/alpha is 64.40426726707125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3038712891959736
the lambda is 20.0
the regulation term lambda/alpha is 65.81734014068547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32790380125173163
the lambda is 20.0
the regulation term lambda/alpha is 60.99349847013822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2851776111687623
the lambda is 20.0
the regulation term lambda/alpha is 70.1317327052172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3198370776997367
the lambda is 20.0
the regulation term lambda/alpha is 62.53183697099689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3198865457482957
the lambda is 20.0
the regulation term lambda/alpha is 62.522166892686684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31982432029182356
the lambda is 20.0
the regulation term lambda/alpha is 62.53433129085058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32226019243904974
the lambda is 20.0
the regulation term lambda/alpha is 62.06165225878053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2842229517675471
the lambda is 20.0
the regulation term lambda/alpha is 70.36729396983071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31250465784314096
the lambda is 20.0
the regulation term lambda/alpha is 63.99904608794289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30422652581890364
the lambda is 20.0
the regulation term lambda/alpha is 65.74048711290008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2844431218429391
the lambda is 20.0
the regulation term lambda/alpha is 70.31282693853781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3003777729785831
the lambda is 20.0
the regulation term lambda/alpha is 66.58282269582575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2945600204286718
the lambda is 20.0
the regulation term lambda/alpha is 67.89787687716104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29588793970705096
the lambda is 20.0
the regulation term lambda/alpha is 67.59315712496208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30246279613542665
the lambda is 20.0
the regulation term lambda/alpha is 66.12383491636132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3056408256779124
the lambda is 20.0
the regulation term lambda/alpha is 65.43628442188616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3220136794552885
the lambda is 20.0
the regulation term lambda/alpha is 62.10916267231744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3027376147612845
the lambda is 20.0
the regulation term lambda/alpha is 66.06380913640498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29057608224950376
the lambda is 20.0
the regulation term lambda/alpha is 68.82878950383451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3395046842045294
the lambda is 20.0
the regulation term lambda/alpha is 58.909349209306654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31442074000548104
the lambda is 20.0
the regulation term lambda/alpha is 63.609035458829325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28142643477467694
the lambda is 20.0
the regulation term lambda/alpha is 71.06652939697342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2987818795193916
the lambda is 20.0
the regulation term lambda/alpha is 66.93846371196
1630
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3079226168343174
the lambda is 20.0
the regulation term lambda/alpha is 64.95138358336736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28544123944319333
the lambda is 20.0
the regulation term lambda/alpha is 70.06696032785504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31843839323894735
the lambda is 20.0
the regulation term lambda/alpha is 62.80649703251252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27803573795484
the lambda is 20.0
the regulation term lambda/alpha is 71.93319875752269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29693293053308795
the lambda is 20.0
the regulation term lambda/alpha is 67.35527771909203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2834973435416237
the lambda is 20.0
the regulation term lambda/alpha is 70.5473982582964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2961420761934235
the lambda is 20.0
the regulation term lambda/alpha is 67.535151563323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.304969563984734
the lambda is 20.0
the regulation term lambda/alpha is 65.58031476544704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30108084985739014
the lambda is 20.0
the regulation term lambda/alpha is 66.42734006321955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3136080527054008
the lambda is 20.0
the regulation term lambda/alpha is 63.7738726013765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2651352520775042
the lambda is 20.0
the regulation term lambda/alpha is 75.43319812543679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32620209311981185
the lambda is 20.0
the regulation term lambda/alpha is 61.311685062223475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29455533625646196
the lambda is 20.0
the regulation term lambda/alpha is 67.89895662452538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2860467841265651
the lambda is 20.0
the regulation term lambda/alpha is 69.91863257987457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32040532211358197
the lambda is 20.0
the regulation term lambda/alpha is 62.420935670070136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3207180462008467
the lambda is 20.0
the regulation term lambda/alpha is 62.360070588217496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32334324309754164
the lambda is 20.0
the regulation term lambda/alpha is 61.853774361899006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2970458708124069
the lambda is 20.0
the regulation term lambda/alpha is 67.32966846265498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29924425445835917
the lambda is 20.0
the regulation term lambda/alpha is 66.83503426390118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29565225407819323
the lambda is 20.0
the regulation term lambda/alpha is 67.64704048124882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2883746266866361
the lambda is 20.0
the regulation term lambda/alpha is 69.3542293571241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2966736233452871
the lambda is 20.0
the regulation term lambda/alpha is 67.4141495104294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31192514177619796
the lambda is 20.0
the regulation term lambda/alpha is 64.11794793492385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2859911576099151
the lambda is 20.0
the regulation term lambda/alpha is 69.93223205620751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2912785259245328
the lambda is 20.0
the regulation term lambda/alpha is 68.66280285001783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29340350510894825
the lambda is 20.0
the regulation term lambda/alpha is 68.1655114943957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3099002382896915
the lambda is 20.0
the regulation term lambda/alpha is 64.53689777838831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2896481437142478
the lambda is 20.0
the regulation term lambda/alpha is 69.04929458043063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31924428909761887
the lambda is 20.0
the regulation term lambda/alpha is 62.64794918190182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29808249921001945
the lambda is 20.0
the regulation term lambda/alpha is 67.09551903585134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3405622072111245
the lambda is 20.0
the regulation term lambda/alpha is 58.726422299704595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3156978892434204
the lambda is 20.0
the regulation term lambda/alpha is 63.35170643025396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28211442316169855
the lambda is 20.0
the regulation term lambda/alpha is 70.89322047365394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29423719523789094
the lambda is 20.0
the regulation term lambda/alpha is 67.97237169090737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3193599044061721
the lambda is 20.0
the regulation term lambda/alpha is 62.625269246584445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2895193618696316
the lambda is 20.0
the regulation term lambda/alpha is 69.08000857298742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31654263855558196
the lambda is 20.0
the regulation term lambda/alpha is 63.18264133786888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28026548921916067
the lambda is 20.0
the regulation term lambda/alpha is 71.36090874306859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2977572715917921
the lambda is 20.0
the regulation term lambda/alpha is 67.1688046208955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32952104478858996
the lambda is 20.0
the regulation term lambda/alpha is 60.69415084803264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.318098281013606
the lambda is 20.0
the regulation term lambda/alpha is 62.87365004385089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3244703354276164
the lambda is 20.0
the regulation term lambda/alpha is 61.63891677074944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29449306936511377
the lambda is 20.0
the regulation term lambda/alpha is 67.91331301316268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29217941482737175
the lambda is 20.0
the regulation term lambda/alpha is 68.45109198338491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3053737828086096
the lambda is 20.0
the regulation term lambda/alpha is 65.49350705896985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29846328686784
the lambda is 20.0
the regulation term lambda/alpha is 67.0099167300802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3218136583082244
the lambda is 20.0
the regulation term lambda/alpha is 62.14776621085654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3015129557245546
the lambda is 20.0
the regulation term lambda/alpha is 66.33214135670801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.301609814039919
the lambda is 20.0
the regulation term lambda/alpha is 66.31083959805412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27475052613481477
the lambda is 20.0
the regulation term lambda/alpha is 72.79330919346953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3350064922747424
the lambda is 20.0
the regulation term lambda/alpha is 59.700335549311646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30153997345065386
the lambda is 20.0
the regulation term lambda/alpha is 66.32619805305164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3255474724940446
the lambda is 20.0
the regulation term lambda/alpha is 61.43497243820829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29622084248401864
the lambda is 20.0
the regulation term lambda/alpha is 67.517193700099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33599410651590256
the lambda is 20.0
the regulation term lambda/alpha is 59.52485359755381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3168440631888274
the lambda is 20.0
the regulation term lambda/alpha is 63.12253352236787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28491067047150165
the lambda is 20.0
the regulation term lambda/alpha is 70.19744106776271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30303890058308236
the lambda is 20.0
the regulation term lambda/alpha is 65.99812750613091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28705109175419624
the lambda is 20.0
the regulation term lambda/alpha is 69.6740077795145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29931889748806084
the lambda is 20.0
the regulation term lambda/alpha is 66.81836719246152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31449602211395516
the lambda is 20.0
the regulation term lambda/alpha is 63.593809122180744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3091194359853821
the lambda is 20.0
the regulation term lambda/alpha is 64.69991101091999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27746923620003816
the lambda is 20.0
the regulation term lambda/alpha is 72.0800629067982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3075876027028633
the lambda is 20.0
the regulation term lambda/alpha is 65.02212645845958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2721845492965605
the lambda is 20.0
the regulation term lambda/alpha is 73.47955661586384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32076578400664757
the lambda is 20.0
the regulation term lambda/alpha is 62.35078988220738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2821400088533789
the lambda is 20.0
the regulation term lambda/alpha is 70.88679156593314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3112825544725393
the lambda is 20.0
the regulation term lambda/alpha is 64.25030800036164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3118268285931317
the lambda is 20.0
the regulation term lambda/alpha is 64.13816312802189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3050548819782661
the lambda is 20.0
the regulation term lambda/alpha is 65.56197321052845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28867234300251443
the lambda is 20.0
the regulation term lambda/alpha is 69.28270229138575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3066750566085414
the lambda is 20.0
the regulation term lambda/alpha is 65.21560710276223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30195542695746264
the lambda is 20.0
the regulation term lambda/alpha is 66.23494136708283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29221698340626606
the lambda is 20.0
the regulation term lambda/alpha is 68.4422916384508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31342427869511497
the lambda is 20.0
the regulation term lambda/alpha is 63.811265940425436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3181826011319298
the lambda is 20.0
the regulation term lambda/alpha is 62.85698818492998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3062255046750559
the lambda is 20.0
the regulation term lambda/alpha is 65.31134635967875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27551517997377634
the lambda is 20.0
the regulation term lambda/alpha is 72.59128154718593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31533692751238274
the lambda is 20.0
the regulation term lambda/alpha is 63.42422423461532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29691635722404325
the lambda is 20.0
the regulation term lambda/alpha is 67.35903736320145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29364311795367176
the lambda is 20.0
the regulation term lambda/alpha is 68.10988842297816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2895953593084806
the lambda is 20.0
the regulation term lambda/alpha is 69.0618801618839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3078931690916984
the lambda is 20.0
the regulation term lambda/alpha is 64.95759571087949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31199762452130875
the lambda is 20.0
the regulation term lambda/alpha is 64.10305216485405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32529721216827945
the lambda is 20.0
the regulation term lambda/alpha is 61.48223609630507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32834131838443886
the lambda is 20.0
the regulation term lambda/alpha is 60.91222420135066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2829487171342825
the lambda is 20.0
the regulation term lambda/alpha is 70.68418688220576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3277633238329839
the lambda is 20.0
the regulation term lambda/alpha is 61.019639922224066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31515249076107293
the lambda is 20.0
the regulation term lambda/alpha is 63.461342005266374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3197043000800501
the lambda is 20.0
the regulation term lambda/alpha is 62.55780730816646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3166996662248337
the lambda is 20.0
the regulation term lambda/alpha is 63.1513137933068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34238837653548126
the lambda is 20.0
the regulation term lambda/alpha is 58.41319790809962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27489410474346077
the lambda is 20.0
the regulation term lambda/alpha is 72.75528887265365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2935444023724054
the lambda is 20.0
the regulation term lambda/alpha is 68.13279298927655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27208834636636337
the lambda is 20.0
the regulation term lambda/alpha is 73.50553695919878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32201732093662505
the lambda is 20.0
the regulation term lambda/alpha is 62.10846032079163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2839450999659367
the lambda is 20.0
the regulation term lambda/alpha is 70.43615122218797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31075166911131824
the lambda is 20.0
the regulation term lambda/alpha is 64.36007264963571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31683747341253893
the lambda is 20.0
the regulation term lambda/alpha is 63.12384638277606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3175117976748294
the lambda is 20.0
the regulation term lambda/alpha is 62.9897854078557
1640
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2648327550096538
the lambda is 20.0
the regulation term lambda/alpha is 75.51935937558385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3156272291848684
the lambda is 20.0
the regulation term lambda/alpha is 63.365889095346866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28888087255486566
the lambda is 20.0
the regulation term lambda/alpha is 69.23269035820813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29387456662595823
the lambda is 20.0
the regulation term lambda/alpha is 68.05624668246939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2872226577960826
the lambda is 20.0
the regulation term lambda/alpha is 69.63238956656149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3056218679973364
the lambda is 20.0
the regulation term lambda/alpha is 65.44034342521034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2819469360078889
the lambda is 20.0
the regulation term lambda/alpha is 70.93533373045912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3049451278003162
the lambda is 20.0
the regulation term lambda/alpha is 65.5855699163568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30583535607874024
the lambda is 20.0
the regulation term lambda/alpha is 65.39466285530051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3109504608030123
the lambda is 20.0
the regulation term lambda/alpha is 64.31892703535833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2881870337847328
the lambda is 20.0
the regulation term lambda/alpha is 69.3993749036586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3388883864719955
the lambda is 20.0
the regulation term lambda/alpha is 59.01648093701414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2925112527859407
the lambda is 20.0
the regulation term lambda/alpha is 68.37343797722534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3482958705584615
the lambda is 20.0
the regulation term lambda/alpha is 57.42244364807362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3062395769441319
the lambda is 20.0
the regulation term lambda/alpha is 65.30834518377307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.295247654475362
the lambda is 20.0
the regulation term lambda/alpha is 67.73974220231773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3242197651454891
the lambda is 20.0
the regulation term lambda/alpha is 61.68655384419663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30939933294022726
the lambda is 20.0
the regulation term lambda/alpha is 64.64138047726105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30485730570091457
the lambda is 20.0
the regulation term lambda/alpha is 65.60446355063355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3165850984250384
the lambda is 20.0
the regulation term lambda/alpha is 63.174167386579114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32553883067636896
the lambda is 20.0
the regulation term lambda/alpha is 61.43660330304127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2978014477924986
the lambda is 20.0
the regulation term lambda/alpha is 67.15884072509799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30720342948793955
the lambda is 20.0
the regulation term lambda/alpha is 65.10343987154342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3185652127365979
the lambda is 20.0
the regulation term lambda/alpha is 62.78149402501389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31875156669789434
the lambda is 20.0
the regulation term lambda/alpha is 62.744789640377064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2929974104624458
the lambda is 20.0
the regulation term lambda/alpha is 68.25998894813935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29982908886771537
the lambda is 20.0
the regulation term lambda/alpha is 66.70466856811215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3125126947978186
the lambda is 20.0
the regulation term lambda/alpha is 63.99740021101889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32163940862606116
the lambda is 20.0
the regulation term lambda/alpha is 62.18143505932152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3199348475120809
the lambda is 20.0
the regulation term lambda/alpha is 62.51272768667311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31584142529019527
the lambda is 20.0
the regulation term lambda/alpha is 63.32291586394657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.300492863172498
the lambda is 20.0
the regulation term lambda/alpha is 66.55732115846956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31082297649802626
the lambda is 20.0
the regulation term lambda/alpha is 64.34530749732718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2747841631683624
the lambda is 20.0
the regulation term lambda/alpha is 72.78439837795835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3295496617227177
the lambda is 20.0
the regulation term lambda/alpha is 60.68888038133673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3374750783997383
the lambda is 20.0
the regulation term lambda/alpha is 59.263635391500095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3143230434649574
the lambda is 20.0
the regulation term lambda/alpha is 63.628806146469245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31747497060463026
the lambda is 20.0
the regulation term lambda/alpha is 62.99709221772681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3254454303272656
the lambda is 20.0
the regulation term lambda/alpha is 61.45423513824774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3148682074829494
the lambda is 20.0
the regulation term lambda/alpha is 63.51863898829173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3012925828788341
the lambda is 20.0
the regulation term lambda/alpha is 66.38065832521032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34430181738522875
the lambda is 20.0
the regulation term lambda/alpha is 58.08856936012805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3006760576701791
the lambda is 20.0
the regulation term lambda/alpha is 66.51676942611314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3027744544754083
the lambda is 20.0
the regulation term lambda/alpha is 66.05577090264207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29108376028002436
the lambda is 20.0
the regulation term lambda/alpha is 68.70874548535403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3400310408992137
the lambda is 20.0
the regulation term lambda/alpha is 58.818159504232035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.279752217129417
the lambda is 20.0
the regulation term lambda/alpha is 71.49183733098974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3283258927271458
the lambda is 20.0
the regulation term lambda/alpha is 60.91508602588629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32288143719614537
the lambda is 20.0
the regulation term lambda/alpha is 61.94224162800141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29712611656938137
the lambda is 20.0
the regulation term lambda/alpha is 67.31148453363855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2927874045392289
the lambda is 20.0
the regulation term lambda/alpha is 68.3089493944413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3123829673102849
the lambda is 20.0
the regulation term lambda/alpha is 64.0239772744534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2925413534097352
the lambda is 20.0
the regulation term lambda/alpha is 68.3664027901993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33039113219673977
the lambda is 20.0
the regulation term lambda/alpha is 60.53431236795573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29767384567323
the lambda is 20.0
the regulation term lambda/alpha is 67.18762931545857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3277427278542663
the lambda is 20.0
the regulation term lambda/alpha is 61.023474512890424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.337363149108133
the lambda is 20.0
the regulation term lambda/alpha is 59.283297695296056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29454232121187524
the lambda is 20.0
the regulation term lambda/alpha is 67.90195689947475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3036788322175876
the lambda is 20.0
the regulation term lambda/alpha is 65.85905199236898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30870621165684964
the lambda is 20.0
the regulation term lambda/alpha is 64.78651625653558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3266094576235455
the lambda is 20.0
the regulation term lambda/alpha is 61.23521390201833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31855442862615263
the lambda is 20.0
the regulation term lambda/alpha is 62.7836193841508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31659848622636083
the lambda is 20.0
the regulation term lambda/alpha is 63.17149598024435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.307394566818428
the lambda is 20.0
the regulation term lambda/alpha is 65.0629586820694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28627214372642
the lambda is 20.0
the regulation term lambda/alpha is 69.86359112576905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29052396412213827
the lambda is 20.0
the regulation term lambda/alpha is 68.84113694521896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33115708569303287
the lambda is 20.0
the regulation term lambda/alpha is 60.39429885108684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.298748874300239
the lambda is 20.0
the regulation term lambda/alpha is 66.9458589487445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31881949162822637
the lambda is 20.0
the regulation term lambda/alpha is 62.731421776814976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3313109048443159
the lambda is 20.0
the regulation term lambda/alpha is 60.3662593279206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2969481228001869
the lambda is 20.0
the regulation term lambda/alpha is 67.35183173209612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28733110002787393
the lambda is 20.0
the regulation term lambda/alpha is 69.6061094606877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35308534100404076
the lambda is 20.0
the regulation term lambda/alpha is 56.6435297005749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2925572805943835
the lambda is 20.0
the regulation term lambda/alpha is 68.36268083763409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2989369713651082
the lambda is 20.0
the regulation term lambda/alpha is 66.90373528797446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26497850741568546
the lambda is 20.0
the regulation term lambda/alpha is 75.47781967321964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32250187933822294
the lambda is 20.0
the regulation term lambda/alpha is 62.01514248859634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28168669354371956
the lambda is 20.0
the regulation term lambda/alpha is 71.00086890293905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27586719960377126
the lambda is 20.0
the regulation term lambda/alpha is 72.49865162921162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2748046653030544
the lambda is 20.0
the regulation term lambda/alpha is 72.77896820981555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28837283298042726
the lambda is 20.0
the regulation term lambda/alpha is 69.3546607469694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2920225115835688
the lambda is 20.0
the regulation term lambda/alpha is 68.48787064923435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3213542324300363
the lambda is 20.0
the regulation term lambda/alpha is 62.23661611288815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2964211752613568
the lambda is 20.0
the regulation term lambda/alpha is 67.4715629960169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30516402483133565
the lambda is 20.0
the regulation term lambda/alpha is 65.53852476894684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29171162065014905
the lambda is 20.0
the regulation term lambda/alpha is 68.5608614268613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3003929363180201
the lambda is 20.0
the regulation term lambda/alpha is 66.57946170487308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3229776196938695
the lambda is 20.0
the regulation term lambda/alpha is 61.92379527397831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2824872794049337
the lambda is 20.0
the regulation term lambda/alpha is 70.79964818993083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.37880300566106234
the lambda is 20.0
the regulation term lambda/alpha is 52.797891519095266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29286000945628216
the lambda is 20.0
the regulation term lambda/alpha is 68.29201445814192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33106374300151326
the lambda is 20.0
the regulation term lambda/alpha is 60.411326890328134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3162527165151181
the lambda is 20.0
the regulation term lambda/alpha is 63.24056349740137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30170143867307014
the lambda is 20.0
the regulation term lambda/alpha is 66.29070145625792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.287107387313931
the lambda is 20.0
the regulation term lambda/alpha is 69.66034621091606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32694947078448683
the lambda is 20.0
the regulation term lambda/alpha is 61.171531955723125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2707969471670057
the lambda is 20.0
the regulation term lambda/alpha is 73.85607633037907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2846205398059892
the lambda is 20.0
the regulation term lambda/alpha is 70.26899749973401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34006032897687893
the lambda is 20.0
the regulation term lambda/alpha is 58.81309372420157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3279079212037958
the lambda is 20.0
the regulation term lambda/alpha is 60.99273212607126
1650
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3164630662121834
the lambda is 20.0
the regulation term lambda/alpha is 63.19852815491057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2950721409453615
the lambda is 20.0
the regulation term lambda/alpha is 67.78003486172352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.291336769098187
the lambda is 20.0
the regulation term lambda/alpha is 68.64907598827511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2898029625537003
the lambda is 20.0
the regulation term lambda/alpha is 69.01240699461108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31530166981429353
the lambda is 20.0
the regulation term lambda/alpha is 63.43131646521125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32212959478341957
the lambda is 20.0
the regulation term lambda/alpha is 62.08681326981704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29589070189079053
the lambda is 20.0
the regulation term lambda/alpha is 67.59252613278042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29795579886050777
the lambda is 20.0
the regulation term lambda/alpha is 67.1240501996851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31919226737188366
the lambda is 20.0
the regulation term lambda/alpha is 62.65815949951712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27369912402551
the lambda is 20.0
the regulation term lambda/alpha is 73.07294121312536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31041542121171556
the lambda is 20.0
the regulation term lambda/alpha is 64.42978870678984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29407955911451017
the lambda is 20.0
the regulation term lambda/alpha is 68.00880707323252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32473382275905865
the lambda is 20.0
the regulation term lambda/alpha is 61.58890327491175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29387821240159084
the lambda is 20.0
the regulation term lambda/alpha is 68.05540239461364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28203668327665354
the lambda is 20.0
the regulation term lambda/alpha is 70.91276130340015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30595486213150974
the lambda is 20.0
the regulation term lambda/alpha is 65.36911968211614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2972355184724151
the lambda is 20.0
the regulation term lambda/alpha is 67.28670955202851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3500401563593482
the lambda is 20.0
the regulation term lambda/alpha is 57.13630175467117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3178885514547289
the lambda is 20.0
the regulation term lambda/alpha is 62.91513144614847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27713560784062646
the lambda is 20.0
the regulation term lambda/alpha is 72.16683614146575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2927833836225365
the lambda is 20.0
the regulation term lambda/alpha is 68.3098875098202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2887593002334289
the lambda is 20.0
the regulation term lambda/alpha is 69.26183843717686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2898485997098835
the lambda is 20.0
the regulation term lambda/alpha is 69.00154087347147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3163465898199456
the lambda is 20.0
the regulation term lambda/alpha is 63.22179736909243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3179578117851116
the lambda is 20.0
the regulation term lambda/alpha is 62.901426726124235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3089632293957917
the lambda is 20.0
the regulation term lambda/alpha is 64.73262219297743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3089183899392822
the lambda is 20.0
the regulation term lambda/alpha is 64.74201812307449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2893417891747811
the lambda is 20.0
the regulation term lambda/alpha is 69.12240384301595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29387955486470974
the lambda is 20.0
the regulation term lambda/alpha is 68.05509151260009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29600624484019433
the lambda is 20.0
the regulation term lambda/alpha is 67.56614209540562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30317602028819474
the lambda is 20.0
the regulation term lambda/alpha is 65.96827803527565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2975097052106415
the lambda is 20.0
the regulation term lambda/alpha is 67.22469771478443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2989242334701191
the lambda is 20.0
the regulation term lambda/alpha is 66.90658622028123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3375766523480945
the lambda is 20.0
the regulation term lambda/alpha is 59.245803466813406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29333227548536256
the lambda is 20.0
the regulation term lambda/alpha is 68.18206406678904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33175137748171574
the lambda is 20.0
the regulation term lambda/alpha is 60.286109892949234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31914545878684814
the lambda is 20.0
the regulation term lambda/alpha is 62.667349477648884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3628454136559725
the lambda is 20.0
the regulation term lambda/alpha is 55.119891963035144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3264920274085971
the lambda is 20.0
the regulation term lambda/alpha is 61.25723852659492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2878940788766873
the lambda is 20.0
the regulation term lambda/alpha is 69.46999423550679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28155453384191703
the lambda is 20.0
the regulation term lambda/alpha is 71.03419620736527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30344694798044586
the lambda is 20.0
the regulation term lambda/alpha is 65.90937932679027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3232590965455341
the lambda is 20.0
the regulation term lambda/alpha is 61.86987532207871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31512366543818954
the lambda is 20.0
the regulation term lambda/alpha is 63.46714700779251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2951881846977244
the lambda is 20.0
the regulation term lambda/alpha is 67.75338931834347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3130816916165141
the lambda is 20.0
the regulation term lambda/alpha is 63.88109089591063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3020484841132637
the lambda is 20.0
the regulation term lambda/alpha is 66.21453525487749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30854239471347095
the lambda is 20.0
the regulation term lambda/alpha is 64.82091389279933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29332775670125555
the lambda is 20.0
the regulation term lambda/alpha is 68.1831144277605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3288282488034247
the lambda is 20.0
the regulation term lambda/alpha is 60.82202509297219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26984306718721607
the lambda is 20.0
the regulation term lambda/alpha is 74.11715338279963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3382403846905312
the lambda is 20.0
the regulation term lambda/alpha is 59.12954485993371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33739332177615466
the lambda is 20.0
the regulation term lambda/alpha is 59.27799606320929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29484203367991646
the lambda is 20.0
the regulation term lambda/alpha is 67.83293328424197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2974240115418178
the lambda is 20.0
the regulation term lambda/alpha is 67.24406646363856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31868860916144903
the lambda is 20.0
the regulation term lambda/alpha is 62.75718499203689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2973342431245489
the lambda is 20.0
the regulation term lambda/alpha is 67.26436817310106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32955483320479095
the lambda is 20.0
the regulation term lambda/alpha is 60.687928031605175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29081134060553065
the lambda is 20.0
the regulation term lambda/alpha is 68.77310891093784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27917300293987973
the lambda is 20.0
the regulation term lambda/alpha is 71.64016502092441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30469463097782007
the lambda is 20.0
the regulation term lambda/alpha is 65.63948939899726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3305516496551752
the lambda is 20.0
the regulation term lambda/alpha is 60.50491661700553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2797765827986888
the lambda is 20.0
the regulation term lambda/alpha is 71.48561112561323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29345656640943135
the lambda is 20.0
the regulation term lambda/alpha is 68.15318615871743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3049783688969715
the lambda is 20.0
the regulation term lambda/alpha is 65.57842142160727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2960610634166535
the lambda is 20.0
the regulation term lambda/alpha is 67.55363156908459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3035263536192628
the lambda is 20.0
the regulation term lambda/alpha is 65.89213675029875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29788090358057245
the lambda is 20.0
the regulation term lambda/alpha is 67.14092699329512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3020146823747963
the lambda is 20.0
the regulation term lambda/alpha is 66.22194604161747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31418699167890357
the lambda is 20.0
the regulation term lambda/alpha is 63.65635920547541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34730854515470927
the lambda is 20.0
the regulation term lambda/alpha is 57.58568362057133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30640231805166224
the lambda is 20.0
the regulation term lambda/alpha is 65.2736576119108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29827164171549825
the lambda is 20.0
the regulation term lambda/alpha is 67.05297186474297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3352226132671542
the lambda is 20.0
the regulation term lambda/alpha is 59.66184621340294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29544039487180757
the lambda is 20.0
the regulation term lambda/alpha is 67.69554992193284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2983051208975107
the lambda is 20.0
the regulation term lambda/alpha is 67.0454464201821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2959477890243829
the lambda is 20.0
the regulation term lambda/alpha is 67.57948780739908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2793407878983745
the lambda is 20.0
the regulation term lambda/alpha is 71.59713463425933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30396231009516417
the lambda is 20.0
the regulation term lambda/alpha is 65.79763127125341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3009135379045412
the lambda is 20.0
the regulation term lambda/alpha is 66.46427455299336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34944086052220313
the lambda is 20.0
the regulation term lambda/alpha is 57.23429129069816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31175521818938573
the lambda is 20.0
the regulation term lambda/alpha is 64.15289571143715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3052003575710862
the lambda is 20.0
the regulation term lambda/alpha is 65.5307227002238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3348297948921387
the lambda is 20.0
the regulation term lambda/alpha is 59.73184078926654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3137687399296594
the lambda is 20.0
the regulation term lambda/alpha is 63.74121273038096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3280073097067681
the lambda is 20.0
the regulation term lambda/alpha is 60.97425090276066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2963971851812764
the lambda is 20.0
the regulation term lambda/alpha is 67.47702407419291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29779437921736746
the lambda is 20.0
the regulation term lambda/alpha is 67.16043483615084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3138063772241102
the lambda is 20.0
the regulation term lambda/alpha is 63.73356773981893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3068174285980255
the lambda is 20.0
the regulation term lambda/alpha is 65.18534521128147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3128438259758097
the lambda is 20.0
the regulation term lambda/alpha is 63.92966182924281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2885304571293501
the lambda is 20.0
the regulation term lambda/alpha is 69.3167723053718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30228529144552474
the lambda is 20.0
the regulation term lambda/alpha is 66.16266343744425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2946812735741022
the lambda is 20.0
the regulation term lambda/alpha is 67.86993878988612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31917411613889834
the lambda is 20.0
the regulation term lambda/alpha is 62.661722829981585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2867713236471167
the lambda is 20.0
the regulation term lambda/alpha is 69.7419802846493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32847627084115005
the lambda is 20.0
the regulation term lambda/alpha is 60.88719878846874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3196803816591009
the lambda is 20.0
the regulation term lambda/alpha is 62.56248787054908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30107507144523526
the lambda is 20.0
the regulation term lambda/alpha is 66.42861497630814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29345235472084513
the lambda is 20.0
the regulation term lambda/alpha is 68.15416430727082
1660
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28776609654253854
the lambda is 20.0
the regulation term lambda/alpha is 69.50089062018303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3132533077847
the lambda is 20.0
the regulation term lambda/alpha is 63.8460935702108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2915005733403326
the lambda is 20.0
the regulation term lambda/alpha is 68.61049970097181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31358057894274444
the lambda is 20.0
the regulation term lambda/alpha is 63.77946002724782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2942201299410485
the lambda is 20.0
the regulation term lambda/alpha is 67.97631421074861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28898594474518746
the lambda is 20.0
the regulation term lambda/alpha is 69.20751809446976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3185466968924975
the lambda is 20.0
the regulation term lambda/alpha is 62.78514326189846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3228198325452113
the lambda is 20.0
the regulation term lambda/alpha is 61.954062246776544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3179905703698066
the lambda is 20.0
the regulation term lambda/alpha is 62.894946780154626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2550937402182506
the lambda is 20.0
the regulation term lambda/alpha is 78.4025510892137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2731118753022842
the lambda is 20.0
the regulation term lambda/alpha is 73.2300636062189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3066571908941806
the lambda is 20.0
the regulation term lambda/alpha is 65.21940653562395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3138793510881122
the lambda is 20.0
the regulation term lambda/alpha is 63.718750311757844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30725651297019985
the lambda is 20.0
the regulation term lambda/alpha is 65.09219220990039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29826688467596013
the lambda is 20.0
the regulation term lambda/alpha is 67.05404128831863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3510267429250796
the lambda is 20.0
the regulation term lambda/alpha is 56.97571596209877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2839818624175954
the lambda is 20.0
the regulation term lambda/alpha is 70.42703301448879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28501525943241524
the lambda is 20.0
the regulation term lambda/alpha is 70.17168147357576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29494735784767745
the lambda is 20.0
the regulation term lambda/alpha is 67.80871049649747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32979025779949617
the lambda is 20.0
the regulation term lambda/alpha is 60.64460525137609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31755504249580924
the lambda is 20.0
the regulation term lambda/alpha is 62.98120742410803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33313181414873533
the lambda is 20.0
the regulation term lambda/alpha is 60.03629539588339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30180322622975797
the lambda is 20.0
the regulation term lambda/alpha is 66.26834394664263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3148384487407319
the lambda is 20.0
the regulation term lambda/alpha is 63.52464281282847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31669710019811
the lambda is 20.0
the regulation term lambda/alpha is 63.151825474527534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3022964840815065
the lambda is 20.0
the regulation term lambda/alpha is 66.16021374104871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3295659160286072
the lambda is 20.0
the regulation term lambda/alpha is 60.685887184595714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3115592853528487
the lambda is 20.0
the regulation term lambda/alpha is 64.19324006777553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3299051982796097
the lambda is 20.0
the regulation term lambda/alpha is 60.623476393509534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3041958574563712
the lambda is 20.0
the regulation term lambda/alpha is 65.7471149253519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.336403936398946
the lambda is 20.0
the regulation term lambda/alpha is 59.45233642058733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3249181155458004
the lambda is 20.0
the regulation term lambda/alpha is 61.55397019462524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30563306161259574
the lambda is 20.0
the regulation term lambda/alpha is 65.43794671451788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2768903534258817
the lambda is 20.0
the regulation term lambda/alpha is 72.23075759969956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3329854370867342
the lambda is 20.0
the regulation term lambda/alpha is 60.06268674984278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3008565877472851
the lambda is 20.0
the regulation term lambda/alpha is 66.47685579948043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34083388007447674
the lambda is 20.0
the regulation term lambda/alpha is 58.679612471711245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3124726898874351
the lambda is 20.0
the regulation term lambda/alpha is 64.00559359989118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31308780484605475
the lambda is 20.0
the regulation term lambda/alpha is 63.87984357881329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3181734387969978
the lambda is 20.0
the regulation term lambda/alpha is 62.85879825675982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2860827281644978
the lambda is 20.0
the regulation term lambda/alpha is 69.90984785526787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27866792994193146
the lambda is 20.0
the regulation term lambda/alpha is 71.77000957436178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2901996233265527
the lambda is 20.0
the regulation term lambda/alpha is 68.91807704896507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3601509994116152
the lambda is 20.0
the regulation term lambda/alpha is 55.532262947137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29161991660494946
the lambda is 20.0
the regulation term lambda/alpha is 68.58242136833721
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32296703115616837
the lambda is 20.0
the regulation term lambda/alpha is 61.92582545779772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29556466285412386
the lambda is 20.0
the regulation term lambda/alpha is 67.66708782731247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3171158021756167
the lambda is 20.0
the regulation term lambda/alpha is 63.06844333453976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2911348738416096
the lambda is 20.0
the regulation term lambda/alpha is 68.69668252413105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29871747396840276
the lambda is 20.0
the regulation term lambda/alpha is 66.95289610716087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3133471304578025
the lambda is 20.0
the regulation term lambda/alpha is 63.826976716780045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3279357581133887
the lambda is 20.0
the regulation term lambda/alpha is 60.9875547426112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3367903919869693
the lambda is 20.0
the regulation term lambda/alpha is 59.38411687461029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3186484521525868
the lambda is 20.0
the regulation term lambda/alpha is 62.765093835832836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2978905905564788
the lambda is 20.0
the regulation term lambda/alpha is 67.13874366638674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28101952748249415
the lambda is 20.0
the regulation term lambda/alpha is 71.16943145969057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32550711158178947
the lambda is 20.0
the regulation term lambda/alpha is 61.44259000305941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3129243003206473
the lambda is 20.0
the regulation term lambda/alpha is 63.91322111931352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3025751557872018
the lambda is 20.0
the regulation term lambda/alpha is 66.09928018698868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3162234065633051
the lambda is 20.0
the regulation term lambda/alpha is 63.24642510609403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30534473456523686
the lambda is 20.0
the regulation term lambda/alpha is 65.4997376276256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3102663188802026
the lambda is 20.0
the regulation term lambda/alpha is 64.46075124165259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3341173611188058
the lambda is 20.0
the regulation term lambda/alpha is 59.85920615746866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3262031804290618
the lambda is 20.0
the regulation term lambda/alpha is 61.311480696459135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3120935918453578
the lambda is 20.0
the regulation term lambda/alpha is 64.0833407752569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.306928200602111
the lambda is 20.0
the regulation term lambda/alpha is 65.16181947688531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28581950406442497
the lambda is 20.0
the regulation term lambda/alpha is 69.97423099401891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.303278412300355
the lambda is 20.0
the regulation term lambda/alpha is 65.94600600913456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31713203277058916
the lambda is 20.0
the regulation term lambda/alpha is 63.065215535851735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31033726990842786
the lambda is 20.0
the regulation term lambda/alpha is 64.44601386711129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33968426299631854
the lambda is 20.0
the regulation term lambda/alpha is 58.878205965687485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26730438037471776
the lambda is 20.0
the regulation term lambda/alpha is 74.82107091534832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2877177503457518
the lambda is 20.0
the regulation term lambda/alpha is 69.51256909233408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2902374172326173
the lambda is 20.0
the regulation term lambda/alpha is 68.90910272940636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29124098860737624
the lambda is 20.0
the regulation term lambda/alpha is 68.67165262566157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31777326373015174
the lambda is 20.0
the regulation term lambda/alpha is 62.93795697357251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32369148509332585
the lambda is 20.0
the regulation term lambda/alpha is 61.78722926317835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2828170071331579
the lambda is 20.0
the regulation term lambda/alpha is 70.71710503811201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3067297124522404
the lambda is 20.0
the regulation term lambda/alpha is 65.20398640256971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3271864201730085
the lambda is 20.0
the regulation term lambda/alpha is 61.12723134849078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2963113978841474
the lambda is 20.0
the regulation term lambda/alpha is 67.49655984485501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30536528969166826
the lambda is 20.0
the regulation term lambda/alpha is 65.49532862819572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.308715819562916
the lambda is 20.0
the regulation term lambda/alpha is 64.78449995959478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2819203397846586
the lambda is 20.0
the regulation term lambda/alpha is 70.94202573420831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29783233502321466
the lambda is 20.0
the regulation term lambda/alpha is 67.15187589836776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3244623333109852
the lambda is 20.0
the regulation term lambda/alpha is 61.64043695275635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2964152510220684
the lambda is 20.0
the regulation term lambda/alpha is 67.472911501814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31963324063277637
the lambda is 20.0
the regulation term lambda/alpha is 62.57171488298932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.325318551959297
the lambda is 20.0
the regulation term lambda/alpha is 61.47820307063935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3126785144677401
the lambda is 20.0
the regulation term lambda/alpha is 63.9634611097126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2798772546209459
the lambda is 20.0
the regulation term lambda/alpha is 71.45989775799096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2763968222641964
the lambda is 20.0
the regulation term lambda/alpha is 72.35973205539541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3222095044260514
the lambda is 20.0
the regulation term lambda/alpha is 62.07141541533917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2756075081881318
the lambda is 20.0
the regulation term lambda/alpha is 72.56696354711733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3067253948626155
the lambda is 20.0
the regulation term lambda/alpha is 65.20490424002271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2965188263647322
the lambda is 20.0
the regulation term lambda/alpha is 67.44934291423053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28474506227364593
the lambda is 20.0
the regulation term lambda/alpha is 70.23826801526617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.36050355866098627
the lambda is 20.0
the regulation term lambda/alpha is 55.477954432088666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3056353776898291
the lambda is 20.0
the regulation term lambda/alpha is 65.43745083167954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34148461296304516
the lambda is 20.0
the regulation term lambda/alpha is 58.567792634815916
1670
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29394597380304455
the lambda is 20.0
the regulation term lambda/alpha is 68.03971403738564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31816937526272937
the lambda is 20.0
the regulation term lambda/alpha is 62.85960106463715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31551008014964804
the lambda is 20.0
the regulation term lambda/alpha is 63.389416878579276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30011075531898596
the lambda is 20.0
the regulation term lambda/alpha is 66.6420634566799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30066241655258685
the lambda is 20.0
the regulation term lambda/alpha is 66.5197873060464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3102759990746065
the lambda is 20.0
the regulation term lambda/alpha is 64.45874015279847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31173045496408563
the lambda is 20.0
the regulation term lambda/alpha is 64.15799188534272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2804242102736565
the lambda is 20.0
the regulation term lambda/alpha is 71.32051822659206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2765013498300344
the lambda is 20.0
the regulation term lambda/alpha is 72.33237744515178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3088425847434049
the lambda is 20.0
the regulation term lambda/alpha is 64.7579090060283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3020220087537939
the lambda is 20.0
the regulation term lambda/alpha is 66.22033964519403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32726476994393
the lambda is 20.0
the regulation term lambda/alpha is 61.11259700647455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3143016377551556
the lambda is 20.0
the regulation term lambda/alpha is 63.63313962614543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30647453920768186
the lambda is 20.0
the regulation term lambda/alpha is 65.25827578273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3220193056516559
the lambda is 20.0
the regulation term lambda/alpha is 62.108077525125104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30172319506990974
the lambda is 20.0
the regulation term lambda/alpha is 66.28592142332964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3063770394838889
the lambda is 20.0
the regulation term lambda/alpha is 65.27904321319652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31175461133409876
the lambda is 20.0
the regulation term lambda/alpha is 64.15302059017999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35692816546851497
the lambda is 20.0
the regulation term lambda/alpha is 56.033683903166846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2958331685531401
the lambda is 20.0
the regulation term lambda/alpha is 67.6056714594105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29482365309699626
the lambda is 20.0
the regulation term lambda/alpha is 67.83716228297344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3182866072155306
the lambda is 20.0
the regulation term lambda/alpha is 62.83644849202474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3191470255316559
the lambda is 20.0
the regulation term lambda/alpha is 62.667041833407964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3111627340604932
the lambda is 20.0
the regulation term lambda/alpha is 64.27504906841381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3249814742073433
the lambda is 20.0
the regulation term lambda/alpha is 61.54196958082505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.286069046155536
the lambda is 20.0
the regulation term lambda/alpha is 69.9131914786963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29376884027395794
the lambda is 20.0
the regulation term lambda/alpha is 68.08073988156382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31310421841193375
the lambda is 20.0
the regulation term lambda/alpha is 63.87649486627841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33512373100007614
the lambda is 20.0
the regulation term lambda/alpha is 59.67945015506961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27739119047603117
the lambda is 20.0
the regulation term lambda/alpha is 72.10034307750722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3197377977884379
the lambda is 20.0
the regulation term lambda/alpha is 62.551253365526314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3114204697671311
the lambda is 20.0
the regulation term lambda/alpha is 64.22185418625587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3102038586878167
the lambda is 20.0
the regulation term lambda/alpha is 64.47373054803816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32107282955478467
the lambda is 20.0
the regulation term lambda/alpha is 62.29116312250084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2931917737626213
the lambda is 20.0
the regulation term lambda/alpha is 68.21473789436101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2897395860834118
the lambda is 20.0
the regulation term lambda/alpha is 69.02750249060648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3099276887121535
the lambda is 20.0
the regulation term lambda/alpha is 64.53118171889146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.308724951116249
the lambda is 20.0
the regulation term lambda/alpha is 64.78258374545533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2976805677554214
the lambda is 20.0
the regulation term lambda/alpha is 67.18611211609985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28677049883688555
the lambda is 20.0
the regulation term lambda/alpha is 69.74218087675733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.297717598946068
the lambda is 20.0
the regulation term lambda/alpha is 67.1777552647233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3087646153566882
the lambda is 20.0
the regulation term lambda/alpha is 64.77426170384125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2930697786777486
the lambda is 20.0
the regulation term lambda/alpha is 68.2431333938101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31099252232828517
the lambda is 20.0
the regulation term lambda/alpha is 64.31022794460603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28517007039466996
the lambda is 20.0
the regulation term lambda/alpha is 70.13358720401611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28045212768857436
the lambda is 20.0
the regulation term lambda/alpha is 71.31341867446564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3142255850819769
the lambda is 20.0
the regulation term lambda/alpha is 63.64854088753559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.297184102061651
the lambda is 20.0
the regulation term lambda/alpha is 67.2983509590664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3136860152158735
the lambda is 20.0
the regulation term lambda/alpha is 63.758022448773595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32112110645636427
the lambda is 20.0
the regulation term lambda/alpha is 62.281798355467835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30144306973372925
the lambda is 20.0
the regulation term lambda/alpha is 66.34751967483082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3061239693192054
the lambda is 20.0
the regulation term lambda/alpha is 65.33300886068595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.334102751360512
the lambda is 20.0
the regulation term lambda/alpha is 59.86182370111372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.351335949512556
the lambda is 20.0
the regulation term lambda/alpha is 56.925572312619956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33370467670495063
the lambda is 20.0
the regulation term lambda/alpha is 59.933232574032104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28651007922528504
the lambda is 20.0
the regulation term lambda/alpha is 69.80557212534868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.314312393961712
the lambda is 20.0
the regulation term lambda/alpha is 63.63096201175033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29001706205263755
the lambda is 20.0
the regulation term lambda/alpha is 68.9614599170377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.308153452460733
the lambda is 20.0
the regulation term lambda/alpha is 64.9027289497869
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32749534541093805
the lambda is 20.0
the regulation term lambda/alpha is 61.06957024046919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3130370060879772
the lambda is 20.0
the regulation term lambda/alpha is 63.89020981876858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29288773711543414
the lambda is 20.0
the regulation term lambda/alpha is 68.28554925847754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2914195018580056
the lambda is 20.0
the regulation term lambda/alpha is 68.62958680694273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3477214083707345
the lambda is 20.0
the regulation term lambda/alpha is 57.517309888139955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3004907710756275
the lambda is 20.0
the regulation term lambda/alpha is 66.55778454828618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3146328538514617
the lambda is 20.0
the regulation term lambda/alpha is 63.56615259715378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3242969704893645
the lambda is 20.0
the regulation term lambda/alpha is 61.671868133149616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2987826790481451
the lambda is 20.0
the regulation term lambda/alpha is 66.93828458769944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3213052169356941
the lambda is 20.0
the regulation term lambda/alpha is 62.24611038295962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34126720805630484
the lambda is 20.0
the regulation term lambda/alpha is 58.60510335555079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30746312249889535
the lambda is 20.0
the regulation term lambda/alpha is 65.0484514612703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31210174083213754
the lambda is 20.0
the regulation term lambda/alpha is 64.0816675571089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3106354359260594
the lambda is 20.0
the regulation term lambda/alpha is 64.38415482244145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29995592714006625
the lambda is 20.0
the regulation term lambda/alpha is 66.67646207457963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3098963053043323
the lambda is 20.0
the regulation term lambda/alpha is 64.53771683518166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31291282765435363
the lambda is 20.0
the regulation term lambda/alpha is 63.91556443985794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29865938946394416
the lambda is 20.0
the regulation term lambda/alpha is 66.96591738132683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3036831598639476
the lambda is 20.0
the regulation term lambda/alpha is 65.85811346589041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2982196387153829
the lambda is 20.0
the regulation term lambda/alpha is 67.06466444045206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3227133051128267
the lambda is 20.0
the regulation term lambda/alpha is 61.974513238639545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2924359717944995
the lambda is 20.0
the regulation term lambda/alpha is 68.39103916413674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28393777749522475
the lambda is 20.0
the regulation term lambda/alpha is 70.4379676999351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3113020148489243
the lambda is 20.0
the regulation term lambda/alpha is 64.2462915304485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29649793992583223
the lambda is 20.0
the regulation term lambda/alpha is 67.45409430164311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3322513940949806
the lambda is 20.0
the regulation term lambda/alpha is 60.19538324128929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3120670978413882
the lambda is 20.0
the regulation term lambda/alpha is 64.08878134972511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30912848351585387
the lambda is 20.0
the regulation term lambda/alpha is 64.69801738271163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2753494329239486
the lambda is 20.0
the regulation term lambda/alpha is 72.63497799003636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2994184074178316
the lambda is 20.0
the regulation term lambda/alpha is 66.79616050488991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3066900132890843
the lambda is 20.0
the regulation term lambda/alpha is 65.21242666336224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30779632197344836
the lambda is 20.0
the regulation term lambda/alpha is 64.97803440849846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3039958633041746
the lambda is 20.0
the regulation term lambda/alpha is 65.7903689300806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30852059917230645
the lambda is 20.0
the regulation term lambda/alpha is 64.82549318799342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30085347062028434
the lambda is 20.0
the regulation term lambda/alpha is 66.47754456269034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31059118545346776
the lambda is 20.0
the regulation term lambda/alpha is 64.39332774624529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2818450120355398
the lambda is 20.0
the regulation term lambda/alpha is 70.96098616596437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30420967579361924
the lambda is 20.0
the regulation term lambda/alpha is 65.74412844635594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3209571330111621
the lambda is 20.0
the regulation term lambda/alpha is 62.31361743658288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29503346867989133
the lambda is 20.0
the regulation term lambda/alpha is 67.78891930291414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3090695148802492
the lambda is 20.0
the regulation term lambda/alpha is 64.71036138180473
1680
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.299946324720332
the lambda is 20.0
the regulation term lambda/alpha is 66.67859664107526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3219431521391679
the lambda is 20.0
the regulation term lambda/alpha is 62.12276877799378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3007185613705081
the lambda is 20.0
the regulation term lambda/alpha is 66.50736791520654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2914432432341314
the lambda is 20.0
the regulation term lambda/alpha is 68.6239961443641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3231993542848973
the lambda is 20.0
the regulation term lambda/alpha is 61.88131175030189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3295891706875288
the lambda is 20.0
the regulation term lambda/alpha is 60.6816054006861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2939112406458493
the lambda is 20.0
the regulation term lambda/alpha is 68.04775467604236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30917514990924105
the lambda is 20.0
the regulation term lambda/alpha is 64.68825196938059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3060087549657086
the lambda is 20.0
the regulation term lambda/alpha is 65.35760717774627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2871437623609411
the lambda is 20.0
the regulation term lambda/alpha is 69.65152171705512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29371623322173557
the lambda is 20.0
the regulation term lambda/alpha is 68.09293371572478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3330495312592968
the lambda is 20.0
the regulation term lambda/alpha is 60.05112790394211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31175075467720403
the lambda is 20.0
the regulation term lambda/alpha is 64.15381422479183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.311019227145494
the lambda is 20.0
the regulation term lambda/alpha is 64.30470612237761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3014158090211256
the lambda is 20.0
the regulation term lambda/alpha is 66.35352029129382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33417801284973087
the lambda is 20.0
the regulation term lambda/alpha is 59.84834199428123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28387840388153956
the lambda is 20.0
the regulation term lambda/alpha is 70.45269991142355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3142610761738108
the lambda is 20.0
the regulation term lambda/alpha is 63.64135273608763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3073794003136668
the lambda is 20.0
the regulation term lambda/alpha is 65.06616897420876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2830398842702373
the lambda is 20.0
the regulation term lambda/alpha is 70.66141950830028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28824292962948994
the lambda is 20.0
the regulation term lambda/alpha is 69.3859170308468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31207940571023046
the lambda is 20.0
the regulation term lambda/alpha is 64.08625379968278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3074594562649614
the lambda is 20.0
the regulation term lambda/alpha is 65.04922711749177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29240624237357254
the lambda is 20.0
the regulation term lambda/alpha is 68.39799259295015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31452839306311614
the lambda is 20.0
the regulation term lambda/alpha is 63.587264110641414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2848653688751257
the lambda is 20.0
the regulation term lambda/alpha is 70.2086044329497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2751894535142501
the lambda is 20.0
the regulation term lambda/alpha is 72.67720381211608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31991961823500925
the lambda is 20.0
the regulation term lambda/alpha is 62.515703508086304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29965793533373125
the lambda is 20.0
the regulation term lambda/alpha is 66.7427678086544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2875273712007191
the lambda is 20.0
the regulation term lambda/alpha is 69.55859512254318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30787353053733363
the lambda is 20.0
the regulation term lambda/alpha is 64.96173920860905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3163241140202805
the lambda is 20.0
the regulation term lambda/alpha is 63.22628947193618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3354768630982427
the lambda is 20.0
the regulation term lambda/alpha is 59.616629937734636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31086068430741765
the lambda is 20.0
the regulation term lambda/alpha is 64.33750232699583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3028676592497416
the lambda is 20.0
the regulation term lambda/alpha is 66.03544283844516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2651939231314843
the lambda is 20.0
the regulation term lambda/alpha is 75.41650941256263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29233681936066763
the lambda is 20.0
the regulation term lambda/alpha is 68.41423548268547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3201261418087054
the lambda is 20.0
the regulation term lambda/alpha is 62.4753726359255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29493284214028054
the lambda is 20.0
the regulation term lambda/alpha is 67.81204783727439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.308683503139513
the lambda is 20.0
the regulation term lambda/alpha is 64.79128232181807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3183797022777055
the lambda is 20.0
the regulation term lambda/alpha is 62.81807494924747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3127730943093832
the lambda is 20.0
the regulation term lambda/alpha is 63.94411911983952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28237928242903515
the lambda is 20.0
the regulation term lambda/alpha is 70.82672577095386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29380620945602115
the lambda is 20.0
the regulation term lambda/alpha is 68.07208069914442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3024822529940753
the lambda is 20.0
the regulation term lambda/alpha is 66.11958156894494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28249065866918754
the lambda is 20.0
the regulation term lambda/alpha is 70.79880125672094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31674591399641605
the lambda is 20.0
the regulation term lambda/alpha is 63.14209312965691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32603756061862427
the lambda is 20.0
the regulation term lambda/alpha is 61.34262556145974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3057176232437302
the lambda is 20.0
the regulation term lambda/alpha is 65.41984654922955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3336133647651084
the lambda is 20.0
the regulation term lambda/alpha is 59.94963665224164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3057162621589946
the lambda is 20.0
the regulation term lambda/alpha is 65.42013780607638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3148185011553976
the lambda is 20.0
the regulation term lambda/alpha is 63.52866787243802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2955419154077673
the lambda is 20.0
the regulation term lambda/alpha is 67.67229606807362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3248452044738172
the lambda is 20.0
the regulation term lambda/alpha is 61.567785900967536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3113946593524346
the lambda is 20.0
the regulation term lambda/alpha is 64.22717731123359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.289672050544387
the lambda is 20.0
the regulation term lambda/alpha is 69.04359589547408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3239401327568253
the lambda is 20.0
the regulation term lambda/alpha is 61.739803061121656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2872995593626699
the lambda is 20.0
the regulation term lambda/alpha is 69.61375104217682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2811677542897471
the lambda is 20.0
the regulation term lambda/alpha is 71.13191215870982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27996793444448387
the lambda is 20.0
the regulation term lambda/alpha is 71.4367523541018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33674959730272086
the lambda is 20.0
the regulation term lambda/alpha is 59.39131081431112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32435822498362465
the lambda is 20.0
the regulation term lambda/alpha is 61.66022150666815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34721543338707755
the lambda is 20.0
the regulation term lambda/alpha is 57.60112620830393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3163290685434811
the lambda is 20.0
the regulation term lambda/alpha is 63.22529918634682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2873068149033062
the lambda is 20.0
the regulation term lambda/alpha is 69.61199304211092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32399231382620575
the lambda is 20.0
the regulation term lambda/alpha is 61.729859464284374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3229832960123031
the lambda is 20.0
the regulation term lambda/alpha is 61.92270698494005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32218030258606123
the lambda is 20.0
the regulation term lambda/alpha is 62.077041456181426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32745201270878294
the lambda is 20.0
the regulation term lambda/alpha is 61.07765175896736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3075196584583289
the lambda is 20.0
the regulation term lambda/alpha is 65.03649262705636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3289516877996985
the lambda is 20.0
the regulation term lambda/alpha is 60.79920165108917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2974004946574749
the lambda is 20.0
the regulation term lambda/alpha is 67.24938377467933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32692363760935467
the lambda is 20.0
the regulation term lambda/alpha is 61.17636566829793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3008729669493685
the lambda is 20.0
the regulation term lambda/alpha is 66.47323687064794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3365044863087641
the lambda is 20.0
the regulation term lambda/alpha is 59.43457164386432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28048576223680133
the lambda is 20.0
the regulation term lambda/alpha is 71.30486710093653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3069466629641302
the lambda is 20.0
the regulation term lambda/alpha is 65.15790009529181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3057517209183741
the lambda is 20.0
the regulation term lambda/alpha is 65.41255087600753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33376342392519986
the lambda is 20.0
the regulation term lambda/alpha is 59.92268345282263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2909766296049444
the lambda is 20.0
the regulation term lambda/alpha is 68.73404241142585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2989875905159984
the lambda is 20.0
the regulation term lambda/alpha is 66.89240836211171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.328507965554073
the lambda is 20.0
the regulation term lambda/alpha is 60.88132434252333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3052297502606307
the lambda is 20.0
the regulation term lambda/alpha is 65.52441229245291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3427731571494038
the lambda is 20.0
the regulation term lambda/alpha is 58.347626069455146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32294617437784895
the lambda is 20.0
the regulation term lambda/alpha is 61.929824802940324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.314215107839262
the lambda is 20.0
the regulation term lambda/alpha is 63.65066319545361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3168177014488062
the lambda is 20.0
the regulation term lambda/alpha is 63.12778581670175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29617716810511346
the lambda is 20.0
the regulation term lambda/alpha is 67.52714980684125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29573755380572064
the lambda is 20.0
the regulation term lambda/alpha is 67.62752901222221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.322473370172112
the lambda is 20.0
the regulation term lambda/alpha is 62.0206251118519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2809648610622066
the lambda is 20.0
the regulation term lambda/alpha is 71.183278664772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29958437623149464
the lambda is 20.0
the regulation term lambda/alpha is 66.75915563949708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29738396692063757
the lambda is 20.0
the regulation term lambda/alpha is 67.25312130003758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3094087245117583
the lambda is 20.0
the regulation term lambda/alpha is 64.63941839894676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31462303868344926
the lambda is 20.0
the regulation term lambda/alpha is 63.568135644772475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34417529253619356
the lambda is 20.0
the regulation term lambda/alpha is 58.10992373282227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2973715858035595
the lambda is 20.0
the regulation term lambda/alpha is 67.25592139530032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3062598140141773
the lambda is 20.0
the regulation term lambda/alpha is 65.30402973167797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2979940799122762
the lambda is 20.0
the regulation term lambda/alpha is 67.11542727925206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3056556052157097
the lambda is 20.0
the regulation term lambda/alpha is 65.43312034433472
1690
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3319983905820962
the lambda is 20.0
the regulation term lambda/alpha is 60.24125588360171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2939087057424344
the lambda is 20.0
the regulation term lambda/alpha is 68.0483415742265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3011514420781084
the lambda is 20.0
the regulation term lambda/alpha is 66.4117689823736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28879082952424723
the lambda is 20.0
the regulation term lambda/alpha is 69.25427664357595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29108132356385114
the lambda is 20.0
the regulation term lambda/alpha is 68.70932066382758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31972090608449755
the lambda is 20.0
the regulation term lambda/alpha is 62.55455811423946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29205130281442165
the lambda is 20.0
the regulation term lambda/alpha is 68.48111892419331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29000307886398896
the lambda is 20.0
the regulation term lambda/alpha is 68.96478505795442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3152191026356152
the lambda is 20.0
the regulation term lambda/alpha is 63.4479314000188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31378915505849014
the lambda is 20.0
the regulation term lambda/alpha is 63.737065725780134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.298132370366832
the lambda is 20.0
the regulation term lambda/alpha is 67.08429539332255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3094698712799627
the lambda is 20.0
the regulation term lambda/alpha is 64.62664658527275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30253340495086223
the lambda is 20.0
the regulation term lambda/alpha is 66.10840215561788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28423974618306375
the lambda is 20.0
the regulation term lambda/alpha is 70.36313629100647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2844609219613561
the lambda is 20.0
the regulation term lambda/alpha is 70.30842711926876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3028580022334332
the lambda is 20.0
the regulation term lambda/alpha is 66.03754846333776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.306618538047393
the lambda is 20.0
the regulation term lambda/alpha is 65.22762820331714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3094725101320304
the lambda is 20.0
the regulation term lambda/alpha is 64.62609551803935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3125824951149621
the lambda is 20.0
the regulation term lambda/alpha is 63.98310945929447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3146028065742746
the lambda is 20.0
the regulation term lambda/alpha is 63.57222371211809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33592664866482047
the lambda is 20.0
the regulation term lambda/alpha is 59.536806857962375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32447288988923295
the lambda is 20.0
the regulation term lambda/alpha is 61.638431509108536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3267217186134891
the lambda is 20.0
the regulation term lambda/alpha is 61.21417359358331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33164957242393556
the lambda is 20.0
the regulation term lambda/alpha is 60.304615663531536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30506074074267747
the lambda is 20.0
the regulation term lambda/alpha is 65.56071407716881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32118031592315005
the lambda is 20.0
the regulation term lambda/alpha is 62.270316730074676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29587191793888734
the lambda is 20.0
the regulation term lambda/alpha is 67.5968173638264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30031475758584464
the lambda is 20.0
the regulation term lambda/alpha is 66.59679384647963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.289669498860396
the lambda is 20.0
the regulation term lambda/alpha is 69.04420409702455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.303458762876127
the lambda is 20.0
the regulation term lambda/alpha is 65.90681320402032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31625537925822855
the lambda is 20.0
the regulation term lambda/alpha is 63.24003103728907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31448251022698276
the lambda is 20.0
the regulation term lambda/alpha is 63.596541459697335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3289157689811469
the lambda is 20.0
the regulation term lambda/alpha is 60.80584114879083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3392438051035034
the lambda is 20.0
the regulation term lambda/alpha is 58.95465060562563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.322925529413528
the lambda is 20.0
the regulation term lambda/alpha is 61.933784040928664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33555087041709497
the lambda is 20.0
the regulation term lambda/alpha is 59.60348121028471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2930748670814024
the lambda is 20.0
the regulation term lambda/alpha is 68.24194854772361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2889181647471362
the lambda is 20.0
the regulation term lambda/alpha is 69.22375412949262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2859710797092455
the lambda is 20.0
the regulation term lambda/alpha is 69.93714196671404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2914696988116911
the lambda is 20.0
the regulation term lambda/alpha is 68.61776740957671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3048114334978148
the lambda is 20.0
the regulation term lambda/alpha is 65.61433660966455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30973272456934636
the lambda is 20.0
the regulation term lambda/alpha is 64.57180147111701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29193243514497436
the lambda is 20.0
the regulation term lambda/alpha is 68.50900274259676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31414119456910083
the lambda is 20.0
the regulation term lambda/alpha is 63.66563935504693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29926355071422783
the lambda is 20.0
the regulation term lambda/alpha is 66.83072479848494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30134046290721017
the lambda is 20.0
the regulation term lambda/alpha is 66.37011109310757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29989864435607
the lambda is 20.0
the regulation term lambda/alpha is 66.6891977552722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3430944612423545
the lambda is 20.0
the regulation term lambda/alpha is 58.29298417578485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3273937569902982
the lambda is 20.0
the regulation term lambda/alpha is 61.08851978076255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29521197091941476
the lambda is 20.0
the regulation term lambda/alpha is 67.74793019982067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3253101228272583
the lambda is 20.0
the regulation term lambda/alpha is 61.479796036412075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2905328702041506
the lambda is 20.0
the regulation term lambda/alpha is 68.83902666829565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28771355192198717
the lambda is 20.0
the regulation term lambda/alpha is 69.51358344574243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32089612723221256
the lambda is 20.0
the regulation term lambda/alpha is 62.32546392037709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2933119336250071
the lambda is 20.0
the regulation term lambda/alpha is 68.18679265048098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.296436493308013
the lambda is 20.0
the regulation term lambda/alpha is 67.46807647336104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3147407599865627
the lambda is 20.0
the regulation term lambda/alpha is 63.544359493997106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32637160878791655
the lambda is 20.0
the regulation term lambda/alpha is 61.27984010090915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30200831768178027
the lambda is 20.0
the regulation term lambda/alpha is 66.2233416401252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32872386081482363
the lambda is 20.0
the regulation term lambda/alpha is 60.84133944650394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3010341586261145
the lambda is 20.0
the regulation term lambda/alpha is 66.43764312753648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29317121215904285
the lambda is 20.0
the regulation term lambda/alpha is 68.21952214445317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2973211229655314
the lambda is 20.0
the regulation term lambda/alpha is 67.26733640891908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30443318449376683
the lambda is 20.0
the regulation term lambda/alpha is 65.69586043406346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27580768115440657
the lambda is 20.0
the regulation term lambda/alpha is 72.51429661526836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29981026527482085
the lambda is 20.0
the regulation term lambda/alpha is 66.70885662192725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29071884167387824
the lambda is 20.0
the regulation term lambda/alpha is 68.79499066811618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34026131787720026
the lambda is 20.0
the regulation term lambda/alpha is 58.77835342781446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3147419297762425
the lambda is 20.0
the regulation term lambda/alpha is 63.54412332102836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32327340322366943
the lambda is 20.0
the regulation term lambda/alpha is 61.867137229851885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27152777516475085
the lambda is 20.0
the regulation term lambda/alpha is 73.65728971139288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3238488064493841
the lambda is 20.0
the regulation term lambda/alpha is 61.75721386555704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3216226965144786
the lambda is 20.0
the regulation term lambda/alpha is 62.18466612196833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.300187053077958
the lambda is 20.0
the regulation term lambda/alpha is 66.62512521752907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3226447913331525
the lambda is 20.0
the regulation term lambda/alpha is 61.987673556919916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2932683607180621
the lambda is 20.0
the regulation term lambda/alpha is 68.19692363346108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3002940184020687
the lambda is 20.0
the regulation term lambda/alpha is 66.6013932159703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27326203555339024
the lambda is 20.0
the regulation term lambda/alpha is 73.18982294594076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2930838082453302
the lambda is 20.0
the regulation term lambda/alpha is 68.239866677516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2788893941101513
the lambda is 20.0
the regulation term lambda/alpha is 71.7130174986171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3145091244625061
the lambda is 20.0
the regulation term lambda/alpha is 63.591159824631035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2927703203250548
the lambda is 20.0
the regulation term lambda/alpha is 68.31293547035284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27873825417756376
the lambda is 20.0
the regulation term lambda/alpha is 71.75190236808854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3128959279847303
the lambda is 20.0
the regulation term lambda/alpha is 63.91901655228963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2845402616601966
the lambda is 20.0
the regulation term lambda/alpha is 70.28882269000083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2931457697925828
the lambda is 20.0
the regulation term lambda/alpha is 68.22544297381856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2867823410294979
the lambda is 20.0
the regulation term lambda/alpha is 69.73930099114031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31494991722684285
the lambda is 20.0
the regulation term lambda/alpha is 63.50215988656695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29781056273116213
the lambda is 20.0
the regulation term lambda/alpha is 67.15678522811257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3126987900412959
the lambda is 20.0
the regulation term lambda/alpha is 63.95931368125454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3019935590336493
the lambda is 20.0
the regulation term lambda/alpha is 66.22657802371052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2733947026342559
the lambda is 20.0
the regulation term lambda/alpha is 73.1543069682508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31932403618065847
the lambda is 20.0
the regulation term lambda/alpha is 62.63230365998801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30791406546671723
the lambda is 20.0
the regulation term lambda/alpha is 64.95318740858826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2763245495990682
the lambda is 20.0
the regulation term lambda/alpha is 72.37865773786261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2917849213491295
the lambda is 20.0
the regulation term lambda/alpha is 68.543637921815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29844276163234046
the lambda is 20.0
the regulation term lambda/alpha is 67.01452529995862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32892777522517513
the lambda is 20.0
the regulation term lambda/alpha is 60.80362166529882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28987553509017816
the lambda is 20.0
the regulation term lambda/alpha is 68.99512921564128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30681176030667995
the lambda is 20.0
the regulation term lambda/alpha is 65.18654949865218
1700
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31190368000320784
the lambda is 20.0
the regulation term lambda/alpha is 64.12235982529704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27632555456526653
the lambda is 20.0
the regulation term lambda/alpha is 72.37839450450144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2926593727117215
the lambda is 20.0
the regulation term lambda/alpha is 68.33883300809443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3062448646919782
the lambda is 20.0
the regulation term lambda/alpha is 65.3072175434388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32082870541455494
the lambda is 20.0
the regulation term lambda/alpha is 62.33856155158324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29097284587737476
the lambda is 20.0
the regulation term lambda/alpha is 68.73493620923183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2962096116524499
the lambda is 20.0
the regulation term lambda/alpha is 67.51975362455995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2929760481698428
the lambda is 20.0
the regulation term lambda/alpha is 68.26496611219798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30079957393131057
the lambda is 20.0
the regulation term lambda/alpha is 66.48945588123446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30883306822455525
the lambda is 20.0
the regulation term lambda/alpha is 64.7599044848974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.325673650770039
the lambda is 20.0
the regulation term lambda/alpha is 61.41117020892234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2911490019550917
the lambda is 20.0
the regulation term lambda/alpha is 68.69334899209066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33185688939311336
the lambda is 20.0
the regulation term lambda/alpha is 60.2669422851977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30448308278512537
the lambda is 20.0
the regulation term lambda/alpha is 65.68509428195082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29551342894775595
the lambda is 20.0
the regulation term lambda/alpha is 67.67881944050609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3301465223962494
the lambda is 20.0
the regulation term lambda/alpha is 60.57916301779348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3405937068197642
the lambda is 20.0
the regulation term lambda/alpha is 58.7209910210808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33574235265102575
the lambda is 20.0
the regulation term lambda/alpha is 59.569487859007815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.276048012626287
the lambda is 20.0
the regulation term lambda/alpha is 72.45116459894948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3149451603221737
the lambda is 20.0
the regulation term lambda/alpha is 63.503119017739365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3363902969439047
the lambda is 20.0
the regulation term lambda/alpha is 59.454747005782785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30331859957371377
the lambda is 20.0
the regulation term lambda/alpha is 65.93726869406673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3033700054914128
the lambda is 20.0
the regulation term lambda/alpha is 65.92609565208357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30955424471292564
the lambda is 20.0
the regulation term lambda/alpha is 64.60903166922358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2744229774073623
the lambda is 20.0
the regulation term lambda/alpha is 72.88019461399311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3080016210712964
the lambda is 20.0
the regulation term lambda/alpha is 64.93472316942899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3198814172705943
the lambda is 20.0
the regulation term lambda/alpha is 62.52316927519921
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3075651563949875
the lambda is 20.0
the regulation term lambda/alpha is 65.02687181611431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3051908776715961
the lambda is 20.0
the regulation term lambda/alpha is 65.53275822851171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2778032017343745
the lambda is 20.0
the regulation term lambda/alpha is 71.99341071354277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3560326848387233
the lambda is 20.0
the regulation term lambda/alpha is 56.1746178136978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27776754653820357
the lambda is 20.0
the regulation term lambda/alpha is 72.00265203497861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27837765757811256
the lambda is 20.0
the regulation term lambda/alpha is 71.8448462207784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33782481204096254
the lambda is 20.0
the regulation term lambda/alpha is 59.20228262444774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3247918359285316
the lambda is 20.0
the regulation term lambda/alpha is 61.57790248274859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31960735658383504
the lambda is 20.0
the regulation term lambda/alpha is 62.576782380019694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3025384130430934
the lambda is 20.0
the regulation term lambda/alpha is 66.10730782524205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3394155311740959
the lambda is 20.0
the regulation term lambda/alpha is 58.924822711608414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31275534389320814
the lambda is 20.0
the regulation term lambda/alpha is 63.94774826558711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29140906140240164
the lambda is 20.0
the regulation term lambda/alpha is 68.63204563286504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29174491365980987
the lambda is 20.0
the regulation term lambda/alpha is 68.55303747753103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28839389909604574
the lambda is 20.0
the regulation term lambda/alpha is 69.34959464360675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34067915227554846
the lambda is 20.0
the regulation term lambda/alpha is 58.70626325799819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32370775998831036
the lambda is 20.0
the regulation term lambda/alpha is 61.78412281720473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30889869340817155
the lambda is 20.0
the regulation term lambda/alpha is 64.7461463152661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3236327241998189
the lambda is 20.0
the regulation term lambda/alpha is 61.79844776034299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28909764697757534
the lambda is 20.0
the regulation term lambda/alpha is 69.18077752999268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3360522148360094
the lambda is 20.0
the regulation term lambda/alpha is 59.514560883819286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31028263762587377
the lambda is 20.0
the regulation term lambda/alpha is 64.45736104678596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31437897492917743
the lambda is 20.0
the regulation term lambda/alpha is 63.61748588468918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3136091405127822
the lambda is 20.0
the regulation term lambda/alpha is 63.77365139070247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29359031742658276
the lambda is 20.0
the regulation term lambda/alpha is 68.12213759400066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2873176855737377
the lambda is 20.0
the regulation term lambda/alpha is 69.60935927094945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30541850036169044
the lambda is 20.0
the regulation term lambda/alpha is 65.48391789074694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29282079719882725
the lambda is 20.0
the regulation term lambda/alpha is 68.30115958744511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28033964191256006
the lambda is 20.0
the regulation term lambda/alpha is 71.34203305516864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3128629839002256
the lambda is 20.0
the regulation term lambda/alpha is 63.925747145524106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30851235194836363
the lambda is 20.0
the regulation term lambda/alpha is 64.82722611815375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3011697206863202
the lambda is 20.0
the regulation term lambda/alpha is 66.4077383158673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3039058822098794
the lambda is 20.0
the regulation term lambda/alpha is 65.80984828121184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3122606660633331
the lambda is 20.0
the regulation term lambda/alpha is 64.04905315850309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30550980281281565
the lambda is 20.0
the regulation term lambda/alpha is 65.46434784043215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33348079551114956
the lambda is 20.0
the regulation term lambda/alpha is 59.97346854515142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3244838019403303
the lambda is 20.0
the regulation term lambda/alpha is 61.63635867308355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2898650703586066
the lambda is 20.0
the regulation term lambda/alpha is 68.99762008322354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32277545302281346
the lambda is 20.0
the regulation term lambda/alpha is 61.96258052679867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3061660246290437
the lambda is 20.0
the regulation term lambda/alpha is 65.32403464503406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33519014679589343
the lambda is 20.0
the regulation term lambda/alpha is 59.66762505157574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32415406871001623
the lambda is 20.0
the regulation term lambda/alpha is 61.69905588287317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33979810159458923
the lambda is 20.0
the regulation term lambda/alpha is 58.85848068645734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29979880485020133
the lambda is 20.0
the regulation term lambda/alpha is 66.71140670488423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31329850504330337
the lambda is 20.0
the regulation term lambda/alpha is 63.83688296640818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30761625879427545
the lambda is 20.0
the regulation term lambda/alpha is 65.01606930138047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30210769321628045
the lambda is 20.0
the regulation term lambda/alpha is 66.20155808373241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2900894649801348
the lambda is 20.0
the regulation term lambda/alpha is 68.94424794561081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3054189517128746
the lambda is 20.0
the regulation term lambda/alpha is 65.48382111795758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2782918913237546
the lambda is 20.0
the regulation term lambda/alpha is 71.86698794875318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32271530892046874
the lambda is 20.0
the regulation term lambda/alpha is 61.97412842577258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29617605833790056
the lambda is 20.0
the regulation term lambda/alpha is 67.52740283005068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27644799776662926
the lambda is 20.0
the regulation term lambda/alpha is 72.34633696599792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31939189269022283
the lambda is 20.0
the regulation term lambda/alpha is 62.61899709332302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29261014606446895
the lambda is 20.0
the regulation term lambda/alpha is 68.35032984670848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2949937518491939
the lambda is 20.0
the regulation term lambda/alpha is 67.7980461437853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27690991305007806
the lambda is 20.0
the regulation term lambda/alpha is 72.22565555601139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3106207163914581
the lambda is 20.0
the regulation term lambda/alpha is 64.38720582562532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2961921176344016
the lambda is 20.0
the regulation term lambda/alpha is 67.52374154901236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3183357163137377
the lambda is 20.0
the regulation term lambda/alpha is 62.826754822223215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30457663116700073
the lambda is 20.0
the regulation term lambda/alpha is 65.66491960781427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34977450774449415
the lambda is 20.0
the regulation term lambda/alpha is 57.17969593887542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3055127455998794
the lambda is 20.0
the regulation term lambda/alpha is 65.4637172689135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32449674365116715
the lambda is 20.0
the regulation term lambda/alpha is 61.63390046681001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30747115075365833
the lambda is 20.0
the regulation term lambda/alpha is 65.0467530074837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3106028000740364
the lambda is 20.0
the regulation term lambda/alpha is 64.39091983469797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2919178332758015
the lambda is 20.0
the regulation term lambda/alpha is 68.51242959557105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32858628838536413
the lambda is 20.0
the regulation term lambda/alpha is 60.866812484104976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33454807226704886
the lambda is 20.0
the regulation term lambda/alpha is 59.782140917659355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3066835451820576
the lambda is 20.0
the regulation term lambda/alpha is 65.21380202556134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27223089229971514
the lambda is 20.0
the regulation term lambda/alpha is 73.46704788367961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3090870749613372
the lambda is 20.0
the regulation term lambda/alpha is 64.70668500939983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2919259362855454
the lambda is 20.0
the regulation term lambda/alpha is 68.51052789100977
1710
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2954820230735197
the lambda is 20.0
the regulation term lambda/alpha is 67.68601281379391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3219159066848577
the lambda is 20.0
the regulation term lambda/alpha is 62.128026558125846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3139600623257848
the lambda is 20.0
the regulation term lambda/alpha is 63.70236982322527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3305251619353796
the lambda is 20.0
the regulation term lambda/alpha is 60.50976537728817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35166023505636673
the lambda is 20.0
the regulation term lambda/alpha is 56.87307806296111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2963433663555584
the lambda is 20.0
the regulation term lambda/alpha is 67.48927855534859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29837254471433744
the lambda is 20.0
the regulation term lambda/alpha is 67.03029603192226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3064718449184771
the lambda is 20.0
the regulation term lambda/alpha is 65.25884948850714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3017815196944852
the lambda is 20.0
the regulation term lambda/alpha is 66.27311049479576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30703138566391913
the lambda is 20.0
the regulation term lambda/alpha is 65.13992032688242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3013965358977089
the lambda is 20.0
the regulation term lambda/alpha is 66.35776333802261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3091308368345783
the lambda is 20.0
the regulation term lambda/alpha is 64.69752485644896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3470519475035227
the lambda is 20.0
the regulation term lambda/alpha is 57.628260391182486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32089810615639197
the lambda is 20.0
the regulation term lambda/alpha is 62.32507956981478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3281521351303354
the lambda is 20.0
the regulation term lambda/alpha is 60.94734075722653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27886389162616226
the lambda is 20.0
the regulation term lambda/alpha is 71.71957575207149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30077062656522563
the lambda is 20.0
the regulation term lambda/alpha is 66.49585509196247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32950309095927655
the lambda is 20.0
the regulation term lambda/alpha is 60.697457926037515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32091707440672945
the lambda is 20.0
the regulation term lambda/alpha is 62.321395759242314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.300916008156338
the lambda is 20.0
the regulation term lambda/alpha is 66.46372894063248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3068788656277121
the lambda is 20.0
the regulation term lambda/alpha is 65.17229513049249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34157969569186214
the lambda is 20.0
the regulation term lambda/alpha is 58.55148960037113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29071982651474726
the lambda is 20.0
the regulation term lambda/alpha is 68.79475761858804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28716022236836636
the lambda is 20.0
the regulation term lambda/alpha is 69.64752929583747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28644045056219486
the lambda is 20.0
the regulation term lambda/alpha is 69.82254063888716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28411758212213717
the lambda is 20.0
the regulation term lambda/alpha is 70.39339083000625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3137945621640747
the lambda is 20.0
the regulation term lambda/alpha is 63.735967449756316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3217129112007372
the lambda is 20.0
the regulation term lambda/alpha is 62.167228307230495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3349731796204129
the lambda is 20.0
the regulation term lambda/alpha is 59.70627267133366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2982056387808308
the lambda is 20.0
the regulation term lambda/alpha is 67.06781294199202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2856562274426773
the lambda is 20.0
the regulation term lambda/alpha is 70.0142271675607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28996439570283483
the lambda is 20.0
the regulation term lambda/alpha is 68.97398541473576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29440155354162656
the lambda is 20.0
the regulation term lambda/alpha is 67.93442412039488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3087013210775541
the lambda is 20.0
the regulation term lambda/alpha is 64.78754263243162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31591722584507387
the lambda is 20.0
the regulation term lambda/alpha is 63.307722288647916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33459620933930034
the lambda is 20.0
the regulation term lambda/alpha is 59.77354029052618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3278405312762807
the lambda is 20.0
the regulation term lambda/alpha is 61.00526961123492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29926233905243876
the lambda is 20.0
the regulation term lambda/alpha is 66.83099538460623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3137661900433396
the lambda is 20.0
the regulation term lambda/alpha is 63.74173073662735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3232005290138001
the lambda is 20.0
the regulation term lambda/alpha is 61.88108683184128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3182473089449935
the lambda is 20.0
the regulation term lambda/alpha is 62.84420775245845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29307913262934787
the lambda is 20.0
the regulation term lambda/alpha is 68.24095533711592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31017859551317445
the lambda is 20.0
the regulation term lambda/alpha is 64.47898175214519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3332156251901591
the lambda is 20.0
the regulation term lambda/alpha is 60.02119495022607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34309437357427774
the lambda is 20.0
the regulation term lambda/alpha is 58.29299907091052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32093198472068135
the lambda is 20.0
the regulation term lambda/alpha is 62.318500343325766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3029696515003161
the lambda is 20.0
the regulation term lambda/alpha is 66.01321254772323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27557025370331173
the lambda is 20.0
the regulation term lambda/alpha is 72.5767739123711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2932525061435973
the lambda is 20.0
the regulation term lambda/alpha is 68.2006106717007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33127640272399606
the lambda is 20.0
the regulation term lambda/alpha is 60.372546416060494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31446381704310833
the lambda is 20.0
the regulation term lambda/alpha is 63.60032193229498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.300391504401661
the lambda is 20.0
the regulation term lambda/alpha is 66.57977907809769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3040445734041473
the lambda is 20.0
the regulation term lambda/alpha is 65.77982884573723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31521069573962013
the lambda is 20.0
the regulation term lambda/alpha is 63.44962360198908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2980486675457515
the lambda is 20.0
the regulation term lambda/alpha is 67.10313508423899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3190984378927536
the lambda is 20.0
the regulation term lambda/alpha is 62.67658385316771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31513711583574916
the lambda is 20.0
the regulation term lambda/alpha is 63.46443816038504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3153565781888058
the lambda is 20.0
the regulation term lambda/alpha is 63.42027210869178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3059447376836322
the lambda is 20.0
the regulation term lambda/alpha is 65.37128290365095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2592291893760781
the lambda is 20.0
the regulation term lambda/alpha is 77.15180550514663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29892698044929134
the lambda is 20.0
the regulation term lambda/alpha is 66.9059713845158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31282405022796556
the lambda is 20.0
the regulation term lambda/alpha is 63.93370326042808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30765534684819523
the lambda is 20.0
the regulation term lambda/alpha is 65.00780891634722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2982252574297569
the lambda is 20.0
the regulation term lambda/alpha is 67.06340090832427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33223352365566755
the lambda is 20.0
the regulation term lambda/alpha is 60.198621078131595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2956729884519621
the lambda is 20.0
the regulation term lambda/alpha is 67.64229666265031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31169569250166446
the lambda is 20.0
the regulation term lambda/alpha is 64.16514722895377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31000233915457703
the lambda is 20.0
the regulation term lambda/alpha is 64.51564221916198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31028493057597484
the lambda is 20.0
the regulation term lambda/alpha is 64.45688471842463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30261493685859436
the lambda is 20.0
the regulation term lambda/alpha is 66.09059092593827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31036923127692945
the lambda is 20.0
the regulation term lambda/alpha is 64.4393773110674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29594000918047564
the lambda is 20.0
the regulation term lambda/alpha is 67.58126437646769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31170392297645955
the lambda is 20.0
the regulation term lambda/alpha is 64.16345296209325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31238638020124665
the lambda is 20.0
the regulation term lambda/alpha is 64.02327779820467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2989775046853869
the lambda is 20.0
the regulation term lambda/alpha is 66.89466493823987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3160897234106777
the lambda is 20.0
the regulation term lambda/alpha is 63.27317378178448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32984515559912436
the lambda is 20.0
the regulation term lambda/alpha is 60.63451186261137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2787280629051111
the lambda is 20.0
the regulation term lambda/alpha is 71.75452586849394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3000642388354313
the lambda is 20.0
the regulation term lambda/alpha is 66.65239442601121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33704286286384283
the lambda is 20.0
the regulation term lambda/alpha is 59.33963363015794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3089338687132207
the lambda is 20.0
the regulation term lambda/alpha is 64.73877429918744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2866813848196398
the lambda is 20.0
the regulation term lambda/alpha is 69.76386001687074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.302226923210694
the lambda is 20.0
the regulation term lambda/alpha is 66.17544124636848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29213036956656513
the lambda is 20.0
the regulation term lambda/alpha is 68.4625841184334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30461517275163097
the lambda is 20.0
the regulation term lambda/alpha is 65.65661132154789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32045970180897104
the lambda is 20.0
the regulation term lambda/alpha is 62.410343288411916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3113688691061703
the lambda is 20.0
the regulation term lambda/alpha is 64.23249715815494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27463359835967016
the lambda is 20.0
the regulation term lambda/alpha is 72.82430161297043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3065163274071206
the lambda is 20.0
the regulation term lambda/alpha is 65.24937894559736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3142783231024148
the lambda is 20.0
the regulation term lambda/alpha is 63.63786023346746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28670672315427254
the lambda is 20.0
the regulation term lambda/alpha is 69.7576944829379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26360091569547156
the lambda is 20.0
the regulation term lambda/alpha is 75.87227057703117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32611804751894813
the lambda is 20.0
the regulation term lambda/alpha is 61.3274860197302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3155037581771588
the lambda is 20.0
the regulation term lambda/alpha is 63.39068705726726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3039535167056034
the lambda is 20.0
the regulation term lambda/alpha is 65.79953479982652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3072052945856432
the lambda is 20.0
the regulation term lambda/alpha is 65.10304461703984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3199294859868399
the lambda is 20.0
the regulation term lambda/alpha is 62.51377530367016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34426761049069543
the lambda is 20.0
the regulation term lambda/alpha is 58.09434111879817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3036085474888555
the lambda is 20.0
the regulation term lambda/alpha is 65.8742982219041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2907898217026629
the lambda is 20.0
the regulation term lambda/alpha is 68.77819822885793
1720
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30425452250906426
the lambda is 20.0
the regulation term lambda/alpha is 65.73443784850943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29248987967395523
the lambda is 20.0
the regulation term lambda/alpha is 68.37843422922677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2995829889783903
the lambda is 20.0
the regulation term lambda/alpha is 66.7594647753603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3394510741445026
the lambda is 20.0
the regulation term lambda/alpha is 58.91865285860342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2716053604850857
the lambda is 20.0
the regulation term lambda/alpha is 73.63624916783715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30348005085961677
the lambda is 20.0
the regulation term lambda/alpha is 65.90219008909934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2914398990414426
the lambda is 20.0
the regulation term lambda/alpha is 68.62478358584667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3208397977793719
the lambda is 20.0
the regulation term lambda/alpha is 62.33640632622878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31971760951398936
the lambda is 20.0
the regulation term lambda/alpha is 62.55520310689953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2936610575438802
the lambda is 20.0
the regulation term lambda/alpha is 68.10572762788442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3165508496043501
the lambda is 20.0
the regulation term lambda/alpha is 63.181002436093785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29899089714368243
the lambda is 20.0
the regulation term lambda/alpha is 66.89166857942449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2859187467610999
the lambda is 20.0
the regulation term lambda/alpha is 69.94994286510023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28829035288956817
the lambda is 20.0
the regulation term lambda/alpha is 69.37450316855089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3104267017026032
the lambda is 20.0
the regulation term lambda/alpha is 64.4274474144963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29697481386526037
the lambda is 20.0
the regulation term lambda/alpha is 67.34577838332831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30032014621072595
the lambda is 20.0
the regulation term lambda/alpha is 66.5955989045323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2924372317579341
the lambda is 20.0
the regulation term lambda/alpha is 68.39074450190073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2904852428106593
the lambda is 20.0
the regulation term lambda/alpha is 68.85031338075981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28845538712402374
the lambda is 20.0
the regulation term lambda/alpha is 69.33481187300842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33157142370460996
the lambda is 20.0
the regulation term lambda/alpha is 60.31882897670211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3135400133581685
the lambda is 20.0
the regulation term lambda/alpha is 63.78771176855584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29593544142961836
the lambda is 20.0
the regulation term lambda/alpha is 67.58230749038741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34148221778412796
the lambda is 20.0
the regulation term lambda/alpha is 58.56820343319674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28354747589823054
the lambda is 20.0
the regulation term lambda/alpha is 70.53492518895955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3017078341248308
the lambda is 20.0
the regulation term lambda/alpha is 66.28929625912548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3101801223085399
the lambda is 20.0
the regulation term lambda/alpha is 64.4786643681369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3096113819596281
the lambda is 20.0
the regulation term lambda/alpha is 64.59710839250705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29936834107894583
the lambda is 20.0
the regulation term lambda/alpha is 66.80733148975776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29236909445632253
the lambda is 20.0
the regulation term lambda/alpha is 68.40668312494238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2912560614142308
the lambda is 20.0
the regulation term lambda/alpha is 68.66809879556655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2907740187083554
the lambda is 20.0
the regulation term lambda/alpha is 68.78193618825306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30479270963283395
the lambda is 20.0
the regulation term lambda/alpha is 65.61836739498408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30657675062930073
the lambda is 20.0
the regulation term lambda/alpha is 65.2365189432878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2989162439222639
the lambda is 20.0
the regulation term lambda/alpha is 66.90837452514356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3074524292454778
the lambda is 20.0
the regulation term lambda/alpha is 65.05071385866819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3171068530598989
the lambda is 20.0
the regulation term lambda/alpha is 63.07022319767452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31288256442843176
the lambda is 20.0
the regulation term lambda/alpha is 63.921746603348254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32007760032385885
the lambda is 20.0
the regulation term lambda/alpha is 62.48484736127654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3207108643461106
the lambda is 20.0
the regulation term lambda/alpha is 62.3614670515684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28384678801038643
the lambda is 20.0
the regulation term lambda/alpha is 70.46054718529409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.315117948493585
the lambda is 20.0
the regulation term lambda/alpha is 63.46829844383539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3095055495264208
the lambda is 20.0
the regulation term lambda/alpha is 64.6191967497911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3316892563216127
the lambda is 20.0
the regulation term lambda/alpha is 60.29740071112701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31270765007753587
the lambda is 20.0
the regulation term lambda/alpha is 63.95750150353213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26144998667615316
the lambda is 20.0
the regulation term lambda/alpha is 76.49646593699444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3117963455771831
the lambda is 20.0
the regulation term lambda/alpha is 64.14443364618953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3107858708332724
the lambda is 20.0
the regulation term lambda/alpha is 64.35298987813194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3217479189948775
the lambda is 20.0
the regulation term lambda/alpha is 62.16046419967185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33186657865468355
the lambda is 20.0
the regulation term lambda/alpha is 60.265182716125686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30638834894713424
the lambda is 20.0
the regulation term lambda/alpha is 65.27663362111363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3334947353728959
the lambda is 20.0
the regulation term lambda/alpha is 59.97096169340446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3029747640660808
the lambda is 20.0
the regulation term lambda/alpha is 66.01209860382255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34106149557325044
the lambda is 20.0
the regulation term lambda/alpha is 58.64045123705429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3222182308439067
the lambda is 20.0
the regulation term lambda/alpha is 62.06973437728503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3099901825018128
the lambda is 20.0
the regulation term lambda/alpha is 64.51817228077228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3185100990570368
the lambda is 20.0
the regulation term lambda/alpha is 62.792357476924224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2782477363364808
the lambda is 20.0
the regulation term lambda/alpha is 71.87839248335986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2964699551806729
the lambda is 20.0
the regulation term lambda/alpha is 67.4604615088626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.304592942817909
the lambda is 20.0
the regulation term lambda/alpha is 65.6614031007158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30369878562731767
the lambda is 20.0
the regulation term lambda/alpha is 65.85472496601581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.298145482684503
the lambda is 20.0
the regulation term lambda/alpha is 67.08134505315971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2882350406842222
the lambda is 20.0
the regulation term lambda/alpha is 69.3878161118902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.315389714886242
the lambda is 20.0
the regulation term lambda/alpha is 63.41360880209364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3160201702912733
the lambda is 20.0
the regulation term lambda/alpha is 63.287099622679655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.328422674226125
the lambda is 20.0
the regulation term lambda/alpha is 60.89713521493841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2766202546653891
the lambda is 20.0
the regulation term lambda/alpha is 72.30128547236282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31376931279089526
the lambda is 20.0
the regulation term lambda/alpha is 63.74109635548893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2947575055043477
the lambda is 20.0
the regulation term lambda/alpha is 67.85238586470871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28468986547783587
the lambda is 20.0
the regulation term lambda/alpha is 70.25188608815115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29970542158097957
the lambda is 20.0
the regulation term lambda/alpha is 66.73219287958744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28365093665659463
the lambda is 20.0
the regulation term lambda/alpha is 70.50919780396579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3090732497459114
the lambda is 20.0
the regulation term lambda/alpha is 64.70957941666569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32898969241444265
the lambda is 20.0
the regulation term lambda/alpha is 60.79217817804799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3275774701817885
the lambda is 20.0
the regulation term lambda/alpha is 61.05425989431153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32621480772665185
the lambda is 20.0
the regulation term lambda/alpha is 61.30929536699261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2890623381876096
the lambda is 20.0
the regulation term lambda/alpha is 69.18922792017075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3194958126525072
the lambda is 20.0
the regulation term lambda/alpha is 62.59862949049843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31878577004481595
the lambda is 20.0
the regulation term lambda/alpha is 62.73805759017517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.355831109942456
the lambda is 20.0
the regulation term lambda/alpha is 56.20644019359169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31904089217930826
the lambda is 20.0
the regulation term lambda/alpha is 62.68788888905045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29716705588651493
the lambda is 20.0
the regulation term lambda/alpha is 67.30221134484637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32016705909316956
the lambda is 20.0
the regulation term lambda/alpha is 62.46738829612056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2734813797228351
the lambda is 20.0
the regulation term lambda/alpha is 73.13112146892553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30917067963774936
the lambda is 20.0
the regulation term lambda/alpha is 64.68918729109015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29167799398450944
the lambda is 20.0
the regulation term lambda/alpha is 68.56876559930733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30758556892397987
the lambda is 20.0
the regulation term lambda/alpha is 65.02255638964331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33069146263282967
the lambda is 20.0
the regulation term lambda/alpha is 60.47933575535398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3186339873807767
the lambda is 20.0
the regulation term lambda/alpha is 62.76794313250529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2659096950075776
the lambda is 20.0
the regulation term lambda/alpha is 75.2135043418784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33230599839533087
the lambda is 20.0
the regulation term lambda/alpha is 60.18549197600345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27820793715629616
the lambda is 20.0
the regulation term lambda/alpha is 71.88867508393218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3040975264606126
the lambda is 20.0
the regulation term lambda/alpha is 65.76837448426416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.317595988972082
the lambda is 20.0
the regulation term lambda/alpha is 62.973087489962225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33857384207243413
the lambda is 20.0
the regulation term lambda/alpha is 59.0713088689268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2965460905746838
the lambda is 20.0
the regulation term lambda/alpha is 67.44314167568866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29865800608713844
the lambda is 20.0
the regulation term lambda/alpha is 66.96622756586899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30084245321113784
the lambda is 20.0
the regulation term lambda/alpha is 66.47997909378688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.307571707652095
the lambda is 20.0
the regulation term lambda/alpha is 65.02548674802915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2952905560695016
the lambda is 20.0
the regulation term lambda/alpha is 67.72990056374394
1730
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30581531273557083
the lambda is 20.0
the regulation term lambda/alpha is 65.3989488658908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2834354014487705
the lambda is 20.0
the regulation term lambda/alpha is 70.56281571663482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3116901512049861
the lambda is 20.0
the regulation term lambda/alpha is 64.16628797118072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33766357731991464
the lambda is 20.0
the regulation term lambda/alpha is 59.23055177802396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30806858104599244
the lambda is 20.0
the regulation term lambda/alpha is 64.9206093399513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30266300457603496
the lambda is 20.0
the regulation term lambda/alpha is 66.08009468489765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3024679676801925
the lambda is 20.0
the regulation term lambda/alpha is 66.12270434251913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.320152061036505
the lambda is 20.0
the regulation term lambda/alpha is 62.47031468499439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3216393372289814
the lambda is 20.0
the regulation term lambda/alpha is 62.18144886227521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3169657776853693
the lambda is 20.0
the regulation term lambda/alpha is 63.098294541603984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2815544515995022
the lambda is 20.0
the regulation term lambda/alpha is 71.03421695654468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30738672502726705
the lambda is 20.0
the regulation term lambda/alpha is 65.06461851345688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3166589051303198
the lambda is 20.0
the regulation term lambda/alpha is 63.159442782034105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2870563133275465
the lambda is 20.0
the regulation term lambda/alpha is 69.6727404046987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3443731689478837
the lambda is 20.0
the regulation term lambda/alpha is 58.0765338400296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29074934632304533
the lambda is 20.0
the regulation term lambda/alpha is 68.78777288041924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2919939877799103
the lambda is 20.0
the regulation term lambda/alpha is 68.49456097388877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31943848489933935
the lambda is 20.0
the regulation term lambda/alpha is 62.609863699742846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3111705813454317
the lambda is 20.0
the regulation term lambda/alpha is 64.27342814196797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3094278847858127
the lambda is 20.0
the regulation term lambda/alpha is 64.63541582182901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3299312951438804
the lambda is 20.0
the regulation term lambda/alpha is 60.618681205364766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3081441574469727
the lambda is 20.0
the regulation term lambda/alpha is 64.90468670801172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31423378891293696
the lambda is 20.0
the regulation term lambda/alpha is 63.6468791888618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3187068573346238
the lambda is 20.0
the regulation term lambda/alpha is 62.753591708888635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30621893358762986
the lambda is 20.0
the regulation term lambda/alpha is 65.3127478620673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3240640802165357
the lambda is 20.0
the regulation term lambda/alpha is 61.71618892978278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2911630678980691
the lambda is 20.0
the regulation term lambda/alpha is 68.69003045057086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.299072748614953
the lambda is 20.0
the regulation term lambda/alpha is 66.87336138990513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3319600144571462
the lambda is 20.0
the regulation term lambda/alpha is 60.24822005356873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30484486000217326
the lambda is 20.0
the regulation term lambda/alpha is 65.60714194051826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31348473673005595
the lambda is 20.0
the regulation term lambda/alpha is 63.798959428197456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.297435554416481
the lambda is 20.0
the regulation term lambda/alpha is 67.24145685688676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.319187978049646
the lambda is 20.0
the regulation term lambda/alpha is 62.65900151442806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30491126829417053
the lambda is 20.0
the regulation term lambda/alpha is 65.5928530024168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.303739950906997
the lambda is 20.0
the regulation term lambda/alpha is 65.8457998043328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3025610463899836
the lambda is 20.0
the regulation term lambda/alpha is 66.10236260956462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3389563739789749
the lambda is 20.0
the regulation term lambda/alpha is 59.00464347438582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3252123925851564
the lambda is 20.0
the regulation term lambda/alpha is 61.498271455824145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30237666207721037
the lambda is 20.0
the regulation term lambda/alpha is 66.14267074253601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2952618313140152
the lambda is 20.0
the regulation term lambda/alpha is 67.73648971488534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2759965996274002
the lambda is 20.0
the regulation term lambda/alpha is 72.46466089437449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2769230337611989
the lambda is 20.0
the regulation term lambda/alpha is 72.22223347894833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31052841889755056
the lambda is 20.0
the regulation term lambda/alpha is 64.4063434548269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33338117935457484
the lambda is 20.0
the regulation term lambda/alpha is 59.99138895218966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31118387736158637
the lambda is 20.0
the regulation term lambda/alpha is 64.27068191826852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3302522529767112
the lambda is 20.0
the regulation term lambda/alpha is 60.559768539748205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3499180280333632
the lambda is 20.0
the regulation term lambda/alpha is 57.15624345623337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30809434052959017
the lambda is 20.0
the regulation term lambda/alpha is 64.915181387693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3283432296994745
the lambda is 20.0
the regulation term lambda/alpha is 60.91186962589596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3056235658213024
the lambda is 20.0
the regulation term lambda/alpha is 65.43997988588997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3083703245596633
the lambda is 20.0
the regulation term lambda/alpha is 64.85708386031942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3198951864991917
the lambda is 20.0
the regulation term lambda/alpha is 62.52047809431648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2911686984920028
the lambda is 20.0
the regulation term lambda/alpha is 68.68870212898011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30495638028908123
the lambda is 20.0
the regulation term lambda/alpha is 65.5831498952117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2864939604279989
the lambda is 20.0
the regulation term lambda/alpha is 69.80949954449864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31606949600164974
the lambda is 20.0
the regulation term lambda/alpha is 63.27722305696849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31380405936723876
the lambda is 20.0
the regulation term lambda/alpha is 63.73403849627831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30655264223887035
the lambda is 20.0
the regulation term lambda/alpha is 65.24164937523423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2958978309997777
the lambda is 20.0
the regulation term lambda/alpha is 67.5908976163297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3077370376056441
the lambda is 20.0
the regulation term lambda/alpha is 64.99055217925834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28688856085572517
the lambda is 20.0
the regulation term lambda/alpha is 69.71348017622041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3161683024791758
the lambda is 20.0
the regulation term lambda/alpha is 63.257448147627905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3105086141894459
the lambda is 20.0
the regulation term lambda/alpha is 64.41045138862944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30880847897210434
the lambda is 20.0
the regulation term lambda/alpha is 64.76506107141788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33330812772619994
the lambda is 20.0
the regulation term lambda/alpha is 60.004537352384176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31373957380320244
the lambda is 20.0
the regulation term lambda/alpha is 63.74713829548733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29127924533785615
the lambda is 20.0
the regulation term lambda/alpha is 68.66263326383556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3141505117177307
the lambda is 20.0
the regulation term lambda/alpha is 63.66375114477077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31163806191175236
the lambda is 20.0
the regulation term lambda/alpha is 64.1770131585001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29129839458991946
the lambda is 20.0
the regulation term lambda/alpha is 68.65811954835988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30810599720058335
the lambda is 20.0
the regulation term lambda/alpha is 64.91272543124043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3041492932968029
the lambda is 20.0
the regulation term lambda/alpha is 65.75718057146061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29848147410721715
the lambda is 20.0
the regulation term lambda/alpha is 67.00583364452235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32315653422531304
the lambda is 20.0
the regulation term lambda/alpha is 61.889511372391084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31475252128107684
the lambda is 20.0
the regulation term lambda/alpha is 63.541985044624376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3248128338973751
the lambda is 20.0
the regulation term lambda/alpha is 61.57392169522162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3158363330583774
the lambda is 20.0
the regulation term lambda/alpha is 63.32393681984433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2879952910280705
the lambda is 20.0
the regulation term lambda/alpha is 69.4455799211336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3117743868578855
the lambda is 20.0
the regulation term lambda/alpha is 64.14895143107601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3085250586619318
the lambda is 20.0
the regulation term lambda/alpha is 64.8245561859373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3987148001446065
the lambda is 20.0
the regulation term lambda/alpha is 50.161167814052476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3068231485663261
the lambda is 20.0
the regulation term lambda/alpha is 65.18412998971162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3189560613323993
the lambda is 20.0
the regulation term lambda/alpha is 62.704561614074635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31018036795103016
the lambda is 20.0
the regulation term lambda/alpha is 64.4786133052673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29660634864922586
the lambda is 20.0
the regulation term lambda/alpha is 67.42944003417979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33529787136522565
the lambda is 20.0
the regulation term lambda/alpha is 59.64845502468118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3351861025036082
the lambda is 20.0
the regulation term lambda/alpha is 59.668344989884254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31799740085070183
the lambda is 20.0
the regulation term lambda/alpha is 62.89359581712399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3097525487933662
the lambda is 20.0
the regulation term lambda/alpha is 64.5676688631281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29833356680028317
the lambda is 20.0
the regulation term lambda/alpha is 67.03905368244676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32777551998116605
the lambda is 20.0
the regulation term lambda/alpha is 61.01736945196273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33527358359575615
the lambda is 20.0
the regulation term lambda/alpha is 59.652776056804605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31229023369149056
the lambda is 20.0
the regulation term lambda/alpha is 64.04298899644063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3120511951319531
the lambda is 20.0
the regulation term lambda/alpha is 64.09204743325164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3530228444656583
the lambda is 20.0
the regulation term lambda/alpha is 56.65355744972357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3098871601221896
the lambda is 20.0
the regulation term lambda/alpha is 64.53962142901929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28765618944338417
the lambda is 20.0
the regulation term lambda/alpha is 69.52744538089055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30708935400677506
the lambda is 20.0
the regulation term lambda/alpha is 65.1276240581064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30467746845969385
the lambda is 20.0
the regulation term lambda/alpha is 65.64318687926155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31802310751289314
the lambda is 20.0
the regulation term lambda/alpha is 62.88851195880214
1740
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32076594289414967
the lambda is 20.0
the regulation term lambda/alpha is 62.3507589975032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29622164372253607
the lambda is 20.0
the regulation term lambda/alpha is 67.51701107544166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3140835534030432
the lambda is 20.0
the regulation term lambda/alpha is 63.67732338514168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31467830883045567
the lambda is 20.0
the regulation term lambda/alpha is 63.55697052756097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31687538856447434
the lambda is 20.0
the regulation term lambda/alpha is 63.11629341301973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32158140952482556
the lambda is 20.0
the regulation term lambda/alpha is 62.192649847366354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32350647366230406
the lambda is 20.0
the regulation term lambda/alpha is 61.822565012647104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31651552887979895
the lambda is 20.0
the regulation term lambda/alpha is 63.188052955200405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3311968086191762
the lambda is 20.0
the regulation term lambda/alpha is 60.3870553082437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29152317590042554
the lambda is 20.0
the regulation term lambda/alpha is 68.60518014811737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32140597560119616
the lambda is 20.0
the regulation term lambda/alpha is 62.22659663557782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34039672813255994
the lambda is 20.0
the regulation term lambda/alpha is 58.75497132337725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29206754025084736
the lambda is 20.0
the regulation term lambda/alpha is 68.47731173009724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3036460962510922
the lambda is 20.0
the regulation term lambda/alpha is 65.86615223092322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3059700011277574
the lambda is 20.0
the regulation term lambda/alpha is 65.36588530340602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3203015062769029
the lambda is 20.0
the regulation term lambda/alpha is 62.4411674877041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31118579660529366
the lambda is 20.0
the regulation term lambda/alpha is 64.27028552774178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30566830516117194
the lambda is 20.0
the regulation term lambda/alpha is 65.43040172076216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3029310115915687
the lambda is 20.0
the regulation term lambda/alpha is 66.02163276358546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.308667250527616
the lambda is 20.0
the regulation term lambda/alpha is 64.79469385175551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3062381430348084
the lambda is 20.0
the regulation term lambda/alpha is 65.30865097926979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3021872848947592
the lambda is 20.0
the regulation term lambda/alpha is 66.18412156873268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.301627804077758
the lambda is 20.0
the regulation term lambda/alpha is 66.30688460949743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3306053213721428
the lambda is 20.0
the regulation term lambda/alpha is 60.495094020241694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.310551024932007
the lambda is 20.0
the regulation term lambda/alpha is 64.40165510443529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28944740020301585
the lambda is 20.0
the regulation term lambda/alpha is 69.09718306667179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3287145550745761
the lambda is 20.0
the regulation term lambda/alpha is 60.843061833579476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31009544636721603
the lambda is 20.0
the regulation term lambda/alpha is 64.49627117811957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32436907290517625
the lambda is 20.0
the regulation term lambda/alpha is 61.65815939501316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3059080259736482
the lambda is 20.0
the regulation term lambda/alpha is 65.37912804459357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30295207629143384
the lambda is 20.0
the regulation term lambda/alpha is 66.01704218313526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31172224594844056
the lambda is 20.0
the regulation term lambda/alpha is 64.15968144701498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3076921632190875
the lambda is 20.0
the regulation term lambda/alpha is 65.0000305199821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32500963672847477
the lambda is 20.0
the regulation term lambda/alpha is 61.53663688658177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.314105465349795
the lambda is 20.0
the regulation term lambda/alpha is 63.67288126530223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30402675187221195
the lambda is 20.0
the regulation term lambda/alpha is 65.78368474760526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3073561602258518
the lambda is 20.0
the regulation term lambda/alpha is 65.0710888153456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3127675398401121
the lambda is 20.0
the regulation term lambda/alpha is 63.94525470969294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30322423867097675
the lambda is 20.0
the regulation term lambda/alpha is 65.95778783272549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29065358410774395
the lambda is 20.0
the regulation term lambda/alpha is 68.81043652496675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3144813127296065
the lambda is 20.0
the regulation term lambda/alpha is 63.596783625729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30583382746494453
the lambda is 20.0
the regulation term lambda/alpha is 65.39498970986934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29161543575811816
the lambda is 20.0
the regulation term lambda/alpha is 68.58347517855364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2861920646689943
the lambda is 20.0
the regulation term lambda/alpha is 69.8831395731804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3194178070675436
the lambda is 20.0
the regulation term lambda/alpha is 62.61391681200426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3137552351193275
the lambda is 20.0
the regulation term lambda/alpha is 63.74395631165674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32213123286027073
the lambda is 20.0
the regulation term lambda/alpha is 62.08649755075224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30679744285239097
the lambda is 20.0
the regulation term lambda/alpha is 65.18959158868404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3308232608310559
the lambda is 20.0
the regulation term lambda/alpha is 60.45524111502412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30603024763001696
the lambda is 20.0
the regulation term lambda/alpha is 65.35301707881996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3034337579790088
the lambda is 20.0
the regulation term lambda/alpha is 65.91224435016086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32067686333222045
the lambda is 20.0
the regulation term lambda/alpha is 62.368079169091935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3083712931946206
the lambda is 20.0
the regulation term lambda/alpha is 64.8568801356536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32282620012792973
the lambda is 20.0
the regulation term lambda/alpha is 61.95284023438739
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33790993299434724
the lambda is 20.0
the regulation term lambda/alpha is 59.18736931694332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29740909690997125
the lambda is 20.0
the regulation term lambda/alpha is 67.24743865536233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29424468839446244
the lambda is 20.0
the regulation term lambda/alpha is 67.97064072466156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3245522729500843
the lambda is 20.0
the regulation term lambda/alpha is 61.62335520933471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32336879949698355
the lambda is 20.0
the regulation term lambda/alpha is 61.84888595037928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3169358683674109
the lambda is 20.0
the regulation term lambda/alpha is 63.10424914359902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3215550109713545
the lambda is 20.0
the regulation term lambda/alpha is 62.19775564866468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30317747271452705
the lambda is 20.0
the regulation term lambda/alpha is 65.9679620023486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28381987948064114
the lambda is 20.0
the regulation term lambda/alpha is 70.46722744227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29622888763265
the lambda is 20.0
the regulation term lambda/alpha is 67.51536003065902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3193199868193901
the lambda is 20.0
the regulation term lambda/alpha is 62.63309791288497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29794852889382806
the lambda is 20.0
the regulation term lambda/alpha is 67.12568803159577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31269040137165643
the lambda is 20.0
the regulation term lambda/alpha is 63.96102954317575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29741352246965314
the lambda is 20.0
the regulation term lambda/alpha is 67.24643800296847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3200981010450002
the lambda is 20.0
the regulation term lambda/alpha is 62.48084551175875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3362286834981557
the lambda is 20.0
the regulation term lambda/alpha is 59.483324836888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32049126334892175
the lambda is 20.0
the regulation term lambda/alpha is 62.40419720342211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33901962868186564
the lambda is 20.0
the regulation term lambda/alpha is 58.99363431480808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29667132249952616
the lambda is 20.0
the regulation term lambda/alpha is 67.41467234343806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33168579076038424
the lambda is 20.0
the regulation term lambda/alpha is 60.298030718018786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3266584659882434
the lambda is 20.0
the regulation term lambda/alpha is 61.22602682129723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30054123662363363
the lambda is 20.0
the regulation term lambda/alpha is 66.5466084610742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34093338242380383
the lambda is 20.0
the regulation term lambda/alpha is 58.66248666473679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3237591331532557
the lambda is 20.0
the regulation term lambda/alpha is 61.77431909089259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.302840185716655
the lambda is 20.0
the regulation term lambda/alpha is 66.04143354578612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26997453732164384
the lambda is 20.0
the regulation term lambda/alpha is 74.08106037856557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3233332814813342
the lambda is 20.0
the regulation term lambda/alpha is 61.85568002270309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3083003936191861
the lambda is 20.0
the regulation term lambda/alpha is 64.87179521640209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30991271495283845
the lambda is 20.0
the regulation term lambda/alpha is 64.5342996109196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2874474803065617
the lambda is 20.0
the regulation term lambda/alpha is 69.57792769193897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3088446170895951
the lambda is 20.0
the regulation term lambda/alpha is 64.75748286782685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32162319492056174
the lambda is 20.0
the regulation term lambda/alpha is 62.18456975697861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.36342767761647465
the lambda is 20.0
the regulation term lambda/alpha is 55.03158188492734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29881384523645405
the lambda is 20.0
the regulation term lambda/alpha is 66.93130294606604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33156473988352586
the lambda is 20.0
the regulation term lambda/alpha is 60.32004490895421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3251267188851532
the lambda is 20.0
the regulation term lambda/alpha is 61.514476781789014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3038201827232536
the lambda is 20.0
the regulation term lambda/alpha is 65.82841146606042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3270615884341532
the lambda is 20.0
the regulation term lambda/alpha is 61.15056217928987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3080517932443077
the lambda is 20.0
the regulation term lambda/alpha is 64.92414729797898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3364253600668254
the lambda is 20.0
the regulation term lambda/alpha is 59.448550477964346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3098733379030511
the lambda is 20.0
the regulation term lambda/alpha is 64.54250028525308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3304376432433533
the lambda is 20.0
the regulation term lambda/alpha is 60.52579180656742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.300162170276833
the lambda is 20.0
the regulation term lambda/alpha is 66.63064829773332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3221863296249402
the lambda is 20.0
the regulation term lambda/alpha is 62.07588020038642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3253479482713936
the lambda is 20.0
the regulation term lambda/alpha is 61.472648302415955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2962084229735867
the lambda is 20.0
the regulation term lambda/alpha is 67.52002458006884
1750
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2920849789884476
the lambda is 20.0
the regulation term lambda/alpha is 68.47322333816773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3141722310144355
the lambda is 20.0
the regulation term lambda/alpha is 63.65934995407359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.303906383027148
the lambda is 20.0
the regulation term lambda/alpha is 65.80973983101038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3386431124004061
the lambda is 20.0
the regulation term lambda/alpha is 59.059225679311396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3256688783725318
the lambda is 20.0
the regulation term lambda/alpha is 61.41207013684019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3086112332088415
the lambda is 20.0
the regulation term lambda/alpha is 64.80645500828456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3027079483352201
the lambda is 20.0
the regulation term lambda/alpha is 66.07028361822833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32519428640254977
the lambda is 20.0
the regulation term lambda/alpha is 61.50169555944321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29469683778615063
the lambda is 20.0
the regulation term lambda/alpha is 67.86635428546124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26771099940481013
the lambda is 20.0
the regulation term lambda/alpha is 74.70742720495274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30385331306533725
the lambda is 20.0
the regulation term lambda/alpha is 65.82123393105614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31765804080421906
the lambda is 20.0
the regulation term lambda/alpha is 62.96078622586016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2882767900744565
the lambda is 20.0
the regulation term lambda/alpha is 69.37776709264168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30666651006163886
the lambda is 20.0
the regulation term lambda/alpha is 65.21742460883672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2992775473364452
the lambda is 20.0
the regulation term lambda/alpha is 66.8275992569405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29337462845800333
the lambda is 20.0
the regulation term lambda/alpha is 68.17222097603101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32033845936643407
the lambda is 20.0
the regulation term lambda/alpha is 62.43396449978574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3166424753936155
the lambda is 20.0
the regulation term lambda/alpha is 63.162719957700475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32252153713346104
the lambda is 20.0
the regulation term lambda/alpha is 62.01136264498175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3084029583386736
the lambda is 20.0
the regulation term lambda/alpha is 64.85022098276029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3052406216617883
the lambda is 20.0
the regulation term lambda/alpha is 65.5220785854654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28914651241335326
the lambda is 20.0
the regulation term lambda/alpha is 69.16908605630606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27483579325335566
the lambda is 20.0
the regulation term lambda/alpha is 72.77072525107064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2707692009444282
the lambda is 20.0
the regulation term lambda/alpha is 73.8636444996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33431291644916333
the lambda is 20.0
the regulation term lambda/alpha is 59.824191695690175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2907976172263623
the lambda is 20.0
the regulation term lambda/alpha is 68.77635446521428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29305379824379757
the lambda is 20.0
the regulation term lambda/alpha is 68.24685474085405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31689088331618925
the lambda is 20.0
the regulation term lambda/alpha is 63.113207267765674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.292512346663206
the lambda is 20.0
the regulation term lambda/alpha is 68.37318228836226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.299891587539372
the lambda is 20.0
the regulation term lambda/alpha is 66.69076703385103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.36329071194942825
the lambda is 20.0
the regulation term lambda/alpha is 55.05232955910002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3062451152633068
the lambda is 20.0
the regulation term lambda/alpha is 65.30716410873748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30863464714799543
the lambda is 20.0
the regulation term lambda/alpha is 64.80153859851538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30244832995193616
the lambda is 20.0
the regulation term lambda/alpha is 66.12699763684698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3035058862065858
the lambda is 20.0
the regulation term lambda/alpha is 65.8965802936247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3202378222184834
the lambda is 20.0
the regulation term lambda/alpha is 62.45358484343841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3355484708370028
the lambda is 20.0
the regulation term lambda/alpha is 59.60390744774179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3155257460582518
the lambda is 20.0
the regulation term lambda/alpha is 63.386269582919034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3144594044834587
the lambda is 20.0
the regulation term lambda/alpha is 63.6012143852166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.285025982101707
the lambda is 20.0
the regulation term lambda/alpha is 70.1690416169264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33743639198744896
the lambda is 20.0
the regulation term lambda/alpha is 59.27042984961712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27983965489660384
the lambda is 20.0
the regulation term lambda/alpha is 71.46949922944148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3021958582554421
the lambda is 20.0
the regulation term lambda/alpha is 66.18224391114676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3030051485190462
the lambda is 20.0
the regulation term lambda/alpha is 66.00547910737183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29579172221528277
the lambda is 20.0
the regulation term lambda/alpha is 67.61514436649321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2827901663769223
the lambda is 20.0
the regulation term lambda/alpha is 70.72381708401635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29046311824554566
the lambda is 20.0
the regulation term lambda/alpha is 68.85555770661671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.311631228334829
the lambda is 20.0
the regulation term lambda/alpha is 64.17842045827065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33630218288088143
the lambda is 20.0
the regulation term lambda/alpha is 59.47032466061637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31651421442820565
the lambda is 20.0
the regulation term lambda/alpha is 63.18831536880807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3162383813543231
the lambda is 20.0
the regulation term lambda/alpha is 63.24343020713666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31582455293299566
the lambda is 20.0
the regulation term lambda/alpha is 63.32629877653349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31824292766229356
the lambda is 20.0
the regulation term lambda/alpha is 62.84507293504786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2923545634986919
the lambda is 20.0
the regulation term lambda/alpha is 68.41008315606295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33982931047029163
the lambda is 20.0
the regulation term lambda/alpha is 58.85307530513448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30685160418168905
the lambda is 20.0
the regulation term lambda/alpha is 65.17808519638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31258070145069083
the lambda is 20.0
the regulation term lambda/alpha is 63.98347660997546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2727538082361225
the lambda is 20.0
the regulation term lambda/alpha is 73.32619892399829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3238611353749159
the lambda is 20.0
the regulation term lambda/alpha is 61.75486285764768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30982119095596033
the lambda is 20.0
the regulation term lambda/alpha is 64.55336362980707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30459611193157865
the lambda is 20.0
the regulation term lambda/alpha is 65.66071993884346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31203024065529905
the lambda is 20.0
the regulation term lambda/alpha is 64.09635155232942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3117365469165138
the lambda is 20.0
the regulation term lambda/alpha is 64.15673811051805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32415430151677
the lambda is 20.0
the regulation term lambda/alpha is 61.69901157077599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32724640934765276
the lambda is 20.0
the regulation term lambda/alpha is 61.116025810241496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3072367404612523
the lambda is 20.0
the regulation term lambda/alpha is 65.09638127905583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33570538335204225
the lambda is 20.0
the regulation term lambda/alpha is 59.57604790336863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2911392336429968
the lambda is 20.0
the regulation term lambda/alpha is 68.69565379334813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2771292163776124
the lambda is 20.0
the regulation term lambda/alpha is 72.16850053351386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30063587934678193
the lambda is 20.0
the regulation term lambda/alpha is 66.52565902465057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34191032911251856
the lambda is 20.0
the regulation term lambda/alpha is 58.49486925976501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32071439289874626
the lambda is 20.0
the regulation term lambda/alpha is 62.360780940424654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3059876877239371
the lambda is 20.0
the regulation term lambda/alpha is 65.36210704675167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3040988292985513
the lambda is 20.0
the regulation term lambda/alpha is 65.76809271555877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3112593645379521
the lambda is 20.0
the regulation term lambda/alpha is 64.2550948778326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2937025278236221
the lambda is 20.0
the regulation term lambda/alpha is 68.09611121907214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.307490508558781
the lambda is 20.0
the regulation term lambda/alpha is 65.04265804411561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3141088636132474
the lambda is 20.0
the regulation term lambda/alpha is 63.67219240468612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.311334439372361
the lambda is 20.0
the regulation term lambda/alpha is 64.23960047696387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30957832586549466
the lambda is 20.0
the regulation term lambda/alpha is 64.60400592995514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3014836974048179
the lambda is 20.0
the regulation term lambda/alpha is 66.33857874293268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29241224999138543
the lambda is 20.0
the regulation term lambda/alpha is 68.39658735428904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27961324322985726
the lambda is 20.0
the regulation term lambda/alpha is 71.52737033831733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2941699310084327
the lambda is 20.0
the regulation term lambda/alpha is 67.98791409930568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2901491450330068
the lambda is 20.0
the regulation term lambda/alpha is 68.93006697546821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31988555323526446
the lambda is 20.0
the regulation term lambda/alpha is 62.52236088102019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3254113638738185
the lambda is 20.0
the regulation term lambda/alpha is 61.46066861929013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2934079890614886
the lambda is 20.0
the regulation term lambda/alpha is 68.16446976775626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33995115127175457
the lambda is 20.0
the regulation term lambda/alpha is 58.831981963232536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3199488001621779
the lambda is 20.0
the regulation term lambda/alpha is 62.51000156857053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34875420898237797
the lambda is 20.0
the regulation term lambda/alpha is 57.34697814359732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3137421804290395
the lambda is 20.0
the regulation term lambda/alpha is 63.74660867292433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35168905323630273
the lambda is 20.0
the regulation term lambda/alpha is 56.86841775698329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30610758372168295
the lambda is 20.0
the regulation term lambda/alpha is 65.33650606377745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31380744220596835
the lambda is 20.0
the regulation term lambda/alpha is 63.73335144445984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3486906601015818
the lambda is 20.0
the regulation term lambda/alpha is 57.35742963167849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28749109248213595
the lambda is 20.0
the regulation term lambda/alpha is 69.56737277431563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29993326235931134
the lambda is 20.0
the regulation term lambda/alpha is 66.68150055341505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3116759323498798
the lambda is 20.0
the regulation term lambda/alpha is 64.16921527822203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33122362974930974
the lambda is 20.0
the regulation term lambda/alpha is 60.382165412344584
1760
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29364185596644315
the lambda is 20.0
the regulation term lambda/alpha is 68.11018113945433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31999449203327385
the lambda is 20.0
the regulation term lambda/alpha is 62.50107579326818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.304377521873408
the lambda is 20.0
the regulation term lambda/alpha is 65.70787447411472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2890601671813263
the lambda is 20.0
the regulation term lambda/alpha is 69.18974757062975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33329690649883503
the lambda is 20.0
the regulation term lambda/alpha is 60.00655754682171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3157886909524234
the lambda is 20.0
the regulation term lambda/alpha is 63.333490314930856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3067132249445248
the lambda is 20.0
the regulation term lambda/alpha is 65.20749147226175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3199913390521063
the lambda is 20.0
the regulation term lambda/alpha is 62.50169163717043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3177211570840326
the lambda is 20.0
the regulation term lambda/alpha is 62.94827887306948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29587641204854287
the lambda is 20.0
the regulation term lambda/alpha is 67.59579062598172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29225689579867487
the lambda is 20.0
the regulation term lambda/alpha is 68.43294473974456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2990187773464308
the lambda is 20.0
the regulation term lambda/alpha is 66.88543166915845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3238569465019889
the lambda is 20.0
the regulation term lambda/alpha is 61.75566161548175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2980432987830603
the lambda is 20.0
the regulation term lambda/alpha is 67.10434383749589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28499338306015254
the lambda is 20.0
the regulation term lambda/alpha is 70.17706792083195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2835885634685513
the lambda is 20.0
the regulation term lambda/alpha is 70.52470577579518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3096199457271336
the lambda is 20.0
the regulation term lambda/alpha is 64.59532170329199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3150821489188865
the lambda is 20.0
the regulation term lambda/alpha is 63.47550970000754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32354210116465554
the lambda is 20.0
the regulation term lambda/alpha is 61.81575729404592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2784813412020471
the lambda is 20.0
the regulation term lambda/alpha is 71.81809708927452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2945283653576694
the lambda is 20.0
the regulation term lambda/alpha is 67.90517434785066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3066876521062746
the lambda is 20.0
the regulation term lambda/alpha is 65.21292873268182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2996138523883069
the lambda is 20.0
the regulation term lambda/alpha is 66.75258784123075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3202830901248609
the lambda is 20.0
the regulation term lambda/alpha is 62.444757830340315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3006318380343968
the lambda is 20.0
the regulation term lambda/alpha is 66.52655331106914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3254093538794026
the lambda is 20.0
the regulation term lambda/alpha is 61.46104825066596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31591302498618035
the lambda is 20.0
the regulation term lambda/alpha is 63.30856412417596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31644788028521387
the lambda is 20.0
the regulation term lambda/alpha is 63.2015609710327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3362572658146858
the lambda is 20.0
the regulation term lambda/alpha is 59.4782686748609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30094640888491386
the lambda is 20.0
the regulation term lambda/alpha is 66.457014968563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29340917014539347
the lambda is 20.0
the regulation term lambda/alpha is 68.1641953797469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3172565343986201
the lambda is 20.0
the regulation term lambda/alpha is 63.040466724858064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.303429433465429
the lambda is 20.0
the regulation term lambda/alpha is 65.91318373956851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32204638655129036
the lambda is 20.0
the regulation term lambda/alpha is 62.10285485322383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3136351097633268
the lambda is 20.0
the regulation term lambda/alpha is 63.7683708787969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31137329933088204
the lambda is 20.0
the regulation term lambda/alpha is 64.23158325706959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2906051151509059
the lambda is 20.0
the regulation term lambda/alpha is 68.82191316424132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.320598548449016
the lambda is 20.0
the regulation term lambda/alpha is 62.383314262511554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2972665562624472
the lambda is 20.0
the regulation term lambda/alpha is 67.27968410392805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3279941371262036
the lambda is 20.0
the regulation term lambda/alpha is 60.97669969114271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3049125606576498
the lambda is 20.0
the regulation term lambda/alpha is 65.59257498891832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2853367738772399
the lambda is 20.0
the regulation term lambda/alpha is 70.09261276853357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3445833895790956
the lambda is 20.0
the regulation term lambda/alpha is 58.04110298070303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30561923186964085
the lambda is 20.0
the regulation term lambda/alpha is 65.44090788282205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30375356924109576
the lambda is 20.0
the regulation term lambda/alpha is 65.8428477070028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3221921606183479
the lambda is 20.0
the regulation term lambda/alpha is 62.074756758873974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3189147555401432
the lambda is 20.0
the regulation term lambda/alpha is 62.71268309967712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2904181613823954
the lambda is 20.0
the regulation term lambda/alpha is 68.86621657819077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3143942684215481
the lambda is 20.0
the regulation term lambda/alpha is 63.614391255961046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30095762835171164
the lambda is 20.0
the regulation term lambda/alpha is 66.45453750262534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32005411338082723
the lambda is 20.0
the regulation term lambda/alpha is 62.489432767271836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33316135499442695
the lambda is 20.0
the regulation term lambda/alpha is 60.030972080584064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32683706128756984
the lambda is 20.0
the regulation term lambda/alpha is 61.19257076051991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3457798019321756
the lambda is 20.0
the regulation term lambda/alpha is 57.84027837439441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30936708371662586
the lambda is 20.0
the regulation term lambda/alpha is 64.64811886166792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2896255365937054
the lambda is 20.0
the regulation term lambda/alpha is 69.05468431831184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28822025639690146
the lambda is 20.0
the regulation term lambda/alpha is 69.39137536696401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3078924279831252
the lambda is 20.0
the regulation term lambda/alpha is 64.95775206623837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3052517556636039
the lambda is 20.0
the regulation term lambda/alpha is 65.51968867966337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29155158056923586
the lambda is 20.0
the regulation term lambda/alpha is 68.59849622818466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30221788913106584
the lambda is 20.0
the regulation term lambda/alpha is 66.17741940261651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31111562606417215
the lambda is 20.0
the regulation term lambda/alpha is 64.28478136252374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2853770857142688
the lambda is 20.0
the regulation term lambda/alpha is 70.08271161625366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3293868462272179
the lambda is 20.0
the regulation term lambda/alpha is 60.71887881704779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27913902575084293
the lambda is 20.0
the regulation term lambda/alpha is 71.64888516108753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3170337704275872
the lambda is 20.0
the regulation term lambda/alpha is 63.08476214702858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.298100384786152
the lambda is 20.0
the regulation term lambda/alpha is 67.09149340530836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3275246294039323
the lambda is 20.0
the regulation term lambda/alpha is 61.06411000723318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3191825533349086
the lambda is 20.0
the regulation term lambda/alpha is 62.66006644484295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32201868316989496
the lambda is 20.0
the regulation term lambda/alpha is 62.10819758382817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3090644691297455
the lambda is 20.0
the regulation term lambda/alpha is 64.71141783562311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30572888009432325
the lambda is 20.0
the regulation term lambda/alpha is 65.41743780904707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2914246348556328
the lambda is 20.0
the regulation term lambda/alpha is 68.62837800211257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3067355427218409
the lambda is 20.0
the regulation term lambda/alpha is 65.20274703912203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32155542054462016
the lambda is 20.0
the regulation term lambda/alpha is 62.19767642581142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3224879868795886
the lambda is 20.0
the regulation term lambda/alpha is 62.01781403865954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29457149953957723
the lambda is 20.0
the regulation term lambda/alpha is 67.89523097536764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32076575625053905
the lambda is 20.0
the regulation term lambda/alpha is 62.350795277469366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31715107552938937
the lambda is 20.0
the regulation term lambda/alpha is 63.06142889982621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2939960718567466
the lambda is 20.0
the regulation term lambda/alpha is 68.02811981020366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31261177970522713
the lambda is 20.0
the regulation term lambda/alpha is 63.977115701969765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31297495669897807
the lambda is 20.0
the regulation term lambda/alpha is 63.902876482338385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3082313260665408
the lambda is 20.0
the regulation term lambda/alpha is 64.88633149403644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2948077830510472
the lambda is 20.0
the regulation term lambda/alpha is 67.84081408236402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32236076559796006
the lambda is 20.0
the regulation term lambda/alpha is 62.04228967784336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3007595433246584
the lambda is 20.0
the regulation term lambda/alpha is 66.49830551980446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2806319092265063
the lambda is 20.0
the regulation term lambda/alpha is 71.26773307827018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32252070530022736
the lambda is 20.0
the regulation term lambda/alpha is 62.011522582348455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32643126442942605
the lambda is 20.0
the regulation term lambda/alpha is 61.26864114856857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3137555160933995
the lambda is 20.0
the regulation term lambda/alpha is 63.74389922772338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3256815847745257
the lambda is 20.0
the regulation term lambda/alpha is 61.40967415718732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31010342309883165
the lambda is 20.0
the regulation term lambda/alpha is 64.49461215275231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30724610411028924
the lambda is 20.0
the regulation term lambda/alpha is 65.09439739818731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.334827047522544
the lambda is 20.0
the regulation term lambda/alpha is 59.73233090929846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28606893450896026
the lambda is 20.0
the regulation term lambda/alpha is 69.91321876431697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.289970928291676
the lambda is 20.0
the regulation term lambda/alpha is 68.9724315393521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2916216683730615
the lambda is 20.0
the regulation term lambda/alpha is 68.58200939449634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.297992305924471
the lambda is 20.0
the regulation term lambda/alpha is 67.11582682631138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2916597430116763
the lambda is 20.0
the regulation term lambda/alpha is 68.57305637548792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3196067751136519
the lambda is 20.0
the regulation term lambda/alpha is 62.57689622783503
1770
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31657654916356853
the lambda is 20.0
the regulation term lambda/alpha is 63.175873427271505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.318562645551656
the lambda is 20.0
the regulation term lambda/alpha is 62.781999959116156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29135398097866544
the lambda is 20.0
the regulation term lambda/alpha is 68.64502051016942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3188095546836973
the lambda is 20.0
the regulation term lambda/alpha is 62.73337704650269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32052062001172765
the lambda is 20.0
the regulation term lambda/alpha is 62.39848156810695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31014058115931925
the lambda is 20.0
the regulation term lambda/alpha is 64.48688502884438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29167782191689173
the lambda is 20.0
the regulation term lambda/alpha is 68.56880604963732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33439254861098106
the lambda is 20.0
the regulation term lambda/alpha is 59.80994517693994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30380402151069774
the lambda is 20.0
the regulation term lambda/alpha is 65.83191328590016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33442568501654185
the lambda is 20.0
the regulation term lambda/alpha is 59.80401893775214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33571178292134285
the lambda is 20.0
the regulation term lambda/alpha is 59.57491222369753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29488398328338056
the lambda is 20.0
the regulation term lambda/alpha is 67.82328350733177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2947480566517326
the lambda is 20.0
the regulation term lambda/alpha is 67.85456103492324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2840962030763546
the lambda is 20.0
the regulation term lambda/alpha is 70.39868813250115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29376660665815824
the lambda is 20.0
the regulation term lambda/alpha is 68.0812575245253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32437452387946414
the lambda is 20.0
the regulation term lambda/alpha is 61.657123256177464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.310218177287469
the lambda is 20.0
the regulation term lambda/alpha is 64.47075466331123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31265194077998887
the lambda is 20.0
the regulation term lambda/alpha is 63.968897650547035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3113004610941054
the lambda is 20.0
the regulation term lambda/alpha is 64.24661219487898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31971182873429127
the lambda is 20.0
the regulation term lambda/alpha is 62.556334181247216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27884243184024937
the lambda is 20.0
the regulation term lambda/alpha is 71.72509530923232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2995866257328798
the lambda is 20.0
the regulation term lambda/alpha is 66.75865436607502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31577279219173476
the lambda is 20.0
the regulation term lambda/alpha is 63.33667907606225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29509201518466827
the lambda is 20.0
the regulation term lambda/alpha is 67.77546992413204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2754320228261965
the lambda is 20.0
the regulation term lambda/alpha is 72.61319796725462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3182761932778955
the lambda is 20.0
the regulation term lambda/alpha is 62.83850448889044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30611832262300775
the lambda is 20.0
the regulation term lambda/alpha is 65.33421400139609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2915861778331509
the lambda is 20.0
the regulation term lambda/alpha is 68.59035688394064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2947642680737351
the lambda is 20.0
the regulation term lambda/alpha is 67.85082917511905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3146043179575486
the lambda is 20.0
the regulation term lambda/alpha is 63.57191830627931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29488043126130753
the lambda is 20.0
the regulation term lambda/alpha is 67.82410048185616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33659635149151806
the lambda is 20.0
the regulation term lambda/alpha is 59.4183505298749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30557610564899784
the lambda is 20.0
the regulation term lambda/alpha is 65.45014361487132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2890244940402107
the lambda is 20.0
the regulation term lambda/alpha is 69.19828738535043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3131286613936551
the lambda is 20.0
the regulation term lambda/alpha is 63.8715086347738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29342171229386976
the lambda is 20.0
the regulation term lambda/alpha is 68.16128173899232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31364444943020936
the lambda is 20.0
the regulation term lambda/alpha is 63.76647199187978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3012097891141289
the lambda is 20.0
the regulation term lambda/alpha is 66.39890442744532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30498270293120694
the lambda is 20.0
the regulation term lambda/alpha is 65.57748950277772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28592343926873354
the lambda is 20.0
the regulation term lambda/alpha is 69.94879486323754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3020797405239348
the lambda is 20.0
the regulation term lambda/alpha is 66.20768398870936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2836211142724848
the lambda is 20.0
the regulation term lambda/alpha is 70.51661175262605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29480787726628727
the lambda is 20.0
the regulation term lambda/alpha is 67.8407924016727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31102876689549985
the lambda is 20.0
the regulation term lambda/alpha is 64.30273379413694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3142160160116672
the lambda is 20.0
the regulation term lambda/alpha is 63.65047922718674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31218234997567457
the lambda is 20.0
the regulation term lambda/alpha is 64.06512091909876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3061333090660471
the lambda is 20.0
the regulation term lambda/alpha is 65.33101563177196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29322874309401725
the lambda is 20.0
the regulation term lambda/alpha is 68.20613760086762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.301164968128602
the lambda is 20.0
the regulation term lambda/alpha is 66.40878626846035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31557522909908825
the lambda is 20.0
the regulation term lambda/alpha is 63.37633044613952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29867122155445014
the lambda is 20.0
the regulation term lambda/alpha is 66.96326447492646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30203289746404555
the lambda is 20.0
the regulation term lambda/alpha is 66.217952308923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3076424079979591
the lambda is 20.0
the regulation term lambda/alpha is 65.01054302023498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31384785313148444
the lambda is 20.0
the regulation term lambda/alpha is 63.72514516331942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3390467410450363
the lambda is 20.0
the regulation term lambda/alpha is 58.98891680348981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31289272185480266
the lambda is 20.0
the regulation term lambda/alpha is 63.91967151374319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28820766298014683
the lambda is 20.0
the regulation term lambda/alpha is 69.39440746715225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30946474498551135
the lambda is 20.0
the regulation term lambda/alpha is 64.62771712796031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3200925064314328
the lambda is 20.0
the regulation term lambda/alpha is 62.481937559148115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3033649178664493
the lambda is 20.0
the regulation term lambda/alpha is 65.92720127514752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2901989013103798
the lambda is 20.0
the regulation term lambda/alpha is 68.91824851745103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30905210188505333
the lambda is 20.0
the regulation term lambda/alpha is 64.71400737290135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31116543135537156
the lambda is 20.0
the regulation term lambda/alpha is 64.27449190896361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3014120383698908
the lambda is 20.0
the regulation term lambda/alpha is 66.35435037089042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31347394752344193
the lambda is 20.0
the regulation term lambda/alpha is 63.80115527305304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29517825819093246
the lambda is 20.0
the regulation term lambda/alpha is 67.7556677872367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3004991780247942
the lambda is 20.0
the regulation term lambda/alpha is 66.55592248691542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3194734667782748
the lambda is 20.0
the regulation term lambda/alpha is 62.60300801093026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33151855034181105
the lambda is 20.0
the regulation term lambda/alpha is 60.32844913015899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3127522510824223
the lambda is 20.0
the regulation term lambda/alpha is 63.948380645641556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29420836757755686
the lambda is 20.0
the regulation term lambda/alpha is 67.97903188367938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31535471062981096
the lambda is 20.0
the regulation term lambda/alpha is 63.420647689254366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31584994987558795
the lambda is 20.0
the regulation term lambda/alpha is 63.32120681949743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3179823082661855
the lambda is 20.0
the regulation term lambda/alpha is 62.89658097348561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27368155415945183
the lambda is 20.0
the regulation term lambda/alpha is 73.07763236519637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29136697069657563
the lambda is 20.0
the regulation term lambda/alpha is 68.64196017889634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3126488315900906
the lambda is 20.0
the regulation term lambda/alpha is 63.96953380021491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32342246163425653
the lambda is 20.0
the regulation term lambda/alpha is 61.83862400570395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3230984382680851
the lambda is 20.0
the regulation term lambda/alpha is 61.90063965399103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2990231267180415
the lambda is 20.0
the regulation term lambda/alpha is 66.8844588026084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.281916082324856
the lambda is 20.0
the regulation term lambda/alpha is 70.94309709140222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.303102967051181
the lambda is 20.0
the regulation term lambda/alpha is 65.98417757033326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3030463200265506
the lambda is 20.0
the regulation term lambda/alpha is 65.9965116825961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32334656437479736
the lambda is 20.0
the regulation term lambda/alpha is 61.85313902645215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34412382260230284
the lambda is 20.0
the regulation term lambda/alpha is 58.118615121608734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3122158477898789
the lambda is 20.0
the regulation term lambda/alpha is 64.0582473361826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30362041663679196
the lambda is 20.0
the regulation term lambda/alpha is 65.87172305980049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3267950083420882
the lambda is 20.0
the regulation term lambda/alpha is 61.20044520099906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3306455669998405
the lambda is 20.0
the regulation term lambda/alpha is 60.48773065815713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3518323168092449
the lambda is 20.0
the regulation term lambda/alpha is 56.845261348870125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3053579495109173
the lambda is 20.0
the regulation term lambda/alpha is 65.4969030019798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30980032044000544
the lambda is 20.0
the regulation term lambda/alpha is 64.55771243746376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28943642449724927
the lambda is 20.0
the regulation term lambda/alpha is 69.0998032978744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3108855975902531
the lambda is 20.0
the regulation term lambda/alpha is 64.33234654491773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2821060572510724
the lambda is 20.0
the regulation term lambda/alpha is 70.89532282605383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2974967206602828
the lambda is 20.0
the regulation term lambda/alpha is 67.22763180585906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2885184225472896
the lambda is 20.0
the regulation term lambda/alpha is 69.31966362294214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2997603118462083
the lambda is 20.0
the regulation term lambda/alpha is 66.71997329073028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33484453539519843
the lambda is 20.0
the regulation term lambda/alpha is 59.72921127828803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29142698104843656
the lambda is 20.0
the regulation term lambda/alpha is 68.62782549525126
1780
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3033891478861707
the lambda is 20.0
the regulation term lambda/alpha is 65.9219360328071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30088386191340394
the lambda is 20.0
the regulation term lambda/alpha is 66.47082988371145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2573010764216769
the lambda is 20.0
the regulation term lambda/alpha is 77.72995075707759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3098525166606142
the lambda is 20.0
the regulation term lambda/alpha is 64.54683736490765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.305558286797936
the lambda is 20.0
the regulation term lambda/alpha is 65.4539603870272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27387889101279467
the lambda is 20.0
the regulation term lambda/alpha is 73.02497803332228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29231202786339694
the lambda is 20.0
the regulation term lambda/alpha is 68.4200378143399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29258421984028615
the lambda is 20.0
the regulation term lambda/alpha is 68.35638644803694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31330675260739355
the lambda is 20.0
the regulation term lambda/alpha is 63.83520250858465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29930789621954007
the lambda is 20.0
the regulation term lambda/alpha is 66.82082314771326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.316886454990203
the lambda is 20.0
the regulation term lambda/alpha is 63.11408924252798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3168846445613394
the lambda is 20.0
the regulation term lambda/alpha is 63.114449826642186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31662370756360286
the lambda is 20.0
the regulation term lambda/alpha is 63.16646391989593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.300198213221061
the lambda is 20.0
the regulation term lambda/alpha is 66.6226483675715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29846630882482994
the lambda is 20.0
the regulation term lambda/alpha is 67.00923825790338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3688817658636522
the lambda is 20.0
the regulation term lambda/alpha is 54.21791438558797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32056095205947277
the lambda is 20.0
the regulation term lambda/alpha is 62.390630772426256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2998431586569573
the lambda is 20.0
the regulation term lambda/alpha is 66.70153852962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3121353932224023
the lambda is 20.0
the regulation term lambda/alpha is 64.07475869213468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3041637654790755
the lambda is 20.0
the regulation term lambda/alpha is 65.75405182960846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3512188307664339
the lambda is 20.0
the regulation term lambda/alpha is 56.94455492706858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2761024002581359
the lambda is 20.0
the regulation term lambda/alpha is 72.43689291111355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35502248966149724
the lambda is 20.0
the regulation term lambda/alpha is 56.33445931571651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32472007917685725
the lambda is 20.0
the regulation term lambda/alpha is 61.59150998822926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2952382808738853
the lambda is 20.0
the regulation term lambda/alpha is 67.74189289004582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28406035022194304
the lambda is 20.0
the regulation term lambda/alpha is 70.40757354686612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3314843735854802
the lambda is 20.0
the regulation term lambda/alpha is 60.33466912383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2959428918031431
the lambda is 20.0
the regulation term lambda/alpha is 67.58060610323328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3067221723231353
the lambda is 20.0
the regulation term lambda/alpha is 65.20558930747846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3087280709605429
the lambda is 20.0
the regulation term lambda/alpha is 64.78192908657181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2991723323071849
the lambda is 20.0
the regulation term lambda/alpha is 66.85110165690172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3012211784302612
the lambda is 20.0
the regulation term lambda/alpha is 66.39639385326423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31570229172679887
the lambda is 20.0
the regulation term lambda/alpha is 63.35082298771374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29363458292279965
the lambda is 20.0
the regulation term lambda/alpha is 68.1118681625395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3162012516213755
the lambda is 20.0
the regulation term lambda/alpha is 63.25085652712192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3052408049975029
the lambda is 20.0
the regulation term lambda/alpha is 65.52203923116903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30356928576028264
the lambda is 20.0
the regulation term lambda/alpha is 65.88281798637973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3460091460538111
the lambda is 20.0
the regulation term lambda/alpha is 57.801940290010755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2950071271431711
the lambda is 20.0
the regulation term lambda/alpha is 67.79497225602186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30705958743757034
the lambda is 20.0
the regulation term lambda/alpha is 65.13393757511737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3245676866909634
the lambda is 20.0
the regulation term lambda/alpha is 61.620428712125516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.324307178831492
the lambda is 20.0
the regulation term lambda/alpha is 61.66992686397446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28990802970605617
the lambda is 20.0
the regulation term lambda/alpha is 68.98739583128629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2855231724449873
the lambda is 20.0
the regulation term lambda/alpha is 70.04685409151324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3298325521360466
the lambda is 20.0
the regulation term lambda/alpha is 60.63682881048855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31377318345949523
the lambda is 20.0
the regulation term lambda/alpha is 63.74031005292008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30118059862306
the lambda is 20.0
the regulation term lambda/alpha is 66.40533982413265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31839201315443666
the lambda is 20.0
the regulation term lambda/alpha is 62.81564603914534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.290962966116283
the lambda is 20.0
the regulation term lambda/alpha is 68.73727013082149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33165262482590296
the lambda is 20.0
the regulation term lambda/alpha is 60.304060643267206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3127525487534917
the lambda is 20.0
the regulation term lambda/alpha is 63.948319780964574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31906398201469666
the lambda is 20.0
the regulation term lambda/alpha is 62.68335232862092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3357264294701537
the lambda is 20.0
the regulation term lambda/alpha is 59.572313182385344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3063462686001913
the lambda is 20.0
the regulation term lambda/alpha is 65.28560015236141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.326910698919473
the lambda is 20.0
the regulation term lambda/alpha is 61.17878694733862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30093882035481717
the lambda is 20.0
the regulation term lambda/alpha is 66.4586907611963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2826992954694377
the lambda is 20.0
the regulation term lambda/alpha is 70.74655055927502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33451701353655217
the lambda is 20.0
the regulation term lambda/alpha is 59.78769147959833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28670039394241764
the lambda is 20.0
the regulation term lambda/alpha is 69.75923445719751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2920790779428093
the lambda is 20.0
the regulation term lambda/alpha is 68.47460674302769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2827608175051278
the lambda is 20.0
the regulation term lambda/alpha is 70.73115779076181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3302855344959826
the lambda is 20.0
the regulation term lambda/alpha is 60.5536661801435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3294226022747608
the lambda is 20.0
the regulation term lambda/alpha is 60.71228829440988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3071358423995244
the lambda is 20.0
the regulation term lambda/alpha is 65.11776627484545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3000228483983013
the lambda is 20.0
the regulation term lambda/alpha is 66.66158963149567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30399277569052746
the lambda is 20.0
the regulation term lambda/alpha is 65.79103715398986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31475722627221553
the lambda is 20.0
the regulation term lambda/alpha is 63.541035219007625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3129512110806223
the lambda is 20.0
the regulation term lambda/alpha is 63.907725204001885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3080692575211482
the lambda is 20.0
the regulation term lambda/alpha is 64.92046678376225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30920361565991666
the lambda is 20.0
the regulation term lambda/alpha is 64.68229667145087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3001684387182212
the lambda is 20.0
the regulation term lambda/alpha is 66.62925684460355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29169613055079807
the lambda is 20.0
the regulation term lambda/alpha is 68.564502251829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31235461813144566
the lambda is 20.0
the regulation term lambda/alpha is 64.02978806474238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30757594475797134
the lambda is 20.0
the regulation term lambda/alpha is 65.02459096968008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.310846529220727
the lambda is 20.0
the regulation term lambda/alpha is 64.34043207797353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2928094318335579
the lambda is 20.0
the regulation term lambda/alpha is 68.30381068929717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3137403113905875
the lambda is 20.0
the regulation term lambda/alpha is 63.74698842923383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29502380557557
the lambda is 20.0
the regulation term lambda/alpha is 67.79113963695727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2990162275694073
the lambda is 20.0
the regulation term lambda/alpha is 66.88600201591943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3362681987729566
the lambda is 20.0
the regulation term lambda/alpha is 59.47633488084821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29676569931249136
the lambda is 20.0
the regulation term lambda/alpha is 67.39323326898436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3244122265340614
the lambda is 20.0
the regulation term lambda/alpha is 61.649957566874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30892500040907667
the lambda is 20.0
the regulation term lambda/alpha is 64.74063275395685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2957501738430113
the lambda is 20.0
the regulation term lambda/alpha is 67.62464325926756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27311677342810375
the lambda is 20.0
the regulation term lambda/alpha is 73.22875028495777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3234966554179703
the lambda is 20.0
the regulation term lambda/alpha is 61.82444135058899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33954673377184214
the lambda is 20.0
the regulation term lambda/alpha is 58.90205385818545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27656268667576805
the lambda is 20.0
the regulation term lambda/alpha is 72.31633536828946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3199847434185058
the lambda is 20.0
the regulation term lambda/alpha is 62.50297994314729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2984766370885248
the lambda is 20.0
the regulation term lambda/alpha is 67.00691952003007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3396569118466639
the lambda is 20.0
the regulation term lambda/alpha is 58.882947181209964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3308820215811598
the lambda is 20.0
the regulation term lambda/alpha is 60.44450497620746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2814775259970366
the lambda is 20.0
the regulation term lambda/alpha is 71.05363005148254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3164111571712511
the lambda is 20.0
the regulation term lambda/alpha is 63.20889623110036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30248484640748596
the lambda is 20.0
the regulation term lambda/alpha is 66.11901467968887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3132182821565922
the lambda is 20.0
the regulation term lambda/alpha is 63.853233158341254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3322699451236232
the lambda is 20.0
the regulation term lambda/alpha is 60.19202246101094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2884940830970605
the lambda is 20.0
the regulation term lambda/alpha is 69.32551193180358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3207650986255062
the lambda is 20.0
the regulation term lambda/alpha is 62.35092310759792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3372958621285181
the lambda is 20.0
the regulation term lambda/alpha is 59.29512409013635
1790
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3131163432671875
the lambda is 20.0
the regulation term lambda/alpha is 63.87402136634452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34329495568555285
the lambda is 20.0
the regulation term lambda/alpha is 58.25893934287621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2866174526259552
the lambda is 20.0
the regulation term lambda/alpha is 69.77942137424768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3122446866552237
the lambda is 20.0
the regulation term lambda/alpha is 64.05233092751944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27978362093555753
the lambda is 20.0
the regulation term lambda/alpha is 71.4838128591044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3197258225353568
the lambda is 20.0
the regulation term lambda/alpha is 62.55359620753905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3245448111364846
the lambda is 20.0
the regulation term lambda/alpha is 61.62477203060001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3000874157982732
the lambda is 20.0
the regulation term lambda/alpha is 66.6472465924547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27685297925201097
the lambda is 20.0
the regulation term lambda/alpha is 72.24050849673031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29867169242894964
the lambda is 20.0
the regulation term lambda/alpha is 66.96315890317511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3175203659837527
the lambda is 20.0
the regulation term lambda/alpha is 62.9880856241624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30076860444361925
the lambda is 20.0
the regulation term lambda/alpha is 66.49630215559654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30868376666491043
the lambda is 20.0
the regulation term lambda/alpha is 64.79122700906674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30206796246846246
the lambda is 20.0
the regulation term lambda/alpha is 66.21026551959514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3205758735089951
the lambda is 20.0
the regulation term lambda/alpha is 62.3877267527396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33087250489451325
the lambda is 20.0
the regulation term lambda/alpha is 60.44624350511167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3037542014154781
the lambda is 20.0
the regulation term lambda/alpha is 65.8427106746214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2991040762496991
the lambda is 20.0
the regulation term lambda/alpha is 66.86635719168044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3049835301274659
the lambda is 20.0
the regulation term lambda/alpha is 65.57731163922567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2812486981501072
the lambda is 20.0
the regulation term lambda/alpha is 71.11144027171873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.299834643943325
the lambda is 20.0
the regulation term lambda/alpha is 66.70343272200533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2990474359275103
the lambda is 20.0
the regulation term lambda/alpha is 66.8790218447084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3008096908191105
the lambda is 20.0
the regulation term lambda/alpha is 66.4872196954148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3243437296789591
the lambda is 20.0
the regulation term lambda/alpha is 61.66297717485193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3300219422225465
the lambda is 20.0
the regulation term lambda/alpha is 60.602031081052274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28634965004220747
the lambda is 20.0
the regulation term lambda/alpha is 69.84468113389359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29573002229550227
the lambda is 20.0
the regulation term lambda/alpha is 67.62925131766096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30744796091117266
the lambda is 20.0
the regulation term lambda/alpha is 65.05165928154705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32331750864641295
the lambda is 20.0
the regulation term lambda/alpha is 61.858697611926836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.309071585170692
the lambda is 20.0
the regulation term lambda/alpha is 64.7099279248027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30057712695458294
the lambda is 20.0
the regulation term lambda/alpha is 66.53866248120067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31027768491900204
the lambda is 20.0
the regulation term lambda/alpha is 64.4583899264976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.312051761995581
the lambda is 20.0
the regulation term lambda/alpha is 64.0919310056106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3209951471898844
the lambda is 20.0
the regulation term lambda/alpha is 62.306237882683675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3102585447205864
the lambda is 20.0
the regulation term lambda/alpha is 64.46236643703612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32245550135213885
the lambda is 20.0
the regulation term lambda/alpha is 62.024061974861205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32465717619309753
the lambda is 20.0
the regulation term lambda/alpha is 61.60344346771663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29168146089430597
the lambda is 20.0
the regulation term lambda/alpha is 68.56795059473191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2903349544847869
the lambda is 20.0
the regulation term lambda/alpha is 68.88595290047299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2938409761239353
the lambda is 20.0
the regulation term lambda/alpha is 68.06402654871547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3041546215801833
the lambda is 20.0
the regulation term lambda/alpha is 65.75602861496374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33019019376472836
the lambda is 20.0
the regulation term lambda/alpha is 60.57115074183782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3369759199135184
the lambda is 20.0
the regulation term lambda/alpha is 59.351421920987136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3359489373231736
the lambda is 20.0
the regulation term lambda/alpha is 59.532856866162824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31018222561174674
the lambda is 20.0
the regulation term lambda/alpha is 64.47822714714118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33673775041396603
the lambda is 20.0
the regulation term lambda/alpha is 59.39340028082135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30530626497546687
the lambda is 20.0
the regulation term lambda/alpha is 65.5079908091867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32090857848018073
the lambda is 20.0
the regulation term lambda/alpha is 62.32304569332414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30154067792063305
the lambda is 20.0
the regulation term lambda/alpha is 66.32604309944576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3014301766134569
the lambda is 20.0
the regulation term lambda/alpha is 66.3503575677072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3562765343454328
the lambda is 20.0
the regulation term lambda/alpha is 56.13616972205283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2831362400256786
the lambda is 20.0
the regulation term lambda/alpha is 70.6373723059476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33863141980918016
the lambda is 20.0
the regulation term lambda/alpha is 59.06126493303563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34818616086437293
the lambda is 20.0
the regulation term lambda/alpha is 57.4405368391149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30385888929862886
the lambda is 20.0
the regulation term lambda/alpha is 65.82002601985502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3096553419474768
the lambda is 20.0
the regulation term lambda/alpha is 64.58793791257237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30203062007000325
the lambda is 20.0
the regulation term lambda/alpha is 66.21845161051715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34954288321126276
the lambda is 20.0
the regulation term lambda/alpha is 57.21758605484768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3073618248748399
the lambda is 20.0
the regulation term lambda/alpha is 65.06988956141237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31952388345819555
the lambda is 20.0
the regulation term lambda/alpha is 62.59313007697802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3190307786529205
the lambda is 20.0
the regulation term lambda/alpha is 62.689876144390354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3000090766415485
the lambda is 20.0
the regulation term lambda/alpha is 66.66464969623583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3065679795999308
the lambda is 20.0
the regulation term lambda/alpha is 65.2383853855183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27578416030393843
the lambda is 20.0
the regulation term lambda/alpha is 72.52048115438623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31204476177801704
the lambda is 20.0
the regulation term lambda/alpha is 64.09336880401676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31857565154488343
the lambda is 20.0
the regulation term lambda/alpha is 62.77943685593387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.319570200575423
the lambda is 20.0
the regulation term lambda/alpha is 62.58405810049777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30894590104933406
the lambda is 20.0
the regulation term lambda/alpha is 64.73625295584128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28781180389895045
the lambda is 20.0
the regulation term lambda/alpha is 69.48985319247684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29951460526088125
the lambda is 20.0
the regulation term lambda/alpha is 66.77470697156731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29638287856029266
the lambda is 20.0
the regulation term lambda/alpha is 67.48028124010354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32205158383098786
the lambda is 20.0
the regulation term lambda/alpha is 62.101852635185196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3054775874565108
the lambda is 20.0
the regulation term lambda/alpha is 65.47125164410726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30810850558523567
the lambda is 20.0
the regulation term lambda/alpha is 64.912196961298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2916606474627899
the lambda is 20.0
the regulation term lambda/alpha is 68.57284372774905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3429685591796329
the lambda is 20.0
the regulation term lambda/alpha is 58.31438324212342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27632265578804394
the lambda is 20.0
the regulation term lambda/alpha is 72.37915379382139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3386568455575114
the lambda is 20.0
the regulation term lambda/alpha is 59.05683071923482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3073989814650482
the lambda is 20.0
the regulation term lambda/alpha is 65.062024293903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3167626808119762
the lambda is 20.0
the regulation term lambda/alpha is 63.138750905671195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3442703011699799
the lambda is 20.0
the regulation term lambda/alpha is 58.09388707661195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31768302036678914
the lambda is 20.0
the regulation term lambda/alpha is 62.95583559016936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3268913048222636
the lambda is 20.0
the regulation term lambda/alpha is 61.18241661666205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29503719626168057
the lambda is 20.0
the regulation term lambda/alpha is 67.7880628389011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29014942937702154
the lambda is 20.0
the regulation term lambda/alpha is 68.92999942457894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30500511512355705
the lambda is 20.0
the regulation term lambda/alpha is 65.57267077930163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3283598721509593
the lambda is 20.0
the regulation term lambda/alpha is 60.908782394717385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2980075561979163
the lambda is 20.0
the regulation term lambda/alpha is 67.1123922331599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3184073662909551
the lambda is 20.0
the regulation term lambda/alpha is 62.81261716076112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3243807817027153
the lambda is 20.0
the regulation term lambda/alpha is 61.65593379181559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31336575749726653
the lambda is 20.0
the regulation term lambda/alpha is 63.82318272338502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2846234937972435
the lambda is 20.0
the regulation term lambda/alpha is 70.2682682064445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34948697793932104
the lambda is 20.0
the regulation term lambda/alpha is 57.226738798469505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2930376102462905
the lambda is 20.0
the regulation term lambda/alpha is 68.25062483682733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3211227671968949
the lambda is 20.0
the regulation term lambda/alpha is 62.28147625464716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3232244219804627
the lambda is 20.0
the regulation term lambda/alpha is 61.87651254028354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2893422392407723
the lambda is 20.0
the regulation term lambda/alpha is 69.12229632451717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32636545438791914
the lambda is 20.0
the regulation term lambda/alpha is 61.280995678629424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2850683640437931
the lambda is 20.0
the regulation term lambda/alpha is 70.1586093815992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.313722013592588
the lambda is 20.0
the regulation term lambda/alpha is 63.75070646452245
1800
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3096054665417281
the lambda is 20.0
the regulation term lambda/alpha is 64.59834260485977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30783339464869003
the lambda is 20.0
the regulation term lambda/alpha is 64.97020904059055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3173737329602043
the lambda is 20.0
the regulation term lambda/alpha is 63.017187381754155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30177845034246414
the lambda is 20.0
the regulation term lambda/alpha is 66.27378455056551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34246981882169386
the lambda is 20.0
the regulation term lambda/alpha is 58.3993067442038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3192545182264582
the lambda is 20.0
the regulation term lambda/alpha is 62.6459418996016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29845847279306265
the lambda is 20.0
the regulation term lambda/alpha is 67.01099758647857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33307965840477305
the lambda is 20.0
the regulation term lambda/alpha is 60.045696263129706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31470746204167027
the lambda is 20.0
the regulation term lambda/alpha is 63.55108286994418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30898292943072975
the lambda is 20.0
the regulation term lambda/alpha is 64.7284949911246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30509627242063664
the lambda is 20.0
the regulation term lambda/alpha is 65.55307884072072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2865222629299389
the lambda is 20.0
the regulation term lambda/alpha is 69.80260380286906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2890930347507943
the lambda is 20.0
the regulation term lambda/alpha is 69.18188124885306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3285682722091633
the lambda is 20.0
the regulation term lambda/alpha is 60.870149955526436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29591050375787153
the lambda is 20.0
the regulation term lambda/alpha is 67.58800294688079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29200441631551327
the lambda is 20.0
the regulation term lambda/alpha is 68.49211478496896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.313364972901028
the lambda is 20.0
the regulation term lambda/alpha is 63.82334252244817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2838379733002079
the lambda is 20.0
the regulation term lambda/alpha is 70.46273536785203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3227212690813539
the lambda is 20.0
the regulation term lambda/alpha is 61.972983859821944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3290840625710436
the lambda is 20.0
the regulation term lambda/alpha is 60.774745041572295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3013981868149961
the lambda is 20.0
the regulation term lambda/alpha is 66.35739986145431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30289518321414194
the lambda is 20.0
the regulation term lambda/alpha is 66.02944222411199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2898466608174606
the lambda is 20.0
the regulation term lambda/alpha is 69.00200245051498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29267294610854633
the lambda is 20.0
the regulation term lambda/alpha is 68.33566363384477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3085491725245401
the lambda is 20.0
the regulation term lambda/alpha is 64.81948999039795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3326370716628601
the lambda is 20.0
the regulation term lambda/alpha is 60.12558943000417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2944973756568663
the lambda is 20.0
the regulation term lambda/alpha is 67.91231994984908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3051722875553242
the lambda is 20.0
the regulation term lambda/alpha is 65.53675027380797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3355233779708428
the lambda is 20.0
the regulation term lambda/alpha is 59.60836505925382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33856563838921555
the lambda is 20.0
the regulation term lambda/alpha is 59.07274020823097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3110836305307799
the lambda is 20.0
the regulation term lambda/alpha is 64.29139317255434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3181830558143077
the lambda is 20.0
the regulation term lambda/alpha is 62.85689836253267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30655112366180104
the lambda is 20.0
the regulation term lambda/alpha is 65.24197256593575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32560704051849504
the lambda is 20.0
the regulation term lambda/alpha is 61.423733246529615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30186339922491634
the lambda is 20.0
the regulation term lambda/alpha is 66.25513411481244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30897392248315314
the lambda is 20.0
the regulation term lambda/alpha is 64.73038190169756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2851786229527786
the lambda is 20.0
the regulation term lambda/alpha is 70.13148388514277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3109909661411461
the lambda is 20.0
the regulation term lambda/alpha is 64.31054975057641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30658674775768063
the lambda is 20.0
the regulation term lambda/alpha is 65.23439172200474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30936714185628117
the lambda is 20.0
the regulation term lambda/alpha is 64.64810671228669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31037099435564114
the lambda is 20.0
the regulation term lambda/alpha is 64.43901125980489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31367368443013677
the lambda is 20.0
the regulation term lambda/alpha is 63.76052883216767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2881828867401565
the lambda is 20.0
the regulation term lambda/alpha is 69.40037358301998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3000533911033479
the lambda is 20.0
the regulation term lambda/alpha is 66.65480408822097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3168244739321479
the lambda is 20.0
the regulation term lambda/alpha is 63.12643638850722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3195393830950012
the lambda is 20.0
the regulation term lambda/alpha is 62.59009392295743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3284385255637832
the lambda is 20.0
the regulation term lambda/alpha is 60.894196153355864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3188314451854066
the lambda is 20.0
the regulation term lambda/alpha is 62.72906986439062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29989683247936727
the lambda is 20.0
the regulation term lambda/alpha is 66.68960066917676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30273393321510456
the lambda is 20.0
the regulation term lambda/alpha is 66.06461253812998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3272520591964436
the lambda is 20.0
the regulation term lambda/alpha is 61.11497067156529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3025110560438058
the lambda is 20.0
the regulation term lambda/alpha is 66.11328611111607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34019943359647387
the lambda is 20.0
the regulation term lambda/alpha is 58.78904555650412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3112734519940161
the lambda is 20.0
the regulation term lambda/alpha is 64.25218685332817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3126825034224645
the lambda is 20.0
the regulation term lambda/alpha is 63.96264511474136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2906447750094122
the lambda is 20.0
the regulation term lambda/alpha is 68.81252208766637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29356752200255826
the lambda is 20.0
the regulation term lambda/alpha is 68.12742725615851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30636772365688875
the lambda is 20.0
the regulation term lambda/alpha is 65.28102817514372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30683381390186837
the lambda is 20.0
the regulation term lambda/alpha is 65.1818642335046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3118807540374222
the lambda is 20.0
the regulation term lambda/alpha is 64.12707338010419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30845897298388864
the lambda is 20.0
the regulation term lambda/alpha is 64.83844449888846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2756182038630116
the lambda is 20.0
the regulation term lambda/alpha is 72.56414750435151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3124357979667105
the lambda is 20.0
the regulation term lambda/alpha is 64.01315127830188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29803475017520786
the lambda is 20.0
the regulation term lambda/alpha is 67.10626860875269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3010217053525367
the lambda is 20.0
the regulation term lambda/alpha is 66.44039165407466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3365744060258301
the lambda is 20.0
the regulation term lambda/alpha is 59.42222475010509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3249694487243118
the lambda is 20.0
the regulation term lambda/alpha is 61.54424693924696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31561854135876427
the lambda is 20.0
the regulation term lambda/alpha is 63.367633326921556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31287785044951516
the lambda is 20.0
the regulation term lambda/alpha is 63.9227096813206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3152551256825938
the lambda is 20.0
the regulation term lambda/alpha is 63.440681437600055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3277511125015637
the lambda is 20.0
the regulation term lambda/alpha is 61.02191338833237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3166727198028717
the lambda is 20.0
the regulation term lambda/alpha is 63.15668748621596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30385212241169707
the lambda is 20.0
the regulation term lambda/alpha is 65.82149185353224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32014026543480245
the lambda is 20.0
the regulation term lambda/alpha is 62.472616410299885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33117722180149384
the lambda is 20.0
the regulation term lambda/alpha is 60.390626780449026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26073644214969466
the lambda is 20.0
the regulation term lambda/alpha is 76.70581003217629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34793220203202213
the lambda is 20.0
the regulation term lambda/alpha is 57.482463201722524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3130251182784128
the lambda is 20.0
the regulation term lambda/alpha is 63.892636188420745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3292345898676479
the lambda is 20.0
the regulation term lambda/alpha is 60.74695859885192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3193808984333367
the lambda is 20.0
the regulation term lambda/alpha is 62.62115266788421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3179370385714298
the lambda is 20.0
the regulation term lambda/alpha is 62.905536548572556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2969611297285944
the lambda is 20.0
the regulation term lambda/alpha is 67.34888171485225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30625775139864525
the lambda is 20.0
the regulation term lambda/alpha is 65.30446954783092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2798766676563162
the lambda is 20.0
the regulation term lambda/alpha is 71.46004762554792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3083184149094818
the lambda is 20.0
the regulation term lambda/alpha is 64.86800344336142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31192058093869873
the lambda is 20.0
the regulation term lambda/alpha is 64.11888545414888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26688849436566275
the lambda is 20.0
the regulation term lambda/alpha is 74.93766281508594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3031127721381293
the lambda is 20.0
the regulation term lambda/alpha is 65.98204311524671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3484717445634964
the lambda is 20.0
the regulation term lambda/alpha is 57.39346248876635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3076878823645651
the lambda is 20.0
the regulation term lambda/alpha is 65.00093486393112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3340511230657855
the lambda is 20.0
the regulation term lambda/alpha is 59.871075470269716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31590710746179673
the lambda is 20.0
the regulation term lambda/alpha is 63.30975001066932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30380140875225053
the lambda is 20.0
the regulation term lambda/alpha is 65.83247945472814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3306153243091497
the lambda is 20.0
the regulation term lambda/alpha is 60.49326370999829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2744316833131107
the lambda is 20.0
the regulation term lambda/alpha is 72.8778826065107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3142849213137854
the lambda is 20.0
the regulation term lambda/alpha is 63.63652419720063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3030387225945349
the lambda is 20.0
the regulation term lambda/alpha is 65.99816626985968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2993850511031939
the lambda is 20.0
the regulation term lambda/alpha is 66.80360267255386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31050445153826894
the lambda is 20.0
the regulation term lambda/alpha is 64.41131488105268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3220304283299019
the lambda is 20.0
the regulation term lambda/alpha is 62.10593236087347
1810
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3099887806355427
the lambda is 20.0
the regulation term lambda/alpha is 64.51846405213686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34065990339543717
the lambda is 20.0
the regulation term lambda/alpha is 58.70958043683835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3291779525323002
the lambda is 20.0
the regulation term lambda/alpha is 60.75741053173214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3083728280795723
the lambda is 20.0
the regulation term lambda/alpha is 64.85655731911379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2987178317692841
the lambda is 20.0
the regulation term lambda/alpha is 66.95281591172996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3247922210075937
the lambda is 20.0
the regulation term lambda/alpha is 61.57782947496269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3087952559234826
the lambda is 20.0
the regulation term lambda/alpha is 64.76783440272756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31230816656588073
the lambda is 20.0
the regulation term lambda/alpha is 64.03931161941307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30993708136793996
the lambda is 20.0
the regulation term lambda/alpha is 64.52922609881945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3094666322058664
the lambda is 20.0
the regulation term lambda/alpha is 64.62732300875464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3155096469212268
the lambda is 20.0
the regulation term lambda/alpha is 63.389503919014544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30353445741795343
the lambda is 20.0
the regulation term lambda/alpha is 65.89037755427184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3065401564219779
the lambda is 20.0
the regulation term lambda/alpha is 65.24430676047658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3298591739833959
the lambda is 20.0
the regulation term lambda/alpha is 60.6319350117779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29535464858624755
the lambda is 20.0
the regulation term lambda/alpha is 67.715203047362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3309594924146519
the lambda is 20.0
the regulation term lambda/alpha is 60.43035615652455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30540564552356353
the lambda is 20.0
the regulation term lambda/alpha is 65.48667417628631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3104534370074483
the lambda is 20.0
the regulation term lambda/alpha is 64.42189911886904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31135214309127146
the lambda is 20.0
the regulation term lambda/alpha is 64.23594776457695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28995680536332824
the lambda is 20.0
the regulation term lambda/alpha is 68.97579098010529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3206685787061339
the lambda is 20.0
the regulation term lambda/alpha is 62.36969047824401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31596269303819247
the lambda is 20.0
the regulation term lambda/alpha is 63.29861227503359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29505457229827103
the lambda is 20.0
the regulation term lambda/alpha is 67.784070737199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2959911733189447
the lambda is 20.0
the regulation term lambda/alpha is 67.5695824836271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29656492986588706
the lambda is 20.0
the regulation term lambda/alpha is 67.43885734919643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28344048905394165
the lambda is 20.0
the regulation term lambda/alpha is 70.56154915183552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33910082199161046
the lambda is 20.0
the regulation term lambda/alpha is 58.97950905142545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3060671718106861
the lambda is 20.0
the regulation term lambda/alpha is 65.34513284022091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3257442166187816
the lambda is 20.0
the regulation term lambda/alpha is 61.39786672991342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3028181322855147
the lambda is 20.0
the regulation term lambda/alpha is 66.0462431659899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30449065053001073
the lambda is 20.0
the regulation term lambda/alpha is 65.6834617587997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28497920030794516
the lambda is 20.0
the regulation term lambda/alpha is 70.18056047033691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3255812469528963
the lambda is 20.0
the regulation term lambda/alpha is 61.428599426961206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2973490727020553
the lambda is 20.0
the regulation term lambda/alpha is 67.26101352278324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35156513018202473
the lambda is 20.0
the regulation term lambda/alpha is 56.88846328316148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28582381938333806
the lambda is 20.0
the regulation term lambda/alpha is 69.97317453510276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3400300288987024
the lambda is 20.0
the regulation term lambda/alpha is 58.81833455938139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27757030157472135
the lambda is 20.0
the regulation term lambda/alpha is 72.05381802928957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2953698569182587
the lambda is 20.0
the regulation term lambda/alpha is 67.71171645160408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3088791600824734
the lambda is 20.0
the regulation term lambda/alpha is 64.75024082123193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31716960448382353
the lambda is 20.0
the regulation term lambda/alpha is 63.05774486981161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3145982623454313
the lambda is 20.0
the regulation term lambda/alpha is 63.57314198398161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3234498813001978
the lambda is 20.0
the regulation term lambda/alpha is 61.833381788870575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30437272166157886
the lambda is 20.0
the regulation term lambda/alpha is 65.70891074213044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3339130623721141
the lambda is 20.0
the regulation term lambda/alpha is 59.89582994423835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33064311296106286
the lambda is 20.0
the regulation term lambda/alpha is 60.4881795991173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30695960656370785
the lambda is 20.0
the regulation term lambda/alpha is 65.15515257493368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.37613781332960816
the lambda is 20.0
the regulation term lambda/alpha is 53.17200050417179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2943257127127659
the lambda is 20.0
the regulation term lambda/alpha is 67.95192922718957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2912402837687517
the lambda is 20.0
the regulation term lambda/alpha is 68.67181881981766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3018289006542778
the lambda is 20.0
the regulation term lambda/alpha is 66.26270697287696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3152229976576106
the lambda is 20.0
the regulation term lambda/alpha is 63.44714741188913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28930143911990447
the lambda is 20.0
the regulation term lambda/alpha is 69.13204462737139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30275157951498655
the lambda is 20.0
the regulation term lambda/alpha is 66.06076186965022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30674917230697174
the lambda is 20.0
the regulation term lambda/alpha is 65.19984992815397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3213830900003102
the lambda is 20.0
the regulation term lambda/alpha is 62.23102777430106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3159463496935314
the lambda is 20.0
the regulation term lambda/alpha is 63.30188660005105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29663568497076664
the lambda is 20.0
the regulation term lambda/alpha is 67.42277147798652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3350566017882983
the lambda is 20.0
the regulation term lambda/alpha is 59.69140704362773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2967863989638377
the lambda is 20.0
the regulation term lambda/alpha is 67.38853286345149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33391091302805276
the lambda is 20.0
the regulation term lambda/alpha is 59.89621548643349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32283483734730145
the lambda is 20.0
the regulation term lambda/alpha is 61.95118272965152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3186941625072544
the lambda is 20.0
the regulation term lambda/alpha is 62.75609142839176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2826797200158929
the lambda is 20.0
the regulation term lambda/alpha is 70.75144972860294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29505398910738767
the lambda is 20.0
the regulation term lambda/alpha is 67.78420471624538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2774165099628568
the lambda is 20.0
the regulation term lambda/alpha is 72.09376256185254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2822044057802588
the lambda is 20.0
the regulation term lambda/alpha is 70.87061573224761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3362238990890802
the lambda is 20.0
the regulation term lambda/alpha is 59.48417127451472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2897549191759401
the lambda is 20.0
the regulation term lambda/alpha is 69.0238497309374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30959485692123523
the lambda is 20.0
the regulation term lambda/alpha is 64.60055634932026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31306725614237807
the lambda is 20.0
the regulation term lambda/alpha is 63.884036441371926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3018782626663555
the lambda is 20.0
the regulation term lambda/alpha is 66.25187194118901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2894168230053838
the lambda is 20.0
the regulation term lambda/alpha is 69.10448325814134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.339456834121906
the lambda is 20.0
the regulation term lambda/alpha is 58.91765311408514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31238701103977534
the lambda is 20.0
the regulation term lambda/alpha is 64.023148508737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3440153598695525
the lambda is 20.0
the regulation term lambda/alpha is 58.13693902383841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3373128038226329
the lambda is 20.0
the regulation term lambda/alpha is 59.29214596465919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30896111264952036
the lambda is 20.0
the regulation term lambda/alpha is 64.73306568742073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2977540491648387
the lambda is 20.0
the regulation term lambda/alpha is 67.16953155161917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3378507127255895
the lambda is 20.0
the regulation term lambda/alpha is 59.197743993645155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34775597346615483
the lambda is 20.0
the regulation term lambda/alpha is 57.51159297324475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3037480493689127
the lambda is 20.0
the regulation term lambda/alpha is 65.8440442384843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29588951914844847
the lambda is 20.0
the regulation term lambda/alpha is 67.59279631653986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30907412785639143
the lambda is 20.0
the regulation term lambda/alpha is 64.70939557028476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29972052443769576
the lambda is 20.0
the regulation term lambda/alpha is 66.72883025786074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30117246987740537
the lambda is 20.0
the regulation term lambda/alpha is 66.40713212645618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3450222465953574
the lambda is 20.0
the regulation term lambda/alpha is 57.9672765955177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31765098510600953
the lambda is 20.0
the regulation term lambda/alpha is 62.962184717687585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.340915316893399
the lambda is 20.0
the regulation term lambda/alpha is 58.66559526351176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32328729214623
the lambda is 20.0
the regulation term lambda/alpha is 61.864479321858276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2944194671185691
the lambda is 20.0
the regulation term lambda/alpha is 67.93029073701015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3124529932305645
the lambda is 20.0
the regulation term lambda/alpha is 64.00962843470553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32344544792706914
the lambda is 20.0
the regulation term lambda/alpha is 61.83422932113617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3250924165536455
the lambda is 20.0
the regulation term lambda/alpha is 61.52096752063017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3195328097287815
the lambda is 20.0
the regulation term lambda/alpha is 62.5913815140797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3275704459353822
the lambda is 20.0
the regulation term lambda/alpha is 61.05556910938564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3145166809332284
the lambda is 20.0
the regulation term lambda/alpha is 63.58963200506997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30936854729335006
the lambda is 20.0
the regulation term lambda/alpha is 64.64781302100359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3023459857478441
the lambda is 20.0
the regulation term lambda/alpha is 66.14938164477552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.299214492888444
the lambda is 20.0
the regulation term lambda/alpha is 66.84168205534279
1820
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2903177481977254
the lambda is 20.0
the regulation term lambda/alpha is 68.89003557019426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2939970785193837
the lambda is 20.0
the regulation term lambda/alpha is 68.02788687807102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.305467748724758
the lambda is 20.0
the regulation term lambda/alpha is 65.47336039072661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30573785196931236
the lambda is 20.0
the regulation term lambda/alpha is 65.41551813482175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30659037698324637
the lambda is 20.0
the regulation term lambda/alpha is 65.23361951798279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3165603238977949
the lambda is 20.0
the regulation term lambda/alpha is 63.17911149995293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31604337505938934
the lambda is 20.0
the regulation term lambda/alpha is 63.28245291090723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30288967781108517
the lambda is 20.0
the regulation term lambda/alpha is 66.03064239275321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31841365014515993
the lambda is 20.0
the regulation term lambda/alpha is 62.811377561490545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3435325147556511
the lambda is 20.0
the regulation term lambda/alpha is 58.21865221178747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31518618199575527
the lambda is 20.0
the regulation term lambda/alpha is 63.45455842435804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.296858843169957
the lambda is 20.0
the regulation term lambda/alpha is 67.37208764419272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2904298753344082
the lambda is 20.0
the regulation term lambda/alpha is 68.86343898667965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27202131825089665
the lambda is 20.0
the regulation term lambda/alpha is 73.52364928087424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3330566082032301
the lambda is 20.0
the regulation term lambda/alpha is 60.049851909246804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31226073856987113
the lambda is 20.0
the regulation term lambda/alpha is 64.0490382863961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30561052803104133
the lambda is 20.0
the regulation term lambda/alpha is 65.44277165074814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3160120730256612
the lambda is 20.0
the regulation term lambda/alpha is 63.28872124570992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32242939570931195
the lambda is 20.0
the regulation term lambda/alpha is 62.02908378127878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3306065365103376
the lambda is 20.0
the regulation term lambda/alpha is 60.49487167164533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30642324722416536
the lambda is 20.0
the regulation term lambda/alpha is 65.2691993221027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3223208975281833
the lambda is 20.0
the regulation term lambda/alpha is 62.04996372675844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30333530939466247
the lambda is 20.0
the regulation term lambda/alpha is 65.93363641018945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3193229572732711
the lambda is 20.0
the regulation term lambda/alpha is 62.63251527789261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.306995702558669
the lambda is 20.0
the regulation term lambda/alpha is 65.1474917508914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3091394952688005
the lambda is 20.0
the regulation term lambda/alpha is 64.69571279661228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3177214312983503
the lambda is 20.0
the regulation term lambda/alpha is 62.94822454459919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28732606164277713
the lambda is 20.0
the regulation term lambda/alpha is 69.60733003351896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31558105797786573
the lambda is 20.0
the regulation term lambda/alpha is 63.3751598659092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29741001858825716
the lambda is 20.0
the regulation term lambda/alpha is 67.24723025450116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3154417199790112
the lambda is 20.0
the regulation term lambda/alpha is 63.40315415897033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.313132679140404
the lambda is 20.0
the regulation term lambda/alpha is 63.87068911141114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31637425577916806
the lambda is 20.0
the regulation term lambda/alpha is 63.21626881663902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3253849332122311
the lambda is 20.0
the regulation term lambda/alpha is 61.46566100205714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3238430926455327
the lambda is 20.0
the regulation term lambda/alpha is 61.75830349388153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2999779246158332
the lambda is 20.0
the regulation term lambda/alpha is 66.67157266859887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3303955060991969
the lambda is 20.0
the regulation term lambda/alpha is 60.53351099150623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29654510475846607
the lambda is 20.0
the regulation term lambda/alpha is 67.44336587950039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31659442748431826
the lambda is 20.0
the regulation term lambda/alpha is 63.17230583911857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3332046493127551
the lambda is 20.0
the regulation term lambda/alpha is 60.02317206932922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3265903207314888
the lambda is 20.0
the regulation term lambda/alpha is 61.23880204166646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29162922806001684
the lambda is 20.0
the regulation term lambda/alpha is 68.58023159422152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.329999364900257
the lambda is 20.0
the regulation term lambda/alpha is 60.60617724535634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28761367922742487
the lambda is 20.0
the regulation term lambda/alpha is 69.53772175830828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31730299413476537
the lambda is 20.0
the regulation term lambda/alpha is 63.03123629367825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3050427585554423
the lambda is 20.0
the regulation term lambda/alpha is 65.56457886334303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29661204323650914
the lambda is 20.0
the regulation term lambda/alpha is 67.42814547166795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3163741544543603
the lambda is 20.0
the regulation term lambda/alpha is 63.216289062844965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3000844746959175
the lambda is 20.0
the regulation term lambda/alpha is 66.64789979643719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2804394909731865
the lambda is 20.0
the regulation term lambda/alpha is 71.3166320855726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3090143226856456
the lambda is 20.0
the regulation term lambda/alpha is 64.72191912070568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31912235869287336
the lambda is 20.0
the regulation term lambda/alpha is 62.67188573661868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33848838569184797
the lambda is 20.0
the regulation term lambda/alpha is 59.08622229126508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30144430278171797
the lambda is 20.0
the regulation term lambda/alpha is 66.34724828248757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2861074067039653
the lambda is 20.0
the regulation term lambda/alpha is 69.903817697016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29299991783751045
the lambda is 20.0
the regulation term lambda/alpha is 68.25940480669841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27023723976848024
the lambda is 20.0
the regulation term lambda/alpha is 74.0090448567879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30352127163499665
the lambda is 20.0
the regulation term lambda/alpha is 65.89324001004863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3122638301331014
the lambda is 20.0
the regulation term lambda/alpha is 64.04840416988118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31115699658456386
the lambda is 20.0
the regulation term lambda/alpha is 64.27623424679943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31820120547772995
the lambda is 20.0
the regulation term lambda/alpha is 62.85331311040475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.326342652163132
the lambda is 20.0
the regulation term lambda/alpha is 61.285277506424165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31906762787570914
the lambda is 20.0
the regulation term lambda/alpha is 62.68263607046616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32208118813016096
the lambda is 20.0
the regulation term lambda/alpha is 62.09614450353278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3234157487075386
the lambda is 20.0
the regulation term lambda/alpha is 61.83990754910883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30532817118238376
the lambda is 20.0
the regulation term lambda/alpha is 65.5032908445689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3168383275767659
the lambda is 20.0
the regulation term lambda/alpha is 63.1236762072425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30976513854730664
the lambda is 20.0
the regulation term lambda/alpha is 64.56504464573777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2921646143418153
the lambda is 20.0
the regulation term lambda/alpha is 68.45455958126806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30080534664134173
the lambda is 20.0
the regulation term lambda/alpha is 66.48817989211653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32091112033856317
the lambda is 20.0
the regulation term lambda/alpha is 62.32255204774418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33206453067013403
the lambda is 20.0
the regulation term lambda/alpha is 60.22925712553017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3009144949577918
the lambda is 20.0
the regulation term lambda/alpha is 66.46406316453891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30877345952679425
the lambda is 20.0
the regulation term lambda/alpha is 64.77240638055704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3357172633553485
the lambda is 20.0
the regulation term lambda/alpha is 59.57393968993036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2985284534720169
the lambda is 20.0
the regulation term lambda/alpha is 66.99528894948278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3454099582196982
the lambda is 20.0
the regulation term lambda/alpha is 57.90221018259985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3159308996728625
the lambda is 20.0
the regulation term lambda/alpha is 63.304982262606906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3033464638858118
the lambda is 20.0
the regulation term lambda/alpha is 65.93121193437932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30475873994055197
the lambda is 20.0
the regulation term lambda/alpha is 65.62568149448747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3135959322964377
the lambda is 20.0
the regulation term lambda/alpha is 63.77633744654025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3186883497903871
the lambda is 20.0
the regulation term lambda/alpha is 62.757236068261435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2924402661159588
the lambda is 20.0
the regulation term lambda/alpha is 68.39003488004478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3038513124556649
the lambda is 20.0
the regulation term lambda/alpha is 65.82166730946147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31130658591918325
the lambda is 20.0
the regulation term lambda/alpha is 64.24534817002586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3388098211628203
the lambda is 20.0
the regulation term lambda/alpha is 59.0301660422904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28927404577821364
the lambda is 20.0
the regulation term lambda/alpha is 69.1385912144154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30183261182298504
the lambda is 20.0
the regulation term lambda/alpha is 66.2618922428745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2948385162276836
the lambda is 20.0
the regulation term lambda/alpha is 67.8337425377469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30698508983222034
the lambda is 20.0
the regulation term lambda/alpha is 65.14974395313727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29494351848662326
the lambda is 20.0
the regulation term lambda/alpha is 67.80959318116723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29024766402619695
the lambda is 20.0
the regulation term lambda/alpha is 68.90666998854762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30010207915956855
the lambda is 20.0
the regulation term lambda/alpha is 66.64399012499248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3084905296301491
the lambda is 20.0
the regulation term lambda/alpha is 64.83181193269726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2877134325039293
the lambda is 20.0
the regulation term lambda/alpha is 69.51361229798286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30130802429198594
the lambda is 20.0
the regulation term lambda/alpha is 66.37725645374374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2844045054893351
the lambda is 20.0
the regulation term lambda/alpha is 70.32237399189157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3233244358106277
the lambda is 20.0
the regulation term lambda/alpha is 61.857372301158435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2998947588648956
the lambda is 20.0
the regulation term lambda/alpha is 66.69006179267748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29489416523378675
the lambda is 20.0
the regulation term lambda/alpha is 67.8209417407237
1830
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3265734215414358
the lambda is 20.0
the regulation term lambda/alpha is 61.241970965057206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27908089969660166
the lambda is 20.0
the regulation term lambda/alpha is 71.6638079558389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3305635066084271
the lambda is 20.0
the regulation term lambda/alpha is 60.502746371489934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3121789485444803
the lambda is 20.0
the regulation term lambda/alpha is 64.06581895816186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3313773673479907
the lambda is 20.0
the regulation term lambda/alpha is 60.35415200518904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2980047316606726
the lambda is 20.0
the regulation term lambda/alpha is 67.11302833531278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3250125225492122
the lambda is 20.0
the regulation term lambda/alpha is 61.536090496241336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3066903618071204
the lambda is 20.0
the regulation term lambda/alpha is 65.21235255700057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2876510572339101
the lambda is 20.0
the regulation term lambda/alpha is 69.52868587490202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27168947624850587
the lambda is 20.0
the regulation term lambda/alpha is 73.61345119494663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2989015034824586
the lambda is 20.0
the regulation term lambda/alpha is 66.91167413674025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.315653021843669
the lambda is 20.0
the regulation term lambda/alpha is 63.36071133798695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3118516785878459
the lambda is 20.0
the regulation term lambda/alpha is 64.13305225922065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3102498890536708
the lambda is 20.0
the regulation term lambda/alpha is 64.46416487369044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30828012290525764
the lambda is 20.0
the regulation term lambda/alpha is 64.87606080962448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30304071473898564
the lambda is 20.0
the regulation term lambda/alpha is 65.99773240776031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2716586464395224
the lambda is 20.0
the regulation term lambda/alpha is 73.62180538749195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31566686654972315
the lambda is 20.0
the regulation term lambda/alpha is 63.35793242604904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3102955407820214
the lambda is 20.0
the regulation term lambda/alpha is 64.45468068795014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31620056074840935
the lambda is 20.0
the regulation term lambda/alpha is 63.25099472519076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2865265265085854
the lambda is 20.0
the regulation term lambda/alpha is 69.80156512454955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31111733748586123
the lambda is 20.0
the regulation term lambda/alpha is 64.28442773912882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3146138611288309
the lambda is 20.0
the regulation term lambda/alpha is 63.56998998149742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31450093644055876
the lambda is 20.0
the regulation term lambda/alpha is 63.59281541846867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34306441654903963
the lambda is 20.0
the regulation term lambda/alpha is 58.298089324402675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3114402423988608
the lambda is 20.0
the regulation term lambda/alpha is 64.2177768869896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34321195430008483
the lambda is 20.0
the regulation term lambda/alpha is 58.27302851611383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30018120172057483
the lambda is 20.0
the regulation term lambda/alpha is 66.6264239244971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2856855424243091
the lambda is 20.0
the regulation term lambda/alpha is 70.00704281456208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30560424684999027
the lambda is 20.0
the regulation term lambda/alpha is 65.44411671679829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32635106498828126
the lambda is 20.0
the regulation term lambda/alpha is 61.2836976668612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3148691177685509
the lambda is 20.0
the regulation term lambda/alpha is 63.518455356111765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28616218562498225
the lambda is 20.0
the regulation term lambda/alpha is 69.89043627941169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32242215687313697
the lambda is 20.0
the regulation term lambda/alpha is 62.030476422466755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3128327586554546
the lambda is 20.0
the regulation term lambda/alpha is 63.93192351708744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3295642926736555
the lambda is 20.0
the regulation term lambda/alpha is 60.68618610877424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31591148535347596
the lambda is 20.0
the regulation term lambda/alpha is 63.30887266609454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30708517096471555
the lambda is 20.0
the regulation term lambda/alpha is 65.12851121130178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3194144767822686
the lambda is 20.0
the regulation term lambda/alpha is 62.6145696384111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35916017174962483
the lambda is 20.0
the regulation term lambda/alpha is 55.685461733051675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29915207312948916
the lambda is 20.0
the regulation term lambda/alpha is 66.85562894743143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3036199914458344
the lambda is 20.0
the regulation term lambda/alpha is 65.87181530689156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3188194373110095
the lambda is 20.0
the regulation term lambda/alpha is 62.73143246435734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30379602607865164
the lambda is 20.0
the regulation term lambda/alpha is 65.83364587798155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3301033385652398
the lambda is 20.0
the regulation term lambda/alpha is 60.587087931094366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2757639682942153
the lambda is 20.0
the regulation term lambda/alpha is 72.52579125443177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29164690378640323
the lambda is 20.0
the regulation term lambda/alpha is 68.57607517975788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29659193305051634
the lambda is 20.0
the regulation term lambda/alpha is 67.43271738477642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3328045710122682
the lambda is 20.0
the regulation term lambda/alpha is 60.09532843604705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3298880000222435
the lambda is 20.0
the regulation term lambda/alpha is 60.62663691510892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32311185412149523
the lambda is 20.0
the regulation term lambda/alpha is 61.898069491686556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30911567887601044
the lambda is 20.0
the regulation term lambda/alpha is 64.70069739821321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3218110426134934
the lambda is 20.0
the regulation term lambda/alpha is 62.14827135071532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3273765041555018
the lambda is 20.0
the regulation term lambda/alpha is 61.091739163113935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29579793996453857
the lambda is 20.0
the regulation term lambda/alpha is 67.61372307865862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2847862836430942
the lambda is 20.0
the regulation term lambda/alpha is 70.22810138238545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3404720402869097
the lambda is 20.0
the regulation term lambda/alpha is 58.74197476875445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28309044734703476
the lambda is 20.0
the regulation term lambda/alpha is 70.6487985992774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30619693324883757
the lambda is 20.0
the regulation term lambda/alpha is 65.31744060201467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2681546136470056
the lambda is 20.0
the regulation term lambda/alpha is 74.58383701847352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2785083130565709
the lambda is 20.0
the regulation term lambda/alpha is 71.81114193865221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.271830476117274
the lambda is 20.0
the regulation term lambda/alpha is 73.57526751846446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2981173558772464
the lambda is 20.0
the regulation term lambda/alpha is 67.08767405087026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.291592103738205
the lambda is 20.0
the regulation term lambda/alpha is 68.58896295064372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32714405892391185
the lambda is 20.0
the regulation term lambda/alpha is 61.135146595010184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29761750996123065
the lambda is 20.0
the regulation term lambda/alpha is 67.20034719262759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29860393454603323
the lambda is 20.0
the regulation term lambda/alpha is 66.9783538867495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2798103258752971
the lambda is 20.0
the regulation term lambda/alpha is 71.47699048430897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3206258680922411
the lambda is 20.0
the regulation term lambda/alpha is 62.377998752883485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3166568985281635
the lambda is 20.0
the regulation term lambda/alpha is 63.159843012929656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32593085818886586
the lambda is 20.0
the regulation term lambda/alpha is 61.36270775690309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3094054710644167
the lambda is 20.0
the regulation term lambda/alpha is 64.64009809262907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3209273215347256
the lambda is 20.0
the regulation term lambda/alpha is 62.31940585287913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31063876738152835
the lambda is 20.0
the regulation term lambda/alpha is 64.38346433249873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2960808926617633
the lambda is 20.0
the regulation term lambda/alpha is 67.54910734090357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30958390772902394
the lambda is 20.0
the regulation term lambda/alpha is 64.60284110602359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32465891624960225
the lambda is 20.0
the regulation term lambda/alpha is 61.603113295135024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3041982150300431
the lambda is 20.0
the regulation term lambda/alpha is 65.74660537710508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3019454295899971
the lambda is 20.0
the regulation term lambda/alpha is 66.23713439596492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2963037429592069
the lambda is 20.0
the regulation term lambda/alpha is 67.49830359974044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30583821739607103
the lambda is 20.0
the regulation term lambda/alpha is 65.39405104529271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3036646507747299
the lambda is 20.0
the regulation term lambda/alpha is 65.86212767595649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28937924342950566
the lambda is 20.0
the regulation term lambda/alpha is 69.11345735435275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3035606593108243
the lambda is 20.0
the regulation term lambda/alpha is 65.88469021449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.321736524013157
the lambda is 20.0
the regulation term lambda/alpha is 62.162665744415534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31599567585440314
the lambda is 20.0
the regulation term lambda/alpha is 63.292005328627084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32717037478761074
the lambda is 20.0
the regulation term lambda/alpha is 61.13022920545115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3139956155850814
the lambda is 20.0
the regulation term lambda/alpha is 63.6951568980769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3258931769954067
the lambda is 20.0
the regulation term lambda/alpha is 61.3698027813632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2888228475975722
the lambda is 20.0
the regulation term lambda/alpha is 69.24659931290047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3041146716199898
the lambda is 20.0
the regulation term lambda/alpha is 65.7646666419016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2778143194612434
the lambda is 20.0
the regulation term lambda/alpha is 71.99052964147195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33640290117233806
the lambda is 20.0
the regulation term lambda/alpha is 59.452519375729366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33070935452484057
the lambda is 20.0
the regulation term lambda/alpha is 60.47606372893737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3051157734242196
the lambda is 20.0
the regulation term lambda/alpha is 65.54888911689557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3018683912756033
the lambda is 20.0
the regulation term lambda/alpha is 66.25403844200491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30735340239127606
the lambda is 20.0
the regulation term lambda/alpha is 65.0716726881683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3225327124993955
the lambda is 20.0
the regulation term lambda/alpha is 62.00921402673995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32464066895741217
the lambda is 20.0
the regulation term lambda/alpha is 61.606575861953054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3031512288395116
the lambda is 20.0
the regulation term lambda/alpha is 65.97367286473381
1840
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30189123333821727
the lambda is 20.0
the regulation term lambda/alpha is 66.24902544816011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3180334418460689
the lambda is 20.0
the regulation term lambda/alpha is 62.8864684289402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3009225380719187
the lambda is 20.0
the regulation term lambda/alpha is 66.46228670057315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2981337419953448
the lambda is 20.0
the regulation term lambda/alpha is 67.08398675756831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29332127125570273
the lambda is 20.0
the regulation term lambda/alpha is 68.18462198251216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2797530910495405
the lambda is 20.0
the regulation term lambda/alpha is 71.4916139977816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2970995638278259
the lambda is 20.0
the regulation term lambda/alpha is 67.31750037704644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3208891277568829
the lambda is 20.0
the regulation term lambda/alpha is 62.32682341033604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28457937952571744
the lambda is 20.0
the regulation term lambda/alpha is 70.27916089117976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2846107618930557
the lambda is 20.0
the regulation term lambda/alpha is 70.2714116183531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31584860082906735
the lambda is 20.0
the regulation term lambda/alpha is 63.32147727582845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32246586276836886
the lambda is 20.0
the regulation term lambda/alpha is 62.02206902864085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2875138853546866
the lambda is 20.0
the regulation term lambda/alpha is 69.56185777019897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3164009523893622
the lambda is 20.0
the regulation term lambda/alpha is 63.21093488804689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2866899944468002
the lambda is 20.0
the regulation term lambda/alpha is 69.76176492867215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2947057247633956
the lambda is 20.0
the regulation term lambda/alpha is 67.8643077465054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30713881922742275
the lambda is 20.0
the regulation term lambda/alpha is 65.11713514530015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3013535844793847
the lambda is 20.0
the regulation term lambda/alpha is 66.36722119815428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33221929587686033
the lambda is 20.0
the regulation term lambda/alpha is 60.20119917240796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31329658757480705
the lambda is 20.0
the regulation term lambda/alpha is 63.83727366715899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3284674229594197
the lambda is 20.0
the regulation term lambda/alpha is 60.888838898556116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31799917333574196
the lambda is 20.0
the regulation term lambda/alpha is 62.893245256597254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3403205623841796
the lambda is 20.0
the regulation term lambda/alpha is 58.768121032376776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3103758006977331
the lambda is 20.0
the regulation term lambda/alpha is 64.4380133858357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3091059891057365
the lambda is 20.0
the regulation term lambda/alpha is 64.7027256180357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3267243922181191
the lambda is 20.0
the regulation term lambda/alpha is 61.2136726744544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30563330207527595
the lambda is 20.0
the regulation term lambda/alpha is 65.43789522999722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29962745029194443
the lambda is 20.0
the regulation term lambda/alpha is 66.74955842835107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2982997413257074
the lambda is 20.0
the regulation term lambda/alpha is 67.04665552546493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30641823246069794
the lambda is 20.0
the regulation term lambda/alpha is 65.27026750134803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3186121344427882
the lambda is 20.0
the regulation term lambda/alpha is 62.772248254064266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2933563311678756
the lambda is 20.0
the regulation term lambda/alpha is 68.17647302984177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2866516851727372
the lambda is 20.0
the regulation term lambda/alpha is 69.77108816907159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.336312848663733
the lambda is 20.0
the regulation term lambda/alpha is 59.4684386263139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30658916079899284
the lambda is 20.0
the regulation term lambda/alpha is 65.23387828806014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3145207037599671
the lambda is 20.0
the regulation term lambda/alpha is 63.588818672056036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27599654817370706
the lambda is 20.0
the regulation term lambda/alpha is 72.46467440387107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2875088139045842
the lambda is 20.0
the regulation term lambda/alpha is 69.56308479168021
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2912669661286974
the lambda is 20.0
the regulation term lambda/alpha is 68.66552793756544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29124737508707566
the lambda is 20.0
the regulation term lambda/alpha is 68.67014679195135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3109277823029798
the lambda is 20.0
the regulation term lambda/alpha is 64.32361833948708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3088074401507856
the lambda is 20.0
the regulation term lambda/alpha is 64.76527893963413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3239401575798579
the lambda is 20.0
the regulation term lambda/alpha is 61.73979833009617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32502527110004925
the lambda is 20.0
the regulation term lambda/alpha is 61.5336768501413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3092672833822435
the lambda is 20.0
the regulation term lambda/alpha is 64.66898076406194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30863262809566333
the lambda is 20.0
the regulation term lambda/alpha is 64.80196252549432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33475243497544804
the lambda is 20.0
the regulation term lambda/alpha is 59.745644573031626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33233072921247314
the lambda is 20.0
the regulation term lambda/alpha is 60.181013195481995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3256435033789548
the lambda is 20.0
the regulation term lambda/alpha is 61.416855525982314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27276796914826446
the lambda is 20.0
the regulation term lambda/alpha is 73.32239215055671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28773670298969717
the lambda is 20.0
the regulation term lambda/alpha is 69.5079904377584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30990576428834765
the lambda is 20.0
the regulation term lambda/alpha is 64.53574700660059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2983479539550336
the lambda is 20.0
the regulation term lambda/alpha is 67.03582087582997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3412298641825819
the lambda is 20.0
the regulation term lambda/alpha is 58.61151704265427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2924974101219243
the lambda is 20.0
the regulation term lambda/alpha is 68.37667380255853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32384636925218424
the lambda is 20.0
the regulation term lambda/alpha is 61.75767863688997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3088612571947173
the lambda is 20.0
the regulation term lambda/alpha is 64.75399401547885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3024318713325217
the lambda is 20.0
the regulation term lambda/alpha is 66.13059632861955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2962573472104463
the lambda is 20.0
the regulation term lambda/alpha is 67.50887425516913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3033041877436386
the lambda is 20.0
the regulation term lambda/alpha is 65.94040177547622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2745510501844154
the lambda is 20.0
the regulation term lambda/alpha is 72.84619740687948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32107824755084724
the lambda is 20.0
the regulation term lambda/alpha is 62.290111997801155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28521780719236095
the lambda is 20.0
the regulation term lambda/alpha is 70.12184897176246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2897709798625672
the lambda is 20.0
the regulation term lambda/alpha is 69.02002405308362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31369753662865457
the lambda is 20.0
the regulation term lambda/alpha is 63.75568075842234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29552397227323957
the lambda is 20.0
the regulation term lambda/alpha is 67.676404882336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2920865801093464
the lambda is 20.0
the regulation term lambda/alpha is 68.4728479908688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2990553173668636
the lambda is 20.0
the regulation term lambda/alpha is 66.87725928465993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3079992154547463
the lambda is 20.0
the regulation term lambda/alpha is 64.93523033969728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29800625056621505
the lambda is 20.0
the regulation term lambda/alpha is 67.11268626748529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2937289641609451
the lambda is 20.0
the regulation term lambda/alpha is 68.08998239969705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3234486262425671
the lambda is 20.0
the regulation term lambda/alpha is 61.83362171710446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3127721629599206
the lambda is 20.0
the regulation term lambda/alpha is 63.94430952783624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32767870092577506
the lambda is 20.0
the regulation term lambda/alpha is 61.035398222389645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30249901983902705
the lambda is 20.0
the regulation term lambda/alpha is 66.11591670823553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3439407644690691
the lambda is 20.0
the regulation term lambda/alpha is 58.14954802136754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3000863851243255
the lambda is 20.0
the regulation term lambda/alpha is 66.64747549847695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34789119973203764
the lambda is 20.0
the regulation term lambda/alpha is 57.489238058924606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3069773047843598
the lambda is 20.0
the regulation term lambda/alpha is 65.15139617259086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2942460315902047
the lambda is 20.0
the regulation term lambda/alpha is 67.97033044732417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30688393604240866
the lambda is 20.0
the regulation term lambda/alpha is 65.17121833720282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30644713203679785
the lambda is 20.0
the regulation term lambda/alpha is 65.26411217187838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2847700464735833
the lambda is 20.0
the regulation term lambda/alpha is 70.23210568550897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30267695948051815
the lambda is 20.0
the regulation term lambda/alpha is 66.07704806578548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2656579269702092
the lambda is 20.0
the regulation term lambda/alpha is 75.28478531808612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29835575296313727
the lambda is 20.0
the regulation term lambda/alpha is 67.03406856200644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3018811936865242
the lambda is 20.0
the regulation term lambda/alpha is 66.25122868954917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2993954255119082
the lambda is 20.0
the regulation term lambda/alpha is 66.80128784801529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3113672911735663
the lambda is 20.0
the regulation term lambda/alpha is 64.23282267260161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3299776854500102
the lambda is 20.0
the regulation term lambda/alpha is 60.61015905583073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31922903083223164
the lambda is 20.0
the regulation term lambda/alpha is 62.65094358072604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28361017645063213
the lambda is 20.0
the regulation term lambda/alpha is 70.51933132406971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33641036059811985
the lambda is 20.0
the regulation term lambda/alpha is 59.45120109987414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30077448878371815
the lambda is 20.0
the regulation term lambda/alpha is 66.49500122459409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2996829246823613
the lambda is 20.0
the regulation term lambda/alpha is 66.73720239882975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.332913903166805
the lambda is 20.0
the regulation term lambda/alpha is 60.07559254735928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3117146127869598
the lambda is 20.0
the regulation term lambda/alpha is 64.16125256748528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3356990731767592
the lambda is 20.0
the regulation term lambda/alpha is 59.577167761405136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3133295003517574
the lambda is 20.0
the regulation term lambda/alpha is 63.83056806827039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31933989288057124
the lambda is 20.0
the regulation term lambda/alpha is 62.62919367696953
1850
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3281481933466167
the lambda is 20.0
the regulation term lambda/alpha is 60.94807286924289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2880520018041372
the lambda is 20.0
the regulation term lambda/alpha is 69.43190769283085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31817365826428956
the lambda is 20.0
the regulation term lambda/alpha is 62.85875489851862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2935559415450385
the lambda is 20.0
the regulation term lambda/alpha is 68.13011480788414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.292559646983069
the lambda is 20.0
the regulation term lambda/alpha is 68.36212788142117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3188468718434414
the lambda is 20.0
the regulation term lambda/alpha is 62.726034865477054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3213731341559406
the lambda is 20.0
the regulation term lambda/alpha is 62.23295563435416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3427392556245405
the lambda is 20.0
the regulation term lambda/alpha is 58.353397434898255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28777942604478174
the lambda is 20.0
the regulation term lambda/alpha is 69.49767144537905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3526227380482169
the lambda is 20.0
the regulation term lambda/alpha is 56.71783989512679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30957895481552355
the lambda is 20.0
the regulation term lambda/alpha is 64.60387467848999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2998706835275348
the lambda is 20.0
the regulation term lambda/alpha is 66.69541605311196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3519383322222005
the lambda is 20.0
the regulation term lambda/alpha is 56.828137684566734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28369134506590515
the lambda is 20.0
the regulation term lambda/alpha is 70.4991546194465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3256905332509756
the lambda is 20.0
the regulation term lambda/alpha is 61.4079869020574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2868971821978812
the lambda is 20.0
the regulation term lambda/alpha is 69.71138526625691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28854438171906377
the lambda is 20.0
the regulation term lambda/alpha is 69.3134272129847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31443212665689774
the lambda is 20.0
the regulation term lambda/alpha is 63.60673196038779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3139432857867619
the lambda is 20.0
the regulation term lambda/alpha is 63.70577395811707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30677073381863806
the lambda is 20.0
the regulation term lambda/alpha is 65.19526732893608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2927199845048999
the lambda is 20.0
the regulation term lambda/alpha is 68.32468249076864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3271977876063851
the lambda is 20.0
the regulation term lambda/alpha is 61.1251076797003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29075915385427004
the lambda is 20.0
the regulation term lambda/alpha is 68.78545261561774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33279128206680003
the lambda is 20.0
the regulation term lambda/alpha is 60.09772814897678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3179688803014935
the lambda is 20.0
the regulation term lambda/alpha is 62.899237123570984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33841283483470475
the lambda is 20.0
the regulation term lambda/alpha is 59.09941332387364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31746819951413296
the lambda is 20.0
the regulation term lambda/alpha is 62.998435845255884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29711693853106536
the lambda is 20.0
the regulation term lambda/alpha is 67.31356380716369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2911692090436678
the lambda is 20.0
the regulation term lambda/alpha is 68.68858168653583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.331739597711761
the lambda is 20.0
the regulation term lambda/alpha is 60.28825059761912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3157432467518965
the lambda is 20.0
the regulation term lambda/alpha is 63.342605758771846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3072350247085564
the lambda is 20.0
the regulation term lambda/alpha is 65.09674480952174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3193711276296359
the lambda is 20.0
the regulation term lambda/alpha is 62.62306849225688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3088494143381435
the lambda is 20.0
the regulation term lambda/alpha is 64.75647701278467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3093154351058178
the lambda is 20.0
the regulation term lambda/alpha is 64.65891362051795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29534711568508926
the lambda is 20.0
the regulation term lambda/alpha is 67.71693014034642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.303505405310026
the lambda is 20.0
the regulation term lambda/alpha is 65.89668470507243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29968230449533845
the lambda is 20.0
the regulation term lambda/alpha is 66.73734051024391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3108288000759775
the lambda is 20.0
the regulation term lambda/alpha is 64.34410194650977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2781984365031148
the lambda is 20.0
the regulation term lambda/alpha is 71.89113012781462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28328520365051885
the lambda is 20.0
the regulation term lambda/alpha is 70.60022811736206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29127712425679425
the lambda is 20.0
the regulation term lambda/alpha is 68.66313326537687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32009404459655766
the lambda is 20.0
the regulation term lambda/alpha is 62.48163731133373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3292273851272897
the lambda is 20.0
the regulation term lambda/alpha is 60.74828797205727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30683776659795736
the lambda is 20.0
the regulation term lambda/alpha is 65.18102455818469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.279577868113519
the lambda is 20.0
the regulation term lambda/alpha is 71.5364207294093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31646150638569404
the lambda is 20.0
the regulation term lambda/alpha is 63.19883965800436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29990667981073965
the lambda is 20.0
the regulation term lambda/alpha is 66.68741093936715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31609956611904716
the lambda is 20.0
the regulation term lambda/alpha is 63.27120358168332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31994268419199456
the lambda is 20.0
the regulation term lambda/alpha is 62.5111964991773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2628782062842748
the lambda is 20.0
the regulation term lambda/alpha is 76.08085996437502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3426341299831385
the lambda is 20.0
the regulation term lambda/alpha is 58.37130119227827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31019514995092645
the lambda is 20.0
the regulation term lambda/alpha is 64.47554064969759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30195070574472477
the lambda is 20.0
the regulation term lambda/alpha is 66.2359769972136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.295792956380949
the lambda is 20.0
the regulation term lambda/alpha is 67.61486224926257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30414849399867366
the lambda is 20.0
the regulation term lambda/alpha is 65.75735338044191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3122704107145265
the lambda is 20.0
the regulation term lambda/alpha is 64.04705445590149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29366070158985946
the lambda is 20.0
the regulation term lambda/alpha is 68.10581018066542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30944818990459566
the lambda is 20.0
the regulation term lambda/alpha is 64.63117462786289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3055604702621848
the lambda is 20.0
the regulation term lambda/alpha is 65.45349266820767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.287764026814472
the lambda is 20.0
the regulation term lambda/alpha is 69.50139050178934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2936316949179782
the lambda is 20.0
the regulation term lambda/alpha is 68.11253807456553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32671438291187593
the lambda is 20.0
the regulation term lambda/alpha is 61.21554803234531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3205110898769003
the lambda is 20.0
the regulation term lambda/alpha is 62.40033693586535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30629030625141673
the lambda is 20.0
the regulation term lambda/alpha is 65.29752849436609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28541061339910345
the lambda is 20.0
the regulation term lambda/alpha is 70.07447887732553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3432147122247117
the lambda is 20.0
the regulation term lambda/alpha is 58.27256025932091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2765207063734664
the lambda is 20.0
the regulation term lambda/alpha is 72.32731415414577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3120052493615971
the lambda is 20.0
the regulation term lambda/alpha is 64.10148560295883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2998223022189847
the lambda is 20.0
the regulation term lambda/alpha is 66.70617846631158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31311182714747027
the lambda is 20.0
the regulation term lambda/alpha is 63.87494264335261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3134450996691874
the lambda is 20.0
the regulation term lambda/alpha is 63.80702719904752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31347232869372144
the lambda is 20.0
the regulation term lambda/alpha is 63.80148475414883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31449100174745676
the lambda is 20.0
the regulation term lambda/alpha is 63.594824299807605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3132876228947182
the lambda is 20.0
the regulation term lambda/alpha is 63.83910036152656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31230712589113674
the lambda is 20.0
the regulation term lambda/alpha is 64.03952501222003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2943545695329463
the lambda is 20.0
the regulation term lambda/alpha is 67.94526761291353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29475172640599345
the lambda is 20.0
the regulation term lambda/alpha is 67.85371622370698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32504309024018885
the lambda is 20.0
the regulation term lambda/alpha is 61.53030352136114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32466611329302264
the lambda is 20.0
the regulation term lambda/alpha is 61.60174770672569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3272910286496087
the lambda is 20.0
the regulation term lambda/alpha is 61.10769391547119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3230782594632498
the lambda is 20.0
the regulation term lambda/alpha is 61.90450584086734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.311860334481386
the lambda is 20.0
the regulation term lambda/alpha is 64.13127220317831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2991676193045652
the lambda is 20.0
the regulation term lambda/alpha is 66.85215481037459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32714330175781653
the lambda is 20.0
the regulation term lambda/alpha is 61.13528809098453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34702868070456333
the lambda is 20.0
the regulation term lambda/alpha is 57.6321241212528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34107275199768994
the lambda is 20.0
the regulation term lambda/alpha is 58.638515926172424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30270933907040937
the lambda is 20.0
the regulation term lambda/alpha is 66.06998007203225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29900814104289286
the lambda is 20.0
the regulation term lambda/alpha is 66.88781091458975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3121420131773929
the lambda is 20.0
the regulation term lambda/alpha is 64.0733997849685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3102841002145921
the lambda is 20.0
the regulation term lambda/alpha is 64.4570572135924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3073164287777024
the lambda is 20.0
the regulation term lambda/alpha is 65.07950154030658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29304725732548254
the lambda is 20.0
the regulation term lambda/alpha is 68.248378034763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35758583872805116
the lambda is 20.0
the regulation term lambda/alpha is 55.930626534710925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33303560889007283
the lambda is 20.0
the regulation term lambda/alpha is 60.053638308093134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33841060301314035
the lambda is 20.0
the regulation term lambda/alpha is 59.09980308513976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2823493747232695
the lambda is 20.0
the regulation term lambda/alpha is 70.83422805381451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3039122063209422
the lambda is 20.0
the regulation term lambda/alpha is 65.80847884365421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33193283315160116
the lambda is 20.0
the regulation term lambda/alpha is 60.25315365794366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2886798730261696
the lambda is 20.0
the regulation term lambda/alpha is 69.28089509789602
1860
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29332140586349875
the lambda is 20.0
the regulation term lambda/alpha is 68.18459069198407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30294460633048703
the lambda is 20.0
the regulation term lambda/alpha is 66.01867002108526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3125183193954914
the lambda is 20.0
the regulation term lambda/alpha is 63.996248407729446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3239611344420685
the lambda is 20.0
the regulation term lambda/alpha is 61.73580060597192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30310946072488315
the lambda is 20.0
the regulation term lambda/alpha is 65.98276395652648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29597291762569866
the lambda is 20.0
the regulation term lambda/alpha is 67.57375019458011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3062441865935245
the lambda is 20.0
the regulation term lambda/alpha is 65.3073621493617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30484852044999955
the lambda is 20.0
the regulation term lambda/alpha is 65.60635416723417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3164555890884813
the lambda is 20.0
the regulation term lambda/alpha is 63.20002139196846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30633179545865263
the lambda is 20.0
the regulation term lambda/alpha is 65.28868467621903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2904684436132872
the lambda is 20.0
the regulation term lambda/alpha is 68.85429532795251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2899355851950825
the lambda is 20.0
the regulation term lambda/alpha is 68.9808392665669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30656844355046553
the lambda is 20.0
the regulation term lambda/alpha is 65.23828665590533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3243749815961774
the lambda is 20.0
the regulation term lambda/alpha is 61.65703625348796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3121764753695842
the lambda is 20.0
the regulation term lambda/alpha is 64.06632651074075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31551296424996517
the lambda is 20.0
the regulation term lambda/alpha is 63.38883743666076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30761753875516396
the lambda is 20.0
the regulation term lambda/alpha is 65.01579877705936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29805562900656435
the lambda is 20.0
the regulation term lambda/alpha is 67.10156780685904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3024446324017692
the lambda is 20.0
the regulation term lambda/alpha is 66.12780607536749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.304248070034649
the lambda is 20.0
the regulation term lambda/alpha is 65.73583194043702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2949765212065881
the lambda is 20.0
the regulation term lambda/alpha is 67.80200647221312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3254730985033912
the lambda is 20.0
the regulation term lambda/alpha is 61.44901096884852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3126950836236797
the lambda is 20.0
the regulation term lambda/alpha is 63.96007179975197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.308944832880704
the lambda is 20.0
the regulation term lambda/alpha is 64.7364767797324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30591386690542893
the lambda is 20.0
the regulation term lambda/alpha is 65.37787973561478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.309595439756776
the lambda is 20.0
the regulation term lambda/alpha is 64.60043473415621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.329482445861289
the lambda is 20.0
the regulation term lambda/alpha is 60.70126117863023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31453711321670785
the lambda is 20.0
the regulation term lambda/alpha is 63.58550123215674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3083315288523267
the lambda is 20.0
the regulation term lambda/alpha is 64.8652444803297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3125801615366603
the lambda is 20.0
the regulation term lambda/alpha is 63.98358712747144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28291046047923274
the lambda is 20.0
the regulation term lambda/alpha is 70.69374517337125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31929103039188506
the lambda is 20.0
the regulation term lambda/alpha is 62.63877809361822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2921084561268155
the lambda is 20.0
the regulation term lambda/alpha is 68.46772005572215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32467181682121776
the lambda is 20.0
the regulation term lambda/alpha is 61.60066554533468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29160178210941207
the lambda is 20.0
the regulation term lambda/alpha is 68.58668645754636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29855244941178466
the lambda is 20.0
the regulation term lambda/alpha is 66.98990425101013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30789493189718176
the lambda is 20.0
the regulation term lambda/alpha is 64.95722380607027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28781251019669024
the lambda is 20.0
the regulation term lambda/alpha is 69.48968266296714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3171831823275139
the lambda is 20.0
the regulation term lambda/alpha is 63.05504552050492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27366586092857065
the lambda is 20.0
the regulation term lambda/alpha is 73.08182296519692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.317553443960627
the lambda is 20.0
the regulation term lambda/alpha is 62.98152446578337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29646780065929584
the lambda is 20.0
the regulation term lambda/alpha is 67.46095176448597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30317737384032895
the lambda is 20.0
the regulation term lambda/alpha is 65.96798351625401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29431885700022087
the lambda is 20.0
the regulation term lambda/alpha is 67.95351206458712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3128903231894453
the lambda is 20.0
the regulation term lambda/alpha is 63.92016153177938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30113743918396607
the lambda is 20.0
the regulation term lambda/alpha is 66.41485713034147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27848649283063676
the lambda is 20.0
the regulation term lambda/alpha is 71.81676855029059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28178540210736963
the lambda is 20.0
the regulation term lambda/alpha is 70.97599751593708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2939306537662702
the lambda is 20.0
the regulation term lambda/alpha is 68.04326035318432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.305677759634001
the lambda is 20.0
the regulation term lambda/alpha is 65.42837798846314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29927161093527666
the lambda is 20.0
the regulation term lambda/alpha is 66.82892486025142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2934808207831571
the lambda is 20.0
the regulation term lambda/alpha is 68.14755371962555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31312592357834373
the lambda is 20.0
the regulation term lambda/alpha is 63.872067095064466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2989612220187777
the lambda is 20.0
the regulation term lambda/alpha is 66.89830829880607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3156394143534916
the lambda is 20.0
the regulation term lambda/alpha is 63.36344287346053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2782843833745045
the lambda is 20.0
the regulation term lambda/alpha is 71.86892687788651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.282518145783951
the lambda is 20.0
the regulation term lambda/alpha is 70.79191300970282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31506902464942815
the lambda is 20.0
the regulation term lambda/alpha is 63.478153786312866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28174731901835387
the lambda is 20.0
the regulation term lambda/alpha is 70.98559116616524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3037970164233526
the lambda is 20.0
the regulation term lambda/alpha is 65.83343126757126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3106035761408965
the lambda is 20.0
the regulation term lambda/alpha is 64.3907589490456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32352607863820615
the lambda is 20.0
the regulation term lambda/alpha is 61.81881869982317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3123507178854709
the lambda is 20.0
the regulation term lambda/alpha is 64.03058758883137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3477727225966376
the lambda is 20.0
the regulation term lambda/alpha is 57.508823149413296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3011353448283013
the lambda is 20.0
the regulation term lambda/alpha is 66.41531903670565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32351940724793177
the lambda is 20.0
the regulation term lambda/alpha is 61.82009348413783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3055595200711161
the lambda is 20.0
the regulation term lambda/alpha is 65.45369620735492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3253297117027499
the lambda is 20.0
the regulation term lambda/alpha is 61.47609419170966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2879842948641193
the lambda is 20.0
the regulation term lambda/alpha is 69.4482315760888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3285113758431139
the lambda is 20.0
the regulation term lambda/alpha is 60.88069233118836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29476581410014896
the lambda is 20.0
the regulation term lambda/alpha is 67.85047330218845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32313154633878804
the lambda is 20.0
the regulation term lambda/alpha is 61.89429731206421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29667067286749454
the lambda is 20.0
the regulation term lambda/alpha is 67.41481996413185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3340712854501698
the lambda is 20.0
the regulation term lambda/alpha is 59.867462038976136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3204320800075594
the lambda is 20.0
the regulation term lambda/alpha is 62.41572316831753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31359841788300313
the lambda is 20.0
the regulation term lambda/alpha is 63.77583195417004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29253070825387806
the lambda is 20.0
the regulation term lambda/alpha is 68.36889063503938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29896862908627087
the lambda is 20.0
the regulation term lambda/alpha is 66.89665086643177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30411625425868577
the lambda is 20.0
the regulation term lambda/alpha is 65.76432439874688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29182705675946274
the lambda is 20.0
the regulation term lambda/alpha is 68.53374125787424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3414618081567585
the lambda is 20.0
the regulation term lambda/alpha is 58.5717041327749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29292682004695997
the lambda is 20.0
the regulation term lambda/alpha is 68.27643845242214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30358461711500456
the lambda is 20.0
the regulation term lambda/alpha is 65.87949083211801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3365085810164064
the lambda is 20.0
the regulation term lambda/alpha is 59.43384843141609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30672163077184167
the lambda is 20.0
the regulation term lambda/alpha is 65.20570443522851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30027373639422866
the lambda is 20.0
the regulation term lambda/alpha is 66.60589181113745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3143437018147082
the lambda is 20.0
the regulation term lambda/alpha is 63.6246245257655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30958713955659256
the lambda is 20.0
the regulation term lambda/alpha is 64.6021667070702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3131457557692561
the lambda is 20.0
the regulation term lambda/alpha is 63.868021940355334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27678396268065336
the lambda is 20.0
the regulation term lambda/alpha is 72.25852179548248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3111515175703772
the lambda is 20.0
the regulation term lambda/alpha is 64.2773660760833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31685420477106857
the lambda is 20.0
the regulation term lambda/alpha is 63.120513153518885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3191685038491104
the lambda is 20.0
the regulation term lambda/alpha is 62.662824679765926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3294294693877068
the lambda is 20.0
the regulation term lambda/alpha is 60.71102271807361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3200463122119175
the lambda is 20.0
the regulation term lambda/alpha is 62.49095595501527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29544795502345117
the lambda is 20.0
the regulation term lambda/alpha is 67.69381767564613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3173997102952921
the lambda is 20.0
the regulation term lambda/alpha is 63.01202978853712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31270217030404335
the lambda is 20.0
the regulation term lambda/alpha is 63.95862229083286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33891435802942516
the lambda is 20.0
the regulation term lambda/alpha is 59.011958408276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2912945976951712
the lambda is 20.0
the regulation term lambda/alpha is 68.65901447622879
1870
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3250403831891785
the lambda is 20.0
the regulation term lambda/alpha is 61.53081596744148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2899142245048953
the lambda is 20.0
the regulation term lambda/alpha is 68.98592172962626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3103811269776674
the lambda is 20.0
the regulation term lambda/alpha is 64.43690760050319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29958032330109563
the lambda is 20.0
the regulation term lambda/alpha is 66.76005880365794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30910827921153716
the lambda is 20.0
the regulation term lambda/alpha is 64.70224625175138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2906757683180216
the lambda is 20.0
the regulation term lambda/alpha is 68.8051849513595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31452597161172596
the lambda is 20.0
the regulation term lambda/alpha is 63.58775365199244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2882798861095848
the lambda is 20.0
the regulation term lambda/alpha is 69.3770219972868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2985509233943089
the lambda is 20.0
the regulation term lambda/alpha is 66.99024666416841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2701601943624292
the lambda is 20.0
the regulation term lambda/alpha is 74.03015106351793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2918074791686198
the lambda is 20.0
the regulation term lambda/alpha is 68.5383392399037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28925638491991
the lambda is 20.0
the regulation term lambda/alpha is 69.1428125451324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2998284194602865
the lambda is 20.0
the regulation term lambda/alpha is 66.70481749529111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29298432816220643
the lambda is 20.0
the regulation term lambda/alpha is 68.26303688478278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2883270985115995
the lambda is 20.0
the regulation term lambda/alpha is 69.36566178914117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2980105263057817
the lambda is 20.0
the regulation term lambda/alpha is 67.11172336066568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30650175214621816
the lambda is 20.0
the regulation term lambda/alpha is 65.25248178828976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32879041988795743
the lambda is 20.0
the regulation term lambda/alpha is 60.829022958805915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31636434885733217
the lambda is 20.0
the regulation term lambda/alpha is 63.218248428552265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2956432469633877
the lambda is 20.0
the regulation term lambda/alpha is 67.6491014268856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34151686182638336
the lambda is 20.0
the regulation term lambda/alpha is 58.56226217658144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33329298088487314
the lambda is 20.0
the regulation term lambda/alpha is 60.00726432012215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3074089022060029
the lambda is 20.0
the regulation term lambda/alpha is 65.05992460360652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3093491143840693
the lambda is 20.0
the regulation term lambda/alpha is 64.65187411258982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30218448925167235
the lambda is 20.0
the regulation term lambda/alpha is 66.18473386747237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33476311251523744
the lambda is 20.0
the regulation term lambda/alpha is 59.743738937454346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31491523453428116
the lambda is 20.0
the regulation term lambda/alpha is 63.50915359676838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31556751006328704
the lambda is 20.0
the regulation term lambda/alpha is 63.37788068229521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30919960235408944
the lambda is 20.0
the regulation term lambda/alpha is 64.68313622569406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3293894562675889
the lambda is 20.0
the regulation term lambda/alpha is 60.71839768833532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3397868563214957
the lambda is 20.0
the regulation term lambda/alpha is 58.86042861256713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2909751049343683
the lambda is 20.0
the regulation term lambda/alpha is 68.73440256860172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2958902089720448
the lambda is 20.0
the regulation term lambda/alpha is 67.59263873408385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29181364618732164
the lambda is 20.0
the regulation term lambda/alpha is 68.53689079078076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3385567086059736
the lambda is 20.0
the regulation term lambda/alpha is 59.07429831283253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29936200181303574
the lambda is 20.0
the regulation term lambda/alpha is 66.80874619648905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3053226262963648
the lambda is 20.0
the regulation term lambda/alpha is 65.50448043305765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31522070674637004
the lambda is 20.0
the regulation term lambda/alpha is 63.44760852304101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3146014979634132
the lambda is 20.0
the regulation term lambda/alpha is 63.57248814602248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32428876644848303
the lambda is 20.0
the regulation term lambda/alpha is 61.673428342998825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2971465543491339
the lambda is 20.0
the regulation term lambda/alpha is 67.30685484072919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27377613285190927
the lambda is 20.0
the regulation term lambda/alpha is 73.05238696909485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3218303127083818
the lambda is 20.0
the regulation term lambda/alpha is 62.14455012546466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32835978059926124
the lambda is 20.0
the regulation term lambda/alpha is 60.90879937701175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3200077641789376
the lambda is 20.0
the regulation term lambda/alpha is 62.498483595593854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3611393921079065
the lambda is 20.0
the regulation term lambda/alpha is 55.38027818916001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3022836249951456
the lambda is 20.0
the regulation term lambda/alpha is 66.1630281836179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29769456300938163
the lambda is 20.0
the regulation term lambda/alpha is 67.18295355420958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.298181023777993
the lambda is 20.0
the regulation term lambda/alpha is 67.07334942578625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3322882716575719
the lambda is 20.0
the regulation term lambda/alpha is 60.18870271957809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32380191325142244
the lambda is 20.0
the regulation term lambda/alpha is 61.76615758434572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3047440106674835
the lambda is 20.0
the regulation term lambda/alpha is 65.62885339795136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2930995134595503
the lambda is 20.0
the regulation term lambda/alpha is 68.2362101660743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3165387288921166
the lambda is 20.0
the regulation term lambda/alpha is 63.183421725360006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3028694512243775
the lambda is 20.0
the regulation term lambda/alpha is 66.03505212938502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2897542882656988
the lambda is 20.0
the regulation term lambda/alpha is 69.0240000232901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3107938087611558
the lambda is 20.0
the regulation term lambda/alpha is 64.35134625017561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3113998121194252
the lambda is 20.0
the regulation term lambda/alpha is 64.22611453705625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3227165841098116
the lambda is 20.0
the regulation term lambda/alpha is 61.97388353985102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29701066073193666
the lambda is 20.0
the regulation term lambda/alpha is 67.33765027394338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30268713320251556
the lambda is 20.0
the regulation term lambda/alpha is 66.07482712725295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3273160218711259
the lambda is 20.0
the regulation term lambda/alpha is 61.10302784956429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3363787470364945
the lambda is 20.0
the regulation term lambda/alpha is 59.45678844516938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3149522782328881
the lambda is 20.0
the regulation term lambda/alpha is 63.50168384942182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31291556311378005
the lambda is 20.0
the regulation term lambda/alpha is 63.91500569988508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.284929573645038
the lambda is 20.0
the regulation term lambda/alpha is 70.19278393655188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26570821508214393
the lambda is 20.0
the regulation term lambda/alpha is 75.27053686999095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2806366729920511
the lambda is 20.0
the regulation term lambda/alpha is 71.26652331916182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30366489634984134
the lambda is 20.0
the regulation term lambda/alpha is 65.86207441296976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32814158760845136
the lambda is 20.0
the regulation term lambda/alpha is 60.94929980001381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29473640715999583
the lambda is 20.0
the regulation term lambda/alpha is 67.857242994562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27319020146014
the lambda is 20.0
the regulation term lambda/alpha is 73.20906786958138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31016083793748944
the lambda is 20.0
the regulation term lambda/alpha is 64.48267335423839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3033577508122842
the lambda is 20.0
the regulation term lambda/alpha is 65.92875885467608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30300254109357266
the lambda is 20.0
the regulation term lambda/alpha is 66.00604710382161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2861625053823167
the lambda is 20.0
the regulation term lambda/alpha is 69.89035818399671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30693639355367935
the lambda is 20.0
the regulation term lambda/alpha is 65.1600801340042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28419171511561153
the lambda is 20.0
the regulation term lambda/alpha is 70.37502832151118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3071388303623974
the lambda is 20.0
the regulation term lambda/alpha is 65.11713278455127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.320572476643326
the lambda is 20.0
the regulation term lambda/alpha is 62.38838782860425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3040046596226108
the lambda is 20.0
the regulation term lambda/alpha is 65.7884652979591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31542828117784066
the lambda is 20.0
the regulation term lambda/alpha is 63.405855446182585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2991953221663286
the lambda is 20.0
the regulation term lambda/alpha is 66.84596488738418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28844559654547414
the lambda is 20.0
the regulation term lambda/alpha is 69.33716527319893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30910655419072114
the lambda is 20.0
the regulation term lambda/alpha is 64.70260733345643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32479139491773246
the lambda is 20.0
the regulation term lambda/alpha is 61.57798609493909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2944889050590851
the lambda is 20.0
the regulation term lambda/alpha is 67.91427336112129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29856438605926394
the lambda is 20.0
the regulation term lambda/alpha is 66.98722598491727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3511349995177901
the lambda is 20.0
the regulation term lambda/alpha is 56.95815007750804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3095664729178951
the lambda is 20.0
the regulation term lambda/alpha is 64.60647954374733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29259830984791674
the lambda is 20.0
the regulation term lambda/alpha is 68.35309476119448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32673037658289417
the lambda is 20.0
the regulation term lambda/alpha is 61.2125514902219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30434980783627236
the lambda is 20.0
the regulation term lambda/alpha is 65.71385782099516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31600949355811025
the lambda is 20.0
the regulation term lambda/alpha is 63.289237847920056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33687936793834466
the lambda is 20.0
the regulation term lambda/alpha is 59.368432452237265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31199849997448376
the lambda is 20.0
the regulation term lambda/alpha is 64.10287229469265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32816494826090903
the lambda is 20.0
the regulation term lambda/alpha is 60.94496108127584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2809881542315616
the lambda is 20.0
the regulation term lambda/alpha is 71.17737776062279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29248601721579437
the lambda is 20.0
the regulation term lambda/alpha is 68.37933720860278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3208748677614223
the lambda is 20.0
the regulation term lambda/alpha is 62.32959327581383
1880
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32421155315483313
the lambda is 20.0
the regulation term lambda/alpha is 61.68811630981156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31223300472861154
the lambda is 20.0
the regulation term lambda/alpha is 64.05472738983411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3079564961464584
the lambda is 20.0
the regulation term lambda/alpha is 64.94423806695205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3251138089384441
the lambda is 20.0
the regulation term lambda/alpha is 61.51691946061488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3040015900738588
the lambda is 20.0
the regulation term lambda/alpha is 65.78912957376602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3088858536408612
the lambda is 20.0
the regulation term lambda/alpha is 64.74883768310679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3671832746710985
the lambda is 20.0
the regulation term lambda/alpha is 54.46871189303173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32795242546336495
the lambda is 20.0
the regulation term lambda/alpha is 60.98445520487291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3159290101461953
the lambda is 20.0
the regulation term lambda/alpha is 63.30536088074044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32082790362409425
the lambda is 20.0
the regulation term lambda/alpha is 62.33871734371797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3213070097450079
the lambda is 20.0
the regulation term lambda/alpha is 62.24576306589818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3186413644347202
the lambda is 20.0
the regulation term lambda/alpha is 62.76648995487648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3003114869918101
the lambda is 20.0
the regulation term lambda/alpha is 66.59751913034691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.339209817029751
the lambda is 20.0
the regulation term lambda/alpha is 58.9605577312813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32753619957306435
the lambda is 20.0
the regulation term lambda/alpha is 61.06195292633158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30700685723593407
the lambda is 20.0
the regulation term lambda/alpha is 65.14512470524411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2939348854634455
the lambda is 20.0
the regulation term lambda/alpha is 68.04228075366458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3001781753805893
the lambda is 20.0
the regulation term lambda/alpha is 66.62709563958953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2873310777213589
the lambda is 20.0
the regulation term lambda/alpha is 69.60611486445306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33014781245162034
the lambda is 20.0
the regulation term lambda/alpha is 60.57892630420136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.305504786508458
the lambda is 20.0
the regulation term lambda/alpha is 65.4654227469732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3157055269431322
the lambda is 20.0
the regulation term lambda/alpha is 63.350173795350074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3029402938453631
the lambda is 20.0
the regulation term lambda/alpha is 66.01960982519238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33184609479184696
the lambda is 20.0
the regulation term lambda/alpha is 60.268902704867315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31162790613905345
the lambda is 20.0
the regulation term lambda/alpha is 64.17910465013257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33880435249170693
the lambda is 20.0
the regulation term lambda/alpha is 59.03111885343784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28886450563602584
the lambda is 20.0
the regulation term lambda/alpha is 69.23661304791922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27146911423816794
the lambda is 20.0
the regulation term lambda/alpha is 73.67320608875382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32009342827378306
the lambda is 20.0
the regulation term lambda/alpha is 62.48175761638428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2913141359233619
the lambda is 20.0
the regulation term lambda/alpha is 68.65440956583564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3538004250435241
the lambda is 20.0
the regulation term lambda/alpha is 56.52904458082441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32169662101253266
the lambda is 20.0
the regulation term lambda/alpha is 62.170376353504935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3209854776492018
the lambda is 20.0
the regulation term lambda/alpha is 62.30811482959853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2936471846996059
the lambda is 20.0
the regulation term lambda/alpha is 68.10894516308585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2997246178910375
the lambda is 20.0
the regulation term lambda/alpha is 66.72791891679329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27642081017750825
the lambda is 20.0
the regulation term lambda/alpha is 72.35345264763772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.314292490538827
the lambda is 20.0
the regulation term lambda/alpha is 63.63499161469543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32900658040036546
the lambda is 20.0
the regulation term lambda/alpha is 60.78905770110179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3100872961406793
the lambda is 20.0
the regulation term lambda/alpha is 64.49796637565723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32433679265668686
the lambda is 20.0
the regulation term lambda/alpha is 61.664296042941274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3077010425052005
the lambda is 20.0
the regulation term lambda/alpha is 64.99815482315755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2961566972534853
the lambda is 20.0
the regulation term lambda/alpha is 67.53181739760447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3157186338464188
the lambda is 20.0
the regulation term lambda/alpha is 63.347543844146344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.308590757990378
the lambda is 20.0
the regulation term lambda/alpha is 64.81075496312695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29960728834950584
the lambda is 20.0
the regulation term lambda/alpha is 66.7540503109159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2974827148167928
the lambda is 20.0
the regulation term lambda/alpha is 67.23079696350482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30383117997418385
the lambda is 20.0
the regulation term lambda/alpha is 65.82602878907745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2980588564214252
the lambda is 20.0
the regulation term lambda/alpha is 67.10084122352671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30924935029978723
the lambda is 20.0
the regulation term lambda/alpha is 64.67273085816329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31837087059083713
the lambda is 20.0
the regulation term lambda/alpha is 62.81981753821799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2752401097455617
the lambda is 20.0
the regulation term lambda/alpha is 72.66382802451453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34856783997365626
the lambda is 20.0
the regulation term lambda/alpha is 57.37763989217004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.276727077355785
the lambda is 20.0
the regulation term lambda/alpha is 72.27337559846454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2893482288479846
the lambda is 20.0
the regulation term lambda/alpha is 69.120865469363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.340342753718183
the lambda is 20.0
the regulation term lambda/alpha is 58.76428918054996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29598917488951976
the lambda is 20.0
the regulation term lambda/alpha is 67.5700386930203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31405805922765706
the lambda is 20.0
the regulation term lambda/alpha is 63.682492495765665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3068285707060163
the lambda is 20.0
the regulation term lambda/alpha is 65.1829780844064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2819346011800217
the lambda is 20.0
the regulation term lambda/alpha is 70.93843719887911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3064272409988034
the lambda is 20.0
the regulation term lambda/alpha is 65.26834864553736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.286819592568579
the lambda is 20.0
the regulation term lambda/alpha is 69.73024339408742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31379961279168256
the lambda is 20.0
the regulation term lambda/alpha is 63.73494161472117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.313386701856255
the lambda is 20.0
the regulation term lambda/alpha is 63.818917272289525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31874019893403854
the lambda is 20.0
the regulation term lambda/alpha is 62.74702741256331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3192169199965632
the lambda is 20.0
the regulation term lambda/alpha is 62.6533205076201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3282834896040778
the lambda is 20.0
the regulation term lambda/alpha is 60.9229541946223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3285500626021535
the lambda is 20.0
the regulation term lambda/alpha is 60.8735236316735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30973911535606496
the lambda is 20.0
the regulation term lambda/alpha is 64.57046917373906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29724938941281925
the lambda is 20.0
the regulation term lambda/alpha is 67.28356966353276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31387632837176455
the lambda is 20.0
the regulation term lambda/alpha is 63.71936394104687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31793166446106946
the lambda is 20.0
the regulation term lambda/alpha is 62.90659986290541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30980458776384273
the lambda is 20.0
the regulation term lambda/alpha is 64.55682320381118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31410134696834824
the lambda is 20.0
the regulation term lambda/alpha is 63.67371612072515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3185847026927847
the lambda is 20.0
the regulation term lambda/alpha is 62.777653261293764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3033965547132056
the lambda is 20.0
the regulation term lambda/alpha is 65.9203266790738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3086601747321553
the lambda is 20.0
the regulation term lambda/alpha is 64.79617921993116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29996440830097904
the lambda is 20.0
the regulation term lambda/alpha is 66.67457687157454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31300610543845075
the lambda is 20.0
the regulation term lambda/alpha is 63.896517200469695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3066497260247348
the lambda is 20.0
the regulation term lambda/alpha is 65.22099419187732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31880529089949905
the lambda is 20.0
the regulation term lambda/alpha is 62.73421605886976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3051434494767003
the lambda is 20.0
the regulation term lambda/alpha is 65.54294393112028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31333532210055015
the lambda is 20.0
the regulation term lambda/alpha is 63.829382100693856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32819916711517844
the lambda is 20.0
the regulation term lambda/alpha is 60.93860680938653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3040495952913886
the lambda is 20.0
the regulation term lambda/alpha is 65.77874238192234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3244562383373028
the lambda is 20.0
the regulation term lambda/alpha is 61.641594880379884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31013137898683013
the lambda is 20.0
the regulation term lambda/alpha is 64.48879847417604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30756787006093056
the lambda is 20.0
the regulation term lambda/alpha is 65.02629808516056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30928894243795
the lambda is 20.0
the regulation term lambda/alpha is 64.66445208920597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2892323033458269
the lambda is 20.0
the regulation term lambda/alpha is 69.14856939781919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29988633028019096
the lambda is 20.0
the regulation term lambda/alpha is 66.69193617899663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3114457602668968
the lambda is 20.0
the regulation term lambda/alpha is 64.21663914403838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2908621151922096
the lambda is 20.0
the regulation term lambda/alpha is 68.7611034760696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30434713123311485
the lambda is 20.0
the regulation term lambda/alpha is 65.71443574633528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2989905045471107
the lambda is 20.0
the regulation term lambda/alpha is 66.89175641311607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3154013933856945
the lambda is 20.0
the regulation term lambda/alpha is 63.411260759849036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2880601148867789
the lambda is 20.0
the regulation term lambda/alpha is 69.42995217460403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30442839078643325
the lambda is 20.0
the regulation term lambda/alpha is 65.69689491947113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3228249496887265
the lambda is 20.0
the regulation term lambda/alpha is 61.9530802042542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3097542627590414
the lambda is 20.0
the regulation term lambda/alpha is 64.56731159034298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3051188867695554
the lambda is 20.0
the regulation term lambda/alpha is 65.54822027488987
1890
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3018038236640245
the lambda is 20.0
the regulation term lambda/alpha is 66.26821276547012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29080283656153066
the lambda is 20.0
the regulation term lambda/alpha is 68.77512006581897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32514392335876635
the lambda is 20.0
the regulation term lambda/alpha is 61.51122184107941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29274121692511823
the lambda is 20.0
the regulation term lambda/alpha is 68.31972692494443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2809976270906377
the lambda is 20.0
the regulation term lambda/alpha is 71.17497826253481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2821478256579698
the lambda is 20.0
the regulation term lambda/alpha is 70.88482767272767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32305616320874275
the lambda is 20.0
the regulation term lambda/alpha is 61.90873995824992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31848753786633244
the lambda is 20.0
the regulation term lambda/alpha is 62.79680559555801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2865302966130211
the lambda is 20.0
the regulation term lambda/alpha is 69.80064669046631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31167418149976
the lambda is 20.0
the regulation term lambda/alpha is 64.16957575298999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3334184561069397
the lambda is 20.0
the regulation term lambda/alpha is 59.98468181253067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33321266077901657
the lambda is 20.0
the regulation term lambda/alpha is 60.02172892603204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3229950282698933
the lambda is 20.0
the regulation term lambda/alpha is 61.9204577455232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30044672991999494
the lambda is 20.0
the regulation term lambda/alpha is 66.56754095917682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31336648196429473
the lambda is 20.0
the regulation term lambda/alpha is 63.8230351715753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28194718923988576
the lambda is 20.0
the regulation term lambda/alpha is 70.93527001960511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3071574507142026
the lambda is 20.0
the regulation term lambda/alpha is 65.11318528492795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29972219514179
the lambda is 20.0
the regulation term lambda/alpha is 66.72845829965503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29568244314232467
the lambda is 20.0
the regulation term lambda/alpha is 67.64013374433983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2891865726584564
the lambda is 20.0
the regulation term lambda/alpha is 69.15950424718021
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31683303161390086
the lambda is 20.0
the regulation term lambda/alpha is 63.124731339162906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33392726020401164
the lambda is 20.0
the regulation term lambda/alpha is 59.89328330900889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31081383844868105
the lambda is 20.0
the regulation term lambda/alpha is 64.34719927472673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.274973312816956
the lambda is 20.0
the regulation term lambda/alpha is 72.73433117967191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2937622685702325
the lambda is 20.0
the regulation term lambda/alpha is 68.082262903748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35251975085601234
the lambda is 20.0
the regulation term lambda/alpha is 56.73440977827383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.302333964843114
the lambda is 20.0
the regulation term lambda/alpha is 66.15201176744507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3094227349378562
the lambda is 20.0
the regulation term lambda/alpha is 64.63649157524497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30360666489947347
the lambda is 20.0
the regulation term lambda/alpha is 65.87470669203574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2988742800512829
the lambda is 20.0
the regulation term lambda/alpha is 66.91776889121493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31990175172490487
the lambda is 20.0
the regulation term lambda/alpha is 62.51919500959384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30683795888082016
the lambda is 20.0
the regulation term lambda/alpha is 65.18098371188898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.301472317092889
the lambda is 20.0
the regulation term lambda/alpha is 66.34108296529807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3061512354838226
the lambda is 20.0
the regulation term lambda/alpha is 65.32719023130261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2810338016913623
the lambda is 20.0
the regulation term lambda/alpha is 71.16581663711918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2999052798349584
the lambda is 20.0
the regulation term lambda/alpha is 66.68772224018946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2940796821417726
the lambda is 20.0
the regulation term lambda/alpha is 68.00877862197301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30631826834857645
the lambda is 20.0
the regulation term lambda/alpha is 65.29156784485637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29365109776301007
the lambda is 20.0
the regulation term lambda/alpha is 68.10803757369543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3027216980027476
the lambda is 20.0
the regulation term lambda/alpha is 66.06728269546926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31991915494021084
the lambda is 20.0
the regulation term lambda/alpha is 62.5157940409594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28358573448435653
the lambda is 20.0
the regulation term lambda/alpha is 70.52540931357484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3253284285752449
the lambda is 20.0
the regulation term lambda/alpha is 61.47633665950659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2950896089442311
the lambda is 20.0
the regulation term lambda/alpha is 67.77602258363423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3155038101274179
the lambda is 20.0
the regulation term lambda/alpha is 63.390676619476935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30972772856096964
the lambda is 20.0
the regulation term lambda/alpha is 64.57284303514665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.340196382749652
the lambda is 20.0
the regulation term lambda/alpha is 58.789572770730636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3246858095745253
the lambda is 20.0
the regulation term lambda/alpha is 61.598010785283144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3280637752821228
the lambda is 20.0
the regulation term lambda/alpha is 60.96375615625569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31564886529563785
the lambda is 20.0
the regulation term lambda/alpha is 63.36154568864973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2941647939452697
the lambda is 20.0
the regulation term lambda/alpha is 67.98910138689494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3205639358560943
the lambda is 20.0
the regulation term lambda/alpha is 62.3900500428666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30883473019837143
the lambda is 20.0
the regulation term lambda/alpha is 64.75955598372487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3358572258381882
the lambda is 20.0
the regulation term lambda/alpha is 59.54911331768026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28347469785208057
the lambda is 20.0
the regulation term lambda/alpha is 70.55303401517749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32273845799817175
the lambda is 20.0
the regulation term lambda/alpha is 61.969683204327936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3169956944487403
the lambda is 20.0
the regulation term lambda/alpha is 63.09233958139483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29701389860699645
the lambda is 20.0
the regulation term lambda/alpha is 67.33691619752666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3257756026582168
the lambda is 20.0
the regulation term lambda/alpha is 61.3919515052904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32717296570544513
the lambda is 20.0
the regulation term lambda/alpha is 61.12974510860431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35136863670642465
the lambda is 20.0
the regulation term lambda/alpha is 56.9202766287601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3140723893370509
the lambda is 20.0
the regulation term lambda/alpha is 63.6795868691811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32597497808842385
the lambda is 20.0
the regulation term lambda/alpha is 61.354402467586965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29921780608477533
the lambda is 20.0
the regulation term lambda/alpha is 66.84094192687697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2829312040372134
the lambda is 20.0
the regulation term lambda/alpha is 70.68856214731775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3458128729908465
the lambda is 20.0
the regulation term lambda/alpha is 57.83474694572573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3082835121442259
the lambda is 20.0
the regulation term lambda/alpha is 64.8753475685177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2976857983066354
the lambda is 20.0
the regulation term lambda/alpha is 67.18493160832188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30361132485773396
the lambda is 20.0
the regulation term lambda/alpha is 65.87369561847402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30474524740898007
the lambda is 20.0
the regulation term lambda/alpha is 65.62858705769811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31207444302827053
the lambda is 20.0
the regulation term lambda/alpha is 64.0872729145213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3336150020948022
the lambda is 20.0
the regulation term lambda/alpha is 59.94934242890153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30605431531358596
the lambda is 20.0
the regulation term lambda/alpha is 65.34787780890403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31718521191589977
the lambda is 20.0
the regulation term lambda/alpha is 63.05464204712958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29210330105941434
the lambda is 20.0
the regulation term lambda/alpha is 68.46892838068942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32407486434119415
the lambda is 20.0
the regulation term lambda/alpha is 61.71413522198839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3294744102306955
the lambda is 20.0
the regulation term lambda/alpha is 60.7027416362811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3100930919615561
the lambda is 20.0
the regulation term lambda/alpha is 64.49676087102097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31588240858020783
the lambda is 20.0
the regulation term lambda/alpha is 63.314700207250276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.304675977139755
the lambda is 20.0
the regulation term lambda/alpha is 65.64350818780173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31721542156213267
the lambda is 20.0
the regulation term lambda/alpha is 63.04863711073587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3223706313817612
the lambda is 20.0
the regulation term lambda/alpha is 62.04039094465583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3041733702932796
the lambda is 20.0
the regulation term lambda/alpha is 65.75197552868052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3115633557746956
the lambda is 20.0
the regulation term lambda/alpha is 64.19240141469919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2910362627988749
the lambda is 20.0
the regulation term lambda/alpha is 68.71995883832975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32646392080035025
the lambda is 20.0
the regulation term lambda/alpha is 61.262512411688654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2910244952052346
the lambda is 20.0
the regulation term lambda/alpha is 68.72273753415745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30458664468567725
the lambda is 20.0
the regulation term lambda/alpha is 65.66276082340806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31899804352203215
the lambda is 20.0
the regulation term lambda/alpha is 62.696309291372394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3048631147859458
the lambda is 20.0
the regulation term lambda/alpha is 65.60321347514488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28967700601046065
the lambda is 20.0
the regulation term lambda/alpha is 69.04241477584787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31789843229475234
the lambda is 20.0
the regulation term lambda/alpha is 62.91317593367744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3019531568823484
the lambda is 20.0
the regulation term lambda/alpha is 66.23543931945942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29030422602400097
the lambda is 20.0
the regulation term lambda/alpha is 68.89324442127307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30928353819487914
the lambda is 20.0
the regulation term lambda/alpha is 64.6655819987355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3149531133699774
the lambda is 20.0
the regulation term lambda/alpha is 63.501515466862124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2963558967144198
the lambda is 20.0
the regulation term lambda/alpha is 67.48642501037456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.314084111798169
the lambda is 20.0
the regulation term lambda/alpha is 63.6772101762729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3541464885069577
the lambda is 20.0
the regulation term lambda/alpha is 56.47380575286171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3464171390031506
the lambda is 20.0
the regulation term lambda/alpha is 57.73386402749001
1900
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33025254703057094
the lambda is 20.0
the regulation term lambda/alpha is 60.55971461788191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3151007424918412
the lambda is 20.0
the regulation term lambda/alpha is 63.47176411530624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3144737728768125
the lambda is 20.0
the regulation term lambda/alpha is 63.59830842820243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2999684770055327
the lambda is 20.0
the regulation term lambda/alpha is 66.67367251269911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2994040326202083
the lambda is 20.0
the regulation term lambda/alpha is 66.79936748002939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3334892120692775
the lambda is 20.0
the regulation term lambda/alpha is 59.97195494241443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.324296975458682
the lambda is 20.0
the regulation term lambda/alpha is 61.67186718812972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33144970248749306
the lambda is 20.0
the regulation term lambda/alpha is 60.34098039582546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32408423659713254
the lambda is 20.0
the regulation term lambda/alpha is 61.712350498743625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3476558341688885
the lambda is 20.0
the regulation term lambda/alpha is 57.52815869698351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3064118361819504
the lambda is 20.0
the regulation term lambda/alpha is 65.27163000362623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3117731175174267
the lambda is 20.0
the regulation term lambda/alpha is 64.1492126045219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2806772553565058
the lambda is 20.0
the regulation term lambda/alpha is 71.25621908549998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3045896632751668
the lambda is 20.0
the regulation term lambda/alpha is 65.66211008261291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2901731690652057
the lambda is 20.0
the regulation term lambda/alpha is 68.92436011375587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3101617840514858
the lambda is 20.0
the regulation term lambda/alpha is 64.48247665702125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2724380850449194
the lambda is 20.0
the regulation term lambda/alpha is 73.41117522795102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3172487566285375
the lambda is 20.0
the regulation term lambda/alpha is 63.04201224472486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.306147502101065
the lambda is 20.0
the regulation term lambda/alpha is 65.32798687802988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30054804579172745
the lambda is 20.0
the regulation term lambda/alpha is 66.54510079183652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3238397812258715
the lambda is 20.0
the regulation term lambda/alpha is 61.758935002646936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.283116856561518
the lambda is 20.0
the regulation term lambda/alpha is 70.64220846085239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3134195910670372
the lambda is 20.0
the regulation term lambda/alpha is 63.81222032710204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31309301869088524
the lambda is 20.0
the regulation term lambda/alpha is 63.878779806795606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30497792335957696
the lambda is 20.0
the regulation term lambda/alpha is 65.57851722407945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32911503434797496
the lambda is 20.0
the regulation term lambda/alpha is 60.76902575910252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27556950687093906
the lambda is 20.0
the regulation term lambda/alpha is 72.57697060570221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31733352650251473
the lambda is 20.0
the regulation term lambda/alpha is 63.02517171894697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34445665828599625
the lambda is 20.0
the regulation term lambda/alpha is 58.06245726100715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31411315606610807
the lambda is 20.0
the regulation term lambda/alpha is 63.67132230459909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3370380898228591
the lambda is 20.0
the regulation term lambda/alpha is 59.34047398177347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2934992858599162
the lambda is 20.0
the regulation term lambda/alpha is 68.14326631631317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31048362469227564
the lambda is 20.0
the regulation term lambda/alpha is 64.41563550999594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30370905557963046
the lambda is 20.0
the regulation term lambda/alpha is 65.85249808185628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3249325798175444
the lambda is 20.0
the regulation term lambda/alpha is 61.55123013897334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3141309550662613
the lambda is 20.0
the regulation term lambda/alpha is 63.6677146185141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28959610140669856
the lambda is 20.0
the regulation term lambda/alpha is 69.06170318885856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34882899012221297
the lambda is 20.0
the regulation term lambda/alpha is 57.33468423307638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2900066269795564
the lambda is 20.0
the regulation term lambda/alpha is 68.96394130127885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2948934171817816
the lambda is 20.0
the regulation term lambda/alpha is 67.82111378115765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32719927097551493
the lambda is 20.0
the regulation term lambda/alpha is 61.12483056692582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31886398908038627
the lambda is 20.0
the regulation term lambda/alpha is 62.72266761035207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29963493604634983
the lambda is 20.0
the regulation term lambda/alpha is 66.74789082974706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3016157653662613
the lambda is 20.0
the regulation term lambda/alpha is 66.30953118685088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3374452870888458
the lambda is 20.0
the regulation term lambda/alpha is 59.268867473423064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3069828522253223
the lambda is 20.0
the regulation term lambda/alpha is 65.15021883150725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31416530254709646
the lambda is 20.0
the regulation term lambda/alpha is 63.66075387017573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3159394700028538
the lambda is 20.0
the regulation term lambda/alpha is 63.30326502041466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3401428938407133
the lambda is 20.0
the regulation term lambda/alpha is 58.79881767974218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27890048399500555
the lambda is 20.0
the regulation term lambda/alpha is 71.71016598292512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31765544850695615
the lambda is 20.0
the regulation term lambda/alpha is 62.9613000312256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3089009782933141
the lambda is 20.0
the regulation term lambda/alpha is 64.74566739963245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32160143626132276
the lambda is 20.0
the regulation term lambda/alpha is 62.18877699211721
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29840009800047423
the lambda is 20.0
the regulation term lambda/alpha is 67.02410667428204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2769325112691151
the lambda is 20.0
the regulation term lambda/alpha is 72.21976180530342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29819137788230476
the lambda is 20.0
the regulation term lambda/alpha is 67.07102043672751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3214930491753956
the lambda is 20.0
the regulation term lambda/alpha is 62.20974310734999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29690939122564575
the lambda is 20.0
the regulation term lambda/alpha is 67.36061772057712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26398636852111357
the lambda is 20.0
the regulation term lambda/alpha is 75.76148765575525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30252589167320054
the lambda is 20.0
the regulation term lambda/alpha is 66.11004396808696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32371312943598984
the lambda is 20.0
the regulation term lambda/alpha is 61.78309800052378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.301894459538592
the lambda is 20.0
the regulation term lambda/alpha is 66.24831747680135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30436832658517143
the lambda is 20.0
the regulation term lambda/alpha is 65.70985957832048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30287542556561664
the lambda is 20.0
the regulation term lambda/alpha is 66.03374956106198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31351114414395104
the lambda is 20.0
the regulation term lambda/alpha is 63.79358556650492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3251056412647837
the lambda is 20.0
the regulation term lambda/alpha is 61.518464958628364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.290273293532592
the lambda is 20.0
the regulation term lambda/alpha is 68.90058591543969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3093125985753535
the lambda is 20.0
the regulation term lambda/alpha is 64.65950657075379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32363245987597594
the lambda is 20.0
the regulation term lambda/alpha is 61.79849823365833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3050951854455316
the lambda is 20.0
the regulation term lambda/alpha is 65.55331238935786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3056334821930181
the lambda is 20.0
the regulation term lambda/alpha is 65.43785666574746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31957951745766117
the lambda is 20.0
the regulation term lambda/alpha is 62.58223355209133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3158782897489304
the lambda is 20.0
the regulation term lambda/alpha is 63.315525786519245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3054522390695718
the lambda is 20.0
the regulation term lambda/alpha is 65.47668486870927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3074249170875783
the lambda is 20.0
the regulation term lambda/alpha is 65.05653539560835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3051222505655571
the lambda is 20.0
the regulation term lambda/alpha is 65.54749764374492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3220777811398228
the lambda is 20.0
the regulation term lambda/alpha is 62.09680136649181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3219678128737539
the lambda is 20.0
the regulation term lambda/alpha is 62.11801055977653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28470214549893696
the lambda is 20.0
the regulation term lambda/alpha is 70.24885592256514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29061356612082245
the lambda is 20.0
the regulation term lambda/alpha is 68.8199118401961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31621008264102524
the lambda is 20.0
the regulation term lambda/alpha is 63.249090076311155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3069172547407667
the lambda is 20.0
the regulation term lambda/alpha is 65.16414340045077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3053878467837406
the lambda is 20.0
the regulation term lambda/alpha is 65.49049089750757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2978964590236645
the lambda is 20.0
the regulation term lambda/alpha is 67.13742105410935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.302147013649952
the lambda is 20.0
the regulation term lambda/alpha is 66.19294282739695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28080735094778503
the lambda is 20.0
the regulation term lambda/alpha is 71.22320670201728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3171617337680692
the lambda is 20.0
the regulation term lambda/alpha is 63.05930971680649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2711330685830367
the lambda is 20.0
the regulation term lambda/alpha is 73.76451756520005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3186777260291269
the lambda is 20.0
the regulation term lambda/alpha is 62.759328206615905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32093309770520334
the lambda is 20.0
the regulation term lambda/alpha is 62.318284224992034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33494658890088125
the lambda is 20.0
the regulation term lambda/alpha is 59.711012629295595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2876828774594919
the lambda is 20.0
the regulation term lambda/alpha is 69.52099539819211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3117344565127803
the lambda is 20.0
the regulation term lambda/alpha is 64.15716832758926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3331309129300964
the lambda is 20.0
the regulation term lambda/alpha is 60.036457811997664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.317135592089241
the lambda is 20.0
the regulation term lambda/alpha is 63.06450773387825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.307328797489176
the lambda is 20.0
the regulation term lambda/alpha is 65.07688235985887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3163453223112277
the lambda is 20.0
the regulation term lambda/alpha is 63.22205068144977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3115132484034821
the lambda is 20.0
the regulation term lambda/alpha is 64.20272685833044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34101828368389736
the lambda is 20.0
the regulation term lambda/alpha is 58.647881820139446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30385260932851704
the lambda is 20.0
the regulation term lambda/alpha is 65.82138637610498
1910
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3070057118385214
the lambda is 20.0
the regulation term lambda/alpha is 65.145367753026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28086511930974806
the lambda is 20.0
the regulation term lambda/alpha is 71.20855750672011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29854087643739946
the lambda is 20.0
the regulation term lambda/alpha is 66.99250112302047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3038002924491891
the lambda is 20.0
the regulation term lambda/alpha is 65.83272135376572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.309925141631825
the lambda is 20.0
the regulation term lambda/alpha is 64.53171206019472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31768233304501403
the lambda is 20.0
the regulation term lambda/alpha is 62.955971798299835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.316990946907214
the lambda is 20.0
the regulation term lambda/alpha is 63.093284509018396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2883488119709444
the lambda is 20.0
the regulation term lambda/alpha is 69.36043836384978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3089793277043378
the lambda is 20.0
the regulation term lambda/alpha is 64.7292495216314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3163456166137671
the lambda is 20.0
the regulation term lambda/alpha is 63.22199186473449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30422098810978854
the lambda is 20.0
the regulation term lambda/alpha is 65.74168378146979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3147713907223219
the lambda is 20.0
the regulation term lambda/alpha is 63.53817592540727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30850613583621284
the lambda is 20.0
the regulation term lambda/alpha is 64.8285323265599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3269753616673884
the lambda is 20.0
the regulation term lambda/alpha is 61.166688211648044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30954204698374016
the lambda is 20.0
the regulation term lambda/alpha is 64.61157763504282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3306407169669339
the lambda is 20.0
the regulation term lambda/alpha is 60.48861792784015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32252430700426477
the lambda is 20.0
the regulation term lambda/alpha is 62.010830085236144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3156871301784783
the lambda is 20.0
the regulation term lambda/alpha is 63.35386554622201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29697128147878465
the lambda is 20.0
the regulation term lambda/alpha is 67.34657944165143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.329854120043213
the lambda is 20.0
the regulation term lambda/alpha is 60.63286399872729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34656419980898207
the lambda is 20.0
the regulation term lambda/alpha is 57.70936528072872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2970676798737421
the lambda is 20.0
the regulation term lambda/alpha is 67.32472549184845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.309760099822589
the lambda is 20.0
the regulation term lambda/alpha is 64.56609489554896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34082289052835335
the lambda is 20.0
the regulation term lambda/alpha is 58.68150454623347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2818367313011446
the lambda is 20.0
the regulation term lambda/alpha is 70.96307109320628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29438541613080693
the lambda is 20.0
the regulation term lambda/alpha is 67.93814810144406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3408837579542533
the lambda is 20.0
the regulation term lambda/alpha is 58.671026510696954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.291466280708656
the lambda is 20.0
the regulation term lambda/alpha is 68.61857210848898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30310932109709987
the lambda is 20.0
the regulation term lambda/alpha is 65.98279435159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3022770383196928
the lambda is 20.0
the regulation term lambda/alpha is 66.1644698888696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3155948268253855
the lambda is 20.0
the regulation term lambda/alpha is 63.37239491908954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3195410078873906
the lambda is 20.0
the regulation term lambda/alpha is 62.589775666753226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3029579218213671
the lambda is 20.0
the regulation term lambda/alpha is 66.01576839371306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3207409612741801
the lambda is 20.0
the regulation term lambda/alpha is 62.355615324427895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32378709954778045
the lambda is 20.0
the regulation term lambda/alpha is 61.768983470722404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28651309707185946
the lambda is 20.0
the regulation term lambda/alpha is 69.80483686225297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30310224661670604
the lambda is 20.0
the regulation term lambda/alpha is 65.98433440611015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3396404870867487
the lambda is 20.0
the regulation term lambda/alpha is 58.88579471649307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2989813362258669
the lambda is 20.0
the regulation term lambda/alpha is 66.89380766193011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29655985500600723
the lambda is 20.0
the regulation term lambda/alpha is 67.44001139194944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3302578458444032
the lambda is 20.0
the regulation term lambda/alpha is 60.558742969039855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2970516858735851
the lambda is 20.0
the regulation term lambda/alpha is 67.32835042219321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3108221142840968
the lambda is 20.0
the regulation term lambda/alpha is 64.34548598984065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29572685755411215
the lambda is 20.0
the regulation term lambda/alpha is 67.62997505676466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.310326845758461
the lambda is 20.0
the regulation term lambda/alpha is 64.44817866504128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3561662540699429
the lambda is 20.0
the regulation term lambda/alpha is 56.1535512459652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31368663101973665
the lambda is 20.0
the regulation term lambda/alpha is 63.75789728425383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3112607361986503
the lambda is 20.0
the regulation term lambda/alpha is 64.25481171912335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2797388136814893
the lambda is 20.0
the regulation term lambda/alpha is 71.49526280172192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.315638912701926
the lambda is 20.0
the regulation term lambda/alpha is 63.36354357831357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31781253622877903
the lambda is 20.0
the regulation term lambda/alpha is 62.93017965031717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29575836427655533
the lambda is 20.0
the regulation term lambda/alpha is 67.62277053067065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3357027397133527
the lambda is 20.0
the regulation term lambda/alpha is 59.576517061128094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32810093669244683
the lambda is 20.0
the regulation term lambda/alpha is 60.95685127149598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33048852119865957
the lambda is 20.0
the regulation term lambda/alpha is 60.51647399873784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3056401324852043
the lambda is 20.0
the regulation term lambda/alpha is 65.43643283156926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29833338010367544
the lambda is 20.0
the regulation term lambda/alpha is 67.03909563539183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3046585187051866
the lambda is 20.0
the regulation term lambda/alpha is 65.64726988433137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3026040527663965
the lambda is 20.0
the regulation term lambda/alpha is 66.09296807878363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2977864267047827
the lambda is 20.0
the regulation term lambda/alpha is 67.16222838399364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.37200261018383823
the lambda is 20.0
the regulation term lambda/alpha is 53.763063625054386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30504158703179035
the lambda is 20.0
the regulation term lambda/alpha is 65.56483066656637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3167234291879164
the lambda is 20.0
the regulation term lambda/alpha is 63.14657570890887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33224299216746067
the lambda is 20.0
the regulation term lambda/alpha is 60.196905492349366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.331750522856455
the lambda is 20.0
the regulation term lambda/alpha is 60.28626519649463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3131574006921769
the lambda is 20.0
the regulation term lambda/alpha is 63.86564697431284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34405075454517914
the lambda is 20.0
the regulation term lambda/alpha is 58.13095810947769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3045574472257049
the lambda is 20.0
the regulation term lambda/alpha is 65.66905581257441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3042870129402208
the lambda is 20.0
the regulation term lambda/alpha is 65.72741901386745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31099627459208345
the lambda is 20.0
the regulation term lambda/alpha is 64.30945202232049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30530800676807396
the lambda is 20.0
the regulation term lambda/alpha is 65.50761708386155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.311094628272457
the lambda is 20.0
the regulation term lambda/alpha is 64.28912035885101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30838163316009765
the lambda is 20.0
the regulation term lambda/alpha is 64.85470549932822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30574938440944277
the lambda is 20.0
the regulation term lambda/alpha is 65.41305075275997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3103372645362792
the lambda is 20.0
the regulation term lambda/alpha is 64.44601498271552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30539705594808153
the lambda is 20.0
the regulation term lambda/alpha is 65.48851604974234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29584836184281227
the lambda is 20.0
the regulation term lambda/alpha is 67.60219957082688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29474109815065397
the lambda is 20.0
the regulation term lambda/alpha is 67.85616300369892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2913989749275601
the lambda is 20.0
the regulation term lambda/alpha is 68.63442126030769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29037300904623403
the lambda is 20.0
the regulation term lambda/alpha is 68.87692511674025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30535849839222845
the lambda is 20.0
the regulation term lambda/alpha is 65.49678527142315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3381737273471431
the lambda is 20.0
the regulation term lambda/alpha is 59.14119987053145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32685443804809694
the lambda is 20.0
the regulation term lambda/alpha is 61.18931754280473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30728953358090244
the lambda is 20.0
the regulation term lambda/alpha is 65.08519755598655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29649867349252734
the lambda is 20.0
the regulation term lambda/alpha is 67.4539274136215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3201785441460336
the lambda is 20.0
the regulation term lambda/alpha is 62.46514754242243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2802621041205176
the lambda is 20.0
the regulation term lambda/alpha is 71.36177066379139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30168649816200144
the lambda is 20.0
the regulation term lambda/alpha is 66.29398439057846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3147068531016931
the lambda is 20.0
the regulation term lambda/alpha is 63.55120583769836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27930063633968877
the lambda is 20.0
the regulation term lambda/alpha is 71.60742725868967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30329580096374315
the lambda is 20.0
the regulation term lambda/alpha is 65.94222516912082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30849414728938923
the lambda is 20.0
the regulation term lambda/alpha is 64.83105166088805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31118935460648783
the lambda is 20.0
the regulation term lambda/alpha is 64.26955068977487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28510330579865206
the lambda is 20.0
the regulation term lambda/alpha is 70.15001086702432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3099871509755773
the lambda is 20.0
the regulation term lambda/alpha is 64.51880323767267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2931431939628735
the lambda is 20.0
the regulation term lambda/alpha is 68.22604246623919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30447553943872585
the lambda is 20.0
the regulation term lambda/alpha is 65.68672162259162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2859186996084823
the lambda is 20.0
the regulation term lambda/alpha is 69.94995440097708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2944870390912711
the lambda is 20.0
the regulation term lambda/alpha is 67.91470368854282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3008483194985927
the lambda is 20.0
the regulation term lambda/alpha is 66.47868279049355
1920
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3130774623233223
the lambda is 20.0
the regulation term lambda/alpha is 63.881953851234236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3539101128161564
the lambda is 20.0
the regulation term lambda/alpha is 56.511524468330975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3473680678011601
the lambda is 20.0
the regulation term lambda/alpha is 57.57581612668085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32280724707297137
the lambda is 20.0
the regulation term lambda/alpha is 61.956477685517854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3128355378352841
the lambda is 20.0
the regulation term lambda/alpha is 63.93135555631953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32313148064927544
the lambda is 20.0
the regulation term lambda/alpha is 61.894309894577724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29919444619646324
the lambda is 20.0
the regulation term lambda/alpha is 66.84616059640086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.36440916115252214
the lambda is 20.0
the regulation term lambda/alpha is 54.88336225342335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30871581625568817
the lambda is 20.0
the regulation term lambda/alpha is 64.78450065362175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29624332088967187
the lambda is 20.0
the regulation term lambda/alpha is 67.51207061795152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3236470204582037
the lambda is 20.0
the regulation term lambda/alpha is 61.79571797597572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3326906424365501
the lambda is 20.0
the regulation term lambda/alpha is 60.115907840162194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30191623617542357
the lambda is 20.0
the regulation term lambda/alpha is 66.2435391132106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27362518174325096
the lambda is 20.0
the regulation term lambda/alpha is 73.09268786074843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3069379058365301
the lambda is 20.0
the regulation term lambda/alpha is 65.15975909033425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33226950663980087
the lambda is 20.0
the regulation term lambda/alpha is 60.19210189420464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32708433613967763
the lambda is 20.0
the regulation term lambda/alpha is 61.14630934652654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30260708868374764
the lambda is 20.0
the regulation term lambda/alpha is 66.09230499851854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28944548647655266
the lambda is 20.0
the regulation term lambda/alpha is 69.09763991645507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29559550661683526
the lambda is 20.0
the regulation term lambda/alpha is 67.66002713946845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3083995952181709
the lambda is 20.0
the regulation term lambda/alpha is 64.85092817923906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3003599372639588
the lambda is 20.0
the regulation term lambda/alpha is 66.58677645955103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3236865530525648
the lambda is 20.0
the regulation term lambda/alpha is 61.78817072067902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3014301897398417
the lambda is 20.0
the regulation term lambda/alpha is 66.35035467834723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3260232765134355
the lambda is 20.0
the regulation term lambda/alpha is 61.34531317482725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3138253063867267
the lambda is 20.0
the regulation term lambda/alpha is 63.72972348939258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3279407544095378
the lambda is 20.0
the regulation term lambda/alpha is 60.98662557512956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2809301656234092
the lambda is 20.0
the regulation term lambda/alpha is 71.19206994242931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31044647663984454
the lambda is 20.0
the regulation term lambda/alpha is 64.42334349055093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30034769931870076
the lambda is 20.0
the regulation term lambda/alpha is 66.58948959944547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3166497351948393
the lambda is 20.0
the regulation term lambda/alpha is 63.16127183145662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3032026186410272
the lambda is 20.0
the regulation term lambda/alpha is 65.96249098916503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3023696222268392
the lambda is 20.0
the regulation term lambda/alpha is 66.14421069387684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31024600447483464
the lambda is 20.0
the regulation term lambda/alpha is 64.46497202713302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30817265274953776
the lambda is 20.0
the regulation term lambda/alpha is 64.89868527125498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32036453803432136
the lambda is 20.0
the regulation term lambda/alpha is 62.42888218126488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3236490644969327
the lambda is 20.0
the regulation term lambda/alpha is 61.79532769880614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3529097467912248
the lambda is 20.0
the regulation term lambda/alpha is 56.67171332570661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33789902636116836
the lambda is 20.0
the regulation term lambda/alpha is 59.18927975430952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31019921433133135
the lambda is 20.0
the regulation term lambda/alpha is 64.47469585992411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3108605280334018
the lambda is 20.0
the regulation term lambda/alpha is 64.33753467037478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31325451164655077
the lambda is 20.0
the regulation term lambda/alpha is 63.84584820462623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33129104644015434
the lambda is 20.0
the regulation term lambda/alpha is 60.36987783070943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3464399221356922
the lambda is 20.0
the regulation term lambda/alpha is 57.730067241403205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2990799990674278
the lambda is 20.0
the regulation term lambda/alpha is 66.87174021119006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3286357603821222
the lambda is 20.0
the regulation term lambda/alpha is 60.85764974799133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3457217643577276
the lambda is 20.0
the regulation term lambda/alpha is 57.84998823303893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3293002866993493
the lambda is 20.0
the regulation term lambda/alpha is 60.73483931782899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.336474931953785
the lambda is 20.0
the regulation term lambda/alpha is 59.43979209347759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33575196680587444
the lambda is 20.0
the regulation term lambda/alpha is 59.56778210494782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30379085133095024
the lambda is 20.0
the regulation term lambda/alpha is 65.83476728274469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32525779012613404
the lambda is 20.0
the regulation term lambda/alpha is 61.48968789415945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3148906746341354
the lambda is 20.0
the regulation term lambda/alpha is 63.51410699360203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3211168084372085
the lambda is 20.0
the regulation term lambda/alpha is 62.28263197225572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3444663499450611
the lambda is 20.0
the regulation term lambda/alpha is 58.06082365720135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30438683691706
the lambda is 20.0
the regulation term lambda/alpha is 65.7058636390694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3162035318627
the lambda is 20.0
the regulation term lambda/alpha is 63.250400405661125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2972803233642096
the lambda is 20.0
the regulation term lambda/alpha is 67.27656837044417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3104210485388001
the lambda is 20.0
the regulation term lambda/alpha is 64.42862072060865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29751935039978955
the lambda is 20.0
the regulation term lambda/alpha is 67.22251837779673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32710990459856476
the lambda is 20.0
the regulation term lambda/alpha is 61.141529861482994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32929022940702496
the lambda is 20.0
the regulation term lambda/alpha is 60.73669430160544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31981429040773446
the lambda is 20.0
the regulation term lambda/alpha is 62.5362924667994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30118205881558663
the lambda is 20.0
the regulation term lambda/alpha is 66.40501787739612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2898327240727744
the lambda is 20.0
the regulation term lambda/alpha is 69.00532044469271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3056133591902968
the lambda is 20.0
the regulation term lambda/alpha is 65.44216539809887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3283117984675716
the lambda is 20.0
the regulation term lambda/alpha is 60.91770107974193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29017302193711786
the lambda is 20.0
the regulation term lambda/alpha is 68.92439506086859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3013868332624684
the lambda is 20.0
the regulation term lambda/alpha is 66.35989961307507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35196587688512837
the lambda is 20.0
the regulation term lambda/alpha is 56.823690344639374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33397009481679696
the lambda is 20.0
the regulation term lambda/alpha is 59.885601466715826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31507517928314777
the lambda is 20.0
the regulation term lambda/alpha is 63.476913813089205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3292941842895978
the lambda is 20.0
the regulation term lambda/alpha is 60.73596484294724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2963665904106116
the lambda is 20.0
the regulation term lambda/alpha is 67.48398992035604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29259912181013364
the lambda is 20.0
the regulation term lambda/alpha is 68.35290508143738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2914226599187561
the lambda is 20.0
the regulation term lambda/alpha is 68.6288430885082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29202530493075357
the lambda is 20.0
the regulation term lambda/alpha is 68.48721553340214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3172397580040893
the lambda is 20.0
the regulation term lambda/alpha is 63.04380045499276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32312123849136243
the lambda is 20.0
the regulation term lambda/alpha is 61.89627179376708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30124559448037597
the lambda is 20.0
the regulation term lambda/alpha is 66.39101240467389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2982317362177696
the lambda is 20.0
the regulation term lambda/alpha is 67.06194402260377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3003915419350869
the lambda is 20.0
the regulation term lambda/alpha is 66.57977075906452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27851683509924363
the lambda is 20.0
the regulation term lambda/alpha is 71.8089446653141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34397819677143465
the lambda is 20.0
the regulation term lambda/alpha is 58.14322008696826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3191199699597411
the lambda is 20.0
the regulation term lambda/alpha is 62.672354859281036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2977892467311071
the lambda is 20.0
the regulation term lambda/alpha is 67.16159236622562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28030759624768486
the lambda is 20.0
the regulation term lambda/alpha is 71.35018910556973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29252606668117564
the lambda is 20.0
the regulation term lambda/alpha is 68.36997545862472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31759312829817293
the lambda is 20.0
the regulation term lambda/alpha is 62.97365471088833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34241774683825593
the lambda is 20.0
the regulation term lambda/alpha is 58.40818761489946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2937116001334295
the lambda is 20.0
the regulation term lambda/alpha is 68.09400783256177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3113956653185682
the lambda is 20.0
the regulation term lambda/alpha is 64.22696982483468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2816438701473656
the lambda is 20.0
the regulation term lambda/alpha is 71.01166444536969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3128710287272551
the lambda is 20.0
the regulation term lambda/alpha is 63.92410342804534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33850678074566887
the lambda is 20.0
the regulation term lambda/alpha is 59.083011442026766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3338845787797927
the lambda is 20.0
the regulation term lambda/alpha is 59.9009396393555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29580065719503895
the lambda is 20.0
the regulation term lambda/alpha is 67.61310197770389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2949663218420212
the lambda is 20.0
the regulation term lambda/alpha is 67.80435093438108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3219346491484957
the lambda is 20.0
the regulation term lambda/alpha is 62.12440957473575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3315844050953691
the lambda is 20.0
the regulation term lambda/alpha is 60.31646751977878
1930
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.345137408403635
the lambda is 20.0
the regulation term lambda/alpha is 57.94793468637913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30538661997671157
the lambda is 20.0
the regulation term lambda/alpha is 65.49075398760161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32200418567659084
the lambda is 20.0
the regulation term lambda/alpha is 62.11099386169863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3287150131941016
the lambda is 20.0
the regulation term lambda/alpha is 60.84297703856404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3041203648421131
the lambda is 20.0
the regulation term lambda/alpha is 65.76343550811924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34386098286940875
the lambda is 20.0
the regulation term lambda/alpha is 58.16303970606512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30242018419327066
the lambda is 20.0
the regulation term lambda/alpha is 66.13315196983811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3011324199233742
the lambda is 20.0
the regulation term lambda/alpha is 66.41596412996374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3030365464921071
the lambda is 20.0
the regulation term lambda/alpha is 65.99864020203557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2894764184844364
the lambda is 20.0
the regulation term lambda/alpha is 69.09025648690377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3145550046117838
the lambda is 20.0
the regulation term lambda/alpha is 63.581884588622316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30291942018621654
the lambda is 20.0
the regulation term lambda/alpha is 66.02415912358875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3061043032355007
the lambda is 20.0
the regulation term lambda/alpha is 65.3372062679336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.320728631093045
the lambda is 20.0
the regulation term lambda/alpha is 62.35801254113138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30865517213609645
the lambda is 20.0
the regulation term lambda/alpha is 64.79722941814605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29724124481807135
the lambda is 20.0
the regulation term lambda/alpha is 67.28541327513665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31776073573122765
the lambda is 20.0
the regulation term lambda/alpha is 62.94043835836486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3194495347435458
the lambda is 20.0
the regulation term lambda/alpha is 62.60769800793733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31209168726191394
the lambda is 20.0
the regulation term lambda/alpha is 64.08373185286277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32000520445046565
the lambda is 20.0
the regulation term lambda/alpha is 62.49898352230033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2938801392436024
the lambda is 20.0
the regulation term lambda/alpha is 68.05495618545916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3336606411737954
the lambda is 20.0
the regulation term lambda/alpha is 59.94114238239597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3228881873029211
the lambda is 20.0
the regulation term lambda/alpha is 61.940946700650834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28710904887309335
the lambda is 20.0
the regulation term lambda/alpha is 69.65994307215412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3112310612447201
the lambda is 20.0
the regulation term lambda/alpha is 64.26093822388138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31968136480951254
the lambda is 20.0
the regulation term lambda/alpha is 62.56229546541549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3141912011224276
the lambda is 20.0
the regulation term lambda/alpha is 63.65550635584734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30310843205554944
the lambda is 20.0
the regulation term lambda/alpha is 65.98298788446334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3607345765204425
the lambda is 20.0
the regulation term lambda/alpha is 55.442425821542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31723142439019775
the lambda is 20.0
the regulation term lambda/alpha is 63.04545660457586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2970429575450007
the lambda is 20.0
the regulation term lambda/alpha is 67.33032880259445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3542403950169691
the lambda is 20.0
the regulation term lambda/alpha is 56.45883496443692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3170281889275759
the lambda is 20.0
the regulation term lambda/alpha is 63.08587279779382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3300579655476081
the lambda is 20.0
the regulation term lambda/alpha is 60.59541682873025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34614788821536907
the lambda is 20.0
the regulation term lambda/alpha is 57.778772255736655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3127724563816925
the lambda is 20.0
the regulation term lambda/alpha is 63.944249539649235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30107485380880866
the lambda is 20.0
the regulation term lambda/alpha is 66.4286629952184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28876734324482367
the lambda is 20.0
the regulation term lambda/alpha is 69.25990929328714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3071070379951775
the lambda is 20.0
the regulation term lambda/alpha is 65.12387384724819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30068203155425
the lambda is 20.0
the regulation term lambda/alpha is 66.51544788565637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3160806095692724
the lambda is 20.0
the regulation term lambda/alpha is 63.27499819509424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33636417648925826
the lambda is 20.0
the regulation term lambda/alpha is 59.4593639808688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2974120607556734
the lambda is 20.0
the regulation term lambda/alpha is 67.24676850422073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3051856593103242
the lambda is 20.0
the regulation term lambda/alpha is 65.53387877135881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3077668675108219
the lambda is 20.0
the regulation term lambda/alpha is 64.98425305412951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3381007504194977
the lambda is 20.0
the regulation term lambda/alpha is 59.153965127805975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28911928905709094
the lambda is 20.0
the regulation term lambda/alpha is 69.17559898969833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28421299547143286
the lambda is 20.0
the regulation term lambda/alpha is 70.3697590140992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3233407332406578
the lambda is 20.0
the regulation term lambda/alpha is 61.854254487368564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32880802650138036
the lambda is 20.0
the regulation term lambda/alpha is 60.82576576005829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3067998632157179
the lambda is 20.0
the regulation term lambda/alpha is 65.18907730391506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31055033210694055
the lambda is 20.0
the regulation term lambda/alpha is 64.40179878188904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3161754503010472
the lambda is 20.0
the regulation term lambda/alpha is 63.25601807780127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2855615746745875
the lambda is 20.0
the regulation term lambda/alpha is 70.03743421288756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.294478774741627
the lambda is 20.0
the regulation term lambda/alpha is 67.91660966922937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3181323057315927
the lambda is 20.0
the regulation term lambda/alpha is 62.86692561450815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32228897240907056
the lambda is 20.0
the regulation term lambda/alpha is 62.05611023704116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2769983116696299
the lambda is 20.0
the regulation term lambda/alpha is 72.20260614387276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3232130306606093
the lambda is 20.0
the regulation term lambda/alpha is 61.87869331605338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2935642063272725
the lambda is 20.0
the regulation term lambda/alpha is 68.12819672471758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.316018512742661
the lambda is 20.0
the regulation term lambda/alpha is 63.28743156982807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3294650893393477
the lambda is 20.0
the regulation term lambda/alpha is 60.70445897653236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30918919976991915
the lambda is 20.0
the regulation term lambda/alpha is 64.68531247172557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3106580146411308
the lambda is 20.0
the regulation term lambda/alpha is 64.37947536329881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33582572154094975
the lambda is 20.0
the regulation term lambda/alpha is 59.55469970623215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.310743488288661
the lambda is 20.0
the regulation term lambda/alpha is 64.36176703217436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3100742189664229
the lambda is 20.0
the regulation term lambda/alpha is 64.50068653455432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2875495668949142
the lambda is 20.0
the regulation term lambda/alpha is 69.5532259567237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31233848138622167
the lambda is 20.0
the regulation term lambda/alpha is 64.033096118147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3301843044442765
the lambda is 20.0
the regulation term lambda/alpha is 60.57223111698605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30906598490396725
the lambda is 20.0
the regulation term lambda/alpha is 64.71110046682874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31596311785202974
the lambda is 20.0
the regulation term lambda/alpha is 63.298527169763844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2894186753787911
the lambda is 20.0
the regulation term lambda/alpha is 69.1040409670316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3326179434463366
the lambda is 20.0
the regulation term lambda/alpha is 60.129047136709055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2987205397468601
the lambda is 20.0
the regulation term lambda/alpha is 66.95220896744588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3073112881413325
the lambda is 20.0
the regulation term lambda/alpha is 65.08059017604975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32029928784263806
the lambda is 20.0
the regulation term lambda/alpha is 62.44159996330036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3206782925706297
the lambda is 20.0
the regulation term lambda/alpha is 62.36780119937486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2971575044982762
the lambda is 20.0
the regulation term lambda/alpha is 67.30437460688803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3384092069670172
the lambda is 20.0
the regulation term lambda/alpha is 59.100046890713834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.335212577534084
the lambda is 20.0
the regulation term lambda/alpha is 59.66363239448086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29565564526627613
the lambda is 20.0
the regulation term lambda/alpha is 67.64626456561454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3144317593114313
the lambda is 20.0
the regulation term lambda/alpha is 63.60680627108933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3069203429453473
the lambda is 20.0
the regulation term lambda/alpha is 65.16348772476564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2920532119060196
the lambda is 20.0
the regulation term lambda/alpha is 68.480671277246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3011990164947478
the lambda is 20.0
the regulation term lambda/alpha is 66.40127923641063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2596421815339935
the lambda is 20.0
the regulation term lambda/alpha is 77.02908626725397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3001113961711306
the lambda is 20.0
the regulation term lambda/alpha is 66.64192115049016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30713388555972454
the lambda is 20.0
the regulation term lambda/alpha is 65.11818115917674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31905761700291274
the lambda is 20.0
the regulation term lambda/alpha is 62.68460282462843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32978595641535574
the lambda is 20.0
the regulation term lambda/alpha is 60.64539623637153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3133237519714019
the lambda is 20.0
the regulation term lambda/alpha is 63.831739132963875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2998126052375812
the lambda is 20.0
the regulation term lambda/alpha is 66.7083359759052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3381668351777493
the lambda is 20.0
the regulation term lambda/alpha is 59.14240522577407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32095395771631285
the lambda is 20.0
the regulation term lambda/alpha is 62.31423392409994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3141701213814124
the lambda is 20.0
the regulation term lambda/alpha is 63.65977742268932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30178826594644653
the lambda is 20.0
the regulation term lambda/alpha is 66.27162900876031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32955864307676463
the lambda is 20.0
the regulation term lambda/alpha is 60.68722644710419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3196003776751511
the lambda is 20.0
the regulation term lambda/alpha is 62.57814882912449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28505749202828645
the lambda is 20.0
the regulation term lambda/alpha is 70.16128521195081
1940
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31719287380787164
the lambda is 20.0
the regulation term lambda/alpha is 63.05311894274867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28572680971862047
the lambda is 20.0
the regulation term lambda/alpha is 69.99693175343155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29467662981579573
the lambda is 20.0
the regulation term lambda/alpha is 67.87100834057362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26776803125032395
the lambda is 20.0
the regulation term lambda/alpha is 74.69151528885435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.310537667086229
the lambda is 20.0
the regulation term lambda/alpha is 64.40442535573783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3334146349812037
the lambda is 20.0
the regulation term lambda/alpha is 59.98536927189024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3237555234320466
the lambda is 20.0
the regulation term lambda/alpha is 61.77500784538066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.293280746477851
the lambda is 20.0
the regulation term lambda/alpha is 68.19404355788636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3368070714861845
the lambda is 20.0
the regulation term lambda/alpha is 59.38117602979242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2972780639284221
the lambda is 20.0
the regulation term lambda/alpha is 67.27707970008696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3389362073390498
the lambda is 20.0
the regulation term lambda/alpha is 59.00815423945928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2870486446720668
the lambda is 20.0
the regulation term lambda/alpha is 69.67460174859427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3348674127366339
the lambda is 20.0
the regulation term lambda/alpha is 59.725130721303046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3031628256038366
the lambda is 20.0
the regulation term lambda/alpha is 65.97114920064557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3256407813238269
the lambda is 20.0
the regulation term lambda/alpha is 61.41736891397335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3173668332010678
the lambda is 20.0
the regulation term lambda/alpha is 63.018557415950895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3003680598763552
the lambda is 20.0
the regulation term lambda/alpha is 66.58497580679146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3210460846203723
the lambda is 20.0
the regulation term lambda/alpha is 62.29635232477425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32302225240293003
the lambda is 20.0
the regulation term lambda/alpha is 61.91523912430804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28698698178835175
the lambda is 20.0
the regulation term lambda/alpha is 69.68957224251264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3060401607670937
the lambda is 20.0
the regulation term lambda/alpha is 65.35090018862144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33149066905314223
the lambda is 20.0
the regulation term lambda/alpha is 60.333523284764745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2993898554044821
the lambda is 20.0
the regulation term lambda/alpha is 66.80253067686469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30341629520373087
the lambda is 20.0
the regulation term lambda/alpha is 65.91603785344115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3054453786866514
the lambda is 20.0
the regulation term lambda/alpha is 65.47815549213952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2769051803300879
the lambda is 20.0
the regulation term lambda/alpha is 72.2268899995254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2867797931051441
the lambda is 20.0
the regulation term lambda/alpha is 69.73992059708077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29700471667358364
the lambda is 20.0
the regulation term lambda/alpha is 67.33899792568127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3363048795149226
the lambda is 20.0
the regulation term lambda/alpha is 59.46984780252811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33771111752523514
the lambda is 20.0
the regulation term lambda/alpha is 59.22221378603421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33663855911034857
the lambda is 20.0
the regulation term lambda/alpha is 59.41090067892102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3111252802430423
the lambda is 20.0
the regulation term lambda/alpha is 64.2827866137286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29691445336165584
the lambda is 20.0
the regulation term lambda/alpha is 67.35946927999176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30769441803612746
the lambda is 20.0
the regulation term lambda/alpha is 64.9995541929257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3000202596368164
the lambda is 20.0
the regulation term lambda/alpha is 66.66216482917055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29747742927086684
the lambda is 20.0
the regulation term lambda/alpha is 67.23199151283872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3368349304952696
the lambda is 20.0
the regulation term lambda/alpha is 59.37626471991115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3207267969087854
the lambda is 20.0
the regulation term lambda/alpha is 62.35836915643813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3248124242872479
the lambda is 20.0
the regulation term lambda/alpha is 61.573999344042946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3270549569028462
the lambda is 20.0
the regulation term lambda/alpha is 61.151802098939385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29758847453679904
the lambda is 20.0
the regulation term lambda/alpha is 67.20690386659061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2975171053995889
the lambda is 20.0
the regulation term lambda/alpha is 67.22302562448779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3289032427776612
the lambda is 20.0
the regulation term lambda/alpha is 60.808156925105216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31474181097982856
the lambda is 20.0
the regulation term lambda/alpha is 63.54414730517572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31052422819821257
the lambda is 20.0
the regulation term lambda/alpha is 64.40721265470364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34516809995286063
the lambda is 20.0
the regulation term lambda/alpha is 57.94278209003493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2975892495539548
the lambda is 20.0
the regulation term lambda/alpha is 67.20672883841482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31894575949734305
the lambda is 20.0
the regulation term lambda/alpha is 62.706586949203846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3071283233690806
the lambda is 20.0
the regulation term lambda/alpha is 65.11936046994177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29662035897943256
the lambda is 20.0
the regulation term lambda/alpha is 67.42625512561929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33047637108367317
the lambda is 20.0
the regulation term lambda/alpha is 60.51869891459262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32077434528413984
the lambda is 20.0
the regulation term lambda/alpha is 62.34912577651473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3125660263920983
the lambda is 20.0
the regulation term lambda/alpha is 63.98648065132648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.290220857759435
the lambda is 20.0
the regulation term lambda/alpha is 68.9130345572132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32851837078712237
the lambda is 20.0
the regulation term lambda/alpha is 60.87939603523683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3129658225225899
the lambda is 20.0
the regulation term lambda/alpha is 63.904741542685215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3246906959226126
the lambda is 20.0
the regulation term lambda/alpha is 61.59708378205835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3065847939323484
the lambda is 20.0
the regulation term lambda/alpha is 65.23480745236581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28812294354486945
the lambda is 20.0
the regulation term lambda/alpha is 69.41481214211389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35198069918297953
the lambda is 20.0
the regulation term lambda/alpha is 56.8212974359792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31562757786747925
the lambda is 20.0
the regulation term lambda/alpha is 63.36581909327735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3120221581488438
the lambda is 20.0
the regulation term lambda/alpha is 64.09801188048769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3273568887224603
the lambda is 20.0
the regulation term lambda/alpha is 61.09539981899204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3083665469662913
the lambda is 20.0
the regulation term lambda/alpha is 64.85787838129626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33030610945645866
the lambda is 20.0
the regulation term lambda/alpha is 60.549894256910264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31566144769130666
the lambda is 20.0
the regulation term lambda/alpha is 63.359020071271125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30026307952943915
the lambda is 20.0
the regulation term lambda/alpha is 66.60825577138301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32166141416738403
the lambda is 20.0
the regulation term lambda/alpha is 62.177181095126734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34118180578949175
the lambda is 20.0
the regulation term lambda/alpha is 58.6197729791604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2841693218043441
the lambda is 20.0
the regulation term lambda/alpha is 70.38057406411511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3116840594928617
the lambda is 20.0
the regulation term lambda/alpha is 64.16754206981845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3139716241202184
the lambda is 20.0
the regulation term lambda/alpha is 63.70002402619061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34149296101269067
the lambda is 20.0
the regulation term lambda/alpha is 58.56636090152603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3306812619991548
the lambda is 20.0
the regulation term lambda/alpha is 60.48120138132023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2994000384652296
the lambda is 20.0
the regulation term lambda/alpha is 66.80025861894694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3477914166094958
the lambda is 20.0
the regulation term lambda/alpha is 57.50573201309401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3237615534406259
the lambda is 20.0
the regulation term lambda/alpha is 61.773857295467195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3265494914121084
the lambda is 20.0
the regulation term lambda/alpha is 61.24645888595129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3168424606077713
the lambda is 20.0
the regulation term lambda/alpha is 63.12285279452678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31058521006788803
the lambda is 20.0
the regulation term lambda/alpha is 64.39456661709158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3076710880360025
the lambda is 20.0
the regulation term lambda/alpha is 65.0044829615569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2748524749661386
the lambda is 20.0
the regulation term lambda/alpha is 72.76630855321193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3030977291807062
the lambda is 20.0
the regulation term lambda/alpha is 65.98531785131271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3236960725740943
the lambda is 20.0
the regulation term lambda/alpha is 61.78635360310708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2912801984715886
the lambda is 20.0
the regulation term lambda/alpha is 68.6624085843954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31617064092997327
the lambda is 20.0
the regulation term lambda/alpha is 63.25698028499009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30690314607274893
the lambda is 20.0
the regulation term lambda/alpha is 65.16713906627454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30924470177562596
the lambda is 20.0
the regulation term lambda/alpha is 64.67370300982908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31044616200571357
the lambda is 20.0
the regulation term lambda/alpha is 64.42340878297576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2842611846867502
the lambda is 20.0
the regulation term lambda/alpha is 70.35782962081008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3136533352554856
the lambda is 20.0
the regulation term lambda/alpha is 63.76466548238375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3241252068720525
the lambda is 20.0
the regulation term lambda/alpha is 61.70454989603738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29731717395441226
the lambda is 20.0
the regulation term lambda/alpha is 67.26822986373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3141197940612992
the lambda is 20.0
the regulation term lambda/alpha is 63.66997679903318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30187452060317693
the lambda is 20.0
the regulation term lambda/alpha is 66.25269320523608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2790979354991071
the lambda is 20.0
the regulation term lambda/alpha is 71.65943368314161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31784641395015406
the lambda is 20.0
the regulation term lambda/alpha is 62.923472224973665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28674300470246905
the lambda is 20.0
the regulation term lambda/alpha is 69.74886805260496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27416864720866546
the lambda is 20.0
the regulation term lambda/alpha is 72.9478013026716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3137688668736874
the lambda is 20.0
the regulation term lambda/alpha is 63.74118694207898
1950
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3115640663268558
the lambda is 20.0
the regulation term lambda/alpha is 64.19225501768355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29890391790423665
the lambda is 20.0
the regulation term lambda/alpha is 66.91113365201066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2934149168118465
the lambda is 20.0
the regulation term lambda/alpha is 68.1628603525467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31295189368869947
the lambda is 20.0
the regulation term lambda/alpha is 63.907585809001255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3189110928970642
the lambda is 20.0
the regulation term lambda/alpha is 62.71340334484838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3117119689894946
the lambda is 20.0
the regulation term lambda/alpha is 64.16179675370131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2806570869038525
the lambda is 20.0
the regulation term lambda/alpha is 71.26133966769063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29660316811935844
the lambda is 20.0
the regulation term lambda/alpha is 67.43016309236333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31546647887378515
the lambda is 20.0
the regulation term lambda/alpha is 63.39817806126334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31893468146297005
the lambda is 20.0
the regulation term lambda/alpha is 62.708765030692035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31335679022154556
the lambda is 20.0
the regulation term lambda/alpha is 63.825009140091886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29327511804983114
the lambda is 20.0
the regulation term lambda/alpha is 68.19535231284691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3280197144407786
the lambda is 20.0
the regulation term lambda/alpha is 60.97194503719636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.335005586900115
the lambda is 20.0
the regulation term lambda/alpha is 59.70049689339415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32532041971665115
the lambda is 20.0
the regulation term lambda/alpha is 61.477850106733776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3247802130784257
the lambda is 20.0
the regulation term lambda/alpha is 61.58010615988646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.319210288326564
the lambda is 20.0
the regulation term lambda/alpha is 62.654622145321504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27555380952079167
the lambda is 20.0
the regulation term lambda/alpha is 72.58110506540073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31084162758421896
the lambda is 20.0
the regulation term lambda/alpha is 64.34144665704798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3046437126456355
the lambda is 20.0
the regulation term lambda/alpha is 65.6504604224811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28528305745489646
the lambda is 20.0
the regulation term lambda/alpha is 70.10581062340871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3114652729111318
the lambda is 20.0
the regulation term lambda/alpha is 64.21261610666451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30596974885361483
the lambda is 20.0
the regulation term lambda/alpha is 65.3659391980238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32859288608539783
the lambda is 20.0
the regulation term lambda/alpha is 60.865590360961775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32513143646258963
the lambda is 20.0
the regulation term lambda/alpha is 61.51358422181131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3242993695233407
the lambda is 20.0
the regulation term lambda/alpha is 61.67141190991599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31409081008485173
the lambda is 20.0
the regulation term lambda/alpha is 63.67585219891341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27730041751880746
the lambda is 20.0
the regulation term lambda/alpha is 72.12394477784561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32000891930006786
the lambda is 20.0
the regulation term lambda/alpha is 62.49825799776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3182248736276477
the lambda is 20.0
the regulation term lambda/alpha is 62.848638360689044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3084824143695449
the lambda is 20.0
the regulation term lambda/alpha is 64.8335174660592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3125906315861686
the lambda is 20.0
the regulation term lambda/alpha is 63.98144403277424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3428780519467398
the lambda is 20.0
the regulation term lambda/alpha is 58.32977610099889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3001489927745191
the lambda is 20.0
the regulation term lambda/alpha is 66.6335735966457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2938965647505007
the lambda is 20.0
the regulation term lambda/alpha is 68.05115268012308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32105752356370487
the lambda is 20.0
the regulation term lambda/alpha is 62.29413277098165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3164925424945235
the lambda is 20.0
the regulation term lambda/alpha is 63.192642210032716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3003668670752232
the lambda is 20.0
the regulation term lambda/alpha is 66.58524022555139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3215192788604282
the lambda is 20.0
the regulation term lambda/alpha is 62.20466800898125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28868928065597904
the lambda is 20.0
the regulation term lambda/alpha is 69.27863741443626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2873501817716457
the lambda is 20.0
the regulation term lambda/alpha is 69.60148720523101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2939440276488165
the lambda is 20.0
the regulation term lambda/alpha is 68.04016451694872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3213447098195849
the lambda is 20.0
the regulation term lambda/alpha is 62.238460409784736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28283805515019284
the lambda is 20.0
the regulation term lambda/alpha is 70.71184246893364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31147833952370296
the lambda is 20.0
the regulation term lambda/alpha is 64.20992236758099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32668668223132274
the lambda is 20.0
the regulation term lambda/alpha is 61.220738670449535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2977760565796174
the lambda is 20.0
the regulation term lambda/alpha is 67.16456732528638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32519742719188666
the lambda is 20.0
the regulation term lambda/alpha is 61.501101569904975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2873404363183238
the lambda is 20.0
the regulation term lambda/alpha is 69.60384781292474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3327750131617138
the lambda is 20.0
the regulation term lambda/alpha is 60.10066624287351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3363883489754738
the lambda is 20.0
the regulation term lambda/alpha is 59.45509129823699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3186438431643595
the lambda is 20.0
the regulation term lambda/alpha is 62.766001694511985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3204292150612896
the lambda is 20.0
the regulation term lambda/alpha is 62.41628122508908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3001845132157636
the lambda is 20.0
the regulation term lambda/alpha is 66.62568893294173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3269311368443765
the lambda is 20.0
the regulation term lambda/alpha is 61.17496238824221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2834082976767289
the lambda is 20.0
the regulation term lambda/alpha is 70.5695639963693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3254742721782555
the lambda is 20.0
the regulation term lambda/alpha is 61.44878938095118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33660917515571387
the lambda is 20.0
the regulation term lambda/alpha is 59.41608689290211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30096287925050413
the lambda is 20.0
the regulation term lambda/alpha is 66.45337807043357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3071087033393184
the lambda is 20.0
the regulation term lambda/alpha is 65.1235207030339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3218106620769209
the lambda is 20.0
the regulation term lambda/alpha is 62.14834484017032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3116860086040608
the lambda is 20.0
the regulation term lambda/alpha is 64.16714080164658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3060607353405695
the lambda is 20.0
the regulation term lambda/alpha is 65.34650705110857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29062005498194116
the lambda is 20.0
the regulation term lambda/alpha is 68.81837525370635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3167999498200753
the lambda is 20.0
the regulation term lambda/alpha is 63.13132313107651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3278568336315247
the lambda is 20.0
the regulation term lambda/alpha is 61.00223618482761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29205602214074733
the lambda is 20.0
the regulation term lambda/alpha is 68.48001233941898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29993329158857707
the lambda is 20.0
the regulation term lambda/alpha is 66.68149405513242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29263515104719984
the lambda is 20.0
the regulation term lambda/alpha is 68.34448947240159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3111278692019269
the lambda is 20.0
the regulation term lambda/alpha is 64.28225170346178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3194575745572384
the lambda is 20.0
the regulation term lambda/alpha is 62.60612235511895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3047187005450268
the lambda is 20.0
the regulation term lambda/alpha is 65.63430457083055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2721315005147233
the lambda is 20.0
the regulation term lambda/alpha is 73.49388057674686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30203129788268507
the lambda is 20.0
the regulation term lambda/alpha is 66.21830300437405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3094429378732646
the lambda is 20.0
the regulation term lambda/alpha is 64.63227158278596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30871134446547993
the lambda is 20.0
the regulation term lambda/alpha is 64.78543907943882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3065048774887082
the lambda is 20.0
the regulation term lambda/alpha is 65.25181642741333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2796927168958072
the lambda is 20.0
the regulation term lambda/alpha is 71.5070460967724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2875222284446467
the lambda is 20.0
the regulation term lambda/alpha is 69.55983927987107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31128258562990907
the lambda is 20.0
the regulation term lambda/alpha is 64.25030156932213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26653728624542145
the lambda is 20.0
the regulation term lambda/alpha is 75.03640590676855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30184941129520293
the lambda is 20.0
the regulation term lambda/alpha is 66.25820442777139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3351563356991652
the lambda is 20.0
the regulation term lambda/alpha is 59.67364441516006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2889020002977936
the lambda is 20.0
the regulation term lambda/alpha is 69.22762729016917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30587176922694354
the lambda is 20.0
the regulation term lambda/alpha is 65.38687781009587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34048060559690363
the lambda is 20.0
the regulation term lambda/alpha is 58.74049702460316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29289876787114294
the lambda is 20.0
the regulation term lambda/alpha is 68.28297758083689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2897733049601079
the lambda is 20.0
the regulation term lambda/alpha is 69.0194702467618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32337483716395343
the lambda is 20.0
the regulation term lambda/alpha is 61.84773118218797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28556181334677866
the lambda is 20.0
the regulation term lambda/alpha is 70.0373756756914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29460093743648774
the lambda is 20.0
the regulation term lambda/alpha is 67.88844656786522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31706912117491365
the lambda is 20.0
the regulation term lambda/alpha is 63.07772868543337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32850448388411263
the lambda is 20.0
the regulation term lambda/alpha is 60.881969596054134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2986918702202188
the lambda is 20.0
the regulation term lambda/alpha is 66.95863528275626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30658483975096196
the lambda is 20.0
the regulation term lambda/alpha is 65.23479770312827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32996255357953486
the lambda is 20.0
the regulation term lambda/alpha is 60.6129385987406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3083299929962472
the lambda is 20.0
the regulation term lambda/alpha is 64.86556758765738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31345596104982165
the lambda is 20.0
the regulation term lambda/alpha is 63.80481625876988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30800838126394703
the lambda is 20.0
the regulation term lambda/alpha is 64.93329797691787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30482039133111494
the lambda is 20.0
the regulation term lambda/alpha is 65.61240838469612
1960
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29219959083726554
the lambda is 20.0
the regulation term lambda/alpha is 68.44636552259439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31787009736657496
the lambda is 20.0
the regulation term lambda/alpha is 62.918784011745366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3001940141832045
the lambda is 20.0
the regulation term lambda/alpha is 66.62358026830695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2878900985671096
the lambda is 20.0
the regulation term lambda/alpha is 69.47095471342801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28403470291177124
the lambda is 20.0
the regulation term lambda/alpha is 70.41393109704815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27227987858699454
the lambda is 20.0
the regulation term lambda/alpha is 73.45383031530153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29831887188796635
the lambda is 20.0
the regulation term lambda/alpha is 67.04235596436219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2848694540797339
the lambda is 20.0
the regulation term lambda/alpha is 70.20759759802844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2986340073998
the lambda is 20.0
the regulation term lambda/alpha is 66.9716090747319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3160085845897817
the lambda is 20.0
the regulation term lambda/alpha is 63.289419893331306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2867726079475076
the lambda is 20.0
the regulation term lambda/alpha is 69.74166794780103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33116857395130544
the lambda is 20.0
the regulation term lambda/alpha is 60.392203769131704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3050524571447426
the lambda is 20.0
the regulation term lambda/alpha is 65.56249435653723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33600362630402997
the lambda is 20.0
the regulation term lambda/alpha is 59.523167115771464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3374822433045989
the lambda is 20.0
the regulation term lambda/alpha is 59.26237719697965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3263352777038662
the lambda is 20.0
the regulation term lambda/alpha is 61.28666241885455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27630368250021725
the lambda is 20.0
the regulation term lambda/alpha is 72.38412394298898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2725420095017241
the lambda is 20.0
the regulation term lambda/alpha is 73.38318241861163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3118815336244387
the lambda is 20.0
the regulation term lambda/alpha is 64.12691308644001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3132810403465012
the lambda is 20.0
the regulation term lambda/alpha is 63.840441725676115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30364271651662594
the lambda is 20.0
the regulation term lambda/alpha is 65.86688536263605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28437555497362627
the lambda is 20.0
the regulation term lambda/alpha is 70.32953307767558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31444392237914054
the lambda is 20.0
the regulation term lambda/alpha is 63.604345883604054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.296923100761004
the lambda is 20.0
the regulation term lambda/alpha is 67.35750754569338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3124023746757342
the lambda is 20.0
the regulation term lambda/alpha is 64.01999991440366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30808999694326644
the lambda is 20.0
the regulation term lambda/alpha is 64.91609659005879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32420320655151436
the lambda is 20.0
the regulation term lambda/alpha is 61.68970446879925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30709038594863675
the lambda is 20.0
the regulation term lambda/alpha is 65.1274052042292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2822254622719907
the lambda is 20.0
the regulation term lambda/alpha is 70.86532816349961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3245244078296138
the lambda is 20.0
the regulation term lambda/alpha is 61.62864646686505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29235749148908274
the lambda is 20.0
the regulation term lambda/alpha is 68.40939802203373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31923653792877493
the lambda is 20.0
the regulation term lambda/alpha is 62.64947029485144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30137241125519093
the lambda is 20.0
the regulation term lambda/alpha is 66.36307522875657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3267155607444355
the lambda is 20.0
the regulation term lambda/alpha is 61.21532734599215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3014247742130601
the lambda is 20.0
the regulation term lambda/alpha is 66.3515467572786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3050464808741722
the lambda is 20.0
the regulation term lambda/alpha is 65.56377881392359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30725241924960506
the lambda is 20.0
the regulation term lambda/alpha is 65.09305947483018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29766521823297504
the lambda is 20.0
the regulation term lambda/alpha is 67.18957666174657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2987997279344971
the lambda is 20.0
the regulation term lambda/alpha is 66.9344652294476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34223849371902704
the lambda is 20.0
the regulation term lambda/alpha is 58.438779877344004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2943483090405501
the lambda is 20.0
the regulation term lambda/alpha is 67.94671274039749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30729866048411464
the lambda is 20.0
the regulation term lambda/alpha is 65.08326449745091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.345760850890695
the lambda is 20.0
the regulation term lambda/alpha is 57.84344858152428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3040832803038301
the lambda is 20.0
the regulation term lambda/alpha is 65.77145570126925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30416840099636006
the lambda is 20.0
the regulation term lambda/alpha is 65.75304973983586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29426507752977815
the lambda is 20.0
the regulation term lambda/alpha is 67.96593115258844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3162811031236227
the lambda is 20.0
the regulation term lambda/alpha is 63.23488758094641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30936829112888176
the lambda is 20.0
the regulation term lambda/alpha is 64.64786655096488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3228191423368138
the lambda is 20.0
the regulation term lambda/alpha is 61.95419470860551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3152746559051238
the lambda is 20.0
the regulation term lambda/alpha is 63.436751497141074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2895202845327695
the lambda is 20.0
the regulation term lambda/alpha is 69.0797884240691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31980109721890443
the lambda is 20.0
the regulation term lambda/alpha is 62.53887236137268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3054151026230309
the lambda is 20.0
the regulation term lambda/alpha is 65.48464639839926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2949183673985046
the lambda is 20.0
the regulation term lambda/alpha is 67.81537608668253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2927194615824496
the lambda is 20.0
the regulation term lambda/alpha is 68.32480454794307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3112357046915562
the lambda is 20.0
the regulation term lambda/alpha is 64.25997948988723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.327322012575079
the lambda is 20.0
the regulation term lambda/alpha is 61.10190953140535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2935319626475322
the lambda is 20.0
the regulation term lambda/alpha is 68.13568041997401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3039636253233018
the lambda is 20.0
the regulation term lambda/alpha is 65.7973465697667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3202571703159062
the lambda is 20.0
the regulation term lambda/alpha is 62.44981175681942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33546757324743265
the lambda is 20.0
the regulation term lambda/alpha is 59.618280856160396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32607284022342337
the lambda is 20.0
the regulation term lambda/alpha is 61.335988567143794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2976805337461817
the lambda is 20.0
the regulation term lambda/alpha is 67.18611979194134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30227357989823056
the lambda is 20.0
the regulation term lambda/alpha is 66.16522690052369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2966627227017291
the lambda is 20.0
the regulation term lambda/alpha is 67.4166265914994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32784927139520936
the lambda is 20.0
the regulation term lambda/alpha is 61.003643274505826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32158248432832276
the lambda is 20.0
the regulation term lambda/alpha is 62.19244198505788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30390761816371437
the lambda is 20.0
the regulation term lambda/alpha is 65.80947236809985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3024286541743776
the lambda is 20.0
the regulation term lambda/alpha is 66.13129980887388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3099273928124886
the lambda is 20.0
the regulation term lambda/alpha is 64.53124332930567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31599311996495016
the lambda is 20.0
the regulation term lambda/alpha is 63.29251726182643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2989598119625489
the lambda is 20.0
the regulation term lambda/alpha is 66.89862382742409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2876749549151695
the lambda is 20.0
the regulation term lambda/alpha is 69.5229100006209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32228498735548167
the lambda is 20.0
the regulation term lambda/alpha is 62.056877560790376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2882617169179873
the lambda is 20.0
the regulation term lambda/alpha is 69.38139484435997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31622754568737754
the lambda is 20.0
the regulation term lambda/alpha is 63.245597269290364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30570417632580676
the lambda is 20.0
the regulation term lambda/alpha is 65.4227241524003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3154510018337391
the lambda is 20.0
the regulation term lambda/alpha is 63.40128857964812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31958586862479205
the lambda is 20.0
the regulation term lambda/alpha is 62.580989848086446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2906726091333963
the lambda is 20.0
the regulation term lambda/alpha is 68.8059327627308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3237997820059389
the lambda is 20.0
the regulation term lambda/alpha is 61.7665641283019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32008537679605564
the lambda is 20.0
the regulation term lambda/alpha is 62.483329292306664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3062181650383133
the lambda is 20.0
the regulation term lambda/alpha is 65.3129117846345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3197137412984644
the lambda is 20.0
the regulation term lambda/alpha is 62.5559599621002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3144724963830418
the lambda is 20.0
the regulation term lambda/alpha is 63.59856658382961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3266800919429012
the lambda is 20.0
the regulation term lambda/alpha is 61.22197370844288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30333183186807694
the lambda is 20.0
the regulation term lambda/alpha is 65.93439230175575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2805789046512957
the lambda is 20.0
the regulation term lambda/alpha is 71.28119637096759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3017306914323634
the lambda is 20.0
the regulation term lambda/alpha is 66.28427457961546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.298016363724605
the lambda is 20.0
the regulation term lambda/alpha is 67.11040880453757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3342519689676126
the lambda is 20.0
the regulation term lambda/alpha is 59.83510003478215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34624447964875393
the lambda is 20.0
the regulation term lambda/alpha is 57.76265377657112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3232050619587967
the lambda is 20.0
the regulation term lambda/alpha is 61.880218950746716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33979490136323687
the lambda is 20.0
the regulation term lambda/alpha is 58.85903502307184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2954381876163531
the lambda is 20.0
the regulation term lambda/alpha is 67.69605568380815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2836157574815496
the lambda is 20.0
the regulation term lambda/alpha is 70.51794363471178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3144578089832202
the lambda is 20.0
the regulation term lambda/alpha is 63.60153708590911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30053712329726806
the lambda is 20.0
the regulation term lambda/alpha is 66.54751925677265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28628316748981314
the lambda is 20.0
the regulation term lambda/alpha is 69.86090092324993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32395090411675626
the lambda is 20.0
the regulation term lambda/alpha is 61.73775021412421
1970
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31671923029821436
the lambda is 20.0
the regulation term lambda/alpha is 63.14741287154725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3095700304262746
the lambda is 20.0
the regulation term lambda/alpha is 64.60573710077882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3095812715779088
the lambda is 20.0
the regulation term lambda/alpha is 64.60339121311098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28788685393794516
the lambda is 20.0
the regulation term lambda/alpha is 69.47173768591412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30469775090987417
the lambda is 20.0
the regulation term lambda/alpha is 65.63881728787605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31954867140345555
the lambda is 20.0
the regulation term lambda/alpha is 62.58827461920007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31375510253138245
the lambda is 20.0
the regulation term lambda/alpha is 63.74398324884472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2950627282633274
the lambda is 20.0
the regulation term lambda/alpha is 67.78219708641441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31136996787552945
the lambda is 20.0
the regulation term lambda/alpha is 64.23227049307152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34872458614835883
the lambda is 20.0
the regulation term lambda/alpha is 57.351849552389595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2824101165322103
the lambda is 20.0
the regulation term lambda/alpha is 70.81899276692128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.294162094927464
the lambda is 20.0
the regulation term lambda/alpha is 67.98972520552556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31829123352956296
the lambda is 20.0
the regulation term lambda/alpha is 62.835535173928676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31170182035869737
the lambda is 20.0
the regulation term lambda/alpha is 64.16388578348558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3161793541645131
the lambda is 20.0
the regulation term lambda/alpha is 63.25523705635025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.312631353450314
the lambda is 20.0
the regulation term lambda/alpha is 63.973110116028614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29283547616940264
the lambda is 20.0
the regulation term lambda/alpha is 68.29773585366475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32230770027979255
the lambda is 20.0
the regulation term lambda/alpha is 62.05250443175317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32256267163478664
the lambda is 20.0
the regulation term lambda/alpha is 62.00345470428299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27778361453161793
the lambda is 20.0
the regulation term lambda/alpha is 71.99848714519321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3196009625585516
the lambda is 20.0
the regulation term lambda/alpha is 62.5780343084416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31081812082188515
the lambda is 20.0
the regulation term lambda/alpha is 64.34631271534208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30076736836778395
the lambda is 20.0
the regulation term lambda/alpha is 66.4965754381427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3455191686195759
the lambda is 20.0
the regulation term lambda/alpha is 57.88390866968204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2761355123370372
the lambda is 20.0
the regulation term lambda/alpha is 72.42820682762817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2972541466503371
the lambda is 20.0
the regulation term lambda/alpha is 67.2824928613231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3278563537057205
the lambda is 20.0
the regulation term lambda/alpha is 61.002325481700844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33111054926859396
the lambda is 20.0
the regulation term lambda/alpha is 60.40278705761252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3208864527005732
the lambda is 20.0
the regulation term lambda/alpha is 62.3273429952572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34886823475432965
the lambda is 20.0
the regulation term lambda/alpha is 57.328234581413945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31060582958093796
the lambda is 20.0
the regulation term lambda/alpha is 64.39029179517824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3006327009965946
the lambda is 20.0
the regulation term lambda/alpha is 66.52636234747646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32148119377315104
the lambda is 20.0
the regulation term lambda/alpha is 62.21203724318859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31103410854708013
the lambda is 20.0
the regulation term lambda/alpha is 64.30162946895155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30343205123877837
the lambda is 20.0
the regulation term lambda/alpha is 65.91261509240331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3103345179135085
the lambda is 20.0
the regulation term lambda/alpha is 64.44658536364969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3375742310193257
the lambda is 20.0
the regulation term lambda/alpha is 59.24622842095736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2874293875461805
the lambda is 20.0
the regulation term lambda/alpha is 69.58230739988844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3275791718245743
the lambda is 20.0
the regulation term lambda/alpha is 61.05394274184938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33962651381773007
the lambda is 20.0
the regulation term lambda/alpha is 58.88821745740838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2933696639325159
the lambda is 20.0
the regulation term lambda/alpha is 68.17337461517704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3239031528424238
the lambda is 20.0
the regulation term lambda/alpha is 61.746851873744596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3393788829625932
the lambda is 20.0
the regulation term lambda/alpha is 58.93118577505727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2965766595556918
the lambda is 20.0
the regulation term lambda/alpha is 67.43619012353317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2944858864587512
the lambda is 20.0
the regulation term lambda/alpha is 67.9149695100971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27682402078697493
the lambda is 20.0
the regulation term lambda/alpha is 72.24806555132963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31118768731515556
the lambda is 20.0
the regulation term lambda/alpha is 64.26989503522671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34188321266534233
the lambda is 20.0
the regulation term lambda/alpha is 58.49950877692643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2930602433759256
the lambda is 20.0
the regulation term lambda/alpha is 68.24535382080067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33440208962925133
the lambda is 20.0
the regulation term lambda/alpha is 59.80823870500877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30170905040668994
the lambda is 20.0
the regulation term lambda/alpha is 66.28902902660997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26924241283410577
the lambda is 20.0
the regulation term lambda/alpha is 74.28250174062671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32099116644325104
the lambda is 20.0
the regulation term lambda/alpha is 62.307010568578555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.338203668543758
the lambda is 20.0
the regulation term lambda/alpha is 59.13596409558854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3036909172744638
the lambda is 20.0
the regulation term lambda/alpha is 65.85643120147974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27728942432919673
the lambda is 20.0
the regulation term lambda/alpha is 72.12680414474117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.313290470913788
the lambda is 20.0
the regulation term lambda/alpha is 63.83852002157975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32016779617193886
the lambda is 20.0
the regulation term lambda/alpha is 62.46724448594903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.291482966619519
the lambda is 20.0
the regulation term lambda/alpha is 68.6146440457585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3009505552206206
the lambda is 20.0
the regulation term lambda/alpha is 66.4560993593729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34538864549004067
the lambda is 20.0
the regulation term lambda/alpha is 57.90578312620501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32107607383874925
the lambda is 20.0
the regulation term lambda/alpha is 62.29053370711265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3257156899449212
the lambda is 20.0
the regulation term lambda/alpha is 61.403244048151365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32136541988112644
the lambda is 20.0
the regulation term lambda/alpha is 62.23444951668425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3259645517926387
the lambda is 20.0
the regulation term lambda/alpha is 61.35636494830559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32932701373926426
the lambda is 20.0
the regulation term lambda/alpha is 60.72991028860589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30464974342415435
the lambda is 20.0
the regulation term lambda/alpha is 65.64916082057756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3370667691502661
the lambda is 20.0
the regulation term lambda/alpha is 59.33542499730638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3038005899071429
the lambda is 20.0
the regulation term lambda/alpha is 65.83265689547551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30735892346458427
the lambda is 20.0
the regulation term lambda/alpha is 65.07050380889468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30394878182214136
the lambda is 20.0
the regulation term lambda/alpha is 65.80055981834202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2852111997232187
the lambda is 20.0
the regulation term lambda/alpha is 70.12347348003468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31076715737088145
the lambda is 20.0
the regulation term lambda/alpha is 64.3568650213936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3018182986997097
the lambda is 20.0
the regulation term lambda/alpha is 66.26503457929417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3031040017050914
the lambda is 20.0
the regulation term lambda/alpha is 65.98395233151437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3070641737407838
the lambda is 20.0
the regulation term lambda/alpha is 65.13296473617113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2825045767564464
the lambda is 20.0
the regulation term lambda/alpha is 70.79531322865064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3262434541538732
the lambda is 20.0
the regulation term lambda/alpha is 61.30391198766235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32796032781979517
the lambda is 20.0
the regulation term lambda/alpha is 60.982985756098614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28554926715085044
the lambda is 20.0
the regulation term lambda/alpha is 70.04045291222675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34220212263145916
the lambda is 20.0
the regulation term lambda/alpha is 58.444991066111434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2941642087132388
the lambda is 20.0
the regulation term lambda/alpha is 67.98923664944118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3019362126146523
the lambda is 20.0
the regulation term lambda/alpha is 66.23915636619945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3157634167613425
the lambda is 20.0
the regulation term lambda/alpha is 63.3385596252153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3400970449053199
the lambda is 20.0
the regulation term lambda/alpha is 58.80674442663219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32845387041888635
the lambda is 20.0
the regulation term lambda/alpha is 60.89135127101241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3077497519039217
the lambda is 20.0
the regulation term lambda/alpha is 64.98786717541832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3287495577228848
the lambda is 20.0
the regulation term lambda/alpha is 60.83658374639927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.316745775946208
the lambda is 20.0
the regulation term lambda/alpha is 63.142120649452764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32172651770823285
the lambda is 20.0
the regulation term lambda/alpha is 62.164599121225024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3050475799436179
the lambda is 20.0
the regulation term lambda/alpha is 65.56354259127907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29185863130398315
the lambda is 20.0
the regulation term lambda/alpha is 68.52632697769747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30862680607265436
the lambda is 20.0
the regulation term lambda/alpha is 64.80318496796991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27465984911816255
the lambda is 20.0
the regulation term lambda/alpha is 72.81734139231875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3327689914702078
the lambda is 20.0
the regulation term lambda/alpha is 60.10175380716194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29540984257827185
the lambda is 20.0
the regulation term lambda/alpha is 67.70255122660917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3139698032068616
the lambda is 20.0
the regulation term lambda/alpha is 63.70039346370783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29952838062305
the lambda is 20.0
the regulation term lambda/alpha is 66.7716359912137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2993681741767558
the lambda is 20.0
the regulation term lambda/alpha is 66.80736873583432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3154586931047303
the lambda is 20.0
the regulation term lambda/alpha is 63.3997427782411
1980
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32653372035127387
the lambda is 20.0
the regulation term lambda/alpha is 61.249416992783104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27673695714245
the lambda is 20.0
the regulation term lambda/alpha is 72.27079536653655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33772823297265514
the lambda is 20.0
the regulation term lambda/alpha is 59.219212512858945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3213089572323623
the lambda is 20.0
the regulation term lambda/alpha is 62.24538578778717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.304824630731423
the lambda is 20.0
the regulation term lambda/alpha is 65.61149586898618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3247080909607087
the lambda is 20.0
the regulation term lambda/alpha is 61.59378394553187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33072836510884684
the lambda is 20.0
the regulation term lambda/alpha is 60.47258750672247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28874285133902544
the lambda is 20.0
the regulation term lambda/alpha is 69.26578409561087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30680316804646723
the lambda is 20.0
the regulation term lambda/alpha is 65.18837509843078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31347687047889833
the lambda is 20.0
the regulation term lambda/alpha is 63.80056037131549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29690899503377755
the lambda is 20.0
the regulation term lambda/alpha is 67.36070760579254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30385868685305867
the lambda is 20.0
the regulation term lambda/alpha is 65.82006987238672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33190601179264634
the lambda is 20.0
the regulation term lambda/alpha is 60.258022721488764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3185243412618481
the lambda is 20.0
the regulation term lambda/alpha is 62.789549837130586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27632931655894616
the lambda is 20.0
the regulation term lambda/alpha is 72.37740913289463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3228700583157352
the lambda is 20.0
the regulation term lambda/alpha is 61.94442465284894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2977537829859286
the lambda is 20.0
the regulation term lambda/alpha is 67.16959159825409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31499391457160564
the lambda is 20.0
the regulation term lambda/alpha is 63.493290107525304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3305819413448122
the lambda is 20.0
the regulation term lambda/alpha is 60.49937246614169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32940115306369966
the lambda is 20.0
the regulation term lambda/alpha is 60.7162416220577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3220448649063637
the lambda is 20.0
the regulation term lambda/alpha is 62.103148285923176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2817004932830386
the lambda is 20.0
the regulation term lambda/alpha is 70.99739076390256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30196796453511504
the lambda is 20.0
the regulation term lambda/alpha is 66.23219132132228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3053758555449303
the lambda is 20.0
the regulation term lambda/alpha is 65.49306252228371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2945583660577864
the lambda is 20.0
the regulation term lambda/alpha is 67.89825822185747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3307491590189818
the lambda is 20.0
the regulation term lambda/alpha is 60.46878564807536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28663170716325637
the lambda is 20.0
the regulation term lambda/alpha is 69.77595116024143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3307026842050411
the lambda is 20.0
the regulation term lambda/alpha is 60.47728353967538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32180160934936575
the lambda is 20.0
the regulation term lambda/alpha is 62.150093159686115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3290206467633871
the lambda is 20.0
the regulation term lambda/alpha is 60.78645883394321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3318319736522719
the lambda is 20.0
the regulation term lambda/alpha is 60.27146745345909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27697045113705976
the lambda is 20.0
the regulation term lambda/alpha is 72.20986902354768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2956239144352714
the lambda is 20.0
the regulation term lambda/alpha is 67.65352538615112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3033775629229058
the lambda is 20.0
the regulation term lambda/alpha is 65.92445336863094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3268751549754349
the lambda is 20.0
the regulation term lambda/alpha is 61.185439442477744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31100173654791
the lambda is 20.0
the regulation term lambda/alpha is 64.3083225900862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2988826639848957
the lambda is 20.0
the regulation term lambda/alpha is 66.915891786252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3009671166656193
the lambda is 20.0
the regulation term lambda/alpha is 66.45244245144698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30684111337060294
the lambda is 20.0
the regulation term lambda/alpha is 65.18031361672183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3049673375591701
the lambda is 20.0
the regulation term lambda/alpha is 65.58079353701142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2778668300016708
the lambda is 20.0
the regulation term lambda/alpha is 71.97692506111558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3119378874324027
the lambda is 20.0
the regulation term lambda/alpha is 64.11532810144463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2891207026120412
the lambda is 20.0
the regulation term lambda/alpha is 69.17526077970678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2938902504029265
the lambda is 20.0
the regulation term lambda/alpha is 68.05261478589303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29808588738005076
the lambda is 20.0
the regulation term lambda/alpha is 67.09475639985796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2969336457665461
the lambda is 20.0
the regulation term lambda/alpha is 67.3551154783056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32323149468965623
the lambda is 20.0
the regulation term lambda/alpha is 61.875158604833885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3244823148860526
the lambda is 20.0
the regulation term lambda/alpha is 61.63664114336504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32062166771403317
the lambda is 20.0
the regulation term lambda/alpha is 62.378815950262826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28846827633263233
the lambda is 20.0
the regulation term lambda/alpha is 69.33171388641027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30583227322109824
the lambda is 20.0
the regulation term lambda/alpha is 65.39532204811233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.300498826032613
the lambda is 20.0
the regulation term lambda/alpha is 66.55600044783338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.347345035694777
the lambda is 20.0
the regulation term lambda/alpha is 57.5796339222036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2823172260547991
the lambda is 20.0
the regulation term lambda/alpha is 70.8422942499368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3108539325577995
the lambda is 20.0
the regulation term lambda/alpha is 64.33889973800234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29378790348495964
the lambda is 20.0
the regulation term lambda/alpha is 68.0763222813355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2866834694547328
the lambda is 20.0
the regulation term lambda/alpha is 69.76335272500947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3120884786423421
the lambda is 20.0
the regulation term lambda/alpha is 64.08439070549697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3347994698306972
the lambda is 20.0
the regulation term lambda/alpha is 59.73725110769645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29878670762858733
the lambda is 20.0
the regulation term lambda/alpha is 66.93738205001205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3032762094427903
the lambda is 20.0
the regulation term lambda/alpha is 65.9464850103014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31380088155482205
the lambda is 20.0
the regulation term lambda/alpha is 63.73468392091159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3292777190654383
the lambda is 20.0
the regulation term lambda/alpha is 60.739001888024326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.289859547983446
the lambda is 20.0
the regulation term lambda/alpha is 68.99893461899075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30059533662639537
the lambda is 20.0
the regulation term lambda/alpha is 66.53463165617119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3469590216545143
the lambda is 20.0
the regulation term lambda/alpha is 57.64369493730897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32530598509399594
the lambda is 20.0
the regulation term lambda/alpha is 61.48057802939308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2942998216982139
the lambda is 20.0
the regulation term lambda/alpha is 67.95790729533215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31005304510842757
the lambda is 20.0
the regulation term lambda/alpha is 64.50509135624154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2890885463644641
the lambda is 20.0
the regulation term lambda/alpha is 69.18295536615724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30033184020064513
the lambda is 20.0
the regulation term lambda/alpha is 66.59300587855898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3010746293340508
the lambda is 20.0
the regulation term lambda/alpha is 66.42871252299852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2896748592102115
the lambda is 20.0
the regulation term lambda/alpha is 69.04292645391908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31857284040950956
the lambda is 20.0
the regulation term lambda/alpha is 62.77999083126796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31129256474181743
the lambda is 20.0
the regulation term lambda/alpha is 64.24824189613322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28983093155320716
the lambda is 20.0
the regulation term lambda/alpha is 69.00574722242301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31739801605492407
the lambda is 20.0
the regulation term lambda/alpha is 63.012366140748355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29478510587148826
the lambda is 20.0
the regulation term lambda/alpha is 67.84603292921797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30619747587693724
the lambda is 20.0
the regulation term lambda/alpha is 65.31732484966052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3238597159598998
the lambda is 20.0
the regulation term lambda/alpha is 61.75513351736649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32902939732394515
the lambda is 20.0
the regulation term lambda/alpha is 60.78484221368538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2901454625334688
the lambda is 20.0
the regulation term lambda/alpha is 68.93094182954167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3236361644172213
the lambda is 20.0
the regulation term lambda/alpha is 61.7977908495314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30593717185213887
the lambda is 20.0
the regulation term lambda/alpha is 65.37289953659541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30650260723208816
the lambda is 20.0
the regulation term lambda/alpha is 65.25229974587366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3169235856657135
the lambda is 20.0
the regulation term lambda/alpha is 63.10669481411117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3043505415097435
the lambda is 20.0
the regulation term lambda/alpha is 65.71369940986196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33608332968767674
the lambda is 20.0
the regulation term lambda/alpha is 59.509050980261534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31619449907032127
the lambda is 20.0
the regulation term lambda/alpha is 63.2522072926766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30719026640642527
the lambda is 20.0
the regulation term lambda/alpha is 65.10622954940631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30839502703116306
the lambda is 20.0
the regulation term lambda/alpha is 64.85188880162785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2899340305118984
the lambda is 20.0
the regulation term lambda/alpha is 68.98120915536761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31635819442635277
the lambda is 20.0
the regulation term lambda/alpha is 63.21947827609043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3075500588894659
the lambda is 20.0
the regulation term lambda/alpha is 65.03006395842714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.318707268058917
the lambda is 20.0
the regulation term lambda/alpha is 62.75351083710695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3162311290001773
the lambda is 20.0
the regulation term lambda/alpha is 63.244880613852494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2892237952792427
the lambda is 20.0
the regulation term lambda/alpha is 69.15060353416011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30758333667233595
the lambda is 20.0
the regulation term lambda/alpha is 65.02302828356956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30394393935211733
the lambda is 20.0
the regulation term lambda/alpha is 65.80160816047763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29605670753470464
the lambda is 20.0
the regulation term lambda/alpha is 67.55462548557709
1990
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31330374948412626
the lambda is 20.0
the regulation term lambda/alpha is 63.835814390766856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32779035619103786
the lambda is 20.0
the regulation term lambda/alpha is 61.0146077279464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3013507225795279
the lambda is 20.0
the regulation term lambda/alpha is 66.3678514814973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33653115182651594
the lambda is 20.0
the regulation term lambda/alpha is 59.42986226223162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3086310477823328
the lambda is 20.0
the regulation term lambda/alpha is 64.8022943372351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32081365942688567
the lambda is 20.0
the regulation term lambda/alpha is 62.34148519651189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3038834575766228
the lambda is 20.0
the regulation term lambda/alpha is 65.8147046222715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33603970264425037
the lambda is 20.0
the regulation term lambda/alpha is 59.51677686482502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2768916865224756
the lambda is 20.0
the regulation term lambda/alpha is 72.23040984430776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31922348358887237
the lambda is 20.0
the regulation term lambda/alpha is 62.65203228518733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3152457654603513
the lambda is 20.0
the regulation term lambda/alpha is 63.442565107239844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2901400134858494
the lambda is 20.0
the regulation term lambda/alpha is 68.93223640446075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3121893482625959
the lambda is 20.0
the regulation term lambda/alpha is 64.06368478394445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2821676355801956
the lambda is 20.0
the regulation term lambda/alpha is 70.87985111714114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32919648583024064
the lambda is 20.0
the regulation term lambda/alpha is 60.75398997519542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33989574017580965
the lambda is 20.0
the regulation term lambda/alpha is 58.84157297662831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2987726769210852
the lambda is 20.0
the regulation term lambda/alpha is 66.94052550622825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32367557293845023
the lambda is 20.0
the regulation term lambda/alpha is 61.79026677370917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.318154455054057
the lambda is 20.0
the regulation term lambda/alpha is 62.86254893586777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3111548979677366
the lambda is 20.0
the regulation term lambda/alpha is 64.2766677645993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32305915738666435
the lambda is 20.0
the regulation term lambda/alpha is 61.90816617546711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2983925576725195
the lambda is 20.0
the regulation term lambda/alpha is 67.02580036178263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3086881594724729
the lambda is 20.0
the regulation term lambda/alpha is 64.79030499316411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32218393234042136
the lambda is 20.0
the regulation term lambda/alpha is 62.07634209041774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31749159324553966
the lambda is 20.0
the regulation term lambda/alpha is 62.99379393183657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3097728447678264
the lambda is 20.0
the regulation term lambda/alpha is 64.56343846081772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30221108052521906
the lambda is 20.0
the regulation term lambda/alpha is 66.17891033393472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2970716102278006
the lambda is 20.0
the regulation term lambda/alpha is 67.32383476382543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2886224444590758
the lambda is 20.0
the regulation term lambda/alpha is 69.2946802438846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35254391745787317
the lambda is 20.0
the regulation term lambda/alpha is 56.73052068013591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34550390081689825
the lambda is 20.0
the regulation term lambda/alpha is 57.886466557143486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31906688216625423
the lambda is 20.0
the regulation term lambda/alpha is 62.68278256963919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29779013882842725
the lambda is 20.0
the regulation term lambda/alpha is 67.16139116857414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3117504420065672
the lambda is 20.0
the regulation term lambda/alpha is 64.15387856796909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3088657309227191
the lambda is 20.0
the regulation term lambda/alpha is 64.75305609415172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28577006900570284
the lambda is 20.0
the regulation term lambda/alpha is 69.98633576142952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3067203086565753
the lambda is 20.0
the regulation term lambda/alpha is 65.20598550385964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35645366559737407
the lambda is 20.0
the regulation term lambda/alpha is 56.10827417494044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3093300671445895
the lambda is 20.0
the regulation term lambda/alpha is 64.65585510202422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30571458491505105
the lambda is 20.0
the regulation term lambda/alpha is 65.4204967210099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3259297286720585
the lambda is 20.0
the regulation term lambda/alpha is 61.362920410747336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3135380508298544
the lambda is 20.0
the regulation term lambda/alpha is 63.78811103489721
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28213666273388216
the lambda is 20.0
the regulation term lambda/alpha is 70.88763227792364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2908594033785556
the lambda is 20.0
the regulation term lambda/alpha is 68.76174456690973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2782128222371753
the lambda is 20.0
the regulation term lambda/alpha is 71.88741280569046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29573323564107107
the lambda is 20.0
the regulation term lambda/alpha is 67.62851647920233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29897836314436316
the lambda is 20.0
the regulation term lambda/alpha is 66.89447286305098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3236462772575426
the lambda is 20.0
the regulation term lambda/alpha is 61.79585987971966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31933982438055414
the lambda is 20.0
the regulation term lambda/alpha is 62.629207111250224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32609016271007185
the lambda is 20.0
the regulation term lambda/alpha is 61.33273029086156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31849864873091666
the lambda is 20.0
the regulation term lambda/alpha is 62.79461492126136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.25850749065705364
the lambda is 20.0
the regulation term lambda/alpha is 77.36719717160072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3244592414754313
the lambda is 20.0
the regulation term lambda/alpha is 61.641024336532695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.325153534974983
the lambda is 20.0
the regulation term lambda/alpha is 61.50940355465851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3233135364442477
the lambda is 20.0
the regulation term lambda/alpha is 61.859457602539344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.310770483829305
the lambda is 20.0
the regulation term lambda/alpha is 64.35617615148186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31125227681391654
the lambda is 20.0
the regulation term lambda/alpha is 64.25655807156419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2836463635432839
the lambda is 20.0
the regulation term lambda/alpha is 70.51033459467581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3254038913847994
the lambda is 20.0
the regulation term lambda/alpha is 61.46207998585188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30513726107219663
the lambda is 20.0
the regulation term lambda/alpha is 65.5442731894612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30005921963838167
the lambda is 20.0
the regulation term lambda/alpha is 66.65350934426588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3086717238247647
the lambda is 20.0
the regulation term lambda/alpha is 64.7937548414838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30531265532727825
the lambda is 20.0
the regulation term lambda/alpha is 65.50661969305239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3010801621220137
the lambda is 20.0
the regulation term lambda/alpha is 66.42749179833022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31847392962618376
the lambda is 20.0
the regulation term lambda/alpha is 62.79948887331364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30778237110685575
the lambda is 20.0
the regulation term lambda/alpha is 64.98097967104299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29957632599330486
the lambda is 20.0
the regulation term lambda/alpha is 66.76094959668801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33128433447678407
the lambda is 20.0
the regulation term lambda/alpha is 60.371100950448266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33722462846453516
the lambda is 20.0
the regulation term lambda/alpha is 59.30764929911795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31805582315632547
the lambda is 20.0
the regulation term lambda/alpha is 62.88204316312717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.278717032321947
the lambda is 20.0
the regulation term lambda/alpha is 71.75736564566292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2866935998836264
the lambda is 20.0
the regulation term lambda/alpha is 69.76088761004196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.317961922102603
the lambda is 20.0
the regulation term lambda/alpha is 62.900613594687634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3404538651266505
the lambda is 20.0
the regulation term lambda/alpha is 58.74511071436919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29130765448165813
the lambda is 20.0
the regulation term lambda/alpha is 68.65593709024655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3185907008034152
the lambda is 20.0
the regulation term lambda/alpha is 62.776471345724865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30092955235568625
the lambda is 20.0
the regulation term lambda/alpha is 66.46073754950072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2877119785014879
the lambda is 20.0
the regulation term lambda/alpha is 69.51396359709288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33573188295264916
the lambda is 20.0
the regulation term lambda/alpha is 59.57134551567375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2934980640535626
the lambda is 20.0
the regulation term lambda/alpha is 68.14354999067406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3256171730037364
the lambda is 20.0
the regulation term lambda/alpha is 61.42182187599333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2741104826409738
the lambda is 20.0
the regulation term lambda/alpha is 72.96328037988874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2778828614981471
the lambda is 20.0
the regulation term lambda/alpha is 71.97277259984368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31074381206390445
the lambda is 20.0
the regulation term lambda/alpha is 64.36169997131593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3084224883699161
the lambda is 20.0
the regulation term lambda/alpha is 64.84611451552904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32079801494374854
the lambda is 20.0
the regulation term lambda/alpha is 62.344525428272895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.29878687153504757
the lambda is 20.0
the regulation term lambda/alpha is 66.93734532996042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3185687580457213
the lambda is 20.0
the regulation term lambda/alpha is 62.78079533815924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3200733659409999
the lambda is 20.0
the regulation term lambda/alpha is 62.48567399915012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3236854109486409
the lambda is 20.0
the regulation term lambda/alpha is 61.78838873641233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33459879736335296
the lambda is 20.0
the regulation term lambda/alpha is 59.773077959635565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3074217890419596
the lambda is 20.0
the regulation term lambda/alpha is 65.05719735197503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2867769037137369
the lambda is 20.0
the regulation term lambda/alpha is 69.74062325452878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.310877288847667
the lambda is 20.0
the regulation term lambda/alpha is 64.33406594008287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31531159083730137
the lambda is 20.0
the regulation term lambda/alpha is 63.42932065037807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3321694303419524
the lambda is 20.0
the regulation term lambda/alpha is 60.210236623553726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3317285533952462
the lambda is 20.0
the regulation term lambda/alpha is 60.290257788483174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31822827772237183
the lambda is 20.0
the regulation term lambda/alpha is 62.84796606745415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31392622711048196
the lambda is 20.0
the regulation term lambda/alpha is 63.709235714674065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3246081908543244
the lambda is 20.0
the regulation term lambda/alpha is 61.61273979982678
2000
In [22]:
n=10 #number of samples
inconsistency_full_info_prior=np.array([])
ken_w_full_info_prior=np.array([])

while n<=2000:

    k=100#number of explanations 
    m=13# number of features
    i=1
    instance=3
    explanations=np.array([])
    while i<=k:
        exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                         model_regressor='Bay_info_prior',
                                         num_samples=n)#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior' 'BayesianRidge_inf_prior_fit_alpha'
        
        
        alpha_init=1
        lambda_init=1
        with open('.\posterior_configure.csv') as csv_file:
            csv_reader=csv.reader(csv_file)
            line_count = 0
            for row in csv_reader:
                if line_count == 1:
                    alpha_init=float(row[0])
                    lambda_init=float(row[1])
                line_count=line_count+1

        exp=calculate_posteriors.get_posterior(exp,'.\data\prior_knowledge_tabular.csv',hyper_para_alpha=alpha_init, hyper_para_lambda=lambda_init,
                                        label=1)
        
        
        temp_list=exp.as_list()
        temp_array = np.array(temp_list)
        explanations=np.append(explanations,temp_array)
        i=i+1
    exps=explanations.reshape(k,2*m)# k exps, 13 features for this instance.. 
    
    for exp in exps:
    #print(exp)
        i=1
        temp_vector=np.array([])
        while i<=(2*m-1):
            temp_vector=np.append(temp_vector,float(exp[i]))
            i=i+2
    #print(temp_vector)
        normlised_temp_vector=temp_vector/np.linalg.norm(temp_vector)
    #print(normlised_temp_vector)
        i=1
        while i<=(2*m-1):
            exp[i]=normlised_temp_vector[math.floor(i/2)]
            i=i+2
    feature_names=np.array([])
    i=0
    while i<=(2*m-1):
        feature_names=np.append(feature_names,exps[0,i])
        i=i+2
    
    g_i_s=np.array([])
    f_i_s=np.array([])
    for feature in feature_names:
        g_i=importance_in_k_exp(feature,exps)
        f_i=rankings_in_k_exp(feature,exps)
        g_i_s=np.append(g_i_s,g_i)
        f_i_s=np.append(f_i_s,f_i)
    g_i_s=g_i_s.reshape(m,k)
    f_i_s=f_i_s.reshape(m,k)
    IoD_f_i_s=np.array([])
    for f_i in f_i_s:
        if np.mean(f_i)==0:
            IoD_f_i=0
            IoD_f_i_s=np.append(IoD_f_i_s,IoD_f_i)
        else:
            IoD_f_i=np.var(f_i)/np.mean(f_i)
            IoD_f_i_s=np.append(IoD_f_i_s,IoD_f_i)
    weights_g_i_s=np.array([])
    for g_i in g_i_s:
        weight=np.mean(abs(g_i.astype(np.float)))
        weights_g_i_s=np.append(weights_g_i_s,weight)
    weights_g_i_s=weights_g_i_s/sum(weights_g_i_s)
    inconsistency_full_info_prior=np.append(inconsistency_full_info_prior,np.dot(weights_g_i_s,IoD_f_i_s))
    
    ken_w_full_info_prior=np.append(ken_w_full_info_prior,kendall_w(f_i_s.T))
    
    print(n)
    n=n+10
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
10
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
20
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
30
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
40
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
50
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
60
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
70
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
80
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
90
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
100
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
110
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
120
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
130
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
140
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
150
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
160
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
170
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
180
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
190
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
200
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
210
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
220
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
230
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
240
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
250
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
260
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
270
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
280
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
290
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
300
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
310
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
320
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
330
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
340
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
350
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
360
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
370
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
380
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
390
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
400
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
410
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
420
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
430
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
440
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
450
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
460
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
470
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
480
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
490
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
500
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
510
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
520
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
530
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
540
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
550
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
560
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
570
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
580
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
590
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
600
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
610
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
620
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
630
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
640
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
650
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
660
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
670
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
680
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
690
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
700
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
710
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
720
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
730
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
740
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
750
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
760
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
770
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
780
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
790
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
800
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
810
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
820
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
830
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
840
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
850
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
860
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
870
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
880
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
890
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
900
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
910
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
920
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
930
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
940
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
950
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
960
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
970
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
980
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
990
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1000
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1010
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1020
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1030
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1040
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1050
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1060
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1070
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1080
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1090
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1100
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1110
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1120
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1130
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1140
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1150
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1160
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1170
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1180
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1190
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1200
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1210
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1220
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1230
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1240
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1250
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1260
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1270
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1280
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1290
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1300
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1310
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1320
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1330
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1340
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1350
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1360
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1370
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1380
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1390
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1400
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1410
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1420
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1430
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1440
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1450
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1460
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1470
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1480
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1490
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1500
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1510
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1520
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1530
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1540
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1550
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1560
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1570
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1580
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1590
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1600
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1610
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1620
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1630
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1640
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1650
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1660
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1670
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1680
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1690
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1700
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1710
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1720
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1730
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1740
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1750
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1760
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1770
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1780
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1790
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1800
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1810
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1820
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1830
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1840
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1850
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1860
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1870
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1880
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1890
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1900
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1910
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1920
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1930
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1940
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1950
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1960
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1970
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1980
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
1990
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 20.0
the regulation term lambda/alpha is 20.0
2000
In [23]:
import matplotlib.pyplot as plt
x_index=np.array([])
i=10
while i<=2000:
    x_index=np.append(x_index,i)
    i=i+10
    

plt.plot(x_index,inconsistency_non_Bay,linestyle='-',color='red',label='LIME')
plt.plot(x_index,inconsistency_non_info,linestyle='-',color='green',label='BayLIME with non-informative priors')
plt.plot(x_index,inconsistency_info_prior_fit_alpha,linestyle='-',color='blue',label=r'BayLIME with partial informative priors ($\lambda=20$)')
plt.plot(x_index,inconsistency_full_info_prior,linestyle='-',color='orange',label=r'BayLIME with full informative priors ($\alpha=1,\lambda=20$)')

#plt.xscale('log')
plt.legend(loc='upper right',fontsize=10)#bbox_to_anchor=(1,1)
#plt.axis([10, 300, 0,10])# set the ranges of axis
plt.xlabel('$n$')
plt.ylabel('inconsistency')
plt.grid(True)

plt.show()
In [24]:
plt.plot(x_index,ken_w_non_Bay,linestyle='-',color='red',label='LIME')
plt.plot(x_index,ken_w_non_info,linestyle='-',color='green',label='BayLIME with non-informative priors')
plt.plot(x_index,ken_w_info_prior_fit_alpha,linestyle='-',color='blue',label=r'BayLIME with partial informative priors ($\lambda=20$)')
plt.plot(x_index,ken_w_full_info_prior,linestyle='-',color='orange',label=r'BayLIME with full informative priors ($\alpha=1,\lambda=20$)')

#plt.xscale('log')
plt.legend(fontsize=10)#bbox_to_anchor=(1,1) ,loc='upper right'
#plt.axis([10, 300, 0,10])# set the ranges of axis
plt.xlabel('$n$')
plt.ylabel('Kendall’s W')
plt.grid(True)

plt.show()
In [ ]: